diff --git a/PBE_Strings_Track/bikes-long-repeat.sl b/PBE_Strings_Track/bikes-long-repeat.sl new file mode 100644 index 0000000000000000000000000000000000000000..108fd2d438dbf7d1da3222dbbcd551b204aa638c --- /dev/null +++ b/PBE_Strings_Track/bikes-long-repeat.sl @@ -0,0 +1,84 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "Ducati100") "Ducati")) +(constraint (= (f "Ducati100") "Ducati")) +(constraint (= (f "Ducati100") "Ducati")) +(constraint (= (f "Honda125") "Honda")) +(constraint (= (f "Honda125") "Honda")) +(constraint (= (f "Honda125") "Honda")) +(constraint (= (f "Ducati250") "Ducati")) +(constraint (= (f "Ducati250") "Ducati")) +(constraint (= (f "Ducati250") "Ducati")) +(constraint (= (f "Honda250") "Honda")) +(constraint (= (f "Honda250") "Honda")) +(constraint (= (f "Honda250") "Honda")) +(constraint (= (f "Honda550") "Honda")) +(constraint (= (f "Honda550") "Honda")) +(constraint (= (f "Honda550") "Honda")) +(constraint (= (f "Ducati125") "Ducati")) +(constraint (= (f "Ducati125") "Ducati")) +(constraint (= (f "Ducati125") "Ducati")) +(constraint (= (f "Acura100") "Acura")) +(constraint (= (f "Acura100") "Acura")) +(constraint (= (f "Acura100") "Acura")) +(constraint (= (f "Acura125") "Acura")) +(constraint (= (f "Ferrari250") "Ferrari")) +(constraint (= (f "Ferrari250") "Ferrari")) +(constraint (= (f "Ferrari250") "Ferrari")) +(constraint (= (f "Ferrari250") "Ferrari")) +(constraint (= (f "Honda550") "Honda")) +(constraint (= (f "Honda550") "Honda")) +(constraint (= (f "Honda550") "Honda")) +(constraint (= (f "Ducati125") "Ducati")) +(constraint (= (f "Ducati125") "Ducati")) +(constraint (= (f "Ducati125") "Ducati")) +(constraint (= (f "Ducati100") "Ducati")) +(constraint (= (f "Honda125") "Honda")) +(constraint (= (f "Honda125") "Honda")) +(constraint (= (f "Honda125") "Honda")) +(constraint (= (f "Ducati250") "Ducati")) +(constraint (= (f "Honda250") "Honda")) +(constraint (= (f "Honda250") "Honda")) +(constraint (= (f "Honda250") "Honda")) +(constraint (= (f "Honda550") "Honda")) +(constraint (= (f "Ducati125") "Ducati")) +(constraint (= (f "Ducati125") "Ducati")) +(constraint (= (f "Ducati125") "Ducati")) +(constraint (= (f "Acura100") "Acura")) +(constraint (= (f "Acura125") "Acura")) +(constraint (= (f "Acura125") "Acura")) +(constraint (= (f "Acura125") "Acura")) +(constraint (= (f "Ferrari250") "Ferrari")) +(constraint (= (f "Ferrari250") "Ferrari")) +(constraint (= (f "Ferrari250") "Ferrari")) +(constraint (= (f "Honda550") "Honda")) +(constraint (= (f "Honda550") "Honda")) +(constraint (= (f "Honda550") "Honda")) +(constraint (= (f "Ducati125") "Ducati")) +(constraint (= (f "Ducati125") "Ducati")) +(constraint (= (f "Ducati125") "Ducati")) +(constraint (= (f "Ducati125") "Ducati")) + +(check-synth) diff --git a/PBE_Strings_Track/bikes-long.sl b/PBE_Strings_Track/bikes-long.sl new file mode 100644 index 0000000000000000000000000000000000000000..5ec4b735525eda089dc73e4beb1c812b18ddfee1 --- /dev/null +++ b/PBE_Strings_Track/bikes-long.sl @@ -0,0 +1,50 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "Ducati100") "Ducati")) +(constraint (= (f "Honda125") "Honda")) +(constraint (= (f "Ducati250") "Ducati")) +(constraint (= (f "Honda250") "Honda")) +(constraint (= (f "Honda550") "Honda")) +(constraint (= (f "Ducati125") "Ducati")) +(constraint (= (f "Acura100") "Acura")) +(constraint (= (f "Acura125") "Acura")) +(constraint (= (f "Ferrari250") "Ferrari")) +(constraint (= (f "Ferrari250") "Ferrari")) +(constraint (= (f "Honda550") "Honda")) +(constraint (= (f "Ducati125") "Ducati")) +(constraint (= (f "Ducati100") "Ducati")) +(constraint (= (f "Honda125") "Honda")) +(constraint (= (f "Ducati250") "Ducati")) +(constraint (= (f "Honda250") "Honda")) +(constraint (= (f "Honda550") "Honda")) +(constraint (= (f "Ducati125") "Ducati")) +(constraint (= (f "Acura100") "Acura")) +(constraint (= (f "Acura125") "Acura")) +(constraint (= (f "Ferrari250") "Ferrari")) +(constraint (= (f "Ferrari250") "Ferrari")) +(constraint (= (f "Honda550") "Honda")) +(constraint (= (f "Ducati125") "Ducati")) + +(check-synth) diff --git a/PBE_Strings_Track/bikes.sl b/PBE_Strings_Track/bikes.sl new file mode 100644 index 0000000000000000000000000000000000000000..de4967a8e3579e467fb3c46b7c0d36f383e65638 --- /dev/null +++ b/PBE_Strings_Track/bikes.sl @@ -0,0 +1,32 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "Ducati100") "Ducati")) +(constraint (= (f "Honda125") "Honda")) +(constraint (= (f "Ducati250") "Ducati")) +(constraint (= (f "Honda250") "Honda")) +(constraint (= (f "Honda550") "Honda")) +(constraint (= (f "Ducati125") "Ducati")) + +(check-synth) diff --git a/PBE_Strings_Track/bikes_small.sl b/PBE_Strings_Track/bikes_small.sl new file mode 100644 index 0000000000000000000000000000000000000000..9760fa599d4bc2d13ca9484f5dcec8b65201b072 --- /dev/null +++ b/PBE_Strings_Track/bikes_small.sl @@ -0,0 +1,28 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (str.len ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "Ducati100") "Ducati")) +(constraint (= (f "Honda125") "Honda")) +(constraint (= (f "Ducati250") "Ducati")) +(constraint (= (f "Honda250") "Honda")) +(constraint (= (f "Honda550") "Honda")) +(constraint (= (f "Ducati125") "Ducati")) + +(check-synth) diff --git a/PBE_Strings_Track/dr-name-long-repeat.sl b/PBE_Strings_Track/dr-name-long-repeat.sl new file mode 100644 index 0000000000000000000000000000000000000000..2d852556ebf34909cec98bbd2402e647d28d3367 --- /dev/null +++ b/PBE_Strings_Track/dr-name-long-repeat.sl @@ -0,0 +1,176 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "." "Dr." "D" "r" + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "Launa Withers") "Dr. Launa")) +(constraint (= (f "Launa Withers") "Dr. Launa")) +(constraint (= (f "Launa Withers") "Dr. Launa")) +(constraint (= (f "Lakenya Edison") "Dr. Lakenya")) +(constraint (= (f "Lakenya Edison") "Dr. Lakenya")) +(constraint (= (f "Lakenya Edison") "Dr. Lakenya")) +(constraint (= (f "Brendan Hage") "Dr. Brendan")) +(constraint (= (f "Brendan Hage") "Dr. Brendan")) +(constraint (= (f "Brendan Hage") "Dr. Brendan")) +(constraint (= (f "Bradford Lango") "Dr. Bradford")) +(constraint (= (f "Bradford Lango") "Dr. Bradford")) +(constraint (= (f "Bradford Lango") "Dr. Bradford")) +(constraint (= (f "Rudolf Akiyama") "Dr. Rudolf")) +(constraint (= (f "Rudolf Akiyama") "Dr. Rudolf")) +(constraint (= (f "Rudolf Akiyama") "Dr. Rudolf")) +(constraint (= (f "Lara Constable") "Dr. Lara")) +(constraint (= (f "Lara Constable") "Dr. Lara")) +(constraint (= (f "Lara Constable") "Dr. Lara")) +(constraint (= (f "Madelaine Ghoston") "Dr. Madelaine")) +(constraint (= (f "Madelaine Ghoston") "Dr. Madelaine")) +(constraint (= (f "Madelaine Ghoston") "Dr. Madelaine")) +(constraint (= (f "Salley Hornak") "Dr. Salley")) +(constraint (= (f "Salley Hornak") "Dr. Salley")) +(constraint (= (f "Salley Hornak") "Dr. Salley")) +(constraint (= (f "Micha Junkin") "Dr. Micha")) +(constraint (= (f "Micha Junkin") "Dr. Micha")) +(constraint (= (f "Micha Junkin") "Dr. Micha")) +(constraint (= (f "Teddy Bobo") "Dr. Teddy")) +(constraint (= (f "Teddy Bobo") "Dr. Teddy")) +(constraint (= (f "Teddy Bobo") "Dr. Teddy")) +(constraint (= (f "Coralee Scalia") "Dr. Coralee")) +(constraint (= (f "Coralee Scalia") "Dr. Coralee")) +(constraint (= (f "Coralee Scalia") "Dr. Coralee")) +(constraint (= (f "Jeff Quashie") "Dr. Jeff")) +(constraint (= (f "Jeff Quashie") "Dr. Jeff")) +(constraint (= (f "Jeff Quashie") "Dr. Jeff")) +(constraint (= (f "Vena Babiarz") "Dr. Vena")) +(constraint (= (f "Vena Babiarz") "Dr. Vena")) +(constraint (= (f "Vena Babiarz") "Dr. Vena")) +(constraint (= (f "Karrie Lain") "Dr. Karrie")) +(constraint (= (f "Karrie Lain") "Dr. Karrie")) +(constraint (= (f "Karrie Lain") "Dr. Karrie")) +(constraint (= (f "Tobias Dermody") "Dr. Tobias")) +(constraint (= (f "Tobias Dermody") "Dr. Tobias")) +(constraint (= (f "Tobias Dermody") "Dr. Tobias")) +(constraint (= (f "Celsa Hopkins") "Dr. Celsa")) +(constraint (= (f "Celsa Hopkins") "Dr. Celsa")) +(constraint (= (f "Celsa Hopkins") "Dr. Celsa")) +(constraint (= (f "Kimberley Halpern") "Dr. Kimberley")) +(constraint (= (f "Kimberley Halpern") "Dr. Kimberley")) +(constraint (= (f "Kimberley Halpern") "Dr. Kimberley")) +(constraint (= (f "Phillip Rowden") "Dr. Phillip")) +(constraint (= (f "Phillip Rowden") "Dr. Phillip")) +(constraint (= (f "Phillip Rowden") "Dr. Phillip")) +(constraint (= (f "Elias Neil") "Dr. Elias")) +(constraint (= (f "Elias Neil") "Dr. Elias")) +(constraint (= (f "Elias Neil") "Dr. Elias")) +(constraint (= (f "Lashanda Cortes") "Dr. Lashanda")) +(constraint (= (f "Lashanda Cortes") "Dr. Lashanda")) +(constraint (= (f "Lashanda Cortes") "Dr. Lashanda")) +(constraint (= (f "Mackenzie Spell") "Dr. Mackenzie")) +(constraint (= (f "Mackenzie Spell") "Dr. Mackenzie")) +(constraint (= (f "Mackenzie Spell") "Dr. Mackenzie")) +(constraint (= (f "Kathlyn Eccleston") "Dr. Kathlyn")) +(constraint (= (f "Kathlyn Eccleston") "Dr. Kathlyn")) +(constraint (= (f "Kathlyn Eccleston") "Dr. Kathlyn")) +(constraint (= (f "Georgina Brescia") "Dr. Georgina")) +(constraint (= (f "Georgina Brescia") "Dr. Georgina")) +(constraint (= (f "Georgina Brescia") "Dr. Georgina")) +(constraint (= (f "Beata Miah") "Dr. Beata")) +(constraint (= (f "Beata Miah") "Dr. Beata")) +(constraint (= (f "Beata Miah") "Dr. Beata")) +(constraint (= (f "Desiree Seamons") "Dr. Desiree")) +(constraint (= (f "Desiree Seamons") "Dr. Desiree")) +(constraint (= (f "Desiree Seamons") "Dr. Desiree")) +(constraint (= (f "Jeanice Soderstrom") "Dr. Jeanice")) +(constraint (= (f "Jeanice Soderstrom") "Dr. Jeanice")) +(constraint (= (f "Jeanice Soderstrom") "Dr. Jeanice")) +(constraint (= (f "Mariel Jurgens") "Dr. Mariel")) +(constraint (= (f "Mariel Jurgens") "Dr. Mariel")) +(constraint (= (f "Mariel Jurgens") "Dr. Mariel")) +(constraint (= (f "Alida Bogle") "Dr. Alida")) +(constraint (= (f "Alida Bogle") "Dr. Alida")) +(constraint (= (f "Alida Bogle") "Dr. Alida")) +(constraint (= (f "Jacqualine Olague") "Dr. Jacqualine")) +(constraint (= (f "Jacqualine Olague") "Dr. Jacqualine")) +(constraint (= (f "Jacqualine Olague") "Dr. Jacqualine")) +(constraint (= (f "Joaquin Clasen") "Dr. Joaquin")) +(constraint (= (f "Joaquin Clasen") "Dr. Joaquin")) +(constraint (= (f "Joaquin Clasen") "Dr. Joaquin")) +(constraint (= (f "Samuel Richert") "Dr. Samuel")) +(constraint (= (f "Samuel Richert") "Dr. Samuel")) +(constraint (= (f "Samuel Richert") "Dr. Samuel")) +(constraint (= (f "Malissa Marcus") "Dr. Malissa")) +(constraint (= (f "Malissa Marcus") "Dr. Malissa")) +(constraint (= (f "Malissa Marcus") "Dr. Malissa")) +(constraint (= (f "Alaina Partida") "Dr. Alaina")) +(constraint (= (f "Alaina Partida") "Dr. Alaina")) +(constraint (= (f "Alaina Partida") "Dr. Alaina")) +(constraint (= (f "Trinidad Mulloy") "Dr. Trinidad")) +(constraint (= (f "Trinidad Mulloy") "Dr. Trinidad")) +(constraint (= (f "Trinidad Mulloy") "Dr. Trinidad")) +(constraint (= (f "Carlene Garrard") "Dr. Carlene")) +(constraint (= (f "Carlene Garrard") "Dr. Carlene")) +(constraint (= (f "Carlene Garrard") "Dr. Carlene")) +(constraint (= (f "Melodi Chism") "Dr. Melodi")) +(constraint (= (f "Melodi Chism") "Dr. Melodi")) +(constraint (= (f "Melodi Chism") "Dr. Melodi")) +(constraint (= (f "Bess Chilcott") "Dr. Bess")) +(constraint (= (f "Bess Chilcott") "Dr. Bess")) +(constraint (= (f "Bess Chilcott") "Dr. Bess")) +(constraint (= (f "Chong Aylward") "Dr. Chong")) +(constraint (= (f "Chong Aylward") "Dr. Chong")) +(constraint (= (f "Chong Aylward") "Dr. Chong")) +(constraint (= (f "Jani Ramthun") "Dr. Jani")) +(constraint (= (f "Jani Ramthun") "Dr. Jani")) +(constraint (= (f "Jani Ramthun") "Dr. Jani")) +(constraint (= (f "Jacquiline Heintz") "Dr. Jacquiline")) +(constraint (= (f "Jacquiline Heintz") "Dr. Jacquiline")) +(constraint (= (f "Jacquiline Heintz") "Dr. Jacquiline")) +(constraint (= (f "Hayley Marquess") "Dr. Hayley")) +(constraint (= (f "Hayley Marquess") "Dr. Hayley")) +(constraint (= (f "Hayley Marquess") "Dr. Hayley")) +(constraint (= (f "Andria Spagnoli") "Dr. Andria")) +(constraint (= (f "Andria Spagnoli") "Dr. Andria")) +(constraint (= (f "Andria Spagnoli") "Dr. Andria")) +(constraint (= (f "Irwin Covelli") "Dr. Irwin")) +(constraint (= (f "Irwin Covelli") "Dr. Irwin")) +(constraint (= (f "Irwin Covelli") "Dr. Irwin")) +(constraint (= (f "Gertude Montiel") "Dr. Gertude")) +(constraint (= (f "Gertude Montiel") "Dr. Gertude")) +(constraint (= (f "Gertude Montiel") "Dr. Gertude")) +(constraint (= (f "Stefany Reily") "Dr. Stefany")) +(constraint (= (f "Stefany Reily") "Dr. Stefany")) +(constraint (= (f "Stefany Reily") "Dr. Stefany")) +(constraint (= (f "Rae Mcgaughey") "Dr. Rae")) +(constraint (= (f "Rae Mcgaughey") "Dr. Rae")) +(constraint (= (f "Rae Mcgaughey") "Dr. Rae")) +(constraint (= (f "Cruz Latimore") "Dr. Cruz")) +(constraint (= (f "Cruz Latimore") "Dr. Cruz")) +(constraint (= (f "Cruz Latimore") "Dr. Cruz")) +(constraint (= (f "Maryann Casler") "Dr. Maryann")) +(constraint (= (f "Maryann Casler") "Dr. Maryann")) +(constraint (= (f "Maryann Casler") "Dr. Maryann")) +(constraint (= (f "Annalisa Gregori") "Dr. Annalisa")) +(constraint (= (f "Annalisa Gregori") "Dr. Annalisa")) +(constraint (= (f "Annalisa Gregori") "Dr. Annalisa")) +(constraint (= (f "Jenee Pannell") "Dr. Jenee")) +(constraint (= (f "Jenee Pannell") "Dr. Jenee")) +(constraint (= (f "Jenee Pannell") "Dr. Jenee")) + +(check-synth) diff --git a/PBE_Strings_Track/dr-name-long.sl b/PBE_Strings_Track/dr-name-long.sl new file mode 100644 index 0000000000000000000000000000000000000000..25ad200b2a88d887b957fe31caeabd9eb697eab6 --- /dev/null +++ b/PBE_Strings_Track/dr-name-long.sl @@ -0,0 +1,76 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "." "Dr." "D" "r" + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "Launa Withers") "Dr. Launa")) +(constraint (= (f "Lakenya Edison") "Dr. Lakenya")) +(constraint (= (f "Brendan Hage") "Dr. Brendan")) +(constraint (= (f "Bradford Lango") "Dr. Bradford")) +(constraint (= (f "Rudolf Akiyama") "Dr. Rudolf")) +(constraint (= (f "Lara Constable") "Dr. Lara")) +(constraint (= (f "Madelaine Ghoston") "Dr. Madelaine")) +(constraint (= (f "Salley Hornak") "Dr. Salley")) +(constraint (= (f "Micha Junkin") "Dr. Micha")) +(constraint (= (f "Teddy Bobo") "Dr. Teddy")) +(constraint (= (f "Coralee Scalia") "Dr. Coralee")) +(constraint (= (f "Jeff Quashie") "Dr. Jeff")) +(constraint (= (f "Vena Babiarz") "Dr. Vena")) +(constraint (= (f "Karrie Lain") "Dr. Karrie")) +(constraint (= (f "Tobias Dermody") "Dr. Tobias")) +(constraint (= (f "Celsa Hopkins") "Dr. Celsa")) +(constraint (= (f "Kimberley Halpern") "Dr. Kimberley")) +(constraint (= (f "Phillip Rowden") "Dr. Phillip")) +(constraint (= (f "Elias Neil") "Dr. Elias")) +(constraint (= (f "Lashanda Cortes") "Dr. Lashanda")) +(constraint (= (f "Mackenzie Spell") "Dr. Mackenzie")) +(constraint (= (f "Kathlyn Eccleston") "Dr. Kathlyn")) +(constraint (= (f "Georgina Brescia") "Dr. Georgina")) +(constraint (= (f "Beata Miah") "Dr. Beata")) +(constraint (= (f "Desiree Seamons") "Dr. Desiree")) +(constraint (= (f "Jeanice Soderstrom") "Dr. Jeanice")) +(constraint (= (f "Mariel Jurgens") "Dr. Mariel")) +(constraint (= (f "Alida Bogle") "Dr. Alida")) +(constraint (= (f "Jacqualine Olague") "Dr. Jacqualine")) +(constraint (= (f "Joaquin Clasen") "Dr. Joaquin")) +(constraint (= (f "Samuel Richert") "Dr. Samuel")) +(constraint (= (f "Malissa Marcus") "Dr. Malissa")) +(constraint (= (f "Alaina Partida") "Dr. Alaina")) +(constraint (= (f "Trinidad Mulloy") "Dr. Trinidad")) +(constraint (= (f "Carlene Garrard") "Dr. Carlene")) +(constraint (= (f "Melodi Chism") "Dr. Melodi")) +(constraint (= (f "Bess Chilcott") "Dr. Bess")) +(constraint (= (f "Chong Aylward") "Dr. Chong")) +(constraint (= (f "Jani Ramthun") "Dr. Jani")) +(constraint (= (f "Jacquiline Heintz") "Dr. Jacquiline")) +(constraint (= (f "Hayley Marquess") "Dr. Hayley")) +(constraint (= (f "Andria Spagnoli") "Dr. Andria")) +(constraint (= (f "Irwin Covelli") "Dr. Irwin")) +(constraint (= (f "Gertude Montiel") "Dr. Gertude")) +(constraint (= (f "Stefany Reily") "Dr. Stefany")) +(constraint (= (f "Rae Mcgaughey") "Dr. Rae")) +(constraint (= (f "Cruz Latimore") "Dr. Cruz")) +(constraint (= (f "Maryann Casler") "Dr. Maryann")) +(constraint (= (f "Annalisa Gregori") "Dr. Annalisa")) +(constraint (= (f "Jenee Pannell") "Dr. Jenee")) + +(check-synth) diff --git a/PBE_Strings_Track/dr-name.sl b/PBE_Strings_Track/dr-name.sl new file mode 100644 index 0000000000000000000000000000000000000000..5e0120ad3dcc75a8a4f95167b99584c5bf7a53d1 --- /dev/null +++ b/PBE_Strings_Track/dr-name.sl @@ -0,0 +1,30 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "." "Dr." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "Nancy FreeHafer") "Dr. Nancy")) +(constraint (= (f "Andrew Cencici") "Dr. Andrew")) +(constraint (= (f "Jan Kotas") "Dr. Jan")) +(constraint (= (f "Mariya Sergienko") "Dr. Mariya")) + +(check-synth) diff --git a/PBE_Strings_Track/dr-name_small.sl b/PBE_Strings_Track/dr-name_small.sl new file mode 100644 index 0000000000000000000000000000000000000000..0aafebc12f429df7131f82a619878dcd8e1af3b7 --- /dev/null +++ b/PBE_Strings_Track/dr-name_small.sl @@ -0,0 +1,27 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "." "Dr." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "Nancy FreeHafer") "Dr. Nancy")) +(constraint (= (f "Andrew Cencici") "Dr. Andrew")) +(constraint (= (f "Jan Kotas") "Dr. Jan")) +(constraint (= (f "Mariya Sergienko") "Dr. Mariya")) + +(check-synth) diff --git a/PBE_Strings_Track/firstname-long-repeat.sl b/PBE_Strings_Track/firstname-long-repeat.sl new file mode 100644 index 0000000000000000000000000000000000000000..a72912c43114509f21bc4703bf5b6fd90bbe260f --- /dev/null +++ b/PBE_Strings_Track/firstname-long-repeat.sl @@ -0,0 +1,230 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "Nancy FreeHafer") "Nancy")) +(constraint (= (f "Andrew Cencici") "Andrew")) +(constraint (= (f "Jan Kotas") "Jan")) +(constraint (= (f "Mariya Sergienko") "Mariya")) +(constraint (= (f "Launa Withers") "Launa")) +(constraint (= (f "Launa Withers") "Launa")) +(constraint (= (f "Launa Withers") "Launa")) +(constraint (= (f "Lakenya Edison") "Lakenya")) +(constraint (= (f "Lakenya Edison") "Lakenya")) +(constraint (= (f "Lakenya Edison") "Lakenya")) +(constraint (= (f "Brendan Hage") "Brendan")) +(constraint (= (f "Brendan Hage") "Brendan")) +(constraint (= (f "Brendan Hage") "Brendan")) +(constraint (= (f "Bradford Lango") "Bradford")) +(constraint (= (f "Bradford Lango") "Bradford")) +(constraint (= (f "Bradford Lango") "Bradford")) +(constraint (= (f "Rudolf Akiyama") "Rudolf")) +(constraint (= (f "Rudolf Akiyama") "Rudolf")) +(constraint (= (f "Rudolf Akiyama") "Rudolf")) +(constraint (= (f "Lara Constable") "Lara")) +(constraint (= (f "Lara Constable") "Lara")) +(constraint (= (f "Lara Constable") "Lara")) +(constraint (= (f "Madelaine Ghoston") "Madelaine")) +(constraint (= (f "Madelaine Ghoston") "Madelaine")) +(constraint (= (f "Madelaine Ghoston") "Madelaine")) +(constraint (= (f "Salley Hornak") "Salley")) +(constraint (= (f "Salley Hornak") "Salley")) +(constraint (= (f "Salley Hornak") "Salley")) +(constraint (= (f "Micha Junkin") "Micha")) +(constraint (= (f "Micha Junkin") "Micha")) +(constraint (= (f "Micha Junkin") "Micha")) +(constraint (= (f "Teddy Bobo") "Teddy")) +(constraint (= (f "Teddy Bobo") "Teddy")) +(constraint (= (f "Teddy Bobo") "Teddy")) +(constraint (= (f "Coralee Scalia") "Coralee")) +(constraint (= (f "Coralee Scalia") "Coralee")) +(constraint (= (f "Coralee Scalia") "Coralee")) +(constraint (= (f "Jeff Quashie") "Jeff")) +(constraint (= (f "Jeff Quashie") "Jeff")) +(constraint (= (f "Jeff Quashie") "Jeff")) +(constraint (= (f "Vena Babiarz") "Vena")) +(constraint (= (f "Vena Babiarz") "Vena")) +(constraint (= (f "Vena Babiarz") "Vena")) +(constraint (= (f "Karrie Lain") "Karrie")) +(constraint (= (f "Karrie Lain") "Karrie")) +(constraint (= (f "Karrie Lain") "Karrie")) +(constraint (= (f "Tobias Dermody") "Tobias")) +(constraint (= (f "Tobias Dermody") "Tobias")) +(constraint (= (f "Tobias Dermody") "Tobias")) +(constraint (= (f "Celsa Hopkins") "Celsa")) +(constraint (= (f "Celsa Hopkins") "Celsa")) +(constraint (= (f "Celsa Hopkins") "Celsa")) +(constraint (= (f "Kimberley Halpern") "Kimberley")) +(constraint (= (f "Kimberley Halpern") "Kimberley")) +(constraint (= (f "Kimberley Halpern") "Kimberley")) +(constraint (= (f "Phillip Rowden") "Phillip")) +(constraint (= (f "Phillip Rowden") "Phillip")) +(constraint (= (f "Phillip Rowden") "Phillip")) +(constraint (= (f "Elias Neil") "Elias")) +(constraint (= (f "Elias Neil") "Elias")) +(constraint (= (f "Elias Neil") "Elias")) +(constraint (= (f "Lashanda Cortes") "Lashanda")) +(constraint (= (f "Lashanda Cortes") "Lashanda")) +(constraint (= (f "Lashanda Cortes") "Lashanda")) +(constraint (= (f "Mackenzie Spell") "Mackenzie")) +(constraint (= (f "Mackenzie Spell") "Mackenzie")) +(constraint (= (f "Mackenzie Spell") "Mackenzie")) +(constraint (= (f "Kathlyn Eccleston") "Kathlyn")) +(constraint (= (f "Kathlyn Eccleston") "Kathlyn")) +(constraint (= (f "Kathlyn Eccleston") "Kathlyn")) +(constraint (= (f "Georgina Brescia") "Georgina")) +(constraint (= (f "Georgina Brescia") "Georgina")) +(constraint (= (f "Georgina Brescia") "Georgina")) +(constraint (= (f "Beata Miah") "Beata")) +(constraint (= (f "Beata Miah") "Beata")) +(constraint (= (f "Beata Miah") "Beata")) +(constraint (= (f "Desiree Seamons") "Desiree")) +(constraint (= (f "Desiree Seamons") "Desiree")) +(constraint (= (f "Desiree Seamons") "Desiree")) +(constraint (= (f "Jeanice Soderstrom") "Jeanice")) +(constraint (= (f "Jeanice Soderstrom") "Jeanice")) +(constraint (= (f "Jeanice Soderstrom") "Jeanice")) +(constraint (= (f "Mariel Jurgens") "Mariel")) +(constraint (= (f "Mariel Jurgens") "Mariel")) +(constraint (= (f "Mariel Jurgens") "Mariel")) +(constraint (= (f "Alida Bogle") "Alida")) +(constraint (= (f "Alida Bogle") "Alida")) +(constraint (= (f "Alida Bogle") "Alida")) +(constraint (= (f "Jacqualine Olague") "Jacqualine")) +(constraint (= (f "Jacqualine Olague") "Jacqualine")) +(constraint (= (f "Jacqualine Olague") "Jacqualine")) +(constraint (= (f "Joaquin Clasen") "Joaquin")) +(constraint (= (f "Joaquin Clasen") "Joaquin")) +(constraint (= (f "Joaquin Clasen") "Joaquin")) +(constraint (= (f "Samuel Richert") "Samuel")) +(constraint (= (f "Samuel Richert") "Samuel")) +(constraint (= (f "Samuel Richert") "Samuel")) +(constraint (= (f "Malissa Marcus") "Malissa")) +(constraint (= (f "Malissa Marcus") "Malissa")) +(constraint (= (f "Malissa Marcus") "Malissa")) +(constraint (= (f "Alaina Partida") "Alaina")) +(constraint (= (f "Alaina Partida") "Alaina")) +(constraint (= (f "Alaina Partida") "Alaina")) +(constraint (= (f "Trinidad Mulloy") "Trinidad")) +(constraint (= (f "Trinidad Mulloy") "Trinidad")) +(constraint (= (f "Trinidad Mulloy") "Trinidad")) +(constraint (= (f "Carlene Garrard") "Carlene")) +(constraint (= (f "Carlene Garrard") "Carlene")) +(constraint (= (f "Carlene Garrard") "Carlene")) +(constraint (= (f "Melodi Chism") "Melodi")) +(constraint (= (f "Melodi Chism") "Melodi")) +(constraint (= (f "Melodi Chism") "Melodi")) +(constraint (= (f "Bess Chilcott") "Bess")) +(constraint (= (f "Bess Chilcott") "Bess")) +(constraint (= (f "Bess Chilcott") "Bess")) +(constraint (= (f "Chong Aylward") "Chong")) +(constraint (= (f "Chong Aylward") "Chong")) +(constraint (= (f "Chong Aylward") "Chong")) +(constraint (= (f "Jani Ramthun") "Jani")) +(constraint (= (f "Jani Ramthun") "Jani")) +(constraint (= (f "Jani Ramthun") "Jani")) +(constraint (= (f "Jacquiline Heintz") "Jacquiline")) +(constraint (= (f "Jacquiline Heintz") "Jacquiline")) +(constraint (= (f "Jacquiline Heintz") "Jacquiline")) +(constraint (= (f "Hayley Marquess") "Hayley")) +(constraint (= (f "Hayley Marquess") "Hayley")) +(constraint (= (f "Hayley Marquess") "Hayley")) +(constraint (= (f "Andria Spagnoli") "Andria")) +(constraint (= (f "Andria Spagnoli") "Andria")) +(constraint (= (f "Andria Spagnoli") "Andria")) +(constraint (= (f "Irwin Covelli") "Irwin")) +(constraint (= (f "Irwin Covelli") "Irwin")) +(constraint (= (f "Irwin Covelli") "Irwin")) +(constraint (= (f "Gertude Montiel") "Gertude")) +(constraint (= (f "Gertude Montiel") "Gertude")) +(constraint (= (f "Gertude Montiel") "Gertude")) +(constraint (= (f "Stefany Reily") "Stefany")) +(constraint (= (f "Stefany Reily") "Stefany")) +(constraint (= (f "Stefany Reily") "Stefany")) +(constraint (= (f "Rae Mcgaughey") "Rae")) +(constraint (= (f "Rae Mcgaughey") "Rae")) +(constraint (= (f "Rae Mcgaughey") "Rae")) +(constraint (= (f "Cruz Latimore") "Cruz")) +(constraint (= (f "Cruz Latimore") "Cruz")) +(constraint (= (f "Cruz Latimore") "Cruz")) +(constraint (= (f "Maryann Casler") "Maryann")) +(constraint (= (f "Maryann Casler") "Maryann")) +(constraint (= (f "Maryann Casler") "Maryann")) +(constraint (= (f "Annalisa Gregori") "Annalisa")) +(constraint (= (f "Annalisa Gregori") "Annalisa")) +(constraint (= (f "Annalisa Gregori") "Annalisa")) +(constraint (= (f "Jenee Pannell") "Jenee")) +(constraint (= (f "Jenee Pannell") "Jenee")) +(constraint (= (f "Jenee Pannell") "Jenee")) +(constraint (= (f "Launa Withers") "Launa")) +(constraint (= (f "Lakenya Edison") "Lakenya")) +(constraint (= (f "Brendan Hage") "Brendan")) +(constraint (= (f "Bradford Lango") "Bradford")) +(constraint (= (f "Rudolf Akiyama") "Rudolf")) +(constraint (= (f "Lara Constable") "Lara")) +(constraint (= (f "Madelaine Ghoston") "Madelaine")) +(constraint (= (f "Salley Hornak") "Salley")) +(constraint (= (f "Micha Junkin") "Micha")) +(constraint (= (f "Teddy Bobo") "Teddy")) +(constraint (= (f "Coralee Scalia") "Coralee")) +(constraint (= (f "Jeff Quashie") "Jeff")) +(constraint (= (f "Vena Babiarz") "Vena")) +(constraint (= (f "Karrie Lain") "Karrie")) +(constraint (= (f "Tobias Dermody") "Tobias")) +(constraint (= (f "Celsa Hopkins") "Celsa")) +(constraint (= (f "Kimberley Halpern") "Kimberley")) +(constraint (= (f "Phillip Rowden") "Phillip")) +(constraint (= (f "Elias Neil") "Elias")) +(constraint (= (f "Lashanda Cortes") "Lashanda")) +(constraint (= (f "Mackenzie Spell") "Mackenzie")) +(constraint (= (f "Kathlyn Eccleston") "Kathlyn")) +(constraint (= (f "Georgina Brescia") "Georgina")) +(constraint (= (f "Beata Miah") "Beata")) +(constraint (= (f "Desiree Seamons") "Desiree")) +(constraint (= (f "Jeanice Soderstrom") "Jeanice")) +(constraint (= (f "Mariel Jurgens") "Mariel")) +(constraint (= (f "Alida Bogle") "Alida")) +(constraint (= (f "Jacqualine Olague") "Jacqualine")) +(constraint (= (f "Joaquin Clasen") "Joaquin")) +(constraint (= (f "Samuel Richert") "Samuel")) +(constraint (= (f "Malissa Marcus") "Malissa")) +(constraint (= (f "Alaina Partida") "Alaina")) +(constraint (= (f "Trinidad Mulloy") "Trinidad")) +(constraint (= (f "Carlene Garrard") "Carlene")) +(constraint (= (f "Melodi Chism") "Melodi")) +(constraint (= (f "Bess Chilcott") "Bess")) +(constraint (= (f "Chong Aylward") "Chong")) +(constraint (= (f "Jani Ramthun") "Jani")) +(constraint (= (f "Jacquiline Heintz") "Jacquiline")) +(constraint (= (f "Hayley Marquess") "Hayley")) +(constraint (= (f "Andria Spagnoli") "Andria")) +(constraint (= (f "Irwin Covelli") "Irwin")) +(constraint (= (f "Gertude Montiel") "Gertude")) +(constraint (= (f "Stefany Reily") "Stefany")) +(constraint (= (f "Rae Mcgaughey") "Rae")) +(constraint (= (f "Cruz Latimore") "Cruz")) +(constraint (= (f "Maryann Casler") "Maryann")) +(constraint (= (f "Annalisa Gregori") "Annalisa")) +(constraint (= (f "Jenee Pannell") "Jenee")) + +(check-synth) diff --git a/PBE_Strings_Track/firstname-long.sl b/PBE_Strings_Track/firstname-long.sl new file mode 100644 index 0000000000000000000000000000000000000000..438b6ff964373fcdc4de874bf39104b8728c0199 --- /dev/null +++ b/PBE_Strings_Track/firstname-long.sl @@ -0,0 +1,80 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "Nancy FreeHafer") "Nancy")) +(constraint (= (f "Andrew Cencici") "Andrew")) +(constraint (= (f "Jan Kotas") "Jan")) +(constraint (= (f "Mariya Sergienko") "Mariya")) +(constraint (= (f "Launa Withers") "Launa")) +(constraint (= (f "Lakenya Edison") "Lakenya")) +(constraint (= (f "Brendan Hage") "Brendan")) +(constraint (= (f "Bradford Lango") "Bradford")) +(constraint (= (f "Rudolf Akiyama") "Rudolf")) +(constraint (= (f "Lara Constable") "Lara")) +(constraint (= (f "Madelaine Ghoston") "Madelaine")) +(constraint (= (f "Salley Hornak") "Salley")) +(constraint (= (f "Micha Junkin") "Micha")) +(constraint (= (f "Teddy Bobo") "Teddy")) +(constraint (= (f "Coralee Scalia") "Coralee")) +(constraint (= (f "Jeff Quashie") "Jeff")) +(constraint (= (f "Vena Babiarz") "Vena")) +(constraint (= (f "Karrie Lain") "Karrie")) +(constraint (= (f "Tobias Dermody") "Tobias")) +(constraint (= (f "Celsa Hopkins") "Celsa")) +(constraint (= (f "Kimberley Halpern") "Kimberley")) +(constraint (= (f "Phillip Rowden") "Phillip")) +(constraint (= (f "Elias Neil") "Elias")) +(constraint (= (f "Lashanda Cortes") "Lashanda")) +(constraint (= (f "Mackenzie Spell") "Mackenzie")) +(constraint (= (f "Kathlyn Eccleston") "Kathlyn")) +(constraint (= (f "Georgina Brescia") "Georgina")) +(constraint (= (f "Beata Miah") "Beata")) +(constraint (= (f "Desiree Seamons") "Desiree")) +(constraint (= (f "Jeanice Soderstrom") "Jeanice")) +(constraint (= (f "Mariel Jurgens") "Mariel")) +(constraint (= (f "Alida Bogle") "Alida")) +(constraint (= (f "Jacqualine Olague") "Jacqualine")) +(constraint (= (f "Joaquin Clasen") "Joaquin")) +(constraint (= (f "Samuel Richert") "Samuel")) +(constraint (= (f "Malissa Marcus") "Malissa")) +(constraint (= (f "Alaina Partida") "Alaina")) +(constraint (= (f "Trinidad Mulloy") "Trinidad")) +(constraint (= (f "Carlene Garrard") "Carlene")) +(constraint (= (f "Melodi Chism") "Melodi")) +(constraint (= (f "Bess Chilcott") "Bess")) +(constraint (= (f "Chong Aylward") "Chong")) +(constraint (= (f "Jani Ramthun") "Jani")) +(constraint (= (f "Jacquiline Heintz") "Jacquiline")) +(constraint (= (f "Hayley Marquess") "Hayley")) +(constraint (= (f "Andria Spagnoli") "Andria")) +(constraint (= (f "Irwin Covelli") "Irwin")) +(constraint (= (f "Gertude Montiel") "Gertude")) +(constraint (= (f "Stefany Reily") "Stefany")) +(constraint (= (f "Rae Mcgaughey") "Rae")) +(constraint (= (f "Cruz Latimore") "Cruz")) +(constraint (= (f "Maryann Casler") "Maryann")) +(constraint (= (f "Annalisa Gregori") "Annalisa")) +(constraint (= (f "Jenee Pannell") "Jenee")) + +(check-synth) diff --git a/PBE_Strings_Track/firstname.sl b/PBE_Strings_Track/firstname.sl new file mode 100644 index 0000000000000000000000000000000000000000..1c109400177be42906b2cc00f698f2f2bc0608d0 --- /dev/null +++ b/PBE_Strings_Track/firstname.sl @@ -0,0 +1,30 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "Nancy FreeHafer") "Nancy")) +(constraint (= (f "Andrew Cencici") "Andrew")) +(constraint (= (f "Jan Kotas") "Jan")) +(constraint (= (f "Mariya Sergienko") "Mariya")) + +(check-synth) diff --git a/PBE_Strings_Track/firstname_small.sl b/PBE_Strings_Track/firstname_small.sl new file mode 100644 index 0000000000000000000000000000000000000000..ad069cb74a516916318cd5c851481dba3921f4cb --- /dev/null +++ b/PBE_Strings_Track/firstname_small.sl @@ -0,0 +1,27 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "Nancy FreeHafer") "Nancy")) +(constraint (= (f "Andrew Cencici") "Andrew")) +(constraint (= (f "Jan Kotas") "Jan")) +(constraint (= (f "Mariya Sergienko") "Mariya")) + +(check-synth) diff --git a/PBE_Strings_Track/initials-long-repeat.sl b/PBE_Strings_Track/initials-long-repeat.sl new file mode 100644 index 0000000000000000000000000000000000000000..dca1f56b58434e6599974c77a07075af6b4b552f --- /dev/null +++ b/PBE_Strings_Track/initials-long-repeat.sl @@ -0,0 +1,230 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "Nancy FreeHafer") "N.F.")) +(constraint (= (f "Andrew Cencici") "A.C.")) +(constraint (= (f "Jan Kotas") "J.K.")) +(constraint (= (f "Mariya Sergienko") "M.S.")) +(constraint (= (f "Launa Withers") "L.W.")) +(constraint (= (f "Launa Withers") "L.W.")) +(constraint (= (f "Launa Withers") "L.W.")) +(constraint (= (f "Lakenya Edison") "L.E.")) +(constraint (= (f "Lakenya Edison") "L.E.")) +(constraint (= (f "Lakenya Edison") "L.E.")) +(constraint (= (f "Brendan Hage") "B.H.")) +(constraint (= (f "Brendan Hage") "B.H.")) +(constraint (= (f "Brendan Hage") "B.H.")) +(constraint (= (f "Bradford Lango") "B.L.")) +(constraint (= (f "Bradford Lango") "B.L.")) +(constraint (= (f "Bradford Lango") "B.L.")) +(constraint (= (f "Rudolf Akiyama") "R.A.")) +(constraint (= (f "Rudolf Akiyama") "R.A.")) +(constraint (= (f "Rudolf Akiyama") "R.A.")) +(constraint (= (f "Lara Constable") "L.C.")) +(constraint (= (f "Lara Constable") "L.C.")) +(constraint (= (f "Lara Constable") "L.C.")) +(constraint (= (f "Madelaine Ghoston") "M.G.")) +(constraint (= (f "Madelaine Ghoston") "M.G.")) +(constraint (= (f "Madelaine Ghoston") "M.G.")) +(constraint (= (f "Salley Hornak") "S.H.")) +(constraint (= (f "Salley Hornak") "S.H.")) +(constraint (= (f "Salley Hornak") "S.H.")) +(constraint (= (f "Micha Junkin") "M.J.")) +(constraint (= (f "Micha Junkin") "M.J.")) +(constraint (= (f "Micha Junkin") "M.J.")) +(constraint (= (f "Teddy Bobo") "T.B.")) +(constraint (= (f "Teddy Bobo") "T.B.")) +(constraint (= (f "Teddy Bobo") "T.B.")) +(constraint (= (f "Coralee Scalia") "C.S.")) +(constraint (= (f "Coralee Scalia") "C.S.")) +(constraint (= (f "Coralee Scalia") "C.S.")) +(constraint (= (f "Jeff Quashie") "J.Q.")) +(constraint (= (f "Jeff Quashie") "J.Q.")) +(constraint (= (f "Jeff Quashie") "J.Q.")) +(constraint (= (f "Vena Babiarz") "V.B.")) +(constraint (= (f "Vena Babiarz") "V.B.")) +(constraint (= (f "Vena Babiarz") "V.B.")) +(constraint (= (f "Karrie Lain") "K.L.")) +(constraint (= (f "Karrie Lain") "K.L.")) +(constraint (= (f "Karrie Lain") "K.L.")) +(constraint (= (f "Tobias Dermody") "T.D.")) +(constraint (= (f "Tobias Dermody") "T.D.")) +(constraint (= (f "Tobias Dermody") "T.D.")) +(constraint (= (f "Celsa Hopkins") "C.H.")) +(constraint (= (f "Celsa Hopkins") "C.H.")) +(constraint (= (f "Celsa Hopkins") "C.H.")) +(constraint (= (f "Kimberley Halpern") "K.H.")) +(constraint (= (f "Kimberley Halpern") "K.H.")) +(constraint (= (f "Kimberley Halpern") "K.H.")) +(constraint (= (f "Phillip Rowden") "P.R.")) +(constraint (= (f "Phillip Rowden") "P.R.")) +(constraint (= (f "Phillip Rowden") "P.R.")) +(constraint (= (f "Elias Neil") "E.N.")) +(constraint (= (f "Elias Neil") "E.N.")) +(constraint (= (f "Elias Neil") "E.N.")) +(constraint (= (f "Lashanda Cortes") "L.C.")) +(constraint (= (f "Lashanda Cortes") "L.C.")) +(constraint (= (f "Lashanda Cortes") "L.C.")) +(constraint (= (f "Mackenzie Spell") "M.S.")) +(constraint (= (f "Mackenzie Spell") "M.S.")) +(constraint (= (f "Mackenzie Spell") "M.S.")) +(constraint (= (f "Kathlyn Eccleston") "K.E.")) +(constraint (= (f "Kathlyn Eccleston") "K.E.")) +(constraint (= (f "Kathlyn Eccleston") "K.E.")) +(constraint (= (f "Georgina Brescia") "G.B.")) +(constraint (= (f "Georgina Brescia") "G.B.")) +(constraint (= (f "Georgina Brescia") "G.B.")) +(constraint (= (f "Beata Miah") "B.M.")) +(constraint (= (f "Beata Miah") "B.M.")) +(constraint (= (f "Beata Miah") "B.M.")) +(constraint (= (f "Desiree Seamons") "D.S.")) +(constraint (= (f "Desiree Seamons") "D.S.")) +(constraint (= (f "Desiree Seamons") "D.S.")) +(constraint (= (f "Jeanice Soderstrom") "J.S.")) +(constraint (= (f "Jeanice Soderstrom") "J.S.")) +(constraint (= (f "Jeanice Soderstrom") "J.S.")) +(constraint (= (f "Mariel Jurgens") "M.J.")) +(constraint (= (f "Mariel Jurgens") "M.J.")) +(constraint (= (f "Mariel Jurgens") "M.J.")) +(constraint (= (f "Alida Bogle") "A.B.")) +(constraint (= (f "Alida Bogle") "A.B.")) +(constraint (= (f "Alida Bogle") "A.B.")) +(constraint (= (f "Jacqualine Olague") "J.O.")) +(constraint (= (f "Jacqualine Olague") "J.O.")) +(constraint (= (f "Jacqualine Olague") "J.O.")) +(constraint (= (f "Joaquin Clasen") "J.C.")) +(constraint (= (f "Joaquin Clasen") "J.C.")) +(constraint (= (f "Joaquin Clasen") "J.C.")) +(constraint (= (f "Samuel Richert") "S.R.")) +(constraint (= (f "Samuel Richert") "S.R.")) +(constraint (= (f "Samuel Richert") "S.R.")) +(constraint (= (f "Malissa Marcus") "M.M.")) +(constraint (= (f "Malissa Marcus") "M.M.")) +(constraint (= (f "Malissa Marcus") "M.M.")) +(constraint (= (f "Alaina Partida") "A.P.")) +(constraint (= (f "Alaina Partida") "A.P.")) +(constraint (= (f "Alaina Partida") "A.P.")) +(constraint (= (f "Trinidad Mulloy") "T.M.")) +(constraint (= (f "Trinidad Mulloy") "T.M.")) +(constraint (= (f "Trinidad Mulloy") "T.M.")) +(constraint (= (f "Carlene Garrard") "C.G.")) +(constraint (= (f "Carlene Garrard") "C.G.")) +(constraint (= (f "Carlene Garrard") "C.G.")) +(constraint (= (f "Melodi Chism") "M.C.")) +(constraint (= (f "Melodi Chism") "M.C.")) +(constraint (= (f "Melodi Chism") "M.C.")) +(constraint (= (f "Bess Chilcott") "B.C.")) +(constraint (= (f "Bess Chilcott") "B.C.")) +(constraint (= (f "Bess Chilcott") "B.C.")) +(constraint (= (f "Chong Aylward") "C.A.")) +(constraint (= (f "Chong Aylward") "C.A.")) +(constraint (= (f "Chong Aylward") "C.A.")) +(constraint (= (f "Jani Ramthun") "J.R.")) +(constraint (= (f "Jani Ramthun") "J.R.")) +(constraint (= (f "Jani Ramthun") "J.R.")) +(constraint (= (f "Jacquiline Heintz") "J.H.")) +(constraint (= (f "Jacquiline Heintz") "J.H.")) +(constraint (= (f "Jacquiline Heintz") "J.H.")) +(constraint (= (f "Hayley Marquess") "H.M.")) +(constraint (= (f "Hayley Marquess") "H.M.")) +(constraint (= (f "Hayley Marquess") "H.M.")) +(constraint (= (f "Andria Spagnoli") "A.S.")) +(constraint (= (f "Andria Spagnoli") "A.S.")) +(constraint (= (f "Andria Spagnoli") "A.S.")) +(constraint (= (f "Irwin Covelli") "I.C.")) +(constraint (= (f "Irwin Covelli") "I.C.")) +(constraint (= (f "Irwin Covelli") "I.C.")) +(constraint (= (f "Gertude Montiel") "G.M.")) +(constraint (= (f "Gertude Montiel") "G.M.")) +(constraint (= (f "Gertude Montiel") "G.M.")) +(constraint (= (f "Stefany Reily") "S.R.")) +(constraint (= (f "Stefany Reily") "S.R.")) +(constraint (= (f "Stefany Reily") "S.R.")) +(constraint (= (f "Rae Mcgaughey") "R.M.")) +(constraint (= (f "Rae Mcgaughey") "R.M.")) +(constraint (= (f "Rae Mcgaughey") "R.M.")) +(constraint (= (f "Cruz Latimore") "C.L.")) +(constraint (= (f "Cruz Latimore") "C.L.")) +(constraint (= (f "Cruz Latimore") "C.L.")) +(constraint (= (f "Maryann Casler") "M.C.")) +(constraint (= (f "Maryann Casler") "M.C.")) +(constraint (= (f "Maryann Casler") "M.C.")) +(constraint (= (f "Annalisa Gregori") "A.G.")) +(constraint (= (f "Annalisa Gregori") "A.G.")) +(constraint (= (f "Annalisa Gregori") "A.G.")) +(constraint (= (f "Jenee Pannell") "J.P.")) +(constraint (= (f "Jenee Pannell") "J.P.")) +(constraint (= (f "Jenee Pannell") "J.P.")) +(constraint (= (f "Launa Withers") "L.W.")) +(constraint (= (f "Lakenya Edison") "L.E.")) +(constraint (= (f "Brendan Hage") "B.H.")) +(constraint (= (f "Bradford Lango") "B.L.")) +(constraint (= (f "Rudolf Akiyama") "R.A.")) +(constraint (= (f "Lara Constable") "L.C.")) +(constraint (= (f "Madelaine Ghoston") "M.G.")) +(constraint (= (f "Salley Hornak") "S.H.")) +(constraint (= (f "Micha Junkin") "M.J.")) +(constraint (= (f "Teddy Bobo") "T.B.")) +(constraint (= (f "Coralee Scalia") "C.S.")) +(constraint (= (f "Jeff Quashie") "J.Q.")) +(constraint (= (f "Vena Babiarz") "V.B.")) +(constraint (= (f "Karrie Lain") "K.L.")) +(constraint (= (f "Tobias Dermody") "T.D.")) +(constraint (= (f "Celsa Hopkins") "C.H.")) +(constraint (= (f "Kimberley Halpern") "K.H.")) +(constraint (= (f "Phillip Rowden") "P.R.")) +(constraint (= (f "Elias Neil") "E.N.")) +(constraint (= (f "Lashanda Cortes") "L.C.")) +(constraint (= (f "Mackenzie Spell") "M.S.")) +(constraint (= (f "Kathlyn Eccleston") "K.E.")) +(constraint (= (f "Georgina Brescia") "G.B.")) +(constraint (= (f "Beata Miah") "B.M.")) +(constraint (= (f "Desiree Seamons") "D.S.")) +(constraint (= (f "Jeanice Soderstrom") "J.S.")) +(constraint (= (f "Mariel Jurgens") "M.J.")) +(constraint (= (f "Alida Bogle") "A.B.")) +(constraint (= (f "Jacqualine Olague") "J.O.")) +(constraint (= (f "Joaquin Clasen") "J.C.")) +(constraint (= (f "Samuel Richert") "S.R.")) +(constraint (= (f "Malissa Marcus") "M.M.")) +(constraint (= (f "Alaina Partida") "A.P.")) +(constraint (= (f "Trinidad Mulloy") "T.M.")) +(constraint (= (f "Carlene Garrard") "C.G.")) +(constraint (= (f "Melodi Chism") "M.C.")) +(constraint (= (f "Bess Chilcott") "B.C.")) +(constraint (= (f "Chong Aylward") "C.A.")) +(constraint (= (f "Jani Ramthun") "J.R.")) +(constraint (= (f "Jacquiline Heintz") "J.H.")) +(constraint (= (f "Hayley Marquess") "H.M.")) +(constraint (= (f "Andria Spagnoli") "A.S.")) +(constraint (= (f "Irwin Covelli") "I.C.")) +(constraint (= (f "Gertude Montiel") "G.M.")) +(constraint (= (f "Stefany Reily") "S.R.")) +(constraint (= (f "Rae Mcgaughey") "R.M.")) +(constraint (= (f "Cruz Latimore") "C.L.")) +(constraint (= (f "Maryann Casler") "M.C.")) +(constraint (= (f "Annalisa Gregori") "A.G.")) +(constraint (= (f "Jenee Pannell") "J.P.")) + +(check-synth) diff --git a/PBE_Strings_Track/initials-long.sl b/PBE_Strings_Track/initials-long.sl new file mode 100644 index 0000000000000000000000000000000000000000..a3f2ae220959b31788d4b6223b9d083bb48b3dbf --- /dev/null +++ b/PBE_Strings_Track/initials-long.sl @@ -0,0 +1,80 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "Nancy FreeHafer") "N.F.")) +(constraint (= (f "Andrew Cencici") "A.C.")) +(constraint (= (f "Jan Kotas") "J.K.")) +(constraint (= (f "Mariya Sergienko") "M.S.")) +(constraint (= (f "Launa Withers") "L.W.")) +(constraint (= (f "Lakenya Edison") "L.E.")) +(constraint (= (f "Brendan Hage") "B.H.")) +(constraint (= (f "Bradford Lango") "B.L.")) +(constraint (= (f "Rudolf Akiyama") "R.A.")) +(constraint (= (f "Lara Constable") "L.C.")) +(constraint (= (f "Madelaine Ghoston") "M.G.")) +(constraint (= (f "Salley Hornak") "S.H.")) +(constraint (= (f "Micha Junkin") "M.J.")) +(constraint (= (f "Teddy Bobo") "T.B.")) +(constraint (= (f "Coralee Scalia") "C.S.")) +(constraint (= (f "Jeff Quashie") "J.Q.")) +(constraint (= (f "Vena Babiarz") "V.B.")) +(constraint (= (f "Karrie Lain") "K.L.")) +(constraint (= (f "Tobias Dermody") "T.D.")) +(constraint (= (f "Celsa Hopkins") "C.H.")) +(constraint (= (f "Kimberley Halpern") "K.H.")) +(constraint (= (f "Phillip Rowden") "P.R.")) +(constraint (= (f "Elias Neil") "E.N.")) +(constraint (= (f "Lashanda Cortes") "L.C.")) +(constraint (= (f "Mackenzie Spell") "M.S.")) +(constraint (= (f "Kathlyn Eccleston") "K.E.")) +(constraint (= (f "Georgina Brescia") "G.B.")) +(constraint (= (f "Beata Miah") "B.M.")) +(constraint (= (f "Desiree Seamons") "D.S.")) +(constraint (= (f "Jeanice Soderstrom") "J.S.")) +(constraint (= (f "Mariel Jurgens") "M.J.")) +(constraint (= (f "Alida Bogle") "A.B.")) +(constraint (= (f "Jacqualine Olague") "J.O.")) +(constraint (= (f "Joaquin Clasen") "J.C.")) +(constraint (= (f "Samuel Richert") "S.R.")) +(constraint (= (f "Malissa Marcus") "M.M.")) +(constraint (= (f "Alaina Partida") "A.P.")) +(constraint (= (f "Trinidad Mulloy") "T.M.")) +(constraint (= (f "Carlene Garrard") "C.G.")) +(constraint (= (f "Melodi Chism") "M.C.")) +(constraint (= (f "Bess Chilcott") "B.C.")) +(constraint (= (f "Chong Aylward") "C.A.")) +(constraint (= (f "Jani Ramthun") "J.R.")) +(constraint (= (f "Jacquiline Heintz") "J.H.")) +(constraint (= (f "Hayley Marquess") "H.M.")) +(constraint (= (f "Andria Spagnoli") "A.S.")) +(constraint (= (f "Irwin Covelli") "I.C.")) +(constraint (= (f "Gertude Montiel") "G.M.")) +(constraint (= (f "Stefany Reily") "S.R.")) +(constraint (= (f "Rae Mcgaughey") "R.M.")) +(constraint (= (f "Cruz Latimore") "C.L.")) +(constraint (= (f "Maryann Casler") "M.C.")) +(constraint (= (f "Annalisa Gregori") "A.G.")) +(constraint (= (f "Jenee Pannell") "J.P.")) + +(check-synth) diff --git a/PBE_Strings_Track/initials.sl b/PBE_Strings_Track/initials.sl new file mode 100644 index 0000000000000000000000000000000000000000..109d6b98c58c4fc05ac2f37785e373e199a53d45 --- /dev/null +++ b/PBE_Strings_Track/initials.sl @@ -0,0 +1,30 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "Nancy FreeHafer") "N.F.")) +(constraint (= (f "Andrew Cencici") "A.C.")) +(constraint (= (f "Jan Kotas") "J.K.")) +(constraint (= (f "Mariya Sergienko") "M.S.")) + +(check-synth) diff --git a/PBE_Strings_Track/initials_small.sl b/PBE_Strings_Track/initials_small.sl new file mode 100644 index 0000000000000000000000000000000000000000..b27a6b012ca3b792580e80b494ce32b7f9051e41 --- /dev/null +++ b/PBE_Strings_Track/initials_small.sl @@ -0,0 +1,27 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "Nancy FreeHafer") "N.F.")) +(constraint (= (f "Andrew Cencici") "A.C.")) +(constraint (= (f "Jan Kotas") "J.K.")) +(constraint (= (f "Mariya Sergienko") "M.S.")) + +(check-synth) diff --git a/PBE_Strings_Track/lastname-long-repeat.sl b/PBE_Strings_Track/lastname-long-repeat.sl new file mode 100644 index 0000000000000000000000000000000000000000..eeb850b500ffc36b910fb655bdbb4d54aa80db7b --- /dev/null +++ b/PBE_Strings_Track/lastname-long-repeat.sl @@ -0,0 +1,230 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "Nancy FreeHafer") "FreeHafer")) +(constraint (= (f "Andrew Cencici") "Cencici")) +(constraint (= (f "Jan Kotas") "Kotas")) +(constraint (= (f "Mariya Sergienko") "Sergienko")) +(constraint (= (f "Launa Withers") "Withers")) +(constraint (= (f "Launa Withers") "Withers")) +(constraint (= (f "Launa Withers") "Withers")) +(constraint (= (f "Lakenya Edison") "Edison")) +(constraint (= (f "Lakenya Edison") "Edison")) +(constraint (= (f "Lakenya Edison") "Edison")) +(constraint (= (f "Brendan Hage") "Hage")) +(constraint (= (f "Brendan Hage") "Hage")) +(constraint (= (f "Brendan Hage") "Hage")) +(constraint (= (f "Bradford Lango") "Lango")) +(constraint (= (f "Bradford Lango") "Lango")) +(constraint (= (f "Bradford Lango") "Lango")) +(constraint (= (f "Rudolf Akiyama") "Akiyama")) +(constraint (= (f "Rudolf Akiyama") "Akiyama")) +(constraint (= (f "Rudolf Akiyama") "Akiyama")) +(constraint (= (f "Lara Constable") "Constable")) +(constraint (= (f "Lara Constable") "Constable")) +(constraint (= (f "Lara Constable") "Constable")) +(constraint (= (f "Madelaine Ghoston") "Ghoston")) +(constraint (= (f "Madelaine Ghoston") "Ghoston")) +(constraint (= (f "Madelaine Ghoston") "Ghoston")) +(constraint (= (f "Salley Hornak") "Hornak")) +(constraint (= (f "Salley Hornak") "Hornak")) +(constraint (= (f "Salley Hornak") "Hornak")) +(constraint (= (f "Micha Junkin") "Junkin")) +(constraint (= (f "Micha Junkin") "Junkin")) +(constraint (= (f "Micha Junkin") "Junkin")) +(constraint (= (f "Teddy Bobo") "Bobo")) +(constraint (= (f "Teddy Bobo") "Bobo")) +(constraint (= (f "Teddy Bobo") "Bobo")) +(constraint (= (f "Coralee Scalia") "Scalia")) +(constraint (= (f "Coralee Scalia") "Scalia")) +(constraint (= (f "Coralee Scalia") "Scalia")) +(constraint (= (f "Jeff Quashie") "Quashie")) +(constraint (= (f "Jeff Quashie") "Quashie")) +(constraint (= (f "Jeff Quashie") "Quashie")) +(constraint (= (f "Vena Babiarz") "Babiarz")) +(constraint (= (f "Vena Babiarz") "Babiarz")) +(constraint (= (f "Vena Babiarz") "Babiarz")) +(constraint (= (f "Karrie Lain") "Lain")) +(constraint (= (f "Karrie Lain") "Lain")) +(constraint (= (f "Karrie Lain") "Lain")) +(constraint (= (f "Tobias Dermody") "Dermody")) +(constraint (= (f "Tobias Dermody") "Dermody")) +(constraint (= (f "Tobias Dermody") "Dermody")) +(constraint (= (f "Celsa Hopkins") "Hopkins")) +(constraint (= (f "Celsa Hopkins") "Hopkins")) +(constraint (= (f "Celsa Hopkins") "Hopkins")) +(constraint (= (f "Kimberley Halpern") "Halpern")) +(constraint (= (f "Kimberley Halpern") "Halpern")) +(constraint (= (f "Kimberley Halpern") "Halpern")) +(constraint (= (f "Phillip Rowden") "Rowden")) +(constraint (= (f "Phillip Rowden") "Rowden")) +(constraint (= (f "Phillip Rowden") "Rowden")) +(constraint (= (f "Elias Neil") "Neil")) +(constraint (= (f "Elias Neil") "Neil")) +(constraint (= (f "Elias Neil") "Neil")) +(constraint (= (f "Lashanda Cortes") "Cortes")) +(constraint (= (f "Lashanda Cortes") "Cortes")) +(constraint (= (f "Lashanda Cortes") "Cortes")) +(constraint (= (f "Mackenzie Spell") "Spell")) +(constraint (= (f "Mackenzie Spell") "Spell")) +(constraint (= (f "Mackenzie Spell") "Spell")) +(constraint (= (f "Kathlyn Eccleston") "Eccleston")) +(constraint (= (f "Kathlyn Eccleston") "Eccleston")) +(constraint (= (f "Kathlyn Eccleston") "Eccleston")) +(constraint (= (f "Georgina Brescia") "Brescia")) +(constraint (= (f "Georgina Brescia") "Brescia")) +(constraint (= (f "Georgina Brescia") "Brescia")) +(constraint (= (f "Beata Miah") "Miah")) +(constraint (= (f "Beata Miah") "Miah")) +(constraint (= (f "Beata Miah") "Miah")) +(constraint (= (f "Desiree Seamons") "Seamons")) +(constraint (= (f "Desiree Seamons") "Seamons")) +(constraint (= (f "Desiree Seamons") "Seamons")) +(constraint (= (f "Jeanice Soderstrom") "Soderstrom")) +(constraint (= (f "Jeanice Soderstrom") "Soderstrom")) +(constraint (= (f "Jeanice Soderstrom") "Soderstrom")) +(constraint (= (f "Mariel Jurgens") "Jurgens")) +(constraint (= (f "Mariel Jurgens") "Jurgens")) +(constraint (= (f "Mariel Jurgens") "Jurgens")) +(constraint (= (f "Alida Bogle") "Bogle")) +(constraint (= (f "Alida Bogle") "Bogle")) +(constraint (= (f "Alida Bogle") "Bogle")) +(constraint (= (f "Jacqualine Olague") "Olague")) +(constraint (= (f "Jacqualine Olague") "Olague")) +(constraint (= (f "Jacqualine Olague") "Olague")) +(constraint (= (f "Joaquin Clasen") "Clasen")) +(constraint (= (f "Joaquin Clasen") "Clasen")) +(constraint (= (f "Joaquin Clasen") "Clasen")) +(constraint (= (f "Samuel Richert") "Richert")) +(constraint (= (f "Samuel Richert") "Richert")) +(constraint (= (f "Samuel Richert") "Richert")) +(constraint (= (f "Malissa Marcus") "Marcus")) +(constraint (= (f "Malissa Marcus") "Marcus")) +(constraint (= (f "Malissa Marcus") "Marcus")) +(constraint (= (f "Alaina Partida") "Partida")) +(constraint (= (f "Alaina Partida") "Partida")) +(constraint (= (f "Alaina Partida") "Partida")) +(constraint (= (f "Trinidad Mulloy") "Mulloy")) +(constraint (= (f "Trinidad Mulloy") "Mulloy")) +(constraint (= (f "Trinidad Mulloy") "Mulloy")) +(constraint (= (f "Carlene Garrard") "Garrard")) +(constraint (= (f "Carlene Garrard") "Garrard")) +(constraint (= (f "Carlene Garrard") "Garrard")) +(constraint (= (f "Melodi Chism") "Chism")) +(constraint (= (f "Melodi Chism") "Chism")) +(constraint (= (f "Melodi Chism") "Chism")) +(constraint (= (f "Bess Chilcott") "Chilcott")) +(constraint (= (f "Bess Chilcott") "Chilcott")) +(constraint (= (f "Bess Chilcott") "Chilcott")) +(constraint (= (f "Chong Aylward") "Aylward")) +(constraint (= (f "Chong Aylward") "Aylward")) +(constraint (= (f "Chong Aylward") "Aylward")) +(constraint (= (f "Jani Ramthun") "Ramthun")) +(constraint (= (f "Jani Ramthun") "Ramthun")) +(constraint (= (f "Jani Ramthun") "Ramthun")) +(constraint (= (f "Jacquiline Heintz") "Heintz")) +(constraint (= (f "Jacquiline Heintz") "Heintz")) +(constraint (= (f "Jacquiline Heintz") "Heintz")) +(constraint (= (f "Hayley Marquess") "Marquess")) +(constraint (= (f "Hayley Marquess") "Marquess")) +(constraint (= (f "Hayley Marquess") "Marquess")) +(constraint (= (f "Andria Spagnoli") "Spagnoli")) +(constraint (= (f "Andria Spagnoli") "Spagnoli")) +(constraint (= (f "Andria Spagnoli") "Spagnoli")) +(constraint (= (f "Irwin Covelli") "Covelli")) +(constraint (= (f "Irwin Covelli") "Covelli")) +(constraint (= (f "Irwin Covelli") "Covelli")) +(constraint (= (f "Gertude Montiel") "Montiel")) +(constraint (= (f "Gertude Montiel") "Montiel")) +(constraint (= (f "Gertude Montiel") "Montiel")) +(constraint (= (f "Stefany Reily") "Reily")) +(constraint (= (f "Stefany Reily") "Reily")) +(constraint (= (f "Stefany Reily") "Reily")) +(constraint (= (f "Rae Mcgaughey") "Mcgaughey")) +(constraint (= (f "Rae Mcgaughey") "Mcgaughey")) +(constraint (= (f "Rae Mcgaughey") "Mcgaughey")) +(constraint (= (f "Cruz Latimore") "Latimore")) +(constraint (= (f "Cruz Latimore") "Latimore")) +(constraint (= (f "Cruz Latimore") "Latimore")) +(constraint (= (f "Maryann Casler") "Casler")) +(constraint (= (f "Maryann Casler") "Casler")) +(constraint (= (f "Maryann Casler") "Casler")) +(constraint (= (f "Annalisa Gregori") "Gregori")) +(constraint (= (f "Annalisa Gregori") "Gregori")) +(constraint (= (f "Annalisa Gregori") "Gregori")) +(constraint (= (f "Jenee Pannell") "Pannell")) +(constraint (= (f "Jenee Pannell") "Pannell")) +(constraint (= (f "Jenee Pannell") "Pannell")) +(constraint (= (f "Launa Withers") "Withers")) +(constraint (= (f "Lakenya Edison") "Edison")) +(constraint (= (f "Brendan Hage") "Hage")) +(constraint (= (f "Bradford Lango") "Lango")) +(constraint (= (f "Rudolf Akiyama") "Akiyama")) +(constraint (= (f "Lara Constable") "Constable")) +(constraint (= (f "Madelaine Ghoston") "Ghoston")) +(constraint (= (f "Salley Hornak") "Hornak")) +(constraint (= (f "Micha Junkin") "Junkin")) +(constraint (= (f "Teddy Bobo") "Bobo")) +(constraint (= (f "Coralee Scalia") "Scalia")) +(constraint (= (f "Jeff Quashie") "Quashie")) +(constraint (= (f "Vena Babiarz") "Babiarz")) +(constraint (= (f "Karrie Lain") "Lain")) +(constraint (= (f "Tobias Dermody") "Dermody")) +(constraint (= (f "Celsa Hopkins") "Hopkins")) +(constraint (= (f "Kimberley Halpern") "Halpern")) +(constraint (= (f "Phillip Rowden") "Rowden")) +(constraint (= (f "Elias Neil") "Neil")) +(constraint (= (f "Lashanda Cortes") "Cortes")) +(constraint (= (f "Mackenzie Spell") "Spell")) +(constraint (= (f "Kathlyn Eccleston") "Eccleston")) +(constraint (= (f "Georgina Brescia") "Brescia")) +(constraint (= (f "Beata Miah") "Miah")) +(constraint (= (f "Desiree Seamons") "Seamons")) +(constraint (= (f "Jeanice Soderstrom") "Soderstrom")) +(constraint (= (f "Mariel Jurgens") "Jurgens")) +(constraint (= (f "Alida Bogle") "Bogle")) +(constraint (= (f "Jacqualine Olague") "Olague")) +(constraint (= (f "Joaquin Clasen") "Clasen")) +(constraint (= (f "Samuel Richert") "Richert")) +(constraint (= (f "Malissa Marcus") "Marcus")) +(constraint (= (f "Alaina Partida") "Partida")) +(constraint (= (f "Trinidad Mulloy") "Mulloy")) +(constraint (= (f "Carlene Garrard") "Garrard")) +(constraint (= (f "Melodi Chism") "Chism")) +(constraint (= (f "Bess Chilcott") "Chilcott")) +(constraint (= (f "Chong Aylward") "Aylward")) +(constraint (= (f "Jani Ramthun") "Ramthun")) +(constraint (= (f "Jacquiline Heintz") "Heintz")) +(constraint (= (f "Hayley Marquess") "Marquess")) +(constraint (= (f "Andria Spagnoli") "Spagnoli")) +(constraint (= (f "Irwin Covelli") "Covelli")) +(constraint (= (f "Gertude Montiel") "Montiel")) +(constraint (= (f "Stefany Reily") "Reily")) +(constraint (= (f "Rae Mcgaughey") "Mcgaughey")) +(constraint (= (f "Cruz Latimore") "Latimore")) +(constraint (= (f "Maryann Casler") "Casler")) +(constraint (= (f "Annalisa Gregori") "Gregori")) +(constraint (= (f "Jenee Pannell") "Pannell")) + +(check-synth) diff --git a/PBE_Strings_Track/lastname-long.sl b/PBE_Strings_Track/lastname-long.sl new file mode 100644 index 0000000000000000000000000000000000000000..d99d2138981580398a24f7124ced63f6a43bb519 --- /dev/null +++ b/PBE_Strings_Track/lastname-long.sl @@ -0,0 +1,80 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "Nancy FreeHafer") "FreeHafer")) +(constraint (= (f "Andrew Cencici") "Cencici")) +(constraint (= (f "Jan Kotas") "Kotas")) +(constraint (= (f "Mariya Sergienko") "Sergienko")) +(constraint (= (f "Launa Withers") "Withers")) +(constraint (= (f "Lakenya Edison") "Edison")) +(constraint (= (f "Brendan Hage") "Hage")) +(constraint (= (f "Bradford Lango") "Lango")) +(constraint (= (f "Rudolf Akiyama") "Akiyama")) +(constraint (= (f "Lara Constable") "Constable")) +(constraint (= (f "Madelaine Ghoston") "Ghoston")) +(constraint (= (f "Salley Hornak") "Hornak")) +(constraint (= (f "Micha Junkin") "Junkin")) +(constraint (= (f "Teddy Bobo") "Bobo")) +(constraint (= (f "Coralee Scalia") "Scalia")) +(constraint (= (f "Jeff Quashie") "Quashie")) +(constraint (= (f "Vena Babiarz") "Babiarz")) +(constraint (= (f "Karrie Lain") "Lain")) +(constraint (= (f "Tobias Dermody") "Dermody")) +(constraint (= (f "Celsa Hopkins") "Hopkins")) +(constraint (= (f "Kimberley Halpern") "Halpern")) +(constraint (= (f "Phillip Rowden") "Rowden")) +(constraint (= (f "Elias Neil") "Neil")) +(constraint (= (f "Lashanda Cortes") "Cortes")) +(constraint (= (f "Mackenzie Spell") "Spell")) +(constraint (= (f "Kathlyn Eccleston") "Eccleston")) +(constraint (= (f "Georgina Brescia") "Brescia")) +(constraint (= (f "Beata Miah") "Miah")) +(constraint (= (f "Desiree Seamons") "Seamons")) +(constraint (= (f "Jeanice Soderstrom") "Soderstrom")) +(constraint (= (f "Mariel Jurgens") "Jurgens")) +(constraint (= (f "Alida Bogle") "Bogle")) +(constraint (= (f "Jacqualine Olague") "Olague")) +(constraint (= (f "Joaquin Clasen") "Clasen")) +(constraint (= (f "Samuel Richert") "Richert")) +(constraint (= (f "Malissa Marcus") "Marcus")) +(constraint (= (f "Alaina Partida") "Partida")) +(constraint (= (f "Trinidad Mulloy") "Mulloy")) +(constraint (= (f "Carlene Garrard") "Garrard")) +(constraint (= (f "Melodi Chism") "Chism")) +(constraint (= (f "Bess Chilcott") "Chilcott")) +(constraint (= (f "Chong Aylward") "Aylward")) +(constraint (= (f "Jani Ramthun") "Ramthun")) +(constraint (= (f "Jacquiline Heintz") "Heintz")) +(constraint (= (f "Hayley Marquess") "Marquess")) +(constraint (= (f "Andria Spagnoli") "Spagnoli")) +(constraint (= (f "Irwin Covelli") "Covelli")) +(constraint (= (f "Gertude Montiel") "Montiel")) +(constraint (= (f "Stefany Reily") "Reily")) +(constraint (= (f "Rae Mcgaughey") "Mcgaughey")) +(constraint (= (f "Cruz Latimore") "Latimore")) +(constraint (= (f "Maryann Casler") "Casler")) +(constraint (= (f "Annalisa Gregori") "Gregori")) +(constraint (= (f "Jenee Pannell") "Pannell")) + +(check-synth) diff --git a/PBE_Strings_Track/lastname.sl b/PBE_Strings_Track/lastname.sl new file mode 100644 index 0000000000000000000000000000000000000000..7ea669087f1ad6e449678a325fb25c15b16d0839 --- /dev/null +++ b/PBE_Strings_Track/lastname.sl @@ -0,0 +1,30 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "Nancy FreeHafer") "FreeHafer")) +(constraint (= (f "Andrew Cencici") "Cencici")) +(constraint (= (f "Jan Kotas") "Kotas")) +(constraint (= (f "Mariya Sergienko") "Sergienko")) + +(check-synth) diff --git a/PBE_Strings_Track/lastname_small.sl b/PBE_Strings_Track/lastname_small.sl new file mode 100644 index 0000000000000000000000000000000000000000..81df2c3dc0c068befe988363f7f1e55806d2ac2f --- /dev/null +++ b/PBE_Strings_Track/lastname_small.sl @@ -0,0 +1,27 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "Nancy FreeHafer") "FreeHafer")) +(constraint (= (f "Andrew Cencici") "Cencici")) +(constraint (= (f "Jan Kotas") "Kotas")) +(constraint (= (f "Mariya Sergienko") "Sergienko")) + +(check-synth) diff --git a/PBE_Strings_Track/name-combine-2-long-repeat.sl b/PBE_Strings_Track/name-combine-2-long-repeat.sl new file mode 100644 index 0000000000000000000000000000000000000000..b8b0cc7d55972ae0549e7b57f3ac102bfe99ba25 --- /dev/null +++ b/PBE_Strings_Track/name-combine-2-long-repeat.sl @@ -0,0 +1,231 @@ +(set-logic SLIA) + +(synth-fun f ((firstname String) (lastname String)) String + ((Start String (ntString)) + (ntString String (firstname lastname " " "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var firstname String) +(declare-var lastname String) + +(constraint (= (f "Nancy" "FreeHafer") "Nancy F.")) +(constraint (= (f "Andrew" "Cencici") "Andrew C.")) +(constraint (= (f "Jan" "Kotas") "Jan K.")) +(constraint (= (f "Mariya" "Sergienko") "Mariya S.")) +(constraint (= (f "Launa" "Withers") "Launa W.")) +(constraint (= (f "Launa" "Withers") "Launa W.")) +(constraint (= (f "Launa" "Withers") "Launa W.")) +(constraint (= (f "Lakenya" "Edison") "Lakenya E.")) +(constraint (= (f "Lakenya" "Edison") "Lakenya E.")) +(constraint (= (f "Lakenya" "Edison") "Lakenya E.")) +(constraint (= (f "Brendan" "Hage") "Brendan H.")) +(constraint (= (f "Brendan" "Hage") "Brendan H.")) +(constraint (= (f "Brendan" "Hage") "Brendan H.")) +(constraint (= (f "Bradford" "Lango") "Bradford L.")) +(constraint (= (f "Bradford" "Lango") "Bradford L.")) +(constraint (= (f "Bradford" "Lango") "Bradford L.")) +(constraint (= (f "Rudolf" "Akiyama") "Rudolf A.")) +(constraint (= (f "Rudolf" "Akiyama") "Rudolf A.")) +(constraint (= (f "Rudolf" "Akiyama") "Rudolf A.")) +(constraint (= (f "Lara" "Constable") "Lara C.")) +(constraint (= (f "Lara" "Constable") "Lara C.")) +(constraint (= (f "Lara" "Constable") "Lara C.")) +(constraint (= (f "Madelaine" "Ghoston") "Madelaine G.")) +(constraint (= (f "Madelaine" "Ghoston") "Madelaine G.")) +(constraint (= (f "Madelaine" "Ghoston") "Madelaine G.")) +(constraint (= (f "Salley" "Hornak") "Salley H.")) +(constraint (= (f "Salley" "Hornak") "Salley H.")) +(constraint (= (f "Salley" "Hornak") "Salley H.")) +(constraint (= (f "Micha" "Junkin") "Micha J.")) +(constraint (= (f "Micha" "Junkin") "Micha J.")) +(constraint (= (f "Micha" "Junkin") "Micha J.")) +(constraint (= (f "Teddy" "Bobo") "Teddy B.")) +(constraint (= (f "Teddy" "Bobo") "Teddy B.")) +(constraint (= (f "Teddy" "Bobo") "Teddy B.")) +(constraint (= (f "Coralee" "Scalia") "Coralee S.")) +(constraint (= (f "Coralee" "Scalia") "Coralee S.")) +(constraint (= (f "Coralee" "Scalia") "Coralee S.")) +(constraint (= (f "Jeff" "Quashie") "Jeff Q.")) +(constraint (= (f "Jeff" "Quashie") "Jeff Q.")) +(constraint (= (f "Jeff" "Quashie") "Jeff Q.")) +(constraint (= (f "Vena" "Babiarz") "Vena B.")) +(constraint (= (f "Vena" "Babiarz") "Vena B.")) +(constraint (= (f "Vena" "Babiarz") "Vena B.")) +(constraint (= (f "Karrie" "Lain") "Karrie L.")) +(constraint (= (f "Karrie" "Lain") "Karrie L.")) +(constraint (= (f "Karrie" "Lain") "Karrie L.")) +(constraint (= (f "Tobias" "Dermody") "Tobias D.")) +(constraint (= (f "Tobias" "Dermody") "Tobias D.")) +(constraint (= (f "Tobias" "Dermody") "Tobias D.")) +(constraint (= (f "Celsa" "Hopkins") "Celsa H.")) +(constraint (= (f "Celsa" "Hopkins") "Celsa H.")) +(constraint (= (f "Celsa" "Hopkins") "Celsa H.")) +(constraint (= (f "Kimberley" "Halpern") "Kimberley H.")) +(constraint (= (f "Kimberley" "Halpern") "Kimberley H.")) +(constraint (= (f "Kimberley" "Halpern") "Kimberley H.")) +(constraint (= (f "Phillip" "Rowden") "Phillip R.")) +(constraint (= (f "Phillip" "Rowden") "Phillip R.")) +(constraint (= (f "Phillip" "Rowden") "Phillip R.")) +(constraint (= (f "Elias" "Neil") "Elias N.")) +(constraint (= (f "Elias" "Neil") "Elias N.")) +(constraint (= (f "Elias" "Neil") "Elias N.")) +(constraint (= (f "Lashanda" "Cortes") "Lashanda C.")) +(constraint (= (f "Lashanda" "Cortes") "Lashanda C.")) +(constraint (= (f "Lashanda" "Cortes") "Lashanda C.")) +(constraint (= (f "Mackenzie" "Spell") "Mackenzie S.")) +(constraint (= (f "Mackenzie" "Spell") "Mackenzie S.")) +(constraint (= (f "Mackenzie" "Spell") "Mackenzie S.")) +(constraint (= (f "Kathlyn" "Eccleston") "Kathlyn E.")) +(constraint (= (f "Kathlyn" "Eccleston") "Kathlyn E.")) +(constraint (= (f "Kathlyn" "Eccleston") "Kathlyn E.")) +(constraint (= (f "Georgina" "Brescia") "Georgina B.")) +(constraint (= (f "Georgina" "Brescia") "Georgina B.")) +(constraint (= (f "Georgina" "Brescia") "Georgina B.")) +(constraint (= (f "Beata" "Miah") "Beata M.")) +(constraint (= (f "Beata" "Miah") "Beata M.")) +(constraint (= (f "Beata" "Miah") "Beata M.")) +(constraint (= (f "Desiree" "Seamons") "Desiree S.")) +(constraint (= (f "Desiree" "Seamons") "Desiree S.")) +(constraint (= (f "Desiree" "Seamons") "Desiree S.")) +(constraint (= (f "Jeanice" "Soderstrom") "Jeanice S.")) +(constraint (= (f "Jeanice" "Soderstrom") "Jeanice S.")) +(constraint (= (f "Jeanice" "Soderstrom") "Jeanice S.")) +(constraint (= (f "Mariel" "Jurgens") "Mariel J.")) +(constraint (= (f "Mariel" "Jurgens") "Mariel J.")) +(constraint (= (f "Mariel" "Jurgens") "Mariel J.")) +(constraint (= (f "Alida" "Bogle") "Alida B.")) +(constraint (= (f "Alida" "Bogle") "Alida B.")) +(constraint (= (f "Alida" "Bogle") "Alida B.")) +(constraint (= (f "Jacqualine" "Olague") "Jacqualine O.")) +(constraint (= (f "Jacqualine" "Olague") "Jacqualine O.")) +(constraint (= (f "Jacqualine" "Olague") "Jacqualine O.")) +(constraint (= (f "Joaquin" "Clasen") "Joaquin C.")) +(constraint (= (f "Joaquin" "Clasen") "Joaquin C.")) +(constraint (= (f "Joaquin" "Clasen") "Joaquin C.")) +(constraint (= (f "Samuel" "Richert") "Samuel R.")) +(constraint (= (f "Samuel" "Richert") "Samuel R.")) +(constraint (= (f "Samuel" "Richert") "Samuel R.")) +(constraint (= (f "Malissa" "Marcus") "Malissa M.")) +(constraint (= (f "Malissa" "Marcus") "Malissa M.")) +(constraint (= (f "Malissa" "Marcus") "Malissa M.")) +(constraint (= (f "Alaina" "Partida") "Alaina P.")) +(constraint (= (f "Alaina" "Partida") "Alaina P.")) +(constraint (= (f "Alaina" "Partida") "Alaina P.")) +(constraint (= (f "Trinidad" "Mulloy") "Trinidad M.")) +(constraint (= (f "Trinidad" "Mulloy") "Trinidad M.")) +(constraint (= (f "Trinidad" "Mulloy") "Trinidad M.")) +(constraint (= (f "Carlene" "Garrard") "Carlene G.")) +(constraint (= (f "Carlene" "Garrard") "Carlene G.")) +(constraint (= (f "Carlene" "Garrard") "Carlene G.")) +(constraint (= (f "Melodi" "Chism") "Melodi C.")) +(constraint (= (f "Melodi" "Chism") "Melodi C.")) +(constraint (= (f "Melodi" "Chism") "Melodi C.")) +(constraint (= (f "Bess" "Chilcott") "Bess C.")) +(constraint (= (f "Bess" "Chilcott") "Bess C.")) +(constraint (= (f "Bess" "Chilcott") "Bess C.")) +(constraint (= (f "Chong" "Aylward") "Chong A.")) +(constraint (= (f "Chong" "Aylward") "Chong A.")) +(constraint (= (f "Chong" "Aylward") "Chong A.")) +(constraint (= (f "Jani" "Ramthun") "Jani R.")) +(constraint (= (f "Jani" "Ramthun") "Jani R.")) +(constraint (= (f "Jani" "Ramthun") "Jani R.")) +(constraint (= (f "Jacquiline" "Heintz") "Jacquiline H.")) +(constraint (= (f "Jacquiline" "Heintz") "Jacquiline H.")) +(constraint (= (f "Jacquiline" "Heintz") "Jacquiline H.")) +(constraint (= (f "Hayley" "Marquess") "Hayley M.")) +(constraint (= (f "Hayley" "Marquess") "Hayley M.")) +(constraint (= (f "Hayley" "Marquess") "Hayley M.")) +(constraint (= (f "Andria" "Spagnoli") "Andria S.")) +(constraint (= (f "Andria" "Spagnoli") "Andria S.")) +(constraint (= (f "Andria" "Spagnoli") "Andria S.")) +(constraint (= (f "Irwin" "Covelli") "Irwin C.")) +(constraint (= (f "Irwin" "Covelli") "Irwin C.")) +(constraint (= (f "Irwin" "Covelli") "Irwin C.")) +(constraint (= (f "Gertude" "Montiel") "Gertude M.")) +(constraint (= (f "Gertude" "Montiel") "Gertude M.")) +(constraint (= (f "Gertude" "Montiel") "Gertude M.")) +(constraint (= (f "Stefany" "Reily") "Stefany R.")) +(constraint (= (f "Stefany" "Reily") "Stefany R.")) +(constraint (= (f "Stefany" "Reily") "Stefany R.")) +(constraint (= (f "Rae" "Mcgaughey") "Rae M.")) +(constraint (= (f "Rae" "Mcgaughey") "Rae M.")) +(constraint (= (f "Rae" "Mcgaughey") "Rae M.")) +(constraint (= (f "Cruz" "Latimore") "Cruz L.")) +(constraint (= (f "Cruz" "Latimore") "Cruz L.")) +(constraint (= (f "Cruz" "Latimore") "Cruz L.")) +(constraint (= (f "Maryann" "Casler") "Maryann C.")) +(constraint (= (f "Maryann" "Casler") "Maryann C.")) +(constraint (= (f "Maryann" "Casler") "Maryann C.")) +(constraint (= (f "Annalisa" "Gregori") "Annalisa G.")) +(constraint (= (f "Annalisa" "Gregori") "Annalisa G.")) +(constraint (= (f "Annalisa" "Gregori") "Annalisa G.")) +(constraint (= (f "Jenee" "Pannell") "Jenee P.")) +(constraint (= (f "Jenee" "Pannell") "Jenee P.")) +(constraint (= (f "Jenee" "Pannell") "Jenee P.")) +(constraint (= (f "Launa" "Withers") "Launa W.")) +(constraint (= (f "Lakenya" "Edison") "Lakenya E.")) +(constraint (= (f "Brendan" "Hage") "Brendan H.")) +(constraint (= (f "Bradford" "Lango") "Bradford L.")) +(constraint (= (f "Rudolf" "Akiyama") "Rudolf A.")) +(constraint (= (f "Lara" "Constable") "Lara C.")) +(constraint (= (f "Madelaine" "Ghoston") "Madelaine G.")) +(constraint (= (f "Salley" "Hornak") "Salley H.")) +(constraint (= (f "Micha" "Junkin") "Micha J.")) +(constraint (= (f "Teddy" "Bobo") "Teddy B.")) +(constraint (= (f "Coralee" "Scalia") "Coralee S.")) +(constraint (= (f "Jeff" "Quashie") "Jeff Q.")) +(constraint (= (f "Vena" "Babiarz") "Vena B.")) +(constraint (= (f "Karrie" "Lain") "Karrie L.")) +(constraint (= (f "Tobias" "Dermody") "Tobias D.")) +(constraint (= (f "Celsa" "Hopkins") "Celsa H.")) +(constraint (= (f "Kimberley" "Halpern") "Kimberley H.")) +(constraint (= (f "Phillip" "Rowden") "Phillip R.")) +(constraint (= (f "Elias" "Neil") "Elias N.")) +(constraint (= (f "Lashanda" "Cortes") "Lashanda C.")) +(constraint (= (f "Mackenzie" "Spell") "Mackenzie S.")) +(constraint (= (f "Kathlyn" "Eccleston") "Kathlyn E.")) +(constraint (= (f "Georgina" "Brescia") "Georgina B.")) +(constraint (= (f "Beata" "Miah") "Beata M.")) +(constraint (= (f "Desiree" "Seamons") "Desiree S.")) +(constraint (= (f "Jeanice" "Soderstrom") "Jeanice S.")) +(constraint (= (f "Mariel" "Jurgens") "Mariel J.")) +(constraint (= (f "Alida" "Bogle") "Alida B.")) +(constraint (= (f "Jacqualine" "Olague") "Jacqualine O.")) +(constraint (= (f "Joaquin" "Clasen") "Joaquin C.")) +(constraint (= (f "Samuel" "Richert") "Samuel R.")) +(constraint (= (f "Malissa" "Marcus") "Malissa M.")) +(constraint (= (f "Alaina" "Partida") "Alaina P.")) +(constraint (= (f "Trinidad" "Mulloy") "Trinidad M.")) +(constraint (= (f "Carlene" "Garrard") "Carlene G.")) +(constraint (= (f "Melodi" "Chism") "Melodi C.")) +(constraint (= (f "Bess" "Chilcott") "Bess C.")) +(constraint (= (f "Chong" "Aylward") "Chong A.")) +(constraint (= (f "Jani" "Ramthun") "Jani R.")) +(constraint (= (f "Jacquiline" "Heintz") "Jacquiline H.")) +(constraint (= (f "Hayley" "Marquess") "Hayley M.")) +(constraint (= (f "Andria" "Spagnoli") "Andria S.")) +(constraint (= (f "Irwin" "Covelli") "Irwin C.")) +(constraint (= (f "Gertude" "Montiel") "Gertude M.")) +(constraint (= (f "Stefany" "Reily") "Stefany R.")) +(constraint (= (f "Rae" "Mcgaughey") "Rae M.")) +(constraint (= (f "Cruz" "Latimore") "Cruz L.")) +(constraint (= (f "Maryann" "Casler") "Maryann C.")) +(constraint (= (f "Annalisa" "Gregori") "Annalisa G.")) +(constraint (= (f "Jenee" "Pannell") "Jenee P.")) + +(check-synth) diff --git a/PBE_Strings_Track/name-combine-2-long.sl b/PBE_Strings_Track/name-combine-2-long.sl new file mode 100644 index 0000000000000000000000000000000000000000..a14df1ae4fd0bd8840aeb5f6afb8b74920547b30 --- /dev/null +++ b/PBE_Strings_Track/name-combine-2-long.sl @@ -0,0 +1,82 @@ +(set-logic SLIA) + +(synth-fun f ((firstname String) (lastname String)) String + ((Start String (ntString)) + (ntString String (firstname lastname " " "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var firstname String) +(declare-var lastname String) + + +(constraint (= (f "Nancy" "FreeHafer") "Nancy F.")) +(constraint (= (f "Andrew" "Cencici") "Andrew C.")) +(constraint (= (f "Jan" "Kotas") "Jan K.")) +(constraint (= (f "Mariya" "Sergienko") "Mariya S.")) +(constraint (= (f "Launa" "Withers") "Launa W.")) +(constraint (= (f "Lakenya" "Edison") "Lakenya E.")) +(constraint (= (f "Brendan" "Hage") "Brendan H.")) +(constraint (= (f "Bradford" "Lango") "Bradford L.")) +(constraint (= (f "Rudolf" "Akiyama") "Rudolf A.")) +(constraint (= (f "Lara" "Constable") "Lara C.")) +(constraint (= (f "Madelaine" "Ghoston") "Madelaine G.")) +(constraint (= (f "Salley" "Hornak") "Salley H.")) +(constraint (= (f "Micha" "Junkin") "Micha J.")) +(constraint (= (f "Teddy" "Bobo") "Teddy B.")) +(constraint (= (f "Coralee" "Scalia") "Coralee S.")) +(constraint (= (f "Jeff" "Quashie") "Jeff Q.")) +(constraint (= (f "Vena" "Babiarz") "Vena B.")) +(constraint (= (f "Karrie" "Lain") "Karrie L.")) +(constraint (= (f "Tobias" "Dermody") "Tobias D.")) +(constraint (= (f "Celsa" "Hopkins") "Celsa H.")) +(constraint (= (f "Kimberley" "Halpern") "Kimberley H.")) +(constraint (= (f "Phillip" "Rowden") "Phillip R.")) +(constraint (= (f "Elias" "Neil") "Elias N.")) +(constraint (= (f "Lashanda" "Cortes") "Lashanda C.")) +(constraint (= (f "Mackenzie" "Spell") "Mackenzie S.")) +(constraint (= (f "Kathlyn" "Eccleston") "Kathlyn E.")) +(constraint (= (f "Georgina" "Brescia") "Georgina B.")) +(constraint (= (f "Beata" "Miah") "Beata M.")) +(constraint (= (f "Desiree" "Seamons") "Desiree S.")) +(constraint (= (f "Jeanice" "Soderstrom") "Jeanice S.")) +(constraint (= (f "Mariel" "Jurgens") "Mariel J.")) +(constraint (= (f "Alida" "Bogle") "Alida B.")) +(constraint (= (f "Jacqualine" "Olague") "Jacqualine O.")) +(constraint (= (f "Joaquin" "Clasen") "Joaquin C.")) +(constraint (= (f "Samuel" "Richert") "Samuel R.")) +(constraint (= (f "Malissa" "Marcus") "Malissa M.")) +(constraint (= (f "Alaina" "Partida") "Alaina P.")) +(constraint (= (f "Trinidad" "Mulloy") "Trinidad M.")) +(constraint (= (f "Carlene" "Garrard") "Carlene G.")) +(constraint (= (f "Melodi" "Chism") "Melodi C.")) +(constraint (= (f "Bess" "Chilcott") "Bess C.")) +(constraint (= (f "Chong" "Aylward") "Chong A.")) +(constraint (= (f "Jani" "Ramthun") "Jani R.")) +(constraint (= (f "Jacquiline" "Heintz") "Jacquiline H.")) +(constraint (= (f "Hayley" "Marquess") "Hayley M.")) +(constraint (= (f "Andria" "Spagnoli") "Andria S.")) +(constraint (= (f "Irwin" "Covelli") "Irwin C.")) +(constraint (= (f "Gertude" "Montiel") "Gertude M.")) +(constraint (= (f "Stefany" "Reily") "Stefany R.")) +(constraint (= (f "Rae" "Mcgaughey") "Rae M.")) +(constraint (= (f "Cruz" "Latimore") "Cruz L.")) +(constraint (= (f "Maryann" "Casler") "Maryann C.")) +(constraint (= (f "Annalisa" "Gregori") "Annalisa G.")) +(constraint (= (f "Jenee" "Pannell") "Jenee P.")) + +(check-synth) diff --git a/PBE_Strings_Track/name-combine-2.sl b/PBE_Strings_Track/name-combine-2.sl new file mode 100644 index 0000000000000000000000000000000000000000..bf770482b723e49f8959dd8e4f58335710ed4aae --- /dev/null +++ b/PBE_Strings_Track/name-combine-2.sl @@ -0,0 +1,29 @@ +(set-logic SLIA) + +(synth-fun f ((firstname String) (lastname String)) String + ((Start String (ntString)) + (ntString String (firstname lastname " " "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString))))) + + +(declare-var firstname String) +(declare-var lastname String) + + +(constraint (= (f "Nancy" "FreeHafer") "Nancy F.")) +(constraint (= (f "Andrew" "Cencici") "Andrew C.")) +(constraint (= (f "Jan" "Kotas") "Jan K.")) +(constraint (= (f "Mariya" "Sergienko") "Mariya S.")) + +(check-synth) diff --git a/PBE_Strings_Track/name-combine-2_short.sl b/PBE_Strings_Track/name-combine-2_short.sl new file mode 100644 index 0000000000000000000000000000000000000000..9489ea776585a3e3533fe4704081b81bcbab8a64 --- /dev/null +++ b/PBE_Strings_Track/name-combine-2_short.sl @@ -0,0 +1,32 @@ +(set-logic SLIA) + +(synth-fun f ((firstname String) (lastname String)) String + ((Start String (ntString)) + (ntString String (firstname lastname " " "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var firstname String) +(declare-var lastname String) + + +(constraint (= (f "Nancy" "FreeHafer") "Nancy F.")) +(constraint (= (f "Andrew" "Cencici") "Andrew C.")) +(constraint (= (f "Jan" "Kotas") "Jan K.")) +(constraint (= (f "Mariya" "Sergienko") "Mariya S.")) + +(check-synth) diff --git a/PBE_Strings_Track/name-combine-3-long-repeat.sl b/PBE_Strings_Track/name-combine-3-long-repeat.sl new file mode 100644 index 0000000000000000000000000000000000000000..9c5834a59eacff3d623321e76a20232983d6ca7f --- /dev/null +++ b/PBE_Strings_Track/name-combine-3-long-repeat.sl @@ -0,0 +1,228 @@ +(set-logic SLIA) + +(synth-fun f ((firstname String) (lastname String)) String + ((Start String (ntString)) + (ntString String (firstname lastname " " "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var firstname String) +(declare-var lastname String) + +(constraint (= (f "Launa" "Withers") "L. Withers")) +(constraint (= (f "Launa" "Withers") "L. Withers")) +(constraint (= (f "Launa" "Withers") "L. Withers")) +(constraint (= (f "Lakenya" "Edison") "L. Edison")) +(constraint (= (f "Lakenya" "Edison") "L. Edison")) +(constraint (= (f "Lakenya" "Edison") "L. Edison")) +(constraint (= (f "Brendan" "Hage") "B. Hage")) +(constraint (= (f "Brendan" "Hage") "B. Hage")) +(constraint (= (f "Brendan" "Hage") "B. Hage")) +(constraint (= (f "Bradford" "Lango") "B. Lango")) +(constraint (= (f "Bradford" "Lango") "B. Lango")) +(constraint (= (f "Bradford" "Lango") "B. Lango")) +(constraint (= (f "Rudolf" "Akiyama") "R. Akiyama")) +(constraint (= (f "Rudolf" "Akiyama") "R. Akiyama")) +(constraint (= (f "Rudolf" "Akiyama") "R. Akiyama")) +(constraint (= (f "Lara" "Constable") "L. Constable")) +(constraint (= (f "Lara" "Constable") "L. Constable")) +(constraint (= (f "Lara" "Constable") "L. Constable")) +(constraint (= (f "Madelaine" "Ghoston") "M. Ghoston")) +(constraint (= (f "Madelaine" "Ghoston") "M. Ghoston")) +(constraint (= (f "Madelaine" "Ghoston") "M. Ghoston")) +(constraint (= (f "Salley" "Hornak") "S. Hornak")) +(constraint (= (f "Salley" "Hornak") "S. Hornak")) +(constraint (= (f "Salley" "Hornak") "S. Hornak")) +(constraint (= (f "Micha" "Junkin") "M. Junkin")) +(constraint (= (f "Micha" "Junkin") "M. Junkin")) +(constraint (= (f "Micha" "Junkin") "M. Junkin")) +(constraint (= (f "Teddy" "Bobo") "T. Bobo")) +(constraint (= (f "Teddy" "Bobo") "T. Bobo")) +(constraint (= (f "Teddy" "Bobo") "T. Bobo")) +(constraint (= (f "Coralee" "Scalia") "C. Scalia")) +(constraint (= (f "Coralee" "Scalia") "C. Scalia")) +(constraint (= (f "Coralee" "Scalia") "C. Scalia")) +(constraint (= (f "Jeff" "Quashie") "J. Quashie")) +(constraint (= (f "Jeff" "Quashie") "J. Quashie")) +(constraint (= (f "Jeff" "Quashie") "J. Quashie")) +(constraint (= (f "Vena" "Babiarz") "V. Babiarz")) +(constraint (= (f "Vena" "Babiarz") "V. Babiarz")) +(constraint (= (f "Vena" "Babiarz") "V. Babiarz")) +(constraint (= (f "Karrie" "Lain") "K. Lain")) +(constraint (= (f "Karrie" "Lain") "K. Lain")) +(constraint (= (f "Karrie" "Lain") "K. Lain")) +(constraint (= (f "Tobias" "Dermody") "T. Dermody")) +(constraint (= (f "Tobias" "Dermody") "T. Dermody")) +(constraint (= (f "Tobias" "Dermody") "T. Dermody")) +(constraint (= (f "Celsa" "Hopkins") "C. Hopkins")) +(constraint (= (f "Celsa" "Hopkins") "C. Hopkins")) +(constraint (= (f "Celsa" "Hopkins") "C. Hopkins")) +(constraint (= (f "Kimberley" "Halpern") "K. Halpern")) +(constraint (= (f "Kimberley" "Halpern") "K. Halpern")) +(constraint (= (f "Kimberley" "Halpern") "K. Halpern")) +(constraint (= (f "Phillip" "Rowden") "P. Rowden")) +(constraint (= (f "Phillip" "Rowden") "P. Rowden")) +(constraint (= (f "Phillip" "Rowden") "P. Rowden")) +(constraint (= (f "Elias" "Neil") "E. Neil")) +(constraint (= (f "Elias" "Neil") "E. Neil")) +(constraint (= (f "Elias" "Neil") "E. Neil")) +(constraint (= (f "Lashanda" "Cortes") "L. Cortes")) +(constraint (= (f "Lashanda" "Cortes") "L. Cortes")) +(constraint (= (f "Lashanda" "Cortes") "L. Cortes")) +(constraint (= (f "Mackenzie" "Spell") "M. Spell")) +(constraint (= (f "Mackenzie" "Spell") "M. Spell")) +(constraint (= (f "Mackenzie" "Spell") "M. Spell")) +(constraint (= (f "Kathlyn" "Eccleston") "K. Eccleston")) +(constraint (= (f "Kathlyn" "Eccleston") "K. Eccleston")) +(constraint (= (f "Kathlyn" "Eccleston") "K. Eccleston")) +(constraint (= (f "Georgina" "Brescia") "G. Brescia")) +(constraint (= (f "Georgina" "Brescia") "G. Brescia")) +(constraint (= (f "Georgina" "Brescia") "G. Brescia")) +(constraint (= (f "Beata" "Miah") "B. Miah")) +(constraint (= (f "Beata" "Miah") "B. Miah")) +(constraint (= (f "Beata" "Miah") "B. Miah")) +(constraint (= (f "Desiree" "Seamons") "D. Seamons")) +(constraint (= (f "Desiree" "Seamons") "D. Seamons")) +(constraint (= (f "Desiree" "Seamons") "D. Seamons")) +(constraint (= (f "Jeanice" "Soderstrom") "J. Soderstrom")) +(constraint (= (f "Jeanice" "Soderstrom") "J. Soderstrom")) +(constraint (= (f "Jeanice" "Soderstrom") "J. Soderstrom")) +(constraint (= (f "Mariel" "Jurgens") "M. Jurgens")) +(constraint (= (f "Mariel" "Jurgens") "M. Jurgens")) +(constraint (= (f "Mariel" "Jurgens") "M. Jurgens")) +(constraint (= (f "Alida" "Bogle") "A. Bogle")) +(constraint (= (f "Alida" "Bogle") "A. Bogle")) +(constraint (= (f "Alida" "Bogle") "A. Bogle")) +(constraint (= (f "Jacqualine" "Olague") "J. Olague")) +(constraint (= (f "Jacqualine" "Olague") "J. Olague")) +(constraint (= (f "Jacqualine" "Olague") "J. Olague")) +(constraint (= (f "Joaquin" "Clasen") "J. Clasen")) +(constraint (= (f "Joaquin" "Clasen") "J. Clasen")) +(constraint (= (f "Joaquin" "Clasen") "J. Clasen")) +(constraint (= (f "Samuel" "Richert") "S. Richert")) +(constraint (= (f "Samuel" "Richert") "S. Richert")) +(constraint (= (f "Samuel" "Richert") "S. Richert")) +(constraint (= (f "Malissa" "Marcus") "M. Marcus")) +(constraint (= (f "Malissa" "Marcus") "M. Marcus")) +(constraint (= (f "Malissa" "Marcus") "M. Marcus")) +(constraint (= (f "Alaina" "Partida") "A. Partida")) +(constraint (= (f "Alaina" "Partida") "A. Partida")) +(constraint (= (f "Alaina" "Partida") "A. Partida")) +(constraint (= (f "Trinidad" "Mulloy") "T. Mulloy")) +(constraint (= (f "Trinidad" "Mulloy") "T. Mulloy")) +(constraint (= (f "Trinidad" "Mulloy") "T. Mulloy")) +(constraint (= (f "Carlene" "Garrard") "C. Garrard")) +(constraint (= (f "Carlene" "Garrard") "C. Garrard")) +(constraint (= (f "Carlene" "Garrard") "C. Garrard")) +(constraint (= (f "Melodi" "Chism") "M. Chism")) +(constraint (= (f "Melodi" "Chism") "M. Chism")) +(constraint (= (f "Melodi" "Chism") "M. Chism")) +(constraint (= (f "Bess" "Chilcott") "B. Chilcott")) +(constraint (= (f "Bess" "Chilcott") "B. Chilcott")) +(constraint (= (f "Bess" "Chilcott") "B. Chilcott")) +(constraint (= (f "Chong" "Aylward") "C. Aylward")) +(constraint (= (f "Chong" "Aylward") "C. Aylward")) +(constraint (= (f "Chong" "Aylward") "C. Aylward")) +(constraint (= (f "Jani" "Ramthun") "J. Ramthun")) +(constraint (= (f "Jani" "Ramthun") "J. Ramthun")) +(constraint (= (f "Jani" "Ramthun") "J. Ramthun")) +(constraint (= (f "Jacquiline" "Heintz") "J. Heintz")) +(constraint (= (f "Jacquiline" "Heintz") "J. Heintz")) +(constraint (= (f "Jacquiline" "Heintz") "J. Heintz")) +(constraint (= (f "Hayley" "Marquess") "H. Marquess")) +(constraint (= (f "Hayley" "Marquess") "H. Marquess")) +(constraint (= (f "Hayley" "Marquess") "H. Marquess")) +(constraint (= (f "Andria" "Spagnoli") "A. Spagnoli")) +(constraint (= (f "Andria" "Spagnoli") "A. Spagnoli")) +(constraint (= (f "Andria" "Spagnoli") "A. Spagnoli")) +(constraint (= (f "Irwin" "Covelli") "I. Covelli")) +(constraint (= (f "Irwin" "Covelli") "I. Covelli")) +(constraint (= (f "Irwin" "Covelli") "I. Covelli")) +(constraint (= (f "Gertude" "Montiel") "G. Montiel")) +(constraint (= (f "Gertude" "Montiel") "G. Montiel")) +(constraint (= (f "Gertude" "Montiel") "G. Montiel")) +(constraint (= (f "Stefany" "Reily") "S. Reily")) +(constraint (= (f "Stefany" "Reily") "S. Reily")) +(constraint (= (f "Stefany" "Reily") "S. Reily")) +(constraint (= (f "Rae" "Mcgaughey") "R. Mcgaughey")) +(constraint (= (f "Rae" "Mcgaughey") "R. Mcgaughey")) +(constraint (= (f "Rae" "Mcgaughey") "R. Mcgaughey")) +(constraint (= (f "Cruz" "Latimore") "C. Latimore")) +(constraint (= (f "Cruz" "Latimore") "C. Latimore")) +(constraint (= (f "Cruz" "Latimore") "C. Latimore")) +(constraint (= (f "Maryann" "Casler") "M. Casler")) +(constraint (= (f "Maryann" "Casler") "M. Casler")) +(constraint (= (f "Maryann" "Casler") "M. Casler")) +(constraint (= (f "Annalisa" "Gregori") "A. Gregori")) +(constraint (= (f "Annalisa" "Gregori") "A. Gregori")) +(constraint (= (f "Annalisa" "Gregori") "A. Gregori")) +(constraint (= (f "Jenee" "Pannell") "J. Pannell")) +(constraint (= (f "Jenee" "Pannell") "J. Pannell")) +(constraint (= (f "Jenee" "Pannell") "J. Pannell")) +(constraint (= (f "Launa" "Withers") "L. Withers")) +(constraint (= (f "Lakenya" "Edison") "L. Edison")) +(constraint (= (f "Brendan" "Hage") "B. Hage")) +(constraint (= (f "Bradford" "Lango") "B. Lango")) +(constraint (= (f "Rudolf" "Akiyama") "R. Akiyama")) +(constraint (= (f "Lara" "Constable") "L. Constable")) +(constraint (= (f "Madelaine" "Ghoston") "M. Ghoston")) +(constraint (= (f "Salley" "Hornak") "S. Hornak")) +(constraint (= (f "Micha" "Junkin") "M. Junkin")) +(constraint (= (f "Teddy" "Bobo") "T. Bobo")) +(constraint (= (f "Coralee" "Scalia") "C. Scalia")) +(constraint (= (f "Jeff" "Quashie") "J. Quashie")) +(constraint (= (f "Vena" "Babiarz") "V. Babiarz")) +(constraint (= (f "Karrie" "Lain") "K. Lain")) +(constraint (= (f "Tobias" "Dermody") "T. Dermody")) +(constraint (= (f "Celsa" "Hopkins") "C. Hopkins")) +(constraint (= (f "Kimberley" "Halpern") "K. Halpern")) +(constraint (= (f "Phillip" "Rowden") "P. Rowden")) +(constraint (= (f "Elias" "Neil") "E. Neil")) +(constraint (= (f "Lashanda" "Cortes") "L. Cortes")) +(constraint (= (f "Mackenzie" "Spell") "M. Spell")) +(constraint (= (f "Kathlyn" "Eccleston") "K. Eccleston")) +(constraint (= (f "Georgina" "Brescia") "G. Brescia")) +(constraint (= (f "Beata" "Miah") "B. Miah")) +(constraint (= (f "Desiree" "Seamons") "D. Seamons")) +(constraint (= (f "Jeanice" "Soderstrom") "J. Soderstrom")) +(constraint (= (f "Mariel" "Jurgens") "M. Jurgens")) +(constraint (= (f "Alida" "Bogle") "A. Bogle")) +(constraint (= (f "Jacqualine" "Olague") "J. Olague")) +(constraint (= (f "Joaquin" "Clasen") "J. Clasen")) +(constraint (= (f "Samuel" "Richert") "S. Richert")) +(constraint (= (f "Malissa" "Marcus") "M. Marcus")) +(constraint (= (f "Alaina" "Partida") "A. Partida")) +(constraint (= (f "Trinidad" "Mulloy") "T. Mulloy")) +(constraint (= (f "Carlene" "Garrard") "C. Garrard")) +(constraint (= (f "Melodi" "Chism") "M. Chism")) +(constraint (= (f "Bess" "Chilcott") "B. Chilcott")) +(constraint (= (f "Chong" "Aylward") "C. Aylward")) +(constraint (= (f "Jani" "Ramthun") "J. Ramthun")) +(constraint (= (f "Jacquiline" "Heintz") "J. Heintz")) +(constraint (= (f "Hayley" "Marquess") "H. Marquess")) +(constraint (= (f "Andria" "Spagnoli") "A. Spagnoli")) +(constraint (= (f "Irwin" "Covelli") "I. Covelli")) +(constraint (= (f "Gertude" "Montiel") "G. Montiel")) +(constraint (= (f "Stefany" "Reily") "S. Reily")) +(constraint (= (f "Rae" "Mcgaughey") "R. Mcgaughey")) +(constraint (= (f "Cruz" "Latimore") "C. Latimore")) +(constraint (= (f "Maryann" "Casler") "M. Casler")) +(constraint (= (f "Annalisa" "Gregori") "A. Gregori")) +(constraint (= (f "Jenee" "Pannell") "J. Pannell")) + + +(check-synth) diff --git a/PBE_Strings_Track/name-combine-3-long.sl b/PBE_Strings_Track/name-combine-3-long.sl new file mode 100644 index 0000000000000000000000000000000000000000..235ef78369932231800d2b96db3a9824aeb83600 --- /dev/null +++ b/PBE_Strings_Track/name-combine-3-long.sl @@ -0,0 +1,78 @@ +(set-logic SLIA) + +(synth-fun f ((firstname String) (lastname String)) String + ((Start String (ntString)) + (ntString String (firstname lastname " " "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var firstname String) +(declare-var lastname String) + +(constraint (= (f "Launa" "Withers") "L. Withers")) +(constraint (= (f "Lakenya" "Edison") "L. Edison")) +(constraint (= (f "Brendan" "Hage") "B. Hage")) +(constraint (= (f "Bradford" "Lango") "B. Lango")) +(constraint (= (f "Rudolf" "Akiyama") "R. Akiyama")) +(constraint (= (f "Lara" "Constable") "L. Constable")) +(constraint (= (f "Madelaine" "Ghoston") "M. Ghoston")) +(constraint (= (f "Salley" "Hornak") "S. Hornak")) +(constraint (= (f "Micha" "Junkin") "M. Junkin")) +(constraint (= (f "Teddy" "Bobo") "T. Bobo")) +(constraint (= (f "Coralee" "Scalia") "C. Scalia")) +(constraint (= (f "Jeff" "Quashie") "J. Quashie")) +(constraint (= (f "Vena" "Babiarz") "V. Babiarz")) +(constraint (= (f "Karrie" "Lain") "K. Lain")) +(constraint (= (f "Tobias" "Dermody") "T. Dermody")) +(constraint (= (f "Celsa" "Hopkins") "C. Hopkins")) +(constraint (= (f "Kimberley" "Halpern") "K. Halpern")) +(constraint (= (f "Phillip" "Rowden") "P. Rowden")) +(constraint (= (f "Elias" "Neil") "E. Neil")) +(constraint (= (f "Lashanda" "Cortes") "L. Cortes")) +(constraint (= (f "Mackenzie" "Spell") "M. Spell")) +(constraint (= (f "Kathlyn" "Eccleston") "K. Eccleston")) +(constraint (= (f "Georgina" "Brescia") "G. Brescia")) +(constraint (= (f "Beata" "Miah") "B. Miah")) +(constraint (= (f "Desiree" "Seamons") "D. Seamons")) +(constraint (= (f "Jeanice" "Soderstrom") "J. Soderstrom")) +(constraint (= (f "Mariel" "Jurgens") "M. Jurgens")) +(constraint (= (f "Alida" "Bogle") "A. Bogle")) +(constraint (= (f "Jacqualine" "Olague") "J. Olague")) +(constraint (= (f "Joaquin" "Clasen") "J. Clasen")) +(constraint (= (f "Samuel" "Richert") "S. Richert")) +(constraint (= (f "Malissa" "Marcus") "M. Marcus")) +(constraint (= (f "Alaina" "Partida") "A. Partida")) +(constraint (= (f "Trinidad" "Mulloy") "T. Mulloy")) +(constraint (= (f "Carlene" "Garrard") "C. Garrard")) +(constraint (= (f "Melodi" "Chism") "M. Chism")) +(constraint (= (f "Bess" "Chilcott") "B. Chilcott")) +(constraint (= (f "Chong" "Aylward") "C. Aylward")) +(constraint (= (f "Jani" "Ramthun") "J. Ramthun")) +(constraint (= (f "Jacquiline" "Heintz") "J. Heintz")) +(constraint (= (f "Hayley" "Marquess") "H. Marquess")) +(constraint (= (f "Andria" "Spagnoli") "A. Spagnoli")) +(constraint (= (f "Irwin" "Covelli") "I. Covelli")) +(constraint (= (f "Gertude" "Montiel") "G. Montiel")) +(constraint (= (f "Stefany" "Reily") "S. Reily")) +(constraint (= (f "Rae" "Mcgaughey") "R. Mcgaughey")) +(constraint (= (f "Cruz" "Latimore") "C. Latimore")) +(constraint (= (f "Maryann" "Casler") "M. Casler")) +(constraint (= (f "Annalisa" "Gregori") "A. Gregori")) +(constraint (= (f "Jenee" "Pannell") "J. Pannell")) + + +(check-synth) diff --git a/PBE_Strings_Track/name-combine-3.sl b/PBE_Strings_Track/name-combine-3.sl new file mode 100644 index 0000000000000000000000000000000000000000..c075e62b5d392ffe302569ffc51bfb702e7ee99d --- /dev/null +++ b/PBE_Strings_Track/name-combine-3.sl @@ -0,0 +1,33 @@ +(set-logic SLIA) + +(synth-fun f ((firstname String) (lastname String)) String + ((Start String (ntString)) + (ntString String (firstname lastname " " "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var firstname String) +(declare-var lastname String) + +(constraint (= (f "Launa" "Withers") "L. Withers")) +(constraint (= (f "Lakenya" "Edison") "L. Edison")) +(constraint (= (f "Brendan" "Hage") "B. Hage")) +(constraint (= (f "Bradford" "Lango") "B. Lango")) +(constraint (= (f "Rudolf" "Akiyama") "R. Akiyama")) +(constraint (= (f "Lara" "Constable") "L. Constable")) + +(check-synth) diff --git a/PBE_Strings_Track/name-combine-3_short.sl b/PBE_Strings_Track/name-combine-3_short.sl new file mode 100644 index 0000000000000000000000000000000000000000..d902fd62a3e017ec31197fbcb752374d0dedb849 --- /dev/null +++ b/PBE_Strings_Track/name-combine-3_short.sl @@ -0,0 +1,29 @@ +(set-logic SLIA) + +(synth-fun f ((firstname String) (lastname String)) String + ((Start String (ntString)) + (ntString String (firstname lastname " " "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (str.len ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString))))) + + +(declare-var firstname String) +(declare-var lastname String) + +(constraint (= (f "Launa" "Withers") "L. Withers")) +(constraint (= (f "Lakenya" "Edison") "L. Edison")) +(constraint (= (f "Brendan" "Hage") "B. Hage")) +(constraint (= (f "Bradford" "Lango") "B. Lango")) +(constraint (= (f "Rudolf" "Akiyama") "R. Akiyama")) +(constraint (= (f "Lara" "Constable") "L. Constable")) + +(check-synth) diff --git a/PBE_Strings_Track/name-combine-4-long-repeat.sl b/PBE_Strings_Track/name-combine-4-long-repeat.sl new file mode 100644 index 0000000000000000000000000000000000000000..4642551f8f2e1739bf769f001bc072c07ea05360 --- /dev/null +++ b/PBE_Strings_Track/name-combine-4-long-repeat.sl @@ -0,0 +1,226 @@ +(set-logic SLIA) + +(synth-fun f ((firstname String) (lastname String)) String + ((Start String (ntString)) + (ntString String (firstname lastname "," " " "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "Launa" "Withers") "Withers, L.")) +(constraint (= (f "Launa" "Withers") "Withers, L.")) +(constraint (= (f "Launa" "Withers") "Withers, L.")) +(constraint (= (f "Lakenya" "Edison") "Edison, L.")) +(constraint (= (f "Lakenya" "Edison") "Edison, L.")) +(constraint (= (f "Lakenya" "Edison") "Edison, L.")) +(constraint (= (f "Brendan" "Hage") "Hage, B.")) +(constraint (= (f "Brendan" "Hage") "Hage, B.")) +(constraint (= (f "Brendan" "Hage") "Hage, B.")) +(constraint (= (f "Bradford" "Lango") "Lango, B.")) +(constraint (= (f "Bradford" "Lango") "Lango, B.")) +(constraint (= (f "Bradford" "Lango") "Lango, B.")) +(constraint (= (f "Rudolf" "Akiyama") "Akiyama, R.")) +(constraint (= (f "Rudolf" "Akiyama") "Akiyama, R.")) +(constraint (= (f "Rudolf" "Akiyama") "Akiyama, R.")) +(constraint (= (f "Lara" "Constable") "Constable, L.")) +(constraint (= (f "Lara" "Constable") "Constable, L.")) +(constraint (= (f "Lara" "Constable") "Constable, L.")) +(constraint (= (f "Madelaine" "Ghoston") "Ghoston, M.")) +(constraint (= (f "Madelaine" "Ghoston") "Ghoston, M.")) +(constraint (= (f "Madelaine" "Ghoston") "Ghoston, M.")) +(constraint (= (f "Salley" "Hornak") "Hornak, S.")) +(constraint (= (f "Salley" "Hornak") "Hornak, S.")) +(constraint (= (f "Salley" "Hornak") "Hornak, S.")) +(constraint (= (f "Micha" "Junkin") "Junkin, M.")) +(constraint (= (f "Micha" "Junkin") "Junkin, M.")) +(constraint (= (f "Micha" "Junkin") "Junkin, M.")) +(constraint (= (f "Teddy" "Bobo") "Bobo, T.")) +(constraint (= (f "Teddy" "Bobo") "Bobo, T.")) +(constraint (= (f "Teddy" "Bobo") "Bobo, T.")) +(constraint (= (f "Coralee" "Scalia") "Scalia, C.")) +(constraint (= (f "Coralee" "Scalia") "Scalia, C.")) +(constraint (= (f "Coralee" "Scalia") "Scalia, C.")) +(constraint (= (f "Jeff" "Quashie") "Quashie, J.")) +(constraint (= (f "Jeff" "Quashie") "Quashie, J.")) +(constraint (= (f "Jeff" "Quashie") "Quashie, J.")) +(constraint (= (f "Vena" "Babiarz") "Babiarz, V.")) +(constraint (= (f "Vena" "Babiarz") "Babiarz, V.")) +(constraint (= (f "Vena" "Babiarz") "Babiarz, V.")) +(constraint (= (f "Karrie" "Lain") "Lain, K.")) +(constraint (= (f "Karrie" "Lain") "Lain, K.")) +(constraint (= (f "Karrie" "Lain") "Lain, K.")) +(constraint (= (f "Tobias" "Dermody") "Dermody, T.")) +(constraint (= (f "Tobias" "Dermody") "Dermody, T.")) +(constraint (= (f "Tobias" "Dermody") "Dermody, T.")) +(constraint (= (f "Celsa" "Hopkins") "Hopkins, C.")) +(constraint (= (f "Celsa" "Hopkins") "Hopkins, C.")) +(constraint (= (f "Celsa" "Hopkins") "Hopkins, C.")) +(constraint (= (f "Kimberley" "Halpern") "Halpern, K.")) +(constraint (= (f "Kimberley" "Halpern") "Halpern, K.")) +(constraint (= (f "Kimberley" "Halpern") "Halpern, K.")) +(constraint (= (f "Phillip" "Rowden") "Rowden, P.")) +(constraint (= (f "Phillip" "Rowden") "Rowden, P.")) +(constraint (= (f "Phillip" "Rowden") "Rowden, P.")) +(constraint (= (f "Elias" "Neil") "Neil, E.")) +(constraint (= (f "Elias" "Neil") "Neil, E.")) +(constraint (= (f "Elias" "Neil") "Neil, E.")) +(constraint (= (f "Lashanda" "Cortes") "Cortes, L.")) +(constraint (= (f "Lashanda" "Cortes") "Cortes, L.")) +(constraint (= (f "Lashanda" "Cortes") "Cortes, L.")) +(constraint (= (f "Mackenzie" "Spell") "Spell, M.")) +(constraint (= (f "Mackenzie" "Spell") "Spell, M.")) +(constraint (= (f "Mackenzie" "Spell") "Spell, M.")) +(constraint (= (f "Kathlyn" "Eccleston") "Eccleston, K.")) +(constraint (= (f "Kathlyn" "Eccleston") "Eccleston, K.")) +(constraint (= (f "Kathlyn" "Eccleston") "Eccleston, K.")) +(constraint (= (f "Georgina" "Brescia") "Brescia, G.")) +(constraint (= (f "Georgina" "Brescia") "Brescia, G.")) +(constraint (= (f "Georgina" "Brescia") "Brescia, G.")) +(constraint (= (f "Beata" "Miah") "Miah, B.")) +(constraint (= (f "Beata" "Miah") "Miah, B.")) +(constraint (= (f "Beata" "Miah") "Miah, B.")) +(constraint (= (f "Desiree" "Seamons") "Seamons, D.")) +(constraint (= (f "Desiree" "Seamons") "Seamons, D.")) +(constraint (= (f "Desiree" "Seamons") "Seamons, D.")) +(constraint (= (f "Jeanice" "Soderstrom") "Soderstrom, J.")) +(constraint (= (f "Jeanice" "Soderstrom") "Soderstrom, J.")) +(constraint (= (f "Jeanice" "Soderstrom") "Soderstrom, J.")) +(constraint (= (f "Mariel" "Jurgens") "Jurgens, M.")) +(constraint (= (f "Mariel" "Jurgens") "Jurgens, M.")) +(constraint (= (f "Mariel" "Jurgens") "Jurgens, M.")) +(constraint (= (f "Alida" "Bogle") "Bogle, A.")) +(constraint (= (f "Alida" "Bogle") "Bogle, A.")) +(constraint (= (f "Alida" "Bogle") "Bogle, A.")) +(constraint (= (f "Jacqualine" "Olague") "Olague, J.")) +(constraint (= (f "Jacqualine" "Olague") "Olague, J.")) +(constraint (= (f "Jacqualine" "Olague") "Olague, J.")) +(constraint (= (f "Joaquin" "Clasen") "Clasen, J.")) +(constraint (= (f "Joaquin" "Clasen") "Clasen, J.")) +(constraint (= (f "Joaquin" "Clasen") "Clasen, J.")) +(constraint (= (f "Samuel" "Richert") "Richert, S.")) +(constraint (= (f "Samuel" "Richert") "Richert, S.")) +(constraint (= (f "Samuel" "Richert") "Richert, S.")) +(constraint (= (f "Malissa" "Marcus") "Marcus, M.")) +(constraint (= (f "Malissa" "Marcus") "Marcus, M.")) +(constraint (= (f "Malissa" "Marcus") "Marcus, M.")) +(constraint (= (f "Alaina" "Partida") "Partida, A.")) +(constraint (= (f "Alaina" "Partida") "Partida, A.")) +(constraint (= (f "Alaina" "Partida") "Partida, A.")) +(constraint (= (f "Trinidad" "Mulloy") "Mulloy, T.")) +(constraint (= (f "Trinidad" "Mulloy") "Mulloy, T.")) +(constraint (= (f "Trinidad" "Mulloy") "Mulloy, T.")) +(constraint (= (f "Carlene" "Garrard") "Garrard, C.")) +(constraint (= (f "Carlene" "Garrard") "Garrard, C.")) +(constraint (= (f "Carlene" "Garrard") "Garrard, C.")) +(constraint (= (f "Melodi" "Chism") "Chism, M.")) +(constraint (= (f "Melodi" "Chism") "Chism, M.")) +(constraint (= (f "Melodi" "Chism") "Chism, M.")) +(constraint (= (f "Bess" "Chilcott") "Chilcott, B.")) +(constraint (= (f "Bess" "Chilcott") "Chilcott, B.")) +(constraint (= (f "Bess" "Chilcott") "Chilcott, B.")) +(constraint (= (f "Chong" "Aylward") "Aylward, C.")) +(constraint (= (f "Chong" "Aylward") "Aylward, C.")) +(constraint (= (f "Chong" "Aylward") "Aylward, C.")) +(constraint (= (f "Jani" "Ramthun") "Ramthun, J.")) +(constraint (= (f "Jani" "Ramthun") "Ramthun, J.")) +(constraint (= (f "Jani" "Ramthun") "Ramthun, J.")) +(constraint (= (f "Jacquiline" "Heintz") "Heintz, J.")) +(constraint (= (f "Jacquiline" "Heintz") "Heintz, J.")) +(constraint (= (f "Jacquiline" "Heintz") "Heintz, J.")) +(constraint (= (f "Hayley" "Marquess") "Marquess, H.")) +(constraint (= (f "Hayley" "Marquess") "Marquess, H.")) +(constraint (= (f "Hayley" "Marquess") "Marquess, H.")) +(constraint (= (f "Andria" "Spagnoli") "Spagnoli, A.")) +(constraint (= (f "Andria" "Spagnoli") "Spagnoli, A.")) +(constraint (= (f "Andria" "Spagnoli") "Spagnoli, A.")) +(constraint (= (f "Irwin" "Covelli") "Covelli, I.")) +(constraint (= (f "Irwin" "Covelli") "Covelli, I.")) +(constraint (= (f "Irwin" "Covelli") "Covelli, I.")) +(constraint (= (f "Gertude" "Montiel") "Montiel, G.")) +(constraint (= (f "Gertude" "Montiel") "Montiel, G.")) +(constraint (= (f "Gertude" "Montiel") "Montiel, G.")) +(constraint (= (f "Stefany" "Reily") "Reily, S.")) +(constraint (= (f "Stefany" "Reily") "Reily, S.")) +(constraint (= (f "Stefany" "Reily") "Reily, S.")) +(constraint (= (f "Rae" "Mcgaughey") "Mcgaughey, R.")) +(constraint (= (f "Rae" "Mcgaughey") "Mcgaughey, R.")) +(constraint (= (f "Rae" "Mcgaughey") "Mcgaughey, R.")) +(constraint (= (f "Cruz" "Latimore") "Latimore, C.")) +(constraint (= (f "Cruz" "Latimore") "Latimore, C.")) +(constraint (= (f "Cruz" "Latimore") "Latimore, C.")) +(constraint (= (f "Maryann" "Casler") "Casler, M.")) +(constraint (= (f "Maryann" "Casler") "Casler, M.")) +(constraint (= (f "Maryann" "Casler") "Casler, M.")) +(constraint (= (f "Annalisa" "Gregori") "Gregori, A.")) +(constraint (= (f "Annalisa" "Gregori") "Gregori, A.")) +(constraint (= (f "Annalisa" "Gregori") "Gregori, A.")) +(constraint (= (f "Jenee" "Pannell") "Pannell, J.")) +(constraint (= (f "Jenee" "Pannell") "Pannell, J.")) +(constraint (= (f "Jenee" "Pannell") "Pannell, J.")) +(constraint (= (f "Launa" "Withers") "Withers, L.")) +(constraint (= (f "Lakenya" "Edison") "Edison, L.")) +(constraint (= (f "Brendan" "Hage") "Hage, B.")) +(constraint (= (f "Bradford" "Lango") "Lango, B.")) +(constraint (= (f "Rudolf" "Akiyama") "Akiyama, R.")) +(constraint (= (f "Lara" "Constable") "Constable, L.")) +(constraint (= (f "Madelaine" "Ghoston") "Ghoston, M.")) +(constraint (= (f "Salley" "Hornak") "Hornak, S.")) +(constraint (= (f "Micha" "Junkin") "Junkin, M.")) +(constraint (= (f "Teddy" "Bobo") "Bobo, T.")) +(constraint (= (f "Coralee" "Scalia") "Scalia, C.")) +(constraint (= (f "Jeff" "Quashie") "Quashie, J.")) +(constraint (= (f "Vena" "Babiarz") "Babiarz, V.")) +(constraint (= (f "Karrie" "Lain") "Lain, K.")) +(constraint (= (f "Tobias" "Dermody") "Dermody, T.")) +(constraint (= (f "Celsa" "Hopkins") "Hopkins, C.")) +(constraint (= (f "Kimberley" "Halpern") "Halpern, K.")) +(constraint (= (f "Phillip" "Rowden") "Rowden, P.")) +(constraint (= (f "Elias" "Neil") "Neil, E.")) +(constraint (= (f "Lashanda" "Cortes") "Cortes, L.")) +(constraint (= (f "Mackenzie" "Spell") "Spell, M.")) +(constraint (= (f "Kathlyn" "Eccleston") "Eccleston, K.")) +(constraint (= (f "Georgina" "Brescia") "Brescia, G.")) +(constraint (= (f "Beata" "Miah") "Miah, B.")) +(constraint (= (f "Desiree" "Seamons") "Seamons, D.")) +(constraint (= (f "Jeanice" "Soderstrom") "Soderstrom, J.")) +(constraint (= (f "Mariel" "Jurgens") "Jurgens, M.")) +(constraint (= (f "Alida" "Bogle") "Bogle, A.")) +(constraint (= (f "Jacqualine" "Olague") "Olague, J.")) +(constraint (= (f "Joaquin" "Clasen") "Clasen, J.")) +(constraint (= (f "Samuel" "Richert") "Richert, S.")) +(constraint (= (f "Malissa" "Marcus") "Marcus, M.")) +(constraint (= (f "Alaina" "Partida") "Partida, A.")) +(constraint (= (f "Trinidad" "Mulloy") "Mulloy, T.")) +(constraint (= (f "Carlene" "Garrard") "Garrard, C.")) +(constraint (= (f "Melodi" "Chism") "Chism, M.")) +(constraint (= (f "Bess" "Chilcott") "Chilcott, B.")) +(constraint (= (f "Chong" "Aylward") "Aylward, C.")) +(constraint (= (f "Jani" "Ramthun") "Ramthun, J.")) +(constraint (= (f "Jacquiline" "Heintz") "Heintz, J.")) +(constraint (= (f "Hayley" "Marquess") "Marquess, H.")) +(constraint (= (f "Andria" "Spagnoli") "Spagnoli, A.")) +(constraint (= (f "Irwin" "Covelli") "Covelli, I.")) +(constraint (= (f "Gertude" "Montiel") "Montiel, G.")) +(constraint (= (f "Stefany" "Reily") "Reily, S.")) +(constraint (= (f "Rae" "Mcgaughey") "Mcgaughey, R.")) +(constraint (= (f "Cruz" "Latimore") "Latimore, C.")) +(constraint (= (f "Maryann" "Casler") "Casler, M.")) +(constraint (= (f "Annalisa" "Gregori") "Gregori, A.")) +(constraint (= (f "Jenee" "Pannell") "Pannell, J.")) + +(check-synth) diff --git a/PBE_Strings_Track/name-combine-4-long.sl b/PBE_Strings_Track/name-combine-4-long.sl new file mode 100644 index 0000000000000000000000000000000000000000..789fea9b7ba6a13a3f20ac658b314665995bc557 --- /dev/null +++ b/PBE_Strings_Track/name-combine-4-long.sl @@ -0,0 +1,76 @@ +(set-logic SLIA) + +(synth-fun f ((firstname String) (lastname String)) String + ((Start String (ntString)) + (ntString String (firstname lastname "," " " "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "Launa" "Withers") "Withers, L.")) +(constraint (= (f "Lakenya" "Edison") "Edison, L.")) +(constraint (= (f "Brendan" "Hage") "Hage, B.")) +(constraint (= (f "Bradford" "Lango") "Lango, B.")) +(constraint (= (f "Rudolf" "Akiyama") "Akiyama, R.")) +(constraint (= (f "Lara" "Constable") "Constable, L.")) +(constraint (= (f "Madelaine" "Ghoston") "Ghoston, M.")) +(constraint (= (f "Salley" "Hornak") "Hornak, S.")) +(constraint (= (f "Micha" "Junkin") "Junkin, M.")) +(constraint (= (f "Teddy" "Bobo") "Bobo, T.")) +(constraint (= (f "Coralee" "Scalia") "Scalia, C.")) +(constraint (= (f "Jeff" "Quashie") "Quashie, J.")) +(constraint (= (f "Vena" "Babiarz") "Babiarz, V.")) +(constraint (= (f "Karrie" "Lain") "Lain, K.")) +(constraint (= (f "Tobias" "Dermody") "Dermody, T.")) +(constraint (= (f "Celsa" "Hopkins") "Hopkins, C.")) +(constraint (= (f "Kimberley" "Halpern") "Halpern, K.")) +(constraint (= (f "Phillip" "Rowden") "Rowden, P.")) +(constraint (= (f "Elias" "Neil") "Neil, E.")) +(constraint (= (f "Lashanda" "Cortes") "Cortes, L.")) +(constraint (= (f "Mackenzie" "Spell") "Spell, M.")) +(constraint (= (f "Kathlyn" "Eccleston") "Eccleston, K.")) +(constraint (= (f "Georgina" "Brescia") "Brescia, G.")) +(constraint (= (f "Beata" "Miah") "Miah, B.")) +(constraint (= (f "Desiree" "Seamons") "Seamons, D.")) +(constraint (= (f "Jeanice" "Soderstrom") "Soderstrom, J.")) +(constraint (= (f "Mariel" "Jurgens") "Jurgens, M.")) +(constraint (= (f "Alida" "Bogle") "Bogle, A.")) +(constraint (= (f "Jacqualine" "Olague") "Olague, J.")) +(constraint (= (f "Joaquin" "Clasen") "Clasen, J.")) +(constraint (= (f "Samuel" "Richert") "Richert, S.")) +(constraint (= (f "Malissa" "Marcus") "Marcus, M.")) +(constraint (= (f "Alaina" "Partida") "Partida, A.")) +(constraint (= (f "Trinidad" "Mulloy") "Mulloy, T.")) +(constraint (= (f "Carlene" "Garrard") "Garrard, C.")) +(constraint (= (f "Melodi" "Chism") "Chism, M.")) +(constraint (= (f "Bess" "Chilcott") "Chilcott, B.")) +(constraint (= (f "Chong" "Aylward") "Aylward, C.")) +(constraint (= (f "Jani" "Ramthun") "Ramthun, J.")) +(constraint (= (f "Jacquiline" "Heintz") "Heintz, J.")) +(constraint (= (f "Hayley" "Marquess") "Marquess, H.")) +(constraint (= (f "Andria" "Spagnoli") "Spagnoli, A.")) +(constraint (= (f "Irwin" "Covelli") "Covelli, I.")) +(constraint (= (f "Gertude" "Montiel") "Montiel, G.")) +(constraint (= (f "Stefany" "Reily") "Reily, S.")) +(constraint (= (f "Rae" "Mcgaughey") "Mcgaughey, R.")) +(constraint (= (f "Cruz" "Latimore") "Latimore, C.")) +(constraint (= (f "Maryann" "Casler") "Casler, M.")) +(constraint (= (f "Annalisa" "Gregori") "Gregori, A.")) +(constraint (= (f "Jenee" "Pannell") "Pannell, J.")) + +(check-synth) diff --git a/PBE_Strings_Track/name-combine-4.sl b/PBE_Strings_Track/name-combine-4.sl new file mode 100644 index 0000000000000000000000000000000000000000..2f63326ec53d47c466cc270be80e49c74b84d3be --- /dev/null +++ b/PBE_Strings_Track/name-combine-4.sl @@ -0,0 +1,32 @@ +(set-logic SLIA) + +(synth-fun f ((firstname String) (lastname String)) String + ((Start String (ntString)) + (ntString String (firstname lastname "," " " "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var firstname String) +(declare-var lastname String) + +(constraint (= (f "Launa" "Withers") "Withers, L.")) +(constraint (= (f "Lakenya" "Edison") "Edison, L.")) +(constraint (= (f "Brendan" "Hage") "Hage, B.")) +(constraint (= (f "Bradford" "Lango") "Lango, B.")) +(constraint (= (f "Rudolf" "Akiyama") "Akiyama, R.")) + +(check-synth) diff --git a/PBE_Strings_Track/name-combine-4_short.sl b/PBE_Strings_Track/name-combine-4_short.sl new file mode 100644 index 0000000000000000000000000000000000000000..898bd9ebc00681d8cb4bd7ab0df324b36297dcb1 --- /dev/null +++ b/PBE_Strings_Track/name-combine-4_short.sl @@ -0,0 +1,29 @@ +(set-logic SLIA) + +(synth-fun f ((firstname String) (lastname String)) String + ((Start String (ntString)) + (ntString String (firstname lastname "," " " "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString))))) + + +(declare-var firstname String) +(declare-var lastname String) + +(constraint (= (f "Launa" "Withers") "Withers, L.")) +(constraint (= (f "Lakenya" "Edison") "Edison, L.")) +(constraint (= (f "Brendan" "Hage") "Hage, B.")) +(constraint (= (f "Bradford" "Lango") "Lango, B.")) +(constraint (= (f "Rudolf" "Akiyama") "Akiyama, R.")) + +(check-synth) diff --git a/PBE_Strings_Track/name-combine-long-repeat.sl b/PBE_Strings_Track/name-combine-long-repeat.sl new file mode 100644 index 0000000000000000000000000000000000000000..d0e5a8552e4e846bf35fa31b79f087ae356b9e53 --- /dev/null +++ b/PBE_Strings_Track/name-combine-long-repeat.sl @@ -0,0 +1,229 @@ +(set-logic SLIA) + +(synth-fun f ((firstname String) (lastname String)) String + ((Start String (ntString)) + (ntString String (firstname lastname " " + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "Nancy" "FreeHafer") "Nancy FreeHafer")) +(constraint (= (f "Andrew" "Cencici") "Andrew Cencici")) +(constraint (= (f "Jan" "Kotas") "Jan Kotas")) +(constraint (= (f "Mariya" "Sergienko") "Mariya Sergienko")) +(constraint (= (f "Launa" "Withers") "Launa Withers")) +(constraint (= (f "Launa" "Withers") "Launa Withers")) +(constraint (= (f "Launa" "Withers") "Launa Withers")) +(constraint (= (f "Lakenya" "Edison") "Lakenya Edison")) +(constraint (= (f "Lakenya" "Edison") "Lakenya Edison")) +(constraint (= (f "Lakenya" "Edison") "Lakenya Edison")) +(constraint (= (f "Brendan" "Hage") "Brendan Hage")) +(constraint (= (f "Brendan" "Hage") "Brendan Hage")) +(constraint (= (f "Brendan" "Hage") "Brendan Hage")) +(constraint (= (f "Bradford" "Lango") "Bradford Lango")) +(constraint (= (f "Bradford" "Lango") "Bradford Lango")) +(constraint (= (f "Bradford" "Lango") "Bradford Lango")) +(constraint (= (f "Rudolf" "Akiyama") "Rudolf Akiyama")) +(constraint (= (f "Rudolf" "Akiyama") "Rudolf Akiyama")) +(constraint (= (f "Rudolf" "Akiyama") "Rudolf Akiyama")) +(constraint (= (f "Lara" "Constable") "Lara Constable")) +(constraint (= (f "Lara" "Constable") "Lara Constable")) +(constraint (= (f "Lara" "Constable") "Lara Constable")) +(constraint (= (f "Madelaine" "Ghoston") "Madelaine Ghoston")) +(constraint (= (f "Madelaine" "Ghoston") "Madelaine Ghoston")) +(constraint (= (f "Madelaine" "Ghoston") "Madelaine Ghoston")) +(constraint (= (f "Salley" "Hornak") "Salley Hornak")) +(constraint (= (f "Salley" "Hornak") "Salley Hornak")) +(constraint (= (f "Salley" "Hornak") "Salley Hornak")) +(constraint (= (f "Micha" "Junkin") "Micha Junkin")) +(constraint (= (f "Micha" "Junkin") "Micha Junkin")) +(constraint (= (f "Micha" "Junkin") "Micha Junkin")) +(constraint (= (f "Teddy" "Bobo") "Teddy Bobo")) +(constraint (= (f "Teddy" "Bobo") "Teddy Bobo")) +(constraint (= (f "Teddy" "Bobo") "Teddy Bobo")) +(constraint (= (f "Coralee" "Scalia") "Coralee Scalia")) +(constraint (= (f "Coralee" "Scalia") "Coralee Scalia")) +(constraint (= (f "Coralee" "Scalia") "Coralee Scalia")) +(constraint (= (f "Jeff" "Quashie") "Jeff Quashie")) +(constraint (= (f "Jeff" "Quashie") "Jeff Quashie")) +(constraint (= (f "Jeff" "Quashie") "Jeff Quashie")) +(constraint (= (f "Vena" "Babiarz") "Vena Babiarz")) +(constraint (= (f "Vena" "Babiarz") "Vena Babiarz")) +(constraint (= (f "Vena" "Babiarz") "Vena Babiarz")) +(constraint (= (f "Karrie" "Lain") "Karrie Lain")) +(constraint (= (f "Karrie" "Lain") "Karrie Lain")) +(constraint (= (f "Karrie" "Lain") "Karrie Lain")) +(constraint (= (f "Tobias" "Dermody") "Tobias Dermody")) +(constraint (= (f "Tobias" "Dermody") "Tobias Dermody")) +(constraint (= (f "Tobias" "Dermody") "Tobias Dermody")) +(constraint (= (f "Celsa" "Hopkins") "Celsa Hopkins")) +(constraint (= (f "Celsa" "Hopkins") "Celsa Hopkins")) +(constraint (= (f "Celsa" "Hopkins") "Celsa Hopkins")) +(constraint (= (f "Kimberley" "Halpern") "Kimberley Halpern")) +(constraint (= (f "Kimberley" "Halpern") "Kimberley Halpern")) +(constraint (= (f "Kimberley" "Halpern") "Kimberley Halpern")) +(constraint (= (f "Phillip" "Rowden") "Phillip Rowden")) +(constraint (= (f "Phillip" "Rowden") "Phillip Rowden")) +(constraint (= (f "Phillip" "Rowden") "Phillip Rowden")) +(constraint (= (f "Elias" "Neil") "Elias Neil")) +(constraint (= (f "Elias" "Neil") "Elias Neil")) +(constraint (= (f "Elias" "Neil") "Elias Neil")) +(constraint (= (f "Lashanda" "Cortes") "Lashanda Cortes")) +(constraint (= (f "Lashanda" "Cortes") "Lashanda Cortes")) +(constraint (= (f "Lashanda" "Cortes") "Lashanda Cortes")) +(constraint (= (f "Mackenzie" "Spell") "Mackenzie Spell")) +(constraint (= (f "Mackenzie" "Spell") "Mackenzie Spell")) +(constraint (= (f "Mackenzie" "Spell") "Mackenzie Spell")) +(constraint (= (f "Kathlyn" "Eccleston") "Kathlyn Eccleston")) +(constraint (= (f "Kathlyn" "Eccleston") "Kathlyn Eccleston")) +(constraint (= (f "Kathlyn" "Eccleston") "Kathlyn Eccleston")) +(constraint (= (f "Georgina" "Brescia") "Georgina Brescia")) +(constraint (= (f "Georgina" "Brescia") "Georgina Brescia")) +(constraint (= (f "Georgina" "Brescia") "Georgina Brescia")) +(constraint (= (f "Beata" "Miah") "Beata Miah")) +(constraint (= (f "Beata" "Miah") "Beata Miah")) +(constraint (= (f "Beata" "Miah") "Beata Miah")) +(constraint (= (f "Desiree" "Seamons") "Desiree Seamons")) +(constraint (= (f "Desiree" "Seamons") "Desiree Seamons")) +(constraint (= (f "Desiree" "Seamons") "Desiree Seamons")) +(constraint (= (f "Jeanice" "Soderstrom") "Jeanice Soderstrom")) +(constraint (= (f "Jeanice" "Soderstrom") "Jeanice Soderstrom")) +(constraint (= (f "Jeanice" "Soderstrom") "Jeanice Soderstrom")) +(constraint (= (f "Mariel" "Jurgens") "Mariel Jurgens")) +(constraint (= (f "Mariel" "Jurgens") "Mariel Jurgens")) +(constraint (= (f "Mariel" "Jurgens") "Mariel Jurgens")) +(constraint (= (f "Alida" "Bogle") "Alida Bogle")) +(constraint (= (f "Alida" "Bogle") "Alida Bogle")) +(constraint (= (f "Alida" "Bogle") "Alida Bogle")) +(constraint (= (f "Jacqualine" "Olague") "Jacqualine Olague")) +(constraint (= (f "Jacqualine" "Olague") "Jacqualine Olague")) +(constraint (= (f "Jacqualine" "Olague") "Jacqualine Olague")) +(constraint (= (f "Joaquin" "Clasen") "Joaquin Clasen")) +(constraint (= (f "Joaquin" "Clasen") "Joaquin Clasen")) +(constraint (= (f "Joaquin" "Clasen") "Joaquin Clasen")) +(constraint (= (f "Samuel" "Richert") "Samuel Richert")) +(constraint (= (f "Samuel" "Richert") "Samuel Richert")) +(constraint (= (f "Samuel" "Richert") "Samuel Richert")) +(constraint (= (f "Malissa" "Marcus") "Malissa Marcus")) +(constraint (= (f "Malissa" "Marcus") "Malissa Marcus")) +(constraint (= (f "Malissa" "Marcus") "Malissa Marcus")) +(constraint (= (f "Alaina" "Partida") "Alaina Partida")) +(constraint (= (f "Alaina" "Partida") "Alaina Partida")) +(constraint (= (f "Alaina" "Partida") "Alaina Partida")) +(constraint (= (f "Trinidad" "Mulloy") "Trinidad Mulloy")) +(constraint (= (f "Trinidad" "Mulloy") "Trinidad Mulloy")) +(constraint (= (f "Trinidad" "Mulloy") "Trinidad Mulloy")) +(constraint (= (f "Carlene" "Garrard") "Carlene Garrard")) +(constraint (= (f "Carlene" "Garrard") "Carlene Garrard")) +(constraint (= (f "Carlene" "Garrard") "Carlene Garrard")) +(constraint (= (f "Melodi" "Chism") "Melodi Chism")) +(constraint (= (f "Melodi" "Chism") "Melodi Chism")) +(constraint (= (f "Melodi" "Chism") "Melodi Chism")) +(constraint (= (f "Bess" "Chilcott") "Bess Chilcott")) +(constraint (= (f "Bess" "Chilcott") "Bess Chilcott")) +(constraint (= (f "Bess" "Chilcott") "Bess Chilcott")) +(constraint (= (f "Chong" "Aylward") "Chong Aylward")) +(constraint (= (f "Chong" "Aylward") "Chong Aylward")) +(constraint (= (f "Chong" "Aylward") "Chong Aylward")) +(constraint (= (f "Jani" "Ramthun") "Jani Ramthun")) +(constraint (= (f "Jani" "Ramthun") "Jani Ramthun")) +(constraint (= (f "Jani" "Ramthun") "Jani Ramthun")) +(constraint (= (f "Jacquiline" "Heintz") "Jacquiline Heintz")) +(constraint (= (f "Jacquiline" "Heintz") "Jacquiline Heintz")) +(constraint (= (f "Jacquiline" "Heintz") "Jacquiline Heintz")) +(constraint (= (f "Hayley" "Marquess") "Hayley Marquess")) +(constraint (= (f "Hayley" "Marquess") "Hayley Marquess")) +(constraint (= (f "Hayley" "Marquess") "Hayley Marquess")) +(constraint (= (f "Andria" "Spagnoli") "Andria Spagnoli")) +(constraint (= (f "Andria" "Spagnoli") "Andria Spagnoli")) +(constraint (= (f "Andria" "Spagnoli") "Andria Spagnoli")) +(constraint (= (f "Irwin" "Covelli") "Irwin Covelli")) +(constraint (= (f "Irwin" "Covelli") "Irwin Covelli")) +(constraint (= (f "Irwin" "Covelli") "Irwin Covelli")) +(constraint (= (f "Gertude" "Montiel") "Gertude Montiel")) +(constraint (= (f "Gertude" "Montiel") "Gertude Montiel")) +(constraint (= (f "Gertude" "Montiel") "Gertude Montiel")) +(constraint (= (f "Stefany" "Reily") "Stefany Reily")) +(constraint (= (f "Stefany" "Reily") "Stefany Reily")) +(constraint (= (f "Stefany" "Reily") "Stefany Reily")) +(constraint (= (f "Rae" "Mcgaughey") "Rae Mcgaughey")) +(constraint (= (f "Rae" "Mcgaughey") "Rae Mcgaughey")) +(constraint (= (f "Rae" "Mcgaughey") "Rae Mcgaughey")) +(constraint (= (f "Cruz" "Latimore") "Cruz Latimore")) +(constraint (= (f "Cruz" "Latimore") "Cruz Latimore")) +(constraint (= (f "Cruz" "Latimore") "Cruz Latimore")) +(constraint (= (f "Maryann" "Casler") "Maryann Casler")) +(constraint (= (f "Maryann" "Casler") "Maryann Casler")) +(constraint (= (f "Maryann" "Casler") "Maryann Casler")) +(constraint (= (f "Annalisa" "Gregori") "Annalisa Gregori")) +(constraint (= (f "Annalisa" "Gregori") "Annalisa Gregori")) +(constraint (= (f "Annalisa" "Gregori") "Annalisa Gregori")) +(constraint (= (f "Jenee" "Pannell") "Jenee Pannell")) +(constraint (= (f "Jenee" "Pannell") "Jenee Pannell")) +(constraint (= (f "Jenee" "Pannell") "Jenee Pannell")) +(constraint (= (f "Launa" "Withers") "Launa Withers")) +(constraint (= (f "Lakenya" "Edison") "Lakenya Edison")) +(constraint (= (f "Brendan" "Hage") "Brendan Hage")) +(constraint (= (f "Bradford" "Lango") "Bradford Lango")) +(constraint (= (f "Rudolf" "Akiyama") "Rudolf Akiyama")) +(constraint (= (f "Lara" "Constable") "Lara Constable")) +(constraint (= (f "Madelaine" "Ghoston") "Madelaine Ghoston")) +(constraint (= (f "Salley" "Hornak") "Salley Hornak")) +(constraint (= (f "Micha" "Junkin") "Micha Junkin")) +(constraint (= (f "Teddy" "Bobo") "Teddy Bobo")) +(constraint (= (f "Coralee" "Scalia") "Coralee Scalia")) +(constraint (= (f "Jeff" "Quashie") "Jeff Quashie")) +(constraint (= (f "Vena" "Babiarz") "Vena Babiarz")) +(constraint (= (f "Karrie" "Lain") "Karrie Lain")) +(constraint (= (f "Tobias" "Dermody") "Tobias Dermody")) +(constraint (= (f "Celsa" "Hopkins") "Celsa Hopkins")) +(constraint (= (f "Kimberley" "Halpern") "Kimberley Halpern")) +(constraint (= (f "Phillip" "Rowden") "Phillip Rowden")) +(constraint (= (f "Elias" "Neil") "Elias Neil")) +(constraint (= (f "Lashanda" "Cortes") "Lashanda Cortes")) +(constraint (= (f "Mackenzie" "Spell") "Mackenzie Spell")) +(constraint (= (f "Kathlyn" "Eccleston") "Kathlyn Eccleston")) +(constraint (= (f "Georgina" "Brescia") "Georgina Brescia")) +(constraint (= (f "Beata" "Miah") "Beata Miah")) +(constraint (= (f "Desiree" "Seamons") "Desiree Seamons")) +(constraint (= (f "Jeanice" "Soderstrom") "Jeanice Soderstrom")) +(constraint (= (f "Mariel" "Jurgens") "Mariel Jurgens")) +(constraint (= (f "Alida" "Bogle") "Alida Bogle")) +(constraint (= (f "Jacqualine" "Olague") "Jacqualine Olague")) +(constraint (= (f "Joaquin" "Clasen") "Joaquin Clasen")) +(constraint (= (f "Samuel" "Richert") "Samuel Richert")) +(constraint (= (f "Malissa" "Marcus") "Malissa Marcus")) +(constraint (= (f "Alaina" "Partida") "Alaina Partida")) +(constraint (= (f "Trinidad" "Mulloy") "Trinidad Mulloy")) +(constraint (= (f "Carlene" "Garrard") "Carlene Garrard")) +(constraint (= (f "Melodi" "Chism") "Melodi Chism")) +(constraint (= (f "Bess" "Chilcott") "Bess Chilcott")) +(constraint (= (f "Chong" "Aylward") "Chong Aylward")) +(constraint (= (f "Jani" "Ramthun") "Jani Ramthun")) +(constraint (= (f "Jacquiline" "Heintz") "Jacquiline Heintz")) +(constraint (= (f "Hayley" "Marquess") "Hayley Marquess")) +(constraint (= (f "Andria" "Spagnoli") "Andria Spagnoli")) +(constraint (= (f "Irwin" "Covelli") "Irwin Covelli")) +(constraint (= (f "Gertude" "Montiel") "Gertude Montiel")) +(constraint (= (f "Stefany" "Reily") "Stefany Reily")) +(constraint (= (f "Rae" "Mcgaughey") "Rae Mcgaughey")) +(constraint (= (f "Cruz" "Latimore") "Cruz Latimore")) +(constraint (= (f "Maryann" "Casler") "Maryann Casler")) +(constraint (= (f "Annalisa" "Gregori") "Annalisa Gregori")) +(constraint (= (f "Jenee" "Pannell") "Jenee Pannell")) +(check-synth) diff --git a/PBE_Strings_Track/name-combine-long.sl b/PBE_Strings_Track/name-combine-long.sl new file mode 100644 index 0000000000000000000000000000000000000000..c20a758fe93c4e0f8a3fde333594afa778812847 --- /dev/null +++ b/PBE_Strings_Track/name-combine-long.sl @@ -0,0 +1,76 @@ +(set-logic SLIA) + +(synth-fun f ((firstname String) (lastname String)) String + ((Start String (ntString)) + (ntString String (firstname lastname " " + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "Launa" "Withers") "Launa Withers")) +(constraint (= (f "Lakenya" "Edison") "Lakenya Edison")) +(constraint (= (f "Brendan" "Hage") "Brendan Hage")) +(constraint (= (f "Bradford" "Lango") "Bradford Lango")) +(constraint (= (f "Rudolf" "Akiyama") "Rudolf Akiyama")) +(constraint (= (f "Lara" "Constable") "Lara Constable")) +(constraint (= (f "Madelaine" "Ghoston") "Madelaine Ghoston")) +(constraint (= (f "Salley" "Hornak") "Salley Hornak")) +(constraint (= (f "Micha" "Junkin") "Micha Junkin")) +(constraint (= (f "Teddy" "Bobo") "Teddy Bobo")) +(constraint (= (f "Coralee" "Scalia") "Coralee Scalia")) +(constraint (= (f "Jeff" "Quashie") "Jeff Quashie")) +(constraint (= (f "Vena" "Babiarz") "Vena Babiarz")) +(constraint (= (f "Karrie" "Lain") "Karrie Lain")) +(constraint (= (f "Tobias" "Dermody") "Tobias Dermody")) +(constraint (= (f "Celsa" "Hopkins") "Celsa Hopkins")) +(constraint (= (f "Kimberley" "Halpern") "Kimberley Halpern")) +(constraint (= (f "Phillip" "Rowden") "Phillip Rowden")) +(constraint (= (f "Elias" "Neil") "Elias Neil")) +(constraint (= (f "Lashanda" "Cortes") "Lashanda Cortes")) +(constraint (= (f "Mackenzie" "Spell") "Mackenzie Spell")) +(constraint (= (f "Kathlyn" "Eccleston") "Kathlyn Eccleston")) +(constraint (= (f "Georgina" "Brescia") "Georgina Brescia")) +(constraint (= (f "Beata" "Miah") "Beata Miah")) +(constraint (= (f "Desiree" "Seamons") "Desiree Seamons")) +(constraint (= (f "Jeanice" "Soderstrom") "Jeanice Soderstrom")) +(constraint (= (f "Mariel" "Jurgens") "Mariel Jurgens")) +(constraint (= (f "Alida" "Bogle") "Alida Bogle")) +(constraint (= (f "Jacqualine" "Olague") "Jacqualine Olague")) +(constraint (= (f "Joaquin" "Clasen") "Joaquin Clasen")) +(constraint (= (f "Samuel" "Richert") "Samuel Richert")) +(constraint (= (f "Malissa" "Marcus") "Malissa Marcus")) +(constraint (= (f "Alaina" "Partida") "Alaina Partida")) +(constraint (= (f "Trinidad" "Mulloy") "Trinidad Mulloy")) +(constraint (= (f "Carlene" "Garrard") "Carlene Garrard")) +(constraint (= (f "Melodi" "Chism") "Melodi Chism")) +(constraint (= (f "Bess" "Chilcott") "Bess Chilcott")) +(constraint (= (f "Chong" "Aylward") "Chong Aylward")) +(constraint (= (f "Jani" "Ramthun") "Jani Ramthun")) +(constraint (= (f "Jacquiline" "Heintz") "Jacquiline Heintz")) +(constraint (= (f "Hayley" "Marquess") "Hayley Marquess")) +(constraint (= (f "Andria" "Spagnoli") "Andria Spagnoli")) +(constraint (= (f "Irwin" "Covelli") "Irwin Covelli")) +(constraint (= (f "Gertude" "Montiel") "Gertude Montiel")) +(constraint (= (f "Stefany" "Reily") "Stefany Reily")) +(constraint (= (f "Rae" "Mcgaughey") "Rae Mcgaughey")) +(constraint (= (f "Cruz" "Latimore") "Cruz Latimore")) +(constraint (= (f "Maryann" "Casler") "Maryann Casler")) +(constraint (= (f "Annalisa" "Gregori") "Annalisa Gregori")) +(constraint (= (f "Jenee" "Pannell") "Jenee Pannell")) + +(check-synth) diff --git a/PBE_Strings_Track/name-combine.sl b/PBE_Strings_Track/name-combine.sl new file mode 100644 index 0000000000000000000000000000000000000000..fb01bb432c4a8bebbdf7d125734f6073bbcfb809 --- /dev/null +++ b/PBE_Strings_Track/name-combine.sl @@ -0,0 +1,33 @@ +(set-logic SLIA) + +(synth-fun f ((firstname String) (lastname String)) String + ((Start String (ntString)) + (ntString String (firstname lastname " " + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var firstname String) +(declare-var lastname String) + +(constraint (= (f "Launa" "Withers") "Launa Withers")) +(constraint (= (f "Lakenya" "Edison") "Lakenya Edison")) +(constraint (= (f "Brendan" "Hage") "Brendan Hage")) +(constraint (= (f "Bradford" "Lango") "Bradford Lango")) +(constraint (= (f "Rudolf" "Akiyama") "Rudolf Akiyama")) +(constraint (= (f "Lara" "Constable") "Lara Constable")) + +(check-synth) diff --git a/PBE_Strings_Track/name-combine_short.sl b/PBE_Strings_Track/name-combine_short.sl new file mode 100644 index 0000000000000000000000000000000000000000..ccf24fe3787f2e17a75177da4b49cfcb5dcd177f --- /dev/null +++ b/PBE_Strings_Track/name-combine_short.sl @@ -0,0 +1,30 @@ +(set-logic SLIA) + +(synth-fun f ((firstname String) (lastname String)) String + ((Start String (ntString)) + (ntString String (firstname lastname " " + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString))))) + + +(declare-var firstname String) +(declare-var lastname String) + +(constraint (= (f "Launa" "Withers") "Launa Withers")) +(constraint (= (f "Lakenya" "Edison") "Lakenya Edison")) +(constraint (= (f "Brendan" "Hage") "Brendan Hage")) +(constraint (= (f "Bradford" "Lango") "Bradford Lango")) +(constraint (= (f "Rudolf" "Akiyama") "Rudolf Akiyama")) +(constraint (= (f "Lara" "Constable") "Lara Constable")) + +(check-synth) diff --git a/PBE_Strings_Track/phone-1-long-repeat.sl b/PBE_Strings_Track/phone-1-long-repeat.sl new file mode 100644 index 0000000000000000000000000000000000000000..bd7f392261eae06b5ae4de5f735e0a849c59c304 --- /dev/null +++ b/PBE_Strings_Track/phone-1-long-repeat.sl @@ -0,0 +1,426 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "938-242-504") "242")) +(constraint (= (f "938-242-504") "242")) +(constraint (= (f "938-242-504") "242")) +(constraint (= (f "308-916-545") "916")) +(constraint (= (f "308-916-545") "916")) +(constraint (= (f "308-916-545") "916")) +(constraint (= (f "623-599-749") "599")) +(constraint (= (f "623-599-749") "599")) +(constraint (= (f "623-599-749") "599")) +(constraint (= (f "981-424-843") "424")) +(constraint (= (f "981-424-843") "424")) +(constraint (= (f "981-424-843") "424")) +(constraint (= (f "118-980-214") "980")) +(constraint (= (f "118-980-214") "980")) +(constraint (= (f "118-980-214") "980")) +(constraint (= (f "244-655-094") "655")) +(constraint (= (f "244-655-094") "655")) +(constraint (= (f "244-655-094") "655")) +(constraint (= (f "830-941-991") "941")) +(constraint (= (f "830-941-991") "941")) +(constraint (= (f "830-941-991") "941")) +(constraint (= (f "911-186-562") "186")) +(constraint (= (f "911-186-562") "186")) +(constraint (= (f "911-186-562") "186")) +(constraint (= (f "002-500-200") "500")) +(constraint (= (f "002-500-200") "500")) +(constraint (= (f "002-500-200") "500")) +(constraint (= (f "113-860-034") "860")) +(constraint (= (f "113-860-034") "860")) +(constraint (= (f "113-860-034") "860")) +(constraint (= (f "457-622-959") "622")) +(constraint (= (f "457-622-959") "622")) +(constraint (= (f "457-622-959") "622")) +(constraint (= (f "986-722-311") "722")) +(constraint (= (f "986-722-311") "722")) +(constraint (= (f "986-722-311") "722")) +(constraint (= (f "110-170-771") "170")) +(constraint (= (f "110-170-771") "170")) +(constraint (= (f "110-170-771") "170")) +(constraint (= (f "469-610-118") "610")) +(constraint (= (f "469-610-118") "610")) +(constraint (= (f "469-610-118") "610")) +(constraint (= (f "817-925-247") "925")) +(constraint (= (f "817-925-247") "925")) +(constraint (= (f "817-925-247") "925")) +(constraint (= (f "256-899-439") "899")) +(constraint (= (f "256-899-439") "899")) +(constraint (= (f "256-899-439") "899")) +(constraint (= (f "886-911-726") "911")) +(constraint (= (f "886-911-726") "911")) +(constraint (= (f "886-911-726") "911")) +(constraint (= (f "562-950-358") "950")) +(constraint (= (f "562-950-358") "950")) +(constraint (= (f "562-950-358") "950")) +(constraint (= (f "693-049-588") "049")) +(constraint (= (f "693-049-588") "049")) +(constraint (= (f "693-049-588") "049")) +(constraint (= (f "840-503-234") "503")) +(constraint (= (f "840-503-234") "503")) +(constraint (= (f "840-503-234") "503")) +(constraint (= (f "698-815-340") "815")) +(constraint (= (f "698-815-340") "815")) +(constraint (= (f "698-815-340") "815")) +(constraint (= (f "498-808-434") "808")) +(constraint (= (f "498-808-434") "808")) +(constraint (= (f "498-808-434") "808")) +(constraint (= (f "329-545-000") "545")) +(constraint (= (f "329-545-000") "545")) +(constraint (= (f "329-545-000") "545")) +(constraint (= (f "380-281-597") "281")) +(constraint (= (f "380-281-597") "281")) +(constraint (= (f "380-281-597") "281")) +(constraint (= (f "332-395-493") "395")) +(constraint (= (f "332-395-493") "395")) +(constraint (= (f "332-395-493") "395")) +(constraint (= (f "251-903-028") "903")) +(constraint (= (f "251-903-028") "903")) +(constraint (= (f "251-903-028") "903")) +(constraint (= (f "176-090-894") "090")) +(constraint (= (f "176-090-894") "090")) +(constraint (= (f "176-090-894") "090")) +(constraint (= (f "336-611-100") "611")) +(constraint (= (f "336-611-100") "611")) +(constraint (= (f "336-611-100") "611")) +(constraint (= (f "416-390-647") "390")) +(constraint (= (f "416-390-647") "390")) +(constraint (= (f "416-390-647") "390")) +(constraint (= (f "019-430-596") "430")) +(constraint (= (f "019-430-596") "430")) +(constraint (= (f "019-430-596") "430")) +(constraint (= (f "960-659-771") "659")) +(constraint (= (f "960-659-771") "659")) +(constraint (= (f "960-659-771") "659")) +(constraint (= (f "475-505-007") "505")) +(constraint (= (f "475-505-007") "505")) +(constraint (= (f "475-505-007") "505")) +(constraint (= (f "424-069-886") "069")) +(constraint (= (f "424-069-886") "069")) +(constraint (= (f "424-069-886") "069")) +(constraint (= (f "941-102-117") "102")) +(constraint (= (f "941-102-117") "102")) +(constraint (= (f "941-102-117") "102")) +(constraint (= (f "331-728-008") "728")) +(constraint (= (f "331-728-008") "728")) +(constraint (= (f "331-728-008") "728")) +(constraint (= (f "487-726-198") "726")) +(constraint (= (f "487-726-198") "726")) +(constraint (= (f "487-726-198") "726")) +(constraint (= (f "612-419-942") "419")) +(constraint (= (f "612-419-942") "419")) +(constraint (= (f "612-419-942") "419")) +(constraint (= (f "594-741-346") "741")) +(constraint (= (f "594-741-346") "741")) +(constraint (= (f "594-741-346") "741")) +(constraint (= (f "320-984-742") "984")) +(constraint (= (f "320-984-742") "984")) +(constraint (= (f "320-984-742") "984")) +(constraint (= (f "060-919-361") "919")) +(constraint (= (f "060-919-361") "919")) +(constraint (= (f "060-919-361") "919")) +(constraint (= (f "275-536-998") "536")) +(constraint (= (f "275-536-998") "536")) +(constraint (= (f "275-536-998") "536")) +(constraint (= (f "548-835-065") "835")) +(constraint (= (f "548-835-065") "835")) +(constraint (= (f "548-835-065") "835")) +(constraint (= (f "197-485-507") "485")) +(constraint (= (f "197-485-507") "485")) +(constraint (= (f "197-485-507") "485")) +(constraint (= (f "455-776-949") "776")) +(constraint (= (f "455-776-949") "776")) +(constraint (= (f "455-776-949") "776")) +(constraint (= (f "085-421-340") "421")) +(constraint (= (f "085-421-340") "421")) +(constraint (= (f "085-421-340") "421")) +(constraint (= (f "785-713-099") "713")) +(constraint (= (f "785-713-099") "713")) +(constraint (= (f "785-713-099") "713")) +(constraint (= (f "426-712-861") "712")) +(constraint (= (f "426-712-861") "712")) +(constraint (= (f "426-712-861") "712")) +(constraint (= (f "386-994-906") "994")) +(constraint (= (f "386-994-906") "994")) +(constraint (= (f "386-994-906") "994")) +(constraint (= (f "918-304-840") "304")) +(constraint (= (f "918-304-840") "304")) +(constraint (= (f "918-304-840") "304")) +(constraint (= (f "247-153-598") "153")) +(constraint (= (f "247-153-598") "153")) +(constraint (= (f "247-153-598") "153")) +(constraint (= (f "075-497-069") "497")) +(constraint (= (f "075-497-069") "497")) +(constraint (= (f "075-497-069") "497")) +(constraint (= (f "140-726-583") "726")) +(constraint (= (f "140-726-583") "726")) +(constraint (= (f "140-726-583") "726")) +(constraint (= (f "049-413-248") "413")) +(constraint (= (f "049-413-248") "413")) +(constraint (= (f "049-413-248") "413")) +(constraint (= (f "977-386-462") "386")) +(constraint (= (f "977-386-462") "386")) +(constraint (= (f "977-386-462") "386")) +(constraint (= (f "058-272-455") "272")) +(constraint (= (f "058-272-455") "272")) +(constraint (= (f "058-272-455") "272")) +(constraint (= (f "428-629-927") "629")) +(constraint (= (f "428-629-927") "629")) +(constraint (= (f "428-629-927") "629")) +(constraint (= (f "449-122-191") "122")) +(constraint (= (f "449-122-191") "122")) +(constraint (= (f "449-122-191") "122")) +(constraint (= (f "568-759-670") "759")) +(constraint (= (f "568-759-670") "759")) +(constraint (= (f "568-759-670") "759")) +(constraint (= (f "312-846-053") "846")) +(constraint (= (f "312-846-053") "846")) +(constraint (= (f "312-846-053") "846")) +(constraint (= (f "943-037-297") "037")) +(constraint (= (f "943-037-297") "037")) +(constraint (= (f "943-037-297") "037")) +(constraint (= (f "014-270-177") "270")) +(constraint (= (f "014-270-177") "270")) +(constraint (= (f "014-270-177") "270")) +(constraint (= (f "658-877-878") "877")) +(constraint (= (f "658-877-878") "877")) +(constraint (= (f "658-877-878") "877")) +(constraint (= (f "888-594-038") "594")) +(constraint (= (f "888-594-038") "594")) +(constraint (= (f "888-594-038") "594")) +(constraint (= (f "232-253-254") "253")) +(constraint (= (f "232-253-254") "253")) +(constraint (= (f "232-253-254") "253")) +(constraint (= (f "308-722-292") "722")) +(constraint (= (f "308-722-292") "722")) +(constraint (= (f "308-722-292") "722")) +(constraint (= (f "342-145-742") "145")) +(constraint (= (f "342-145-742") "145")) +(constraint (= (f "342-145-742") "145")) +(constraint (= (f "568-181-515") "181")) +(constraint (= (f "568-181-515") "181")) +(constraint (= (f "568-181-515") "181")) +(constraint (= (f "300-140-756") "140")) +(constraint (= (f "300-140-756") "140")) +(constraint (= (f "300-140-756") "140")) +(constraint (= (f "099-684-216") "684")) +(constraint (= (f "099-684-216") "684")) +(constraint (= (f "099-684-216") "684")) +(constraint (= (f "575-296-621") "296")) +(constraint (= (f "575-296-621") "296")) +(constraint (= (f "575-296-621") "296")) +(constraint (= (f "994-443-794") "443")) +(constraint (= (f "994-443-794") "443")) +(constraint (= (f "994-443-794") "443")) +(constraint (= (f "400-334-692") "334")) +(constraint (= (f "400-334-692") "334")) +(constraint (= (f "400-334-692") "334")) +(constraint (= (f "684-711-883") "711")) +(constraint (= (f "684-711-883") "711")) +(constraint (= (f "684-711-883") "711")) +(constraint (= (f "539-636-358") "636")) +(constraint (= (f "539-636-358") "636")) +(constraint (= (f "539-636-358") "636")) +(constraint (= (f "009-878-919") "878")) +(constraint (= (f "009-878-919") "878")) +(constraint (= (f "009-878-919") "878")) +(constraint (= (f "919-545-701") "545")) +(constraint (= (f "919-545-701") "545")) +(constraint (= (f "919-545-701") "545")) +(constraint (= (f "546-399-239") "399")) +(constraint (= (f "546-399-239") "399")) +(constraint (= (f "546-399-239") "399")) +(constraint (= (f "993-608-757") "608")) +(constraint (= (f "993-608-757") "608")) +(constraint (= (f "993-608-757") "608")) +(constraint (= (f "107-652-845") "652")) +(constraint (= (f "107-652-845") "652")) +(constraint (= (f "107-652-845") "652")) +(constraint (= (f "206-805-793") "805")) +(constraint (= (f "206-805-793") "805")) +(constraint (= (f "206-805-793") "805")) +(constraint (= (f "198-857-684") "857")) +(constraint (= (f "198-857-684") "857")) +(constraint (= (f "198-857-684") "857")) +(constraint (= (f "912-827-430") "827")) +(constraint (= (f "912-827-430") "827")) +(constraint (= (f "912-827-430") "827")) +(constraint (= (f "560-951-766") "951")) +(constraint (= (f "560-951-766") "951")) +(constraint (= (f "560-951-766") "951")) +(constraint (= (f "142-178-290") "178")) +(constraint (= (f "142-178-290") "178")) +(constraint (= (f "142-178-290") "178")) +(constraint (= (f "732-196-946") "196")) +(constraint (= (f "732-196-946") "196")) +(constraint (= (f "732-196-946") "196")) +(constraint (= (f "963-875-745") "875")) +(constraint (= (f "963-875-745") "875")) +(constraint (= (f "963-875-745") "875")) +(constraint (= (f "881-865-867") "865")) +(constraint (= (f "881-865-867") "865")) +(constraint (= (f "881-865-867") "865")) +(constraint (= (f "234-686-715") "686")) +(constraint (= (f "234-686-715") "686")) +(constraint (= (f "234-686-715") "686")) +(constraint (= (f "720-330-583") "330")) +(constraint (= (f "720-330-583") "330")) +(constraint (= (f "720-330-583") "330")) +(constraint (= (f "593-065-126") "065")) +(constraint (= (f "593-065-126") "065")) +(constraint (= (f "593-065-126") "065")) +(constraint (= (f "671-778-064") "778")) +(constraint (= (f "671-778-064") "778")) +(constraint (= (f "671-778-064") "778")) +(constraint (= (f "252-029-036") "029")) +(constraint (= (f "252-029-036") "029")) +(constraint (= (f "252-029-036") "029")) +(constraint (= (f "700-322-036") "322")) +(constraint (= (f "700-322-036") "322")) +(constraint (= (f "700-322-036") "322")) +(constraint (= (f "882-587-473") "587")) +(constraint (= (f "882-587-473") "587")) +(constraint (= (f "882-587-473") "587")) +(constraint (= (f "964-134-953") "134")) +(constraint (= (f "964-134-953") "134")) +(constraint (= (f "964-134-953") "134")) +(constraint (= (f "038-300-876") "300")) +(constraint (= (f "038-300-876") "300")) +(constraint (= (f "038-300-876") "300")) +(constraint (= (f "158-894-947") "894")) +(constraint (= (f "158-894-947") "894")) +(constraint (= (f "158-894-947") "894")) +(constraint (= (f "757-454-374") "454")) +(constraint (= (f "757-454-374") "454")) +(constraint (= (f "757-454-374") "454")) +(constraint (= (f "872-513-190") "513")) +(constraint (= (f "872-513-190") "513")) +(constraint (= (f "872-513-190") "513")) +(constraint (= (f "566-086-726") "086")) +(constraint (= (f "566-086-726") "086")) +(constraint (= (f "566-086-726") "086")) +(constraint (= (f "938-242-504") "242")) +(constraint (= (f "308-916-545") "916")) +(constraint (= (f "623-599-749") "599")) +(constraint (= (f "981-424-843") "424")) +(constraint (= (f "118-980-214") "980")) +(constraint (= (f "244-655-094") "655")) +(constraint (= (f "830-941-991") "941")) +(constraint (= (f "911-186-562") "186")) +(constraint (= (f "002-500-200") "500")) +(constraint (= (f "113-860-034") "860")) +(constraint (= (f "457-622-959") "622")) +(constraint (= (f "986-722-311") "722")) +(constraint (= (f "110-170-771") "170")) +(constraint (= (f "469-610-118") "610")) +(constraint (= (f "817-925-247") "925")) +(constraint (= (f "256-899-439") "899")) +(constraint (= (f "886-911-726") "911")) +(constraint (= (f "562-950-358") "950")) +(constraint (= (f "693-049-588") "049")) +(constraint (= (f "840-503-234") "503")) +(constraint (= (f "698-815-340") "815")) +(constraint (= (f "498-808-434") "808")) +(constraint (= (f "329-545-000") "545")) +(constraint (= (f "380-281-597") "281")) +(constraint (= (f "332-395-493") "395")) +(constraint (= (f "251-903-028") "903")) +(constraint (= (f "176-090-894") "090")) +(constraint (= (f "336-611-100") "611")) +(constraint (= (f "416-390-647") "390")) +(constraint (= (f "019-430-596") "430")) +(constraint (= (f "960-659-771") "659")) +(constraint (= (f "475-505-007") "505")) +(constraint (= (f "424-069-886") "069")) +(constraint (= (f "941-102-117") "102")) +(constraint (= (f "331-728-008") "728")) +(constraint (= (f "487-726-198") "726")) +(constraint (= (f "612-419-942") "419")) +(constraint (= (f "594-741-346") "741")) +(constraint (= (f "320-984-742") "984")) +(constraint (= (f "060-919-361") "919")) +(constraint (= (f "275-536-998") "536")) +(constraint (= (f "548-835-065") "835")) +(constraint (= (f "197-485-507") "485")) +(constraint (= (f "455-776-949") "776")) +(constraint (= (f "085-421-340") "421")) +(constraint (= (f "785-713-099") "713")) +(constraint (= (f "426-712-861") "712")) +(constraint (= (f "386-994-906") "994")) +(constraint (= (f "918-304-840") "304")) +(constraint (= (f "247-153-598") "153")) +(constraint (= (f "075-497-069") "497")) +(constraint (= (f "140-726-583") "726")) +(constraint (= (f "049-413-248") "413")) +(constraint (= (f "977-386-462") "386")) +(constraint (= (f "058-272-455") "272")) +(constraint (= (f "428-629-927") "629")) +(constraint (= (f "449-122-191") "122")) +(constraint (= (f "568-759-670") "759")) +(constraint (= (f "312-846-053") "846")) +(constraint (= (f "943-037-297") "037")) +(constraint (= (f "014-270-177") "270")) +(constraint (= (f "658-877-878") "877")) +(constraint (= (f "888-594-038") "594")) +(constraint (= (f "232-253-254") "253")) +(constraint (= (f "308-722-292") "722")) +(constraint (= (f "342-145-742") "145")) +(constraint (= (f "568-181-515") "181")) +(constraint (= (f "300-140-756") "140")) +(constraint (= (f "099-684-216") "684")) +(constraint (= (f "575-296-621") "296")) +(constraint (= (f "994-443-794") "443")) +(constraint (= (f "400-334-692") "334")) +(constraint (= (f "684-711-883") "711")) +(constraint (= (f "539-636-358") "636")) +(constraint (= (f "009-878-919") "878")) +(constraint (= (f "919-545-701") "545")) +(constraint (= (f "546-399-239") "399")) +(constraint (= (f "993-608-757") "608")) +(constraint (= (f "107-652-845") "652")) +(constraint (= (f "206-805-793") "805")) +(constraint (= (f "198-857-684") "857")) +(constraint (= (f "912-827-430") "827")) +(constraint (= (f "560-951-766") "951")) +(constraint (= (f "142-178-290") "178")) +(constraint (= (f "732-196-946") "196")) +(constraint (= (f "963-875-745") "875")) +(constraint (= (f "881-865-867") "865")) +(constraint (= (f "234-686-715") "686")) +(constraint (= (f "720-330-583") "330")) +(constraint (= (f "593-065-126") "065")) +(constraint (= (f "671-778-064") "778")) +(constraint (= (f "252-029-036") "029")) +(constraint (= (f "700-322-036") "322")) +(constraint (= (f "882-587-473") "587")) +(constraint (= (f "964-134-953") "134")) +(constraint (= (f "038-300-876") "300")) +(constraint (= (f "158-894-947") "894")) +(constraint (= (f "757-454-374") "454")) +(constraint (= (f "872-513-190") "513")) +(constraint (= (f "566-086-726") "086")) + +(check-synth) diff --git a/PBE_Strings_Track/phone-1-long.sl b/PBE_Strings_Track/phone-1-long.sl new file mode 100644 index 0000000000000000000000000000000000000000..d7ecfe2fd34c44f2295b36f2d7c669af71538a90 --- /dev/null +++ b/PBE_Strings_Track/phone-1-long.sl @@ -0,0 +1,126 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "938-242-504") "242")) +(constraint (= (f "308-916-545") "916")) +(constraint (= (f "623-599-749") "599")) +(constraint (= (f "981-424-843") "424")) +(constraint (= (f "118-980-214") "980")) +(constraint (= (f "244-655-094") "655")) +(constraint (= (f "830-941-991") "941")) +(constraint (= (f "911-186-562") "186")) +(constraint (= (f "002-500-200") "500")) +(constraint (= (f "113-860-034") "860")) +(constraint (= (f "457-622-959") "622")) +(constraint (= (f "986-722-311") "722")) +(constraint (= (f "110-170-771") "170")) +(constraint (= (f "469-610-118") "610")) +(constraint (= (f "817-925-247") "925")) +(constraint (= (f "256-899-439") "899")) +(constraint (= (f "886-911-726") "911")) +(constraint (= (f "562-950-358") "950")) +(constraint (= (f "693-049-588") "049")) +(constraint (= (f "840-503-234") "503")) +(constraint (= (f "698-815-340") "815")) +(constraint (= (f "498-808-434") "808")) +(constraint (= (f "329-545-000") "545")) +(constraint (= (f "380-281-597") "281")) +(constraint (= (f "332-395-493") "395")) +(constraint (= (f "251-903-028") "903")) +(constraint (= (f "176-090-894") "090")) +(constraint (= (f "336-611-100") "611")) +(constraint (= (f "416-390-647") "390")) +(constraint (= (f "019-430-596") "430")) +(constraint (= (f "960-659-771") "659")) +(constraint (= (f "475-505-007") "505")) +(constraint (= (f "424-069-886") "069")) +(constraint (= (f "941-102-117") "102")) +(constraint (= (f "331-728-008") "728")) +(constraint (= (f "487-726-198") "726")) +(constraint (= (f "612-419-942") "419")) +(constraint (= (f "594-741-346") "741")) +(constraint (= (f "320-984-742") "984")) +(constraint (= (f "060-919-361") "919")) +(constraint (= (f "275-536-998") "536")) +(constraint (= (f "548-835-065") "835")) +(constraint (= (f "197-485-507") "485")) +(constraint (= (f "455-776-949") "776")) +(constraint (= (f "085-421-340") "421")) +(constraint (= (f "785-713-099") "713")) +(constraint (= (f "426-712-861") "712")) +(constraint (= (f "386-994-906") "994")) +(constraint (= (f "918-304-840") "304")) +(constraint (= (f "247-153-598") "153")) +(constraint (= (f "075-497-069") "497")) +(constraint (= (f "140-726-583") "726")) +(constraint (= (f "049-413-248") "413")) +(constraint (= (f "977-386-462") "386")) +(constraint (= (f "058-272-455") "272")) +(constraint (= (f "428-629-927") "629")) +(constraint (= (f "449-122-191") "122")) +(constraint (= (f "568-759-670") "759")) +(constraint (= (f "312-846-053") "846")) +(constraint (= (f "943-037-297") "037")) +(constraint (= (f "014-270-177") "270")) +(constraint (= (f "658-877-878") "877")) +(constraint (= (f "888-594-038") "594")) +(constraint (= (f "232-253-254") "253")) +(constraint (= (f "308-722-292") "722")) +(constraint (= (f "342-145-742") "145")) +(constraint (= (f "568-181-515") "181")) +(constraint (= (f "300-140-756") "140")) +(constraint (= (f "099-684-216") "684")) +(constraint (= (f "575-296-621") "296")) +(constraint (= (f "994-443-794") "443")) +(constraint (= (f "400-334-692") "334")) +(constraint (= (f "684-711-883") "711")) +(constraint (= (f "539-636-358") "636")) +(constraint (= (f "009-878-919") "878")) +(constraint (= (f "919-545-701") "545")) +(constraint (= (f "546-399-239") "399")) +(constraint (= (f "993-608-757") "608")) +(constraint (= (f "107-652-845") "652")) +(constraint (= (f "206-805-793") "805")) +(constraint (= (f "198-857-684") "857")) +(constraint (= (f "912-827-430") "827")) +(constraint (= (f "560-951-766") "951")) +(constraint (= (f "142-178-290") "178")) +(constraint (= (f "732-196-946") "196")) +(constraint (= (f "963-875-745") "875")) +(constraint (= (f "881-865-867") "865")) +(constraint (= (f "234-686-715") "686")) +(constraint (= (f "720-330-583") "330")) +(constraint (= (f "593-065-126") "065")) +(constraint (= (f "671-778-064") "778")) +(constraint (= (f "252-029-036") "029")) +(constraint (= (f "700-322-036") "322")) +(constraint (= (f "882-587-473") "587")) +(constraint (= (f "964-134-953") "134")) +(constraint (= (f "038-300-876") "300")) +(constraint (= (f "158-894-947") "894")) +(constraint (= (f "757-454-374") "454")) +(constraint (= (f "872-513-190") "513")) +(constraint (= (f "566-086-726") "086")) + +(check-synth) diff --git a/PBE_Strings_Track/phone-1.sl b/PBE_Strings_Track/phone-1.sl new file mode 100644 index 0000000000000000000000000000000000000000..7c26be80a08ebf5c9dc05e8f014e4dab973a4759 --- /dev/null +++ b/PBE_Strings_Track/phone-1.sl @@ -0,0 +1,32 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "938-242-504") "242")) +(constraint (= (f "308-916-545") "916")) +(constraint (= (f "623-599-749") "599")) +(constraint (= (f "981-424-843") "424")) +(constraint (= (f "118-980-214") "980")) +(constraint (= (f "244-655-094") "655")) + +(check-synth) diff --git a/PBE_Strings_Track/phone-10-long-repeat.sl b/PBE_Strings_Track/phone-10-long-repeat.sl new file mode 100644 index 0000000000000000000000000000000000000000..bf20aae936d1fd4a562022fd01e28631700b868a --- /dev/null +++ b/PBE_Strings_Track/phone-10-long-repeat.sl @@ -0,0 +1,426 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "+" "-" "." "(" ")" + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "+106 769-858-438") "+106 (769) 858-438")) +(constraint (= (f "+106 769-858-438") "+106 (769) 858-438")) +(constraint (= (f "+106 769-858-438") "+106 (769) 858-438")) +(constraint (= (f "+83 973-757-831") "+83 (973) 757-831")) +(constraint (= (f "+83 973-757-831") "+83 (973) 757-831")) +(constraint (= (f "+83 973-757-831") "+83 (973) 757-831")) +(constraint (= (f "+62 647-787-775") "+62 (647) 787-775")) +(constraint (= (f "+62 647-787-775") "+62 (647) 787-775")) +(constraint (= (f "+62 647-787-775") "+62 (647) 787-775")) +(constraint (= (f "+172 027-507-632") "+172 (027) 507-632")) +(constraint (= (f "+172 027-507-632") "+172 (027) 507-632")) +(constraint (= (f "+172 027-507-632") "+172 (027) 507-632")) +(constraint (= (f "+72 001-050-856") "+72 (001) 050-856")) +(constraint (= (f "+72 001-050-856") "+72 (001) 050-856")) +(constraint (= (f "+72 001-050-856") "+72 (001) 050-856")) +(constraint (= (f "+95 310-537-401") "+95 (310) 537-401")) +(constraint (= (f "+95 310-537-401") "+95 (310) 537-401")) +(constraint (= (f "+95 310-537-401") "+95 (310) 537-401")) +(constraint (= (f "+6 775-969-238") "+6 (775) 969-238")) +(constraint (= (f "+6 775-969-238") "+6 (775) 969-238")) +(constraint (= (f "+6 775-969-238") "+6 (775) 969-238")) +(constraint (= (f "+174 594-539-946") "+174 (594) 539-946")) +(constraint (= (f "+174 594-539-946") "+174 (594) 539-946")) +(constraint (= (f "+174 594-539-946") "+174 (594) 539-946")) +(constraint (= (f "+155 927-275-860") "+155 (927) 275-860")) +(constraint (= (f "+155 927-275-860") "+155 (927) 275-860")) +(constraint (= (f "+155 927-275-860") "+155 (927) 275-860")) +(constraint (= (f "+167 405-461-331") "+167 (405) 461-331")) +(constraint (= (f "+167 405-461-331") "+167 (405) 461-331")) +(constraint (= (f "+167 405-461-331") "+167 (405) 461-331")) +(constraint (= (f "+10 538-347-401") "+10 (538) 347-401")) +(constraint (= (f "+10 538-347-401") "+10 (538) 347-401")) +(constraint (= (f "+10 538-347-401") "+10 (538) 347-401")) +(constraint (= (f "+60 971-986-103") "+60 (971) 986-103")) +(constraint (= (f "+60 971-986-103") "+60 (971) 986-103")) +(constraint (= (f "+60 971-986-103") "+60 (971) 986-103")) +(constraint (= (f "+13 258-276-941") "+13 (258) 276-941")) +(constraint (= (f "+13 258-276-941") "+13 (258) 276-941")) +(constraint (= (f "+13 258-276-941") "+13 (258) 276-941")) +(constraint (= (f "+2 604-746-137") "+2 (604) 746-137")) +(constraint (= (f "+2 604-746-137") "+2 (604) 746-137")) +(constraint (= (f "+2 604-746-137") "+2 (604) 746-137")) +(constraint (= (f "+25 998-898-180") "+25 (998) 898-180")) +(constraint (= (f "+25 998-898-180") "+25 (998) 898-180")) +(constraint (= (f "+25 998-898-180") "+25 (998) 898-180")) +(constraint (= (f "+151 862-946-541") "+151 (862) 946-541")) +(constraint (= (f "+151 862-946-541") "+151 (862) 946-541")) +(constraint (= (f "+151 862-946-541") "+151 (862) 946-541")) +(constraint (= (f "+118 165-041-038") "+118 (165) 041-038")) +(constraint (= (f "+118 165-041-038") "+118 (165) 041-038")) +(constraint (= (f "+118 165-041-038") "+118 (165) 041-038")) +(constraint (= (f "+144 170-592-272") "+144 (170) 592-272")) +(constraint (= (f "+144 170-592-272") "+144 (170) 592-272")) +(constraint (= (f "+144 170-592-272") "+144 (170) 592-272")) +(constraint (= (f "+94 462-008-482") "+94 (462) 008-482")) +(constraint (= (f "+94 462-008-482") "+94 (462) 008-482")) +(constraint (= (f "+94 462-008-482") "+94 (462) 008-482")) +(constraint (= (f "+82 685-122-086") "+82 (685) 122-086")) +(constraint (= (f "+82 685-122-086") "+82 (685) 122-086")) +(constraint (= (f "+82 685-122-086") "+82 (685) 122-086")) +(constraint (= (f "+82 675-366-472") "+82 (675) 366-472")) +(constraint (= (f "+82 675-366-472") "+82 (675) 366-472")) +(constraint (= (f "+82 675-366-472") "+82 (675) 366-472")) +(constraint (= (f "+80 066-433-096") "+80 (066) 433-096")) +(constraint (= (f "+80 066-433-096") "+80 (066) 433-096")) +(constraint (= (f "+80 066-433-096") "+80 (066) 433-096")) +(constraint (= (f "+163 039-436-166") "+163 (039) 436-166")) +(constraint (= (f "+163 039-436-166") "+163 (039) 436-166")) +(constraint (= (f "+163 039-436-166") "+163 (039) 436-166")) +(constraint (= (f "+138 808-083-074") "+138 (808) 083-074")) +(constraint (= (f "+138 808-083-074") "+138 (808) 083-074")) +(constraint (= (f "+138 808-083-074") "+138 (808) 083-074")) +(constraint (= (f "+42 643-245-738") "+42 (643) 245-738")) +(constraint (= (f "+42 643-245-738") "+42 (643) 245-738")) +(constraint (= (f "+42 643-245-738") "+42 (643) 245-738")) +(constraint (= (f "+169 822-542-726") "+169 (822) 542-726")) +(constraint (= (f "+169 822-542-726") "+169 (822) 542-726")) +(constraint (= (f "+169 822-542-726") "+169 (822) 542-726")) +(constraint (= (f "+176 767-782-369") "+176 (767) 782-369")) +(constraint (= (f "+176 767-782-369") "+176 (767) 782-369")) +(constraint (= (f "+176 767-782-369") "+176 (767) 782-369")) +(constraint (= (f "+47 414-369-343") "+47 (414) 369-343")) +(constraint (= (f "+47 414-369-343") "+47 (414) 369-343")) +(constraint (= (f "+47 414-369-343") "+47 (414) 369-343")) +(constraint (= (f "+138 885-618-512") "+138 (885) 618-512")) +(constraint (= (f "+138 885-618-512") "+138 (885) 618-512")) +(constraint (= (f "+138 885-618-512") "+138 (885) 618-512")) +(constraint (= (f "+104 158-671-355") "+104 (158) 671-355")) +(constraint (= (f "+104 158-671-355") "+104 (158) 671-355")) +(constraint (= (f "+104 158-671-355") "+104 (158) 671-355")) +(constraint (= (f "+188 280-087-526") "+188 (280) 087-526")) +(constraint (= (f "+188 280-087-526") "+188 (280) 087-526")) +(constraint (= (f "+188 280-087-526") "+188 (280) 087-526")) +(constraint (= (f "+50 268-571-336") "+50 (268) 571-336")) +(constraint (= (f "+50 268-571-336") "+50 (268) 571-336")) +(constraint (= (f "+50 268-571-336") "+50 (268) 571-336")) +(constraint (= (f "+183 225-960-024") "+183 (225) 960-024")) +(constraint (= (f "+183 225-960-024") "+183 (225) 960-024")) +(constraint (= (f "+183 225-960-024") "+183 (225) 960-024")) +(constraint (= (f "+58 191-982-491") "+58 (191) 982-491")) +(constraint (= (f "+58 191-982-491") "+58 (191) 982-491")) +(constraint (= (f "+58 191-982-491") "+58 (191) 982-491")) +(constraint (= (f "+9 507-092-535") "+9 (507) 092-535")) +(constraint (= (f "+9 507-092-535") "+9 (507) 092-535")) +(constraint (= (f "+9 507-092-535") "+9 (507) 092-535")) +(constraint (= (f "+64 061-601-398") "+64 (061) 601-398")) +(constraint (= (f "+64 061-601-398") "+64 (061) 601-398")) +(constraint (= (f "+64 061-601-398") "+64 (061) 601-398")) +(constraint (= (f "+189 831-591-877") "+189 (831) 591-877")) +(constraint (= (f "+189 831-591-877") "+189 (831) 591-877")) +(constraint (= (f "+189 831-591-877") "+189 (831) 591-877")) +(constraint (= (f "+129 425-765-844") "+129 (425) 765-844")) +(constraint (= (f "+129 425-765-844") "+129 (425) 765-844")) +(constraint (= (f "+129 425-765-844") "+129 (425) 765-844")) +(constraint (= (f "+94 856-734-046") "+94 (856) 734-046")) +(constraint (= (f "+94 856-734-046") "+94 (856) 734-046")) +(constraint (= (f "+94 856-734-046") "+94 (856) 734-046")) +(constraint (= (f "+35 082-845-261") "+35 (082) 845-261")) +(constraint (= (f "+35 082-845-261") "+35 (082) 845-261")) +(constraint (= (f "+35 082-845-261") "+35 (082) 845-261")) +(constraint (= (f "+185 394-622-272") "+185 (394) 622-272")) +(constraint (= (f "+185 394-622-272") "+185 (394) 622-272")) +(constraint (= (f "+185 394-622-272") "+185 (394) 622-272")) +(constraint (= (f "+163 905-707-740") "+163 (905) 707-740")) +(constraint (= (f "+163 905-707-740") "+163 (905) 707-740")) +(constraint (= (f "+163 905-707-740") "+163 (905) 707-740")) +(constraint (= (f "+23 448-213-807") "+23 (448) 213-807")) +(constraint (= (f "+23 448-213-807") "+23 (448) 213-807")) +(constraint (= (f "+23 448-213-807") "+23 (448) 213-807")) +(constraint (= (f "+42 634-077-089") "+42 (634) 077-089")) +(constraint (= (f "+42 634-077-089") "+42 (634) 077-089")) +(constraint (= (f "+42 634-077-089") "+42 (634) 077-089")) +(constraint (= (f "+18 051-287-382") "+18 (051) 287-382")) +(constraint (= (f "+18 051-287-382") "+18 (051) 287-382")) +(constraint (= (f "+18 051-287-382") "+18 (051) 287-382")) +(constraint (= (f "+29 773-545-520") "+29 (773) 545-520")) +(constraint (= (f "+29 773-545-520") "+29 (773) 545-520")) +(constraint (= (f "+29 773-545-520") "+29 (773) 545-520")) +(constraint (= (f "+43 249-097-743") "+43 (249) 097-743")) +(constraint (= (f "+43 249-097-743") "+43 (249) 097-743")) +(constraint (= (f "+43 249-097-743") "+43 (249) 097-743")) +(constraint (= (f "+158 674-736-891") "+158 (674) 736-891")) +(constraint (= (f "+158 674-736-891") "+158 (674) 736-891")) +(constraint (= (f "+158 674-736-891") "+158 (674) 736-891")) +(constraint (= (f "+45 124-771-454") "+45 (124) 771-454")) +(constraint (= (f "+45 124-771-454") "+45 (124) 771-454")) +(constraint (= (f "+45 124-771-454") "+45 (124) 771-454")) +(constraint (= (f "+180 029-457-654") "+180 (029) 457-654")) +(constraint (= (f "+180 029-457-654") "+180 (029) 457-654")) +(constraint (= (f "+180 029-457-654") "+180 (029) 457-654")) +(constraint (= (f "+75 227-250-652") "+75 (227) 250-652")) +(constraint (= (f "+75 227-250-652") "+75 (227) 250-652")) +(constraint (= (f "+75 227-250-652") "+75 (227) 250-652")) +(constraint (= (f "+5 528-317-854") "+5 (528) 317-854")) +(constraint (= (f "+5 528-317-854") "+5 (528) 317-854")) +(constraint (= (f "+5 528-317-854") "+5 (528) 317-854")) +(constraint (= (f "+81 849-629-290") "+81 (849) 629-290")) +(constraint (= (f "+81 849-629-290") "+81 (849) 629-290")) +(constraint (= (f "+81 849-629-290") "+81 (849) 629-290")) +(constraint (= (f "+46 005-119-176") "+46 (005) 119-176")) +(constraint (= (f "+46 005-119-176") "+46 (005) 119-176")) +(constraint (= (f "+46 005-119-176") "+46 (005) 119-176")) +(constraint (= (f "+108 150-380-705") "+108 (150) 380-705")) +(constraint (= (f "+108 150-380-705") "+108 (150) 380-705")) +(constraint (= (f "+108 150-380-705") "+108 (150) 380-705")) +(constraint (= (f "+40 122-224-247") "+40 (122) 224-247")) +(constraint (= (f "+40 122-224-247") "+40 (122) 224-247")) +(constraint (= (f "+40 122-224-247") "+40 (122) 224-247")) +(constraint (= (f "+68 890-680-027") "+68 (890) 680-027")) +(constraint (= (f "+68 890-680-027") "+68 (890) 680-027")) +(constraint (= (f "+68 890-680-027") "+68 (890) 680-027")) +(constraint (= (f "+169 060-204-504") "+169 (060) 204-504")) +(constraint (= (f "+169 060-204-504") "+169 (060) 204-504")) +(constraint (= (f "+169 060-204-504") "+169 (060) 204-504")) +(constraint (= (f "+95 620-820-945") "+95 (620) 820-945")) +(constraint (= (f "+95 620-820-945") "+95 (620) 820-945")) +(constraint (= (f "+95 620-820-945") "+95 (620) 820-945")) +(constraint (= (f "+43 592-938-846") "+43 (592) 938-846")) +(constraint (= (f "+43 592-938-846") "+43 (592) 938-846")) +(constraint (= (f "+43 592-938-846") "+43 (592) 938-846")) +(constraint (= (f "+7 023-296-647") "+7 (023) 296-647")) +(constraint (= (f "+7 023-296-647") "+7 (023) 296-647")) +(constraint (= (f "+7 023-296-647") "+7 (023) 296-647")) +(constraint (= (f "+20 541-401-396") "+20 (541) 401-396")) +(constraint (= (f "+20 541-401-396") "+20 (541) 401-396")) +(constraint (= (f "+20 541-401-396") "+20 (541) 401-396")) +(constraint (= (f "+64 751-365-934") "+64 (751) 365-934")) +(constraint (= (f "+64 751-365-934") "+64 (751) 365-934")) +(constraint (= (f "+64 751-365-934") "+64 (751) 365-934")) +(constraint (= (f "+163 546-119-476") "+163 (546) 119-476")) +(constraint (= (f "+163 546-119-476") "+163 (546) 119-476")) +(constraint (= (f "+163 546-119-476") "+163 (546) 119-476")) +(constraint (= (f "+198 557-666-779") "+198 (557) 666-779")) +(constraint (= (f "+198 557-666-779") "+198 (557) 666-779")) +(constraint (= (f "+198 557-666-779") "+198 (557) 666-779")) +(constraint (= (f "+14 673-759-017") "+14 (673) 759-017")) +(constraint (= (f "+14 673-759-017") "+14 (673) 759-017")) +(constraint (= (f "+14 673-759-017") "+14 (673) 759-017")) +(constraint (= (f "+161 086-020-168") "+161 (086) 020-168")) +(constraint (= (f "+161 086-020-168") "+161 (086) 020-168")) +(constraint (= (f "+161 086-020-168") "+161 (086) 020-168")) +(constraint (= (f "+65 970-575-488") "+65 (970) 575-488")) +(constraint (= (f "+65 970-575-488") "+65 (970) 575-488")) +(constraint (= (f "+65 970-575-488") "+65 (970) 575-488")) +(constraint (= (f "+2 455-126-377") "+2 (455) 126-377")) +(constraint (= (f "+2 455-126-377") "+2 (455) 126-377")) +(constraint (= (f "+2 455-126-377") "+2 (455) 126-377")) +(constraint (= (f "+196 728-585-376") "+196 (728) 585-376")) +(constraint (= (f "+196 728-585-376") "+196 (728) 585-376")) +(constraint (= (f "+196 728-585-376") "+196 (728) 585-376")) +(constraint (= (f "+33 117-430-125") "+33 (117) 430-125")) +(constraint (= (f "+33 117-430-125") "+33 (117) 430-125")) +(constraint (= (f "+33 117-430-125") "+33 (117) 430-125")) +(constraint (= (f "+195 488-831-768") "+195 (488) 831-768")) +(constraint (= (f "+195 488-831-768") "+195 (488) 831-768")) +(constraint (= (f "+195 488-831-768") "+195 (488) 831-768")) +(constraint (= (f "+86 468-718-108") "+86 (468) 718-108")) +(constraint (= (f "+86 468-718-108") "+86 (468) 718-108")) +(constraint (= (f "+86 468-718-108") "+86 (468) 718-108")) +(constraint (= (f "+194 278-716-950") "+194 (278) 716-950")) +(constraint (= (f "+194 278-716-950") "+194 (278) 716-950")) +(constraint (= (f "+194 278-716-950") "+194 (278) 716-950")) +(constraint (= (f "+43 730-685-847") "+43 (730) 685-847")) +(constraint (= (f "+43 730-685-847") "+43 (730) 685-847")) +(constraint (= (f "+43 730-685-847") "+43 (730) 685-847")) +(constraint (= (f "+140 794-289-551") "+140 (794) 289-551")) +(constraint (= (f "+140 794-289-551") "+140 (794) 289-551")) +(constraint (= (f "+140 794-289-551") "+140 (794) 289-551")) +(constraint (= (f "+21 679-740-834") "+21 (679) 740-834")) +(constraint (= (f "+21 679-740-834") "+21 (679) 740-834")) +(constraint (= (f "+21 679-740-834") "+21 (679) 740-834")) +(constraint (= (f "+98 717-997-323") "+98 (717) 997-323")) +(constraint (= (f "+98 717-997-323") "+98 (717) 997-323")) +(constraint (= (f "+98 717-997-323") "+98 (717) 997-323")) +(constraint (= (f "+47 401-100-231") "+47 (401) 100-231")) +(constraint (= (f "+47 401-100-231") "+47 (401) 100-231")) +(constraint (= (f "+47 401-100-231") "+47 (401) 100-231")) +(constraint (= (f "+143 726-462-368") "+143 (726) 462-368")) +(constraint (= (f "+143 726-462-368") "+143 (726) 462-368")) +(constraint (= (f "+143 726-462-368") "+143 (726) 462-368")) +(constraint (= (f "+147 864-005-968") "+147 (864) 005-968")) +(constraint (= (f "+147 864-005-968") "+147 (864) 005-968")) +(constraint (= (f "+147 864-005-968") "+147 (864) 005-968")) +(constraint (= (f "+130 590-757-665") "+130 (590) 757-665")) +(constraint (= (f "+130 590-757-665") "+130 (590) 757-665")) +(constraint (= (f "+130 590-757-665") "+130 (590) 757-665")) +(constraint (= (f "+197 700-858-976") "+197 (700) 858-976")) +(constraint (= (f "+197 700-858-976") "+197 (700) 858-976")) +(constraint (= (f "+197 700-858-976") "+197 (700) 858-976")) +(constraint (= (f "+158 344-541-946") "+158 (344) 541-946")) +(constraint (= (f "+158 344-541-946") "+158 (344) 541-946")) +(constraint (= (f "+158 344-541-946") "+158 (344) 541-946")) +(constraint (= (f "+56 242-901-234") "+56 (242) 901-234")) +(constraint (= (f "+56 242-901-234") "+56 (242) 901-234")) +(constraint (= (f "+56 242-901-234") "+56 (242) 901-234")) +(constraint (= (f "+132 313-075-754") "+132 (313) 075-754")) +(constraint (= (f "+132 313-075-754") "+132 (313) 075-754")) +(constraint (= (f "+132 313-075-754") "+132 (313) 075-754")) +(constraint (= (f "+130 517-953-149") "+130 (517) 953-149")) +(constraint (= (f "+130 517-953-149") "+130 (517) 953-149")) +(constraint (= (f "+130 517-953-149") "+130 (517) 953-149")) +(constraint (= (f "+158 684-878-743") "+158 (684) 878-743")) +(constraint (= (f "+158 684-878-743") "+158 (684) 878-743")) +(constraint (= (f "+158 684-878-743") "+158 (684) 878-743")) +(constraint (= (f "+52 836-582-035") "+52 (836) 582-035")) +(constraint (= (f "+52 836-582-035") "+52 (836) 582-035")) +(constraint (= (f "+52 836-582-035") "+52 (836) 582-035")) +(constraint (= (f "+138 117-484-671") "+138 (117) 484-671")) +(constraint (= (f "+138 117-484-671") "+138 (117) 484-671")) +(constraint (= (f "+138 117-484-671") "+138 (117) 484-671")) +(constraint (= (f "+50 012-148-873") "+50 (012) 148-873")) +(constraint (= (f "+50 012-148-873") "+50 (012) 148-873")) +(constraint (= (f "+50 012-148-873") "+50 (012) 148-873")) +(constraint (= (f "+105 048-919-483") "+105 (048) 919-483")) +(constraint (= (f "+105 048-919-483") "+105 (048) 919-483")) +(constraint (= (f "+105 048-919-483") "+105 (048) 919-483")) +(constraint (= (f "+18 209-851-997") "+18 (209) 851-997")) +(constraint (= (f "+18 209-851-997") "+18 (209) 851-997")) +(constraint (= (f "+18 209-851-997") "+18 (209) 851-997")) +(constraint (= (f "+176 938-056-084") "+176 (938) 056-084")) +(constraint (= (f "+176 938-056-084") "+176 (938) 056-084")) +(constraint (= (f "+176 938-056-084") "+176 (938) 056-084")) +(constraint (= (f "+141 018-132-973") "+141 (018) 132-973")) +(constraint (= (f "+141 018-132-973") "+141 (018) 132-973")) +(constraint (= (f "+141 018-132-973") "+141 (018) 132-973")) +(constraint (= (f "+199 936-162-415") "+199 (936) 162-415")) +(constraint (= (f "+199 936-162-415") "+199 (936) 162-415")) +(constraint (= (f "+199 936-162-415") "+199 (936) 162-415")) +(constraint (= (f "+33 547-051-264") "+33 (547) 051-264")) +(constraint (= (f "+33 547-051-264") "+33 (547) 051-264")) +(constraint (= (f "+33 547-051-264") "+33 (547) 051-264")) +(constraint (= (f "+161 233-981-513") "+161 (233) 981-513")) +(constraint (= (f "+161 233-981-513") "+161 (233) 981-513")) +(constraint (= (f "+161 233-981-513") "+161 (233) 981-513")) +(constraint (= (f "+115 101-728-328") "+115 (101) 728-328")) +(constraint (= (f "+115 101-728-328") "+115 (101) 728-328")) +(constraint (= (f "+115 101-728-328") "+115 (101) 728-328")) +(constraint (= (f "+45 095-746-635") "+45 (095) 746-635")) +(constraint (= (f "+45 095-746-635") "+45 (095) 746-635")) +(constraint (= (f "+45 095-746-635") "+45 (095) 746-635")) +(constraint (= (f "+106 769-858-438") "+106 (769) 858-438")) +(constraint (= (f "+83 973-757-831") "+83 (973) 757-831")) +(constraint (= (f "+62 647-787-775") "+62 (647) 787-775")) +(constraint (= (f "+172 027-507-632") "+172 (027) 507-632")) +(constraint (= (f "+72 001-050-856") "+72 (001) 050-856")) +(constraint (= (f "+95 310-537-401") "+95 (310) 537-401")) +(constraint (= (f "+6 775-969-238") "+6 (775) 969-238")) +(constraint (= (f "+174 594-539-946") "+174 (594) 539-946")) +(constraint (= (f "+155 927-275-860") "+155 (927) 275-860")) +(constraint (= (f "+167 405-461-331") "+167 (405) 461-331")) +(constraint (= (f "+10 538-347-401") "+10 (538) 347-401")) +(constraint (= (f "+60 971-986-103") "+60 (971) 986-103")) +(constraint (= (f "+13 258-276-941") "+13 (258) 276-941")) +(constraint (= (f "+2 604-746-137") "+2 (604) 746-137")) +(constraint (= (f "+25 998-898-180") "+25 (998) 898-180")) +(constraint (= (f "+151 862-946-541") "+151 (862) 946-541")) +(constraint (= (f "+118 165-041-038") "+118 (165) 041-038")) +(constraint (= (f "+144 170-592-272") "+144 (170) 592-272")) +(constraint (= (f "+94 462-008-482") "+94 (462) 008-482")) +(constraint (= (f "+82 685-122-086") "+82 (685) 122-086")) +(constraint (= (f "+82 675-366-472") "+82 (675) 366-472")) +(constraint (= (f "+80 066-433-096") "+80 (066) 433-096")) +(constraint (= (f "+163 039-436-166") "+163 (039) 436-166")) +(constraint (= (f "+138 808-083-074") "+138 (808) 083-074")) +(constraint (= (f "+42 643-245-738") "+42 (643) 245-738")) +(constraint (= (f "+169 822-542-726") "+169 (822) 542-726")) +(constraint (= (f "+176 767-782-369") "+176 (767) 782-369")) +(constraint (= (f "+47 414-369-343") "+47 (414) 369-343")) +(constraint (= (f "+138 885-618-512") "+138 (885) 618-512")) +(constraint (= (f "+104 158-671-355") "+104 (158) 671-355")) +(constraint (= (f "+188 280-087-526") "+188 (280) 087-526")) +(constraint (= (f "+50 268-571-336") "+50 (268) 571-336")) +(constraint (= (f "+183 225-960-024") "+183 (225) 960-024")) +(constraint (= (f "+58 191-982-491") "+58 (191) 982-491")) +(constraint (= (f "+9 507-092-535") "+9 (507) 092-535")) +(constraint (= (f "+64 061-601-398") "+64 (061) 601-398")) +(constraint (= (f "+189 831-591-877") "+189 (831) 591-877")) +(constraint (= (f "+129 425-765-844") "+129 (425) 765-844")) +(constraint (= (f "+94 856-734-046") "+94 (856) 734-046")) +(constraint (= (f "+35 082-845-261") "+35 (082) 845-261")) +(constraint (= (f "+185 394-622-272") "+185 (394) 622-272")) +(constraint (= (f "+163 905-707-740") "+163 (905) 707-740")) +(constraint (= (f "+23 448-213-807") "+23 (448) 213-807")) +(constraint (= (f "+42 634-077-089") "+42 (634) 077-089")) +(constraint (= (f "+18 051-287-382") "+18 (051) 287-382")) +(constraint (= (f "+29 773-545-520") "+29 (773) 545-520")) +(constraint (= (f "+43 249-097-743") "+43 (249) 097-743")) +(constraint (= (f "+158 674-736-891") "+158 (674) 736-891")) +(constraint (= (f "+45 124-771-454") "+45 (124) 771-454")) +(constraint (= (f "+180 029-457-654") "+180 (029) 457-654")) +(constraint (= (f "+75 227-250-652") "+75 (227) 250-652")) +(constraint (= (f "+5 528-317-854") "+5 (528) 317-854")) +(constraint (= (f "+81 849-629-290") "+81 (849) 629-290")) +(constraint (= (f "+46 005-119-176") "+46 (005) 119-176")) +(constraint (= (f "+108 150-380-705") "+108 (150) 380-705")) +(constraint (= (f "+40 122-224-247") "+40 (122) 224-247")) +(constraint (= (f "+68 890-680-027") "+68 (890) 680-027")) +(constraint (= (f "+169 060-204-504") "+169 (060) 204-504")) +(constraint (= (f "+95 620-820-945") "+95 (620) 820-945")) +(constraint (= (f "+43 592-938-846") "+43 (592) 938-846")) +(constraint (= (f "+7 023-296-647") "+7 (023) 296-647")) +(constraint (= (f "+20 541-401-396") "+20 (541) 401-396")) +(constraint (= (f "+64 751-365-934") "+64 (751) 365-934")) +(constraint (= (f "+163 546-119-476") "+163 (546) 119-476")) +(constraint (= (f "+198 557-666-779") "+198 (557) 666-779")) +(constraint (= (f "+14 673-759-017") "+14 (673) 759-017")) +(constraint (= (f "+161 086-020-168") "+161 (086) 020-168")) +(constraint (= (f "+65 970-575-488") "+65 (970) 575-488")) +(constraint (= (f "+2 455-126-377") "+2 (455) 126-377")) +(constraint (= (f "+196 728-585-376") "+196 (728) 585-376")) +(constraint (= (f "+33 117-430-125") "+33 (117) 430-125")) +(constraint (= (f "+195 488-831-768") "+195 (488) 831-768")) +(constraint (= (f "+86 468-718-108") "+86 (468) 718-108")) +(constraint (= (f "+194 278-716-950") "+194 (278) 716-950")) +(constraint (= (f "+43 730-685-847") "+43 (730) 685-847")) +(constraint (= (f "+140 794-289-551") "+140 (794) 289-551")) +(constraint (= (f "+21 679-740-834") "+21 (679) 740-834")) +(constraint (= (f "+98 717-997-323") "+98 (717) 997-323")) +(constraint (= (f "+47 401-100-231") "+47 (401) 100-231")) +(constraint (= (f "+143 726-462-368") "+143 (726) 462-368")) +(constraint (= (f "+147 864-005-968") "+147 (864) 005-968")) +(constraint (= (f "+130 590-757-665") "+130 (590) 757-665")) +(constraint (= (f "+197 700-858-976") "+197 (700) 858-976")) +(constraint (= (f "+158 344-541-946") "+158 (344) 541-946")) +(constraint (= (f "+56 242-901-234") "+56 (242) 901-234")) +(constraint (= (f "+132 313-075-754") "+132 (313) 075-754")) +(constraint (= (f "+130 517-953-149") "+130 (517) 953-149")) +(constraint (= (f "+158 684-878-743") "+158 (684) 878-743")) +(constraint (= (f "+52 836-582-035") "+52 (836) 582-035")) +(constraint (= (f "+138 117-484-671") "+138 (117) 484-671")) +(constraint (= (f "+50 012-148-873") "+50 (012) 148-873")) +(constraint (= (f "+105 048-919-483") "+105 (048) 919-483")) +(constraint (= (f "+18 209-851-997") "+18 (209) 851-997")) +(constraint (= (f "+176 938-056-084") "+176 (938) 056-084")) +(constraint (= (f "+141 018-132-973") "+141 (018) 132-973")) +(constraint (= (f "+199 936-162-415") "+199 (936) 162-415")) +(constraint (= (f "+33 547-051-264") "+33 (547) 051-264")) +(constraint (= (f "+161 233-981-513") "+161 (233) 981-513")) +(constraint (= (f "+115 101-728-328") "+115 (101) 728-328")) +(constraint (= (f "+45 095-746-635") "+45 (095) 746-635")) + +(check-synth) diff --git a/PBE_Strings_Track/phone-10-long.sl b/PBE_Strings_Track/phone-10-long.sl new file mode 100644 index 0000000000000000000000000000000000000000..18037ecc5383b0ea236f0568a4a88757708f4604 --- /dev/null +++ b/PBE_Strings_Track/phone-10-long.sl @@ -0,0 +1,126 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "+" "-" "." "(" ")" + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "+106 769-858-438") "+106 (769) 858-438")) +(constraint (= (f "+83 973-757-831") "+83 (973) 757-831")) +(constraint (= (f "+62 647-787-775") "+62 (647) 787-775")) +(constraint (= (f "+172 027-507-632") "+172 (027) 507-632")) +(constraint (= (f "+72 001-050-856") "+72 (001) 050-856")) +(constraint (= (f "+95 310-537-401") "+95 (310) 537-401")) +(constraint (= (f "+6 775-969-238") "+6 (775) 969-238")) +(constraint (= (f "+174 594-539-946") "+174 (594) 539-946")) +(constraint (= (f "+155 927-275-860") "+155 (927) 275-860")) +(constraint (= (f "+167 405-461-331") "+167 (405) 461-331")) +(constraint (= (f "+10 538-347-401") "+10 (538) 347-401")) +(constraint (= (f "+60 971-986-103") "+60 (971) 986-103")) +(constraint (= (f "+13 258-276-941") "+13 (258) 276-941")) +(constraint (= (f "+2 604-746-137") "+2 (604) 746-137")) +(constraint (= (f "+25 998-898-180") "+25 (998) 898-180")) +(constraint (= (f "+151 862-946-541") "+151 (862) 946-541")) +(constraint (= (f "+118 165-041-038") "+118 (165) 041-038")) +(constraint (= (f "+144 170-592-272") "+144 (170) 592-272")) +(constraint (= (f "+94 462-008-482") "+94 (462) 008-482")) +(constraint (= (f "+82 685-122-086") "+82 (685) 122-086")) +(constraint (= (f "+82 675-366-472") "+82 (675) 366-472")) +(constraint (= (f "+80 066-433-096") "+80 (066) 433-096")) +(constraint (= (f "+163 039-436-166") "+163 (039) 436-166")) +(constraint (= (f "+138 808-083-074") "+138 (808) 083-074")) +(constraint (= (f "+42 643-245-738") "+42 (643) 245-738")) +(constraint (= (f "+169 822-542-726") "+169 (822) 542-726")) +(constraint (= (f "+176 767-782-369") "+176 (767) 782-369")) +(constraint (= (f "+47 414-369-343") "+47 (414) 369-343")) +(constraint (= (f "+138 885-618-512") "+138 (885) 618-512")) +(constraint (= (f "+104 158-671-355") "+104 (158) 671-355")) +(constraint (= (f "+188 280-087-526") "+188 (280) 087-526")) +(constraint (= (f "+50 268-571-336") "+50 (268) 571-336")) +(constraint (= (f "+183 225-960-024") "+183 (225) 960-024")) +(constraint (= (f "+58 191-982-491") "+58 (191) 982-491")) +(constraint (= (f "+9 507-092-535") "+9 (507) 092-535")) +(constraint (= (f "+64 061-601-398") "+64 (061) 601-398")) +(constraint (= (f "+189 831-591-877") "+189 (831) 591-877")) +(constraint (= (f "+129 425-765-844") "+129 (425) 765-844")) +(constraint (= (f "+94 856-734-046") "+94 (856) 734-046")) +(constraint (= (f "+35 082-845-261") "+35 (082) 845-261")) +(constraint (= (f "+185 394-622-272") "+185 (394) 622-272")) +(constraint (= (f "+163 905-707-740") "+163 (905) 707-740")) +(constraint (= (f "+23 448-213-807") "+23 (448) 213-807")) +(constraint (= (f "+42 634-077-089") "+42 (634) 077-089")) +(constraint (= (f "+18 051-287-382") "+18 (051) 287-382")) +(constraint (= (f "+29 773-545-520") "+29 (773) 545-520")) +(constraint (= (f "+43 249-097-743") "+43 (249) 097-743")) +(constraint (= (f "+158 674-736-891") "+158 (674) 736-891")) +(constraint (= (f "+45 124-771-454") "+45 (124) 771-454")) +(constraint (= (f "+180 029-457-654") "+180 (029) 457-654")) +(constraint (= (f "+75 227-250-652") "+75 (227) 250-652")) +(constraint (= (f "+5 528-317-854") "+5 (528) 317-854")) +(constraint (= (f "+81 849-629-290") "+81 (849) 629-290")) +(constraint (= (f "+46 005-119-176") "+46 (005) 119-176")) +(constraint (= (f "+108 150-380-705") "+108 (150) 380-705")) +(constraint (= (f "+40 122-224-247") "+40 (122) 224-247")) +(constraint (= (f "+68 890-680-027") "+68 (890) 680-027")) +(constraint (= (f "+169 060-204-504") "+169 (060) 204-504")) +(constraint (= (f "+95 620-820-945") "+95 (620) 820-945")) +(constraint (= (f "+43 592-938-846") "+43 (592) 938-846")) +(constraint (= (f "+7 023-296-647") "+7 (023) 296-647")) +(constraint (= (f "+20 541-401-396") "+20 (541) 401-396")) +(constraint (= (f "+64 751-365-934") "+64 (751) 365-934")) +(constraint (= (f "+163 546-119-476") "+163 (546) 119-476")) +(constraint (= (f "+198 557-666-779") "+198 (557) 666-779")) +(constraint (= (f "+14 673-759-017") "+14 (673) 759-017")) +(constraint (= (f "+161 086-020-168") "+161 (086) 020-168")) +(constraint (= (f "+65 970-575-488") "+65 (970) 575-488")) +(constraint (= (f "+2 455-126-377") "+2 (455) 126-377")) +(constraint (= (f "+196 728-585-376") "+196 (728) 585-376")) +(constraint (= (f "+33 117-430-125") "+33 (117) 430-125")) +(constraint (= (f "+195 488-831-768") "+195 (488) 831-768")) +(constraint (= (f "+86 468-718-108") "+86 (468) 718-108")) +(constraint (= (f "+194 278-716-950") "+194 (278) 716-950")) +(constraint (= (f "+43 730-685-847") "+43 (730) 685-847")) +(constraint (= (f "+140 794-289-551") "+140 (794) 289-551")) +(constraint (= (f "+21 679-740-834") "+21 (679) 740-834")) +(constraint (= (f "+98 717-997-323") "+98 (717) 997-323")) +(constraint (= (f "+47 401-100-231") "+47 (401) 100-231")) +(constraint (= (f "+143 726-462-368") "+143 (726) 462-368")) +(constraint (= (f "+147 864-005-968") "+147 (864) 005-968")) +(constraint (= (f "+130 590-757-665") "+130 (590) 757-665")) +(constraint (= (f "+197 700-858-976") "+197 (700) 858-976")) +(constraint (= (f "+158 344-541-946") "+158 (344) 541-946")) +(constraint (= (f "+56 242-901-234") "+56 (242) 901-234")) +(constraint (= (f "+132 313-075-754") "+132 (313) 075-754")) +(constraint (= (f "+130 517-953-149") "+130 (517) 953-149")) +(constraint (= (f "+158 684-878-743") "+158 (684) 878-743")) +(constraint (= (f "+52 836-582-035") "+52 (836) 582-035")) +(constraint (= (f "+138 117-484-671") "+138 (117) 484-671")) +(constraint (= (f "+50 012-148-873") "+50 (012) 148-873")) +(constraint (= (f "+105 048-919-483") "+105 (048) 919-483")) +(constraint (= (f "+18 209-851-997") "+18 (209) 851-997")) +(constraint (= (f "+176 938-056-084") "+176 (938) 056-084")) +(constraint (= (f "+141 018-132-973") "+141 (018) 132-973")) +(constraint (= (f "+199 936-162-415") "+199 (936) 162-415")) +(constraint (= (f "+33 547-051-264") "+33 (547) 051-264")) +(constraint (= (f "+161 233-981-513") "+161 (233) 981-513")) +(constraint (= (f "+115 101-728-328") "+115 (101) 728-328")) +(constraint (= (f "+45 095-746-635") "+45 (095) 746-635")) + +(check-synth) diff --git a/PBE_Strings_Track/phone-10.sl b/PBE_Strings_Track/phone-10.sl new file mode 100644 index 0000000000000000000000000000000000000000..dda6a0a0b2735d15a26156f96eb56420b1dfe026 --- /dev/null +++ b/PBE_Strings_Track/phone-10.sl @@ -0,0 +1,33 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "+" "-" "." "(" ")" + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "+106 769-858-438") "+106 (769) 858-438")) +(constraint (= (f "+83 973-757-831") "+83 (973) 757-831")) +(constraint (= (f "+62 647-787-775") "+62 (647) 787-775")) +(constraint (= (f "+172 027-507-632") "+172 (027) 507-632")) +(constraint (= (f "+72 001-050-856") "+72 (001) 050-856")) +(constraint (= (f "+95 310-537-401") "+95 (310) 537-401")) +(constraint (= (f "+6 775-969-238") "+6 (775) 969-238")) + +(check-synth) diff --git a/PBE_Strings_Track/phone-10_short.sl b/PBE_Strings_Track/phone-10_short.sl new file mode 100644 index 0000000000000000000000000000000000000000..9cd6471ba9329d7125d5e4877911bd36b84f8b7f --- /dev/null +++ b/PBE_Strings_Track/phone-10_short.sl @@ -0,0 +1,31 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "+" "-" "." "(" ")" + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "+106 769-858-438") "+106 (769) 858-438")) +(constraint (= (f "+83 973-757-831") "+83 (973) 757-831")) +(constraint (= (f "+62 647-787-775") "+62 (647) 787-775")) +(constraint (= (f "+172 027-507-632") "+172 (027) 507-632")) +(constraint (= (f "+72 001-050-856") "+72 (001) 050-856")) +(constraint (= (f "+95 310-537-401") "+95 (310) 537-401")) +(constraint (= (f "+6 775-969-238") "+6 (775) 969-238")) + +(check-synth) diff --git a/PBE_Strings_Track/phone-1_short.sl b/PBE_Strings_Track/phone-1_short.sl new file mode 100644 index 0000000000000000000000000000000000000000..9a97e92112ac24a5e4b7fdd32f049c764f6c94eb --- /dev/null +++ b/PBE_Strings_Track/phone-1_short.sl @@ -0,0 +1,30 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "938-242-504") "242")) +(constraint (= (f "308-916-545") "916")) +(constraint (= (f "623-599-749") "599")) +(constraint (= (f "981-424-843") "424")) +(constraint (= (f "118-980-214") "980")) +(constraint (= (f "244-655-094") "655")) + +(check-synth) diff --git a/PBE_Strings_Track/phone-2-long-repeat.sl b/PBE_Strings_Track/phone-2-long-repeat.sl new file mode 100644 index 0000000000000000000000000000000000000000..41e7c6384ec4ff4fdc28786d16026c4d1c1d6eab --- /dev/null +++ b/PBE_Strings_Track/phone-2-long-repeat.sl @@ -0,0 +1,426 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "938-242-504") "504")) +(constraint (= (f "938-242-504") "504")) +(constraint (= (f "938-242-504") "504")) +(constraint (= (f "308-916-545") "545")) +(constraint (= (f "308-916-545") "545")) +(constraint (= (f "308-916-545") "545")) +(constraint (= (f "623-599-749") "749")) +(constraint (= (f "623-599-749") "749")) +(constraint (= (f "623-599-749") "749")) +(constraint (= (f "981-424-843") "843")) +(constraint (= (f "981-424-843") "843")) +(constraint (= (f "981-424-843") "843")) +(constraint (= (f "118-980-214") "214")) +(constraint (= (f "118-980-214") "214")) +(constraint (= (f "118-980-214") "214")) +(constraint (= (f "244-655-094") "094")) +(constraint (= (f "244-655-094") "094")) +(constraint (= (f "244-655-094") "094")) +(constraint (= (f "830-941-991") "991")) +(constraint (= (f "830-941-991") "991")) +(constraint (= (f "830-941-991") "991")) +(constraint (= (f "911-186-562") "562")) +(constraint (= (f "911-186-562") "562")) +(constraint (= (f "911-186-562") "562")) +(constraint (= (f "002-500-200") "200")) +(constraint (= (f "002-500-200") "200")) +(constraint (= (f "002-500-200") "200")) +(constraint (= (f "113-860-034") "034")) +(constraint (= (f "113-860-034") "034")) +(constraint (= (f "113-860-034") "034")) +(constraint (= (f "457-622-959") "959")) +(constraint (= (f "457-622-959") "959")) +(constraint (= (f "457-622-959") "959")) +(constraint (= (f "986-722-311") "311")) +(constraint (= (f "986-722-311") "311")) +(constraint (= (f "986-722-311") "311")) +(constraint (= (f "110-170-771") "771")) +(constraint (= (f "110-170-771") "771")) +(constraint (= (f "110-170-771") "771")) +(constraint (= (f "469-610-118") "118")) +(constraint (= (f "469-610-118") "118")) +(constraint (= (f "469-610-118") "118")) +(constraint (= (f "817-925-247") "247")) +(constraint (= (f "817-925-247") "247")) +(constraint (= (f "817-925-247") "247")) +(constraint (= (f "256-899-439") "439")) +(constraint (= (f "256-899-439") "439")) +(constraint (= (f "256-899-439") "439")) +(constraint (= (f "886-911-726") "726")) +(constraint (= (f "886-911-726") "726")) +(constraint (= (f "886-911-726") "726")) +(constraint (= (f "562-950-358") "358")) +(constraint (= (f "562-950-358") "358")) +(constraint (= (f "562-950-358") "358")) +(constraint (= (f "693-049-588") "588")) +(constraint (= (f "693-049-588") "588")) +(constraint (= (f "693-049-588") "588")) +(constraint (= (f "840-503-234") "234")) +(constraint (= (f "840-503-234") "234")) +(constraint (= (f "840-503-234") "234")) +(constraint (= (f "698-815-340") "340")) +(constraint (= (f "698-815-340") "340")) +(constraint (= (f "698-815-340") "340")) +(constraint (= (f "498-808-434") "434")) +(constraint (= (f "498-808-434") "434")) +(constraint (= (f "498-808-434") "434")) +(constraint (= (f "329-545-000") "000")) +(constraint (= (f "329-545-000") "000")) +(constraint (= (f "329-545-000") "000")) +(constraint (= (f "380-281-597") "597")) +(constraint (= (f "380-281-597") "597")) +(constraint (= (f "380-281-597") "597")) +(constraint (= (f "332-395-493") "493")) +(constraint (= (f "332-395-493") "493")) +(constraint (= (f "332-395-493") "493")) +(constraint (= (f "251-903-028") "028")) +(constraint (= (f "251-903-028") "028")) +(constraint (= (f "251-903-028") "028")) +(constraint (= (f "176-090-894") "894")) +(constraint (= (f "176-090-894") "894")) +(constraint (= (f "176-090-894") "894")) +(constraint (= (f "336-611-100") "100")) +(constraint (= (f "336-611-100") "100")) +(constraint (= (f "336-611-100") "100")) +(constraint (= (f "416-390-647") "647")) +(constraint (= (f "416-390-647") "647")) +(constraint (= (f "416-390-647") "647")) +(constraint (= (f "019-430-596") "596")) +(constraint (= (f "019-430-596") "596")) +(constraint (= (f "019-430-596") "596")) +(constraint (= (f "960-659-771") "771")) +(constraint (= (f "960-659-771") "771")) +(constraint (= (f "960-659-771") "771")) +(constraint (= (f "475-505-007") "007")) +(constraint (= (f "475-505-007") "007")) +(constraint (= (f "475-505-007") "007")) +(constraint (= (f "424-069-886") "886")) +(constraint (= (f "424-069-886") "886")) +(constraint (= (f "424-069-886") "886")) +(constraint (= (f "941-102-117") "117")) +(constraint (= (f "941-102-117") "117")) +(constraint (= (f "941-102-117") "117")) +(constraint (= (f "331-728-008") "008")) +(constraint (= (f "331-728-008") "008")) +(constraint (= (f "331-728-008") "008")) +(constraint (= (f "487-726-198") "198")) +(constraint (= (f "487-726-198") "198")) +(constraint (= (f "487-726-198") "198")) +(constraint (= (f "612-419-942") "942")) +(constraint (= (f "612-419-942") "942")) +(constraint (= (f "612-419-942") "942")) +(constraint (= (f "594-741-346") "346")) +(constraint (= (f "594-741-346") "346")) +(constraint (= (f "594-741-346") "346")) +(constraint (= (f "320-984-742") "742")) +(constraint (= (f "320-984-742") "742")) +(constraint (= (f "320-984-742") "742")) +(constraint (= (f "060-919-361") "361")) +(constraint (= (f "060-919-361") "361")) +(constraint (= (f "060-919-361") "361")) +(constraint (= (f "275-536-998") "998")) +(constraint (= (f "275-536-998") "998")) +(constraint (= (f "275-536-998") "998")) +(constraint (= (f "548-835-065") "065")) +(constraint (= (f "548-835-065") "065")) +(constraint (= (f "548-835-065") "065")) +(constraint (= (f "197-485-507") "507")) +(constraint (= (f "197-485-507") "507")) +(constraint (= (f "197-485-507") "507")) +(constraint (= (f "455-776-949") "949")) +(constraint (= (f "455-776-949") "949")) +(constraint (= (f "455-776-949") "949")) +(constraint (= (f "085-421-340") "340")) +(constraint (= (f "085-421-340") "340")) +(constraint (= (f "085-421-340") "340")) +(constraint (= (f "785-713-099") "099")) +(constraint (= (f "785-713-099") "099")) +(constraint (= (f "785-713-099") "099")) +(constraint (= (f "426-712-861") "861")) +(constraint (= (f "426-712-861") "861")) +(constraint (= (f "426-712-861") "861")) +(constraint (= (f "386-994-906") "906")) +(constraint (= (f "386-994-906") "906")) +(constraint (= (f "386-994-906") "906")) +(constraint (= (f "918-304-840") "840")) +(constraint (= (f "918-304-840") "840")) +(constraint (= (f "918-304-840") "840")) +(constraint (= (f "247-153-598") "598")) +(constraint (= (f "247-153-598") "598")) +(constraint (= (f "247-153-598") "598")) +(constraint (= (f "075-497-069") "069")) +(constraint (= (f "075-497-069") "069")) +(constraint (= (f "075-497-069") "069")) +(constraint (= (f "140-726-583") "583")) +(constraint (= (f "140-726-583") "583")) +(constraint (= (f "140-726-583") "583")) +(constraint (= (f "049-413-248") "248")) +(constraint (= (f "049-413-248") "248")) +(constraint (= (f "049-413-248") "248")) +(constraint (= (f "977-386-462") "462")) +(constraint (= (f "977-386-462") "462")) +(constraint (= (f "977-386-462") "462")) +(constraint (= (f "058-272-455") "455")) +(constraint (= (f "058-272-455") "455")) +(constraint (= (f "058-272-455") "455")) +(constraint (= (f "428-629-927") "927")) +(constraint (= (f "428-629-927") "927")) +(constraint (= (f "428-629-927") "927")) +(constraint (= (f "449-122-191") "191")) +(constraint (= (f "449-122-191") "191")) +(constraint (= (f "449-122-191") "191")) +(constraint (= (f "568-759-670") "670")) +(constraint (= (f "568-759-670") "670")) +(constraint (= (f "568-759-670") "670")) +(constraint (= (f "312-846-053") "053")) +(constraint (= (f "312-846-053") "053")) +(constraint (= (f "312-846-053") "053")) +(constraint (= (f "943-037-297") "297")) +(constraint (= (f "943-037-297") "297")) +(constraint (= (f "943-037-297") "297")) +(constraint (= (f "014-270-177") "177")) +(constraint (= (f "014-270-177") "177")) +(constraint (= (f "014-270-177") "177")) +(constraint (= (f "658-877-878") "878")) +(constraint (= (f "658-877-878") "878")) +(constraint (= (f "658-877-878") "878")) +(constraint (= (f "888-594-038") "038")) +(constraint (= (f "888-594-038") "038")) +(constraint (= (f "888-594-038") "038")) +(constraint (= (f "232-253-254") "254")) +(constraint (= (f "232-253-254") "254")) +(constraint (= (f "232-253-254") "254")) +(constraint (= (f "308-722-292") "292")) +(constraint (= (f "308-722-292") "292")) +(constraint (= (f "308-722-292") "292")) +(constraint (= (f "342-145-742") "742")) +(constraint (= (f "342-145-742") "742")) +(constraint (= (f "342-145-742") "742")) +(constraint (= (f "568-181-515") "515")) +(constraint (= (f "568-181-515") "515")) +(constraint (= (f "568-181-515") "515")) +(constraint (= (f "300-140-756") "756")) +(constraint (= (f "300-140-756") "756")) +(constraint (= (f "300-140-756") "756")) +(constraint (= (f "099-684-216") "216")) +(constraint (= (f "099-684-216") "216")) +(constraint (= (f "099-684-216") "216")) +(constraint (= (f "575-296-621") "621")) +(constraint (= (f "575-296-621") "621")) +(constraint (= (f "575-296-621") "621")) +(constraint (= (f "994-443-794") "794")) +(constraint (= (f "994-443-794") "794")) +(constraint (= (f "994-443-794") "794")) +(constraint (= (f "400-334-692") "692")) +(constraint (= (f "400-334-692") "692")) +(constraint (= (f "400-334-692") "692")) +(constraint (= (f "684-711-883") "883")) +(constraint (= (f "684-711-883") "883")) +(constraint (= (f "684-711-883") "883")) +(constraint (= (f "539-636-358") "358")) +(constraint (= (f "539-636-358") "358")) +(constraint (= (f "539-636-358") "358")) +(constraint (= (f "009-878-919") "919")) +(constraint (= (f "009-878-919") "919")) +(constraint (= (f "009-878-919") "919")) +(constraint (= (f "919-545-701") "701")) +(constraint (= (f "919-545-701") "701")) +(constraint (= (f "919-545-701") "701")) +(constraint (= (f "546-399-239") "239")) +(constraint (= (f "546-399-239") "239")) +(constraint (= (f "546-399-239") "239")) +(constraint (= (f "993-608-757") "757")) +(constraint (= (f "993-608-757") "757")) +(constraint (= (f "993-608-757") "757")) +(constraint (= (f "107-652-845") "845")) +(constraint (= (f "107-652-845") "845")) +(constraint (= (f "107-652-845") "845")) +(constraint (= (f "206-805-793") "793")) +(constraint (= (f "206-805-793") "793")) +(constraint (= (f "206-805-793") "793")) +(constraint (= (f "198-857-684") "684")) +(constraint (= (f "198-857-684") "684")) +(constraint (= (f "198-857-684") "684")) +(constraint (= (f "912-827-430") "430")) +(constraint (= (f "912-827-430") "430")) +(constraint (= (f "912-827-430") "430")) +(constraint (= (f "560-951-766") "766")) +(constraint (= (f "560-951-766") "766")) +(constraint (= (f "560-951-766") "766")) +(constraint (= (f "142-178-290") "290")) +(constraint (= (f "142-178-290") "290")) +(constraint (= (f "142-178-290") "290")) +(constraint (= (f "732-196-946") "946")) +(constraint (= (f "732-196-946") "946")) +(constraint (= (f "732-196-946") "946")) +(constraint (= (f "963-875-745") "745")) +(constraint (= (f "963-875-745") "745")) +(constraint (= (f "963-875-745") "745")) +(constraint (= (f "881-865-867") "867")) +(constraint (= (f "881-865-867") "867")) +(constraint (= (f "881-865-867") "867")) +(constraint (= (f "234-686-715") "715")) +(constraint (= (f "234-686-715") "715")) +(constraint (= (f "234-686-715") "715")) +(constraint (= (f "720-330-583") "583")) +(constraint (= (f "720-330-583") "583")) +(constraint (= (f "720-330-583") "583")) +(constraint (= (f "593-065-126") "126")) +(constraint (= (f "593-065-126") "126")) +(constraint (= (f "593-065-126") "126")) +(constraint (= (f "671-778-064") "064")) +(constraint (= (f "671-778-064") "064")) +(constraint (= (f "671-778-064") "064")) +(constraint (= (f "252-029-036") "036")) +(constraint (= (f "252-029-036") "036")) +(constraint (= (f "252-029-036") "036")) +(constraint (= (f "700-322-036") "036")) +(constraint (= (f "700-322-036") "036")) +(constraint (= (f "700-322-036") "036")) +(constraint (= (f "882-587-473") "473")) +(constraint (= (f "882-587-473") "473")) +(constraint (= (f "882-587-473") "473")) +(constraint (= (f "964-134-953") "953")) +(constraint (= (f "964-134-953") "953")) +(constraint (= (f "964-134-953") "953")) +(constraint (= (f "038-300-876") "876")) +(constraint (= (f "038-300-876") "876")) +(constraint (= (f "038-300-876") "876")) +(constraint (= (f "158-894-947") "947")) +(constraint (= (f "158-894-947") "947")) +(constraint (= (f "158-894-947") "947")) +(constraint (= (f "757-454-374") "374")) +(constraint (= (f "757-454-374") "374")) +(constraint (= (f "757-454-374") "374")) +(constraint (= (f "872-513-190") "190")) +(constraint (= (f "872-513-190") "190")) +(constraint (= (f "872-513-190") "190")) +(constraint (= (f "566-086-726") "726")) +(constraint (= (f "566-086-726") "726")) +(constraint (= (f "566-086-726") "726")) +(constraint (= (f "938-242-504") "504")) +(constraint (= (f "308-916-545") "545")) +(constraint (= (f "623-599-749") "749")) +(constraint (= (f "981-424-843") "843")) +(constraint (= (f "118-980-214") "214")) +(constraint (= (f "244-655-094") "094")) +(constraint (= (f "830-941-991") "991")) +(constraint (= (f "911-186-562") "562")) +(constraint (= (f "002-500-200") "200")) +(constraint (= (f "113-860-034") "034")) +(constraint (= (f "457-622-959") "959")) +(constraint (= (f "986-722-311") "311")) +(constraint (= (f "110-170-771") "771")) +(constraint (= (f "469-610-118") "118")) +(constraint (= (f "817-925-247") "247")) +(constraint (= (f "256-899-439") "439")) +(constraint (= (f "886-911-726") "726")) +(constraint (= (f "562-950-358") "358")) +(constraint (= (f "693-049-588") "588")) +(constraint (= (f "840-503-234") "234")) +(constraint (= (f "698-815-340") "340")) +(constraint (= (f "498-808-434") "434")) +(constraint (= (f "329-545-000") "000")) +(constraint (= (f "380-281-597") "597")) +(constraint (= (f "332-395-493") "493")) +(constraint (= (f "251-903-028") "028")) +(constraint (= (f "176-090-894") "894")) +(constraint (= (f "336-611-100") "100")) +(constraint (= (f "416-390-647") "647")) +(constraint (= (f "019-430-596") "596")) +(constraint (= (f "960-659-771") "771")) +(constraint (= (f "475-505-007") "007")) +(constraint (= (f "424-069-886") "886")) +(constraint (= (f "941-102-117") "117")) +(constraint (= (f "331-728-008") "008")) +(constraint (= (f "487-726-198") "198")) +(constraint (= (f "612-419-942") "942")) +(constraint (= (f "594-741-346") "346")) +(constraint (= (f "320-984-742") "742")) +(constraint (= (f "060-919-361") "361")) +(constraint (= (f "275-536-998") "998")) +(constraint (= (f "548-835-065") "065")) +(constraint (= (f "197-485-507") "507")) +(constraint (= (f "455-776-949") "949")) +(constraint (= (f "085-421-340") "340")) +(constraint (= (f "785-713-099") "099")) +(constraint (= (f "426-712-861") "861")) +(constraint (= (f "386-994-906") "906")) +(constraint (= (f "918-304-840") "840")) +(constraint (= (f "247-153-598") "598")) +(constraint (= (f "075-497-069") "069")) +(constraint (= (f "140-726-583") "583")) +(constraint (= (f "049-413-248") "248")) +(constraint (= (f "977-386-462") "462")) +(constraint (= (f "058-272-455") "455")) +(constraint (= (f "428-629-927") "927")) +(constraint (= (f "449-122-191") "191")) +(constraint (= (f "568-759-670") "670")) +(constraint (= (f "312-846-053") "053")) +(constraint (= (f "943-037-297") "297")) +(constraint (= (f "014-270-177") "177")) +(constraint (= (f "658-877-878") "878")) +(constraint (= (f "888-594-038") "038")) +(constraint (= (f "232-253-254") "254")) +(constraint (= (f "308-722-292") "292")) +(constraint (= (f "342-145-742") "742")) +(constraint (= (f "568-181-515") "515")) +(constraint (= (f "300-140-756") "756")) +(constraint (= (f "099-684-216") "216")) +(constraint (= (f "575-296-621") "621")) +(constraint (= (f "994-443-794") "794")) +(constraint (= (f "400-334-692") "692")) +(constraint (= (f "684-711-883") "883")) +(constraint (= (f "539-636-358") "358")) +(constraint (= (f "009-878-919") "919")) +(constraint (= (f "919-545-701") "701")) +(constraint (= (f "546-399-239") "239")) +(constraint (= (f "993-608-757") "757")) +(constraint (= (f "107-652-845") "845")) +(constraint (= (f "206-805-793") "793")) +(constraint (= (f "198-857-684") "684")) +(constraint (= (f "912-827-430") "430")) +(constraint (= (f "560-951-766") "766")) +(constraint (= (f "142-178-290") "290")) +(constraint (= (f "732-196-946") "946")) +(constraint (= (f "963-875-745") "745")) +(constraint (= (f "881-865-867") "867")) +(constraint (= (f "234-686-715") "715")) +(constraint (= (f "720-330-583") "583")) +(constraint (= (f "593-065-126") "126")) +(constraint (= (f "671-778-064") "064")) +(constraint (= (f "252-029-036") "036")) +(constraint (= (f "700-322-036") "036")) +(constraint (= (f "882-587-473") "473")) +(constraint (= (f "964-134-953") "953")) +(constraint (= (f "038-300-876") "876")) +(constraint (= (f "158-894-947") "947")) +(constraint (= (f "757-454-374") "374")) +(constraint (= (f "872-513-190") "190")) +(constraint (= (f "566-086-726") "726")) + +(check-synth) diff --git a/PBE_Strings_Track/phone-2-long.sl b/PBE_Strings_Track/phone-2-long.sl new file mode 100644 index 0000000000000000000000000000000000000000..83c9bb4a5c565ab9f345e7a9827f3fecfbbffc52 --- /dev/null +++ b/PBE_Strings_Track/phone-2-long.sl @@ -0,0 +1,126 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "938-242-504") "504")) +(constraint (= (f "308-916-545") "545")) +(constraint (= (f "623-599-749") "749")) +(constraint (= (f "981-424-843") "843")) +(constraint (= (f "118-980-214") "214")) +(constraint (= (f "244-655-094") "094")) +(constraint (= (f "830-941-991") "991")) +(constraint (= (f "911-186-562") "562")) +(constraint (= (f "002-500-200") "200")) +(constraint (= (f "113-860-034") "034")) +(constraint (= (f "457-622-959") "959")) +(constraint (= (f "986-722-311") "311")) +(constraint (= (f "110-170-771") "771")) +(constraint (= (f "469-610-118") "118")) +(constraint (= (f "817-925-247") "247")) +(constraint (= (f "256-899-439") "439")) +(constraint (= (f "886-911-726") "726")) +(constraint (= (f "562-950-358") "358")) +(constraint (= (f "693-049-588") "588")) +(constraint (= (f "840-503-234") "234")) +(constraint (= (f "698-815-340") "340")) +(constraint (= (f "498-808-434") "434")) +(constraint (= (f "329-545-000") "000")) +(constraint (= (f "380-281-597") "597")) +(constraint (= (f "332-395-493") "493")) +(constraint (= (f "251-903-028") "028")) +(constraint (= (f "176-090-894") "894")) +(constraint (= (f "336-611-100") "100")) +(constraint (= (f "416-390-647") "647")) +(constraint (= (f "019-430-596") "596")) +(constraint (= (f "960-659-771") "771")) +(constraint (= (f "475-505-007") "007")) +(constraint (= (f "424-069-886") "886")) +(constraint (= (f "941-102-117") "117")) +(constraint (= (f "331-728-008") "008")) +(constraint (= (f "487-726-198") "198")) +(constraint (= (f "612-419-942") "942")) +(constraint (= (f "594-741-346") "346")) +(constraint (= (f "320-984-742") "742")) +(constraint (= (f "060-919-361") "361")) +(constraint (= (f "275-536-998") "998")) +(constraint (= (f "548-835-065") "065")) +(constraint (= (f "197-485-507") "507")) +(constraint (= (f "455-776-949") "949")) +(constraint (= (f "085-421-340") "340")) +(constraint (= (f "785-713-099") "099")) +(constraint (= (f "426-712-861") "861")) +(constraint (= (f "386-994-906") "906")) +(constraint (= (f "918-304-840") "840")) +(constraint (= (f "247-153-598") "598")) +(constraint (= (f "075-497-069") "069")) +(constraint (= (f "140-726-583") "583")) +(constraint (= (f "049-413-248") "248")) +(constraint (= (f "977-386-462") "462")) +(constraint (= (f "058-272-455") "455")) +(constraint (= (f "428-629-927") "927")) +(constraint (= (f "449-122-191") "191")) +(constraint (= (f "568-759-670") "670")) +(constraint (= (f "312-846-053") "053")) +(constraint (= (f "943-037-297") "297")) +(constraint (= (f "014-270-177") "177")) +(constraint (= (f "658-877-878") "878")) +(constraint (= (f "888-594-038") "038")) +(constraint (= (f "232-253-254") "254")) +(constraint (= (f "308-722-292") "292")) +(constraint (= (f "342-145-742") "742")) +(constraint (= (f "568-181-515") "515")) +(constraint (= (f "300-140-756") "756")) +(constraint (= (f "099-684-216") "216")) +(constraint (= (f "575-296-621") "621")) +(constraint (= (f "994-443-794") "794")) +(constraint (= (f "400-334-692") "692")) +(constraint (= (f "684-711-883") "883")) +(constraint (= (f "539-636-358") "358")) +(constraint (= (f "009-878-919") "919")) +(constraint (= (f "919-545-701") "701")) +(constraint (= (f "546-399-239") "239")) +(constraint (= (f "993-608-757") "757")) +(constraint (= (f "107-652-845") "845")) +(constraint (= (f "206-805-793") "793")) +(constraint (= (f "198-857-684") "684")) +(constraint (= (f "912-827-430") "430")) +(constraint (= (f "560-951-766") "766")) +(constraint (= (f "142-178-290") "290")) +(constraint (= (f "732-196-946") "946")) +(constraint (= (f "963-875-745") "745")) +(constraint (= (f "881-865-867") "867")) +(constraint (= (f "234-686-715") "715")) +(constraint (= (f "720-330-583") "583")) +(constraint (= (f "593-065-126") "126")) +(constraint (= (f "671-778-064") "064")) +(constraint (= (f "252-029-036") "036")) +(constraint (= (f "700-322-036") "036")) +(constraint (= (f "882-587-473") "473")) +(constraint (= (f "964-134-953") "953")) +(constraint (= (f "038-300-876") "876")) +(constraint (= (f "158-894-947") "947")) +(constraint (= (f "757-454-374") "374")) +(constraint (= (f "872-513-190") "190")) +(constraint (= (f "566-086-726") "726")) + +(check-synth) diff --git a/PBE_Strings_Track/phone-2.sl b/PBE_Strings_Track/phone-2.sl new file mode 100644 index 0000000000000000000000000000000000000000..0d0f2c6d572f8bda89b5d814902a3c819e45fc4b --- /dev/null +++ b/PBE_Strings_Track/phone-2.sl @@ -0,0 +1,32 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "938-242-504") "504")) +(constraint (= (f "308-916-545") "545")) +(constraint (= (f "623-599-749") "749")) +(constraint (= (f "981-424-843") "843")) +(constraint (= (f "118-980-214") "214")) +(constraint (= (f "244-655-094") "094")) + +(check-synth) diff --git a/PBE_Strings_Track/phone-2_short.sl b/PBE_Strings_Track/phone-2_short.sl new file mode 100644 index 0000000000000000000000000000000000000000..b58c2792a55aa0a49f4946d2632d502139e4a15b --- /dev/null +++ b/PBE_Strings_Track/phone-2_short.sl @@ -0,0 +1,29 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "938-242-504") "504")) +(constraint (= (f "308-916-545") "545")) +(constraint (= (f "623-599-749") "749")) +(constraint (= (f "981-424-843") "843")) +(constraint (= (f "118-980-214") "214")) +(constraint (= (f "244-655-094") "094")) + +(check-synth) diff --git a/PBE_Strings_Track/phone-3-long-repeat.sl b/PBE_Strings_Track/phone-3-long-repeat.sl new file mode 100644 index 0000000000000000000000000000000000000000..1c18a4207304d769dcf79bedd6fbba5f0d068922 --- /dev/null +++ b/PBE_Strings_Track/phone-3-long-repeat.sl @@ -0,0 +1,426 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "(" ")" "-" + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "938-242-504") "(938) 242-504")) +(constraint (= (f "938-242-504") "(938) 242-504")) +(constraint (= (f "938-242-504") "(938) 242-504")) +(constraint (= (f "308-916-545") "(308) 916-545")) +(constraint (= (f "308-916-545") "(308) 916-545")) +(constraint (= (f "308-916-545") "(308) 916-545")) +(constraint (= (f "623-599-749") "(623) 599-749")) +(constraint (= (f "623-599-749") "(623) 599-749")) +(constraint (= (f "623-599-749") "(623) 599-749")) +(constraint (= (f "981-424-843") "(981) 424-843")) +(constraint (= (f "981-424-843") "(981) 424-843")) +(constraint (= (f "981-424-843") "(981) 424-843")) +(constraint (= (f "118-980-214") "(118) 980-214")) +(constraint (= (f "118-980-214") "(118) 980-214")) +(constraint (= (f "118-980-214") "(118) 980-214")) +(constraint (= (f "244-655-094") "(244) 655-094")) +(constraint (= (f "244-655-094") "(244) 655-094")) +(constraint (= (f "244-655-094") "(244) 655-094")) +(constraint (= (f "830-941-991") "(830) 941-991")) +(constraint (= (f "830-941-991") "(830) 941-991")) +(constraint (= (f "830-941-991") "(830) 941-991")) +(constraint (= (f "911-186-562") "(911) 186-562")) +(constraint (= (f "911-186-562") "(911) 186-562")) +(constraint (= (f "911-186-562") "(911) 186-562")) +(constraint (= (f "002-500-200") "(002) 500-200")) +(constraint (= (f "002-500-200") "(002) 500-200")) +(constraint (= (f "002-500-200") "(002) 500-200")) +(constraint (= (f "113-860-034") "(113) 860-034")) +(constraint (= (f "113-860-034") "(113) 860-034")) +(constraint (= (f "113-860-034") "(113) 860-034")) +(constraint (= (f "457-622-959") "(457) 622-959")) +(constraint (= (f "457-622-959") "(457) 622-959")) +(constraint (= (f "457-622-959") "(457) 622-959")) +(constraint (= (f "986-722-311") "(986) 722-311")) +(constraint (= (f "986-722-311") "(986) 722-311")) +(constraint (= (f "986-722-311") "(986) 722-311")) +(constraint (= (f "110-170-771") "(110) 170-771")) +(constraint (= (f "110-170-771") "(110) 170-771")) +(constraint (= (f "110-170-771") "(110) 170-771")) +(constraint (= (f "469-610-118") "(469) 610-118")) +(constraint (= (f "469-610-118") "(469) 610-118")) +(constraint (= (f "469-610-118") "(469) 610-118")) +(constraint (= (f "817-925-247") "(817) 925-247")) +(constraint (= (f "817-925-247") "(817) 925-247")) +(constraint (= (f "817-925-247") "(817) 925-247")) +(constraint (= (f "256-899-439") "(256) 899-439")) +(constraint (= (f "256-899-439") "(256) 899-439")) +(constraint (= (f "256-899-439") "(256) 899-439")) +(constraint (= (f "886-911-726") "(886) 911-726")) +(constraint (= (f "886-911-726") "(886) 911-726")) +(constraint (= (f "886-911-726") "(886) 911-726")) +(constraint (= (f "562-950-358") "(562) 950-358")) +(constraint (= (f "562-950-358") "(562) 950-358")) +(constraint (= (f "562-950-358") "(562) 950-358")) +(constraint (= (f "693-049-588") "(693) 049-588")) +(constraint (= (f "693-049-588") "(693) 049-588")) +(constraint (= (f "693-049-588") "(693) 049-588")) +(constraint (= (f "840-503-234") "(840) 503-234")) +(constraint (= (f "840-503-234") "(840) 503-234")) +(constraint (= (f "840-503-234") "(840) 503-234")) +(constraint (= (f "698-815-340") "(698) 815-340")) +(constraint (= (f "698-815-340") "(698) 815-340")) +(constraint (= (f "698-815-340") "(698) 815-340")) +(constraint (= (f "498-808-434") "(498) 808-434")) +(constraint (= (f "498-808-434") "(498) 808-434")) +(constraint (= (f "498-808-434") "(498) 808-434")) +(constraint (= (f "329-545-000") "(329) 545-000")) +(constraint (= (f "329-545-000") "(329) 545-000")) +(constraint (= (f "329-545-000") "(329) 545-000")) +(constraint (= (f "380-281-597") "(380) 281-597")) +(constraint (= (f "380-281-597") "(380) 281-597")) +(constraint (= (f "380-281-597") "(380) 281-597")) +(constraint (= (f "332-395-493") "(332) 395-493")) +(constraint (= (f "332-395-493") "(332) 395-493")) +(constraint (= (f "332-395-493") "(332) 395-493")) +(constraint (= (f "251-903-028") "(251) 903-028")) +(constraint (= (f "251-903-028") "(251) 903-028")) +(constraint (= (f "251-903-028") "(251) 903-028")) +(constraint (= (f "176-090-894") "(176) 090-894")) +(constraint (= (f "176-090-894") "(176) 090-894")) +(constraint (= (f "176-090-894") "(176) 090-894")) +(constraint (= (f "336-611-100") "(336) 611-100")) +(constraint (= (f "336-611-100") "(336) 611-100")) +(constraint (= (f "336-611-100") "(336) 611-100")) +(constraint (= (f "416-390-647") "(416) 390-647")) +(constraint (= (f "416-390-647") "(416) 390-647")) +(constraint (= (f "416-390-647") "(416) 390-647")) +(constraint (= (f "019-430-596") "(019) 430-596")) +(constraint (= (f "019-430-596") "(019) 430-596")) +(constraint (= (f "019-430-596") "(019) 430-596")) +(constraint (= (f "960-659-771") "(960) 659-771")) +(constraint (= (f "960-659-771") "(960) 659-771")) +(constraint (= (f "960-659-771") "(960) 659-771")) +(constraint (= (f "475-505-007") "(475) 505-007")) +(constraint (= (f "475-505-007") "(475) 505-007")) +(constraint (= (f "475-505-007") "(475) 505-007")) +(constraint (= (f "424-069-886") "(424) 069-886")) +(constraint (= (f "424-069-886") "(424) 069-886")) +(constraint (= (f "424-069-886") "(424) 069-886")) +(constraint (= (f "941-102-117") "(941) 102-117")) +(constraint (= (f "941-102-117") "(941) 102-117")) +(constraint (= (f "941-102-117") "(941) 102-117")) +(constraint (= (f "331-728-008") "(331) 728-008")) +(constraint (= (f "331-728-008") "(331) 728-008")) +(constraint (= (f "331-728-008") "(331) 728-008")) +(constraint (= (f "487-726-198") "(487) 726-198")) +(constraint (= (f "487-726-198") "(487) 726-198")) +(constraint (= (f "487-726-198") "(487) 726-198")) +(constraint (= (f "612-419-942") "(612) 419-942")) +(constraint (= (f "612-419-942") "(612) 419-942")) +(constraint (= (f "612-419-942") "(612) 419-942")) +(constraint (= (f "594-741-346") "(594) 741-346")) +(constraint (= (f "594-741-346") "(594) 741-346")) +(constraint (= (f "594-741-346") "(594) 741-346")) +(constraint (= (f "320-984-742") "(320) 984-742")) +(constraint (= (f "320-984-742") "(320) 984-742")) +(constraint (= (f "320-984-742") "(320) 984-742")) +(constraint (= (f "060-919-361") "(060) 919-361")) +(constraint (= (f "060-919-361") "(060) 919-361")) +(constraint (= (f "060-919-361") "(060) 919-361")) +(constraint (= (f "275-536-998") "(275) 536-998")) +(constraint (= (f "275-536-998") "(275) 536-998")) +(constraint (= (f "275-536-998") "(275) 536-998")) +(constraint (= (f "548-835-065") "(548) 835-065")) +(constraint (= (f "548-835-065") "(548) 835-065")) +(constraint (= (f "548-835-065") "(548) 835-065")) +(constraint (= (f "197-485-507") "(197) 485-507")) +(constraint (= (f "197-485-507") "(197) 485-507")) +(constraint (= (f "197-485-507") "(197) 485-507")) +(constraint (= (f "455-776-949") "(455) 776-949")) +(constraint (= (f "455-776-949") "(455) 776-949")) +(constraint (= (f "455-776-949") "(455) 776-949")) +(constraint (= (f "085-421-340") "(085) 421-340")) +(constraint (= (f "085-421-340") "(085) 421-340")) +(constraint (= (f "085-421-340") "(085) 421-340")) +(constraint (= (f "785-713-099") "(785) 713-099")) +(constraint (= (f "785-713-099") "(785) 713-099")) +(constraint (= (f "785-713-099") "(785) 713-099")) +(constraint (= (f "426-712-861") "(426) 712-861")) +(constraint (= (f "426-712-861") "(426) 712-861")) +(constraint (= (f "426-712-861") "(426) 712-861")) +(constraint (= (f "386-994-906") "(386) 994-906")) +(constraint (= (f "386-994-906") "(386) 994-906")) +(constraint (= (f "386-994-906") "(386) 994-906")) +(constraint (= (f "918-304-840") "(918) 304-840")) +(constraint (= (f "918-304-840") "(918) 304-840")) +(constraint (= (f "918-304-840") "(918) 304-840")) +(constraint (= (f "247-153-598") "(247) 153-598")) +(constraint (= (f "247-153-598") "(247) 153-598")) +(constraint (= (f "247-153-598") "(247) 153-598")) +(constraint (= (f "075-497-069") "(075) 497-069")) +(constraint (= (f "075-497-069") "(075) 497-069")) +(constraint (= (f "075-497-069") "(075) 497-069")) +(constraint (= (f "140-726-583") "(140) 726-583")) +(constraint (= (f "140-726-583") "(140) 726-583")) +(constraint (= (f "140-726-583") "(140) 726-583")) +(constraint (= (f "049-413-248") "(049) 413-248")) +(constraint (= (f "049-413-248") "(049) 413-248")) +(constraint (= (f "049-413-248") "(049) 413-248")) +(constraint (= (f "977-386-462") "(977) 386-462")) +(constraint (= (f "977-386-462") "(977) 386-462")) +(constraint (= (f "977-386-462") "(977) 386-462")) +(constraint (= (f "058-272-455") "(058) 272-455")) +(constraint (= (f "058-272-455") "(058) 272-455")) +(constraint (= (f "058-272-455") "(058) 272-455")) +(constraint (= (f "428-629-927") "(428) 629-927")) +(constraint (= (f "428-629-927") "(428) 629-927")) +(constraint (= (f "428-629-927") "(428) 629-927")) +(constraint (= (f "449-122-191") "(449) 122-191")) +(constraint (= (f "449-122-191") "(449) 122-191")) +(constraint (= (f "449-122-191") "(449) 122-191")) +(constraint (= (f "568-759-670") "(568) 759-670")) +(constraint (= (f "568-759-670") "(568) 759-670")) +(constraint (= (f "568-759-670") "(568) 759-670")) +(constraint (= (f "312-846-053") "(312) 846-053")) +(constraint (= (f "312-846-053") "(312) 846-053")) +(constraint (= (f "312-846-053") "(312) 846-053")) +(constraint (= (f "943-037-297") "(943) 037-297")) +(constraint (= (f "943-037-297") "(943) 037-297")) +(constraint (= (f "943-037-297") "(943) 037-297")) +(constraint (= (f "014-270-177") "(014) 270-177")) +(constraint (= (f "014-270-177") "(014) 270-177")) +(constraint (= (f "014-270-177") "(014) 270-177")) +(constraint (= (f "658-877-878") "(658) 877-878")) +(constraint (= (f "658-877-878") "(658) 877-878")) +(constraint (= (f "658-877-878") "(658) 877-878")) +(constraint (= (f "888-594-038") "(888) 594-038")) +(constraint (= (f "888-594-038") "(888) 594-038")) +(constraint (= (f "888-594-038") "(888) 594-038")) +(constraint (= (f "232-253-254") "(232) 253-254")) +(constraint (= (f "232-253-254") "(232) 253-254")) +(constraint (= (f "232-253-254") "(232) 253-254")) +(constraint (= (f "308-722-292") "(308) 722-292")) +(constraint (= (f "308-722-292") "(308) 722-292")) +(constraint (= (f "308-722-292") "(308) 722-292")) +(constraint (= (f "342-145-742") "(342) 145-742")) +(constraint (= (f "342-145-742") "(342) 145-742")) +(constraint (= (f "342-145-742") "(342) 145-742")) +(constraint (= (f "568-181-515") "(568) 181-515")) +(constraint (= (f "568-181-515") "(568) 181-515")) +(constraint (= (f "568-181-515") "(568) 181-515")) +(constraint (= (f "300-140-756") "(300) 140-756")) +(constraint (= (f "300-140-756") "(300) 140-756")) +(constraint (= (f "300-140-756") "(300) 140-756")) +(constraint (= (f "099-684-216") "(099) 684-216")) +(constraint (= (f "099-684-216") "(099) 684-216")) +(constraint (= (f "099-684-216") "(099) 684-216")) +(constraint (= (f "575-296-621") "(575) 296-621")) +(constraint (= (f "575-296-621") "(575) 296-621")) +(constraint (= (f "575-296-621") "(575) 296-621")) +(constraint (= (f "994-443-794") "(994) 443-794")) +(constraint (= (f "994-443-794") "(994) 443-794")) +(constraint (= (f "994-443-794") "(994) 443-794")) +(constraint (= (f "400-334-692") "(400) 334-692")) +(constraint (= (f "400-334-692") "(400) 334-692")) +(constraint (= (f "400-334-692") "(400) 334-692")) +(constraint (= (f "684-711-883") "(684) 711-883")) +(constraint (= (f "684-711-883") "(684) 711-883")) +(constraint (= (f "684-711-883") "(684) 711-883")) +(constraint (= (f "539-636-358") "(539) 636-358")) +(constraint (= (f "539-636-358") "(539) 636-358")) +(constraint (= (f "539-636-358") "(539) 636-358")) +(constraint (= (f "009-878-919") "(009) 878-919")) +(constraint (= (f "009-878-919") "(009) 878-919")) +(constraint (= (f "009-878-919") "(009) 878-919")) +(constraint (= (f "919-545-701") "(919) 545-701")) +(constraint (= (f "919-545-701") "(919) 545-701")) +(constraint (= (f "919-545-701") "(919) 545-701")) +(constraint (= (f "546-399-239") "(546) 399-239")) +(constraint (= (f "546-399-239") "(546) 399-239")) +(constraint (= (f "546-399-239") "(546) 399-239")) +(constraint (= (f "993-608-757") "(993) 608-757")) +(constraint (= (f "993-608-757") "(993) 608-757")) +(constraint (= (f "993-608-757") "(993) 608-757")) +(constraint (= (f "107-652-845") "(107) 652-845")) +(constraint (= (f "107-652-845") "(107) 652-845")) +(constraint (= (f "107-652-845") "(107) 652-845")) +(constraint (= (f "206-805-793") "(206) 805-793")) +(constraint (= (f "206-805-793") "(206) 805-793")) +(constraint (= (f "206-805-793") "(206) 805-793")) +(constraint (= (f "198-857-684") "(198) 857-684")) +(constraint (= (f "198-857-684") "(198) 857-684")) +(constraint (= (f "198-857-684") "(198) 857-684")) +(constraint (= (f "912-827-430") "(912) 827-430")) +(constraint (= (f "912-827-430") "(912) 827-430")) +(constraint (= (f "912-827-430") "(912) 827-430")) +(constraint (= (f "560-951-766") "(560) 951-766")) +(constraint (= (f "560-951-766") "(560) 951-766")) +(constraint (= (f "560-951-766") "(560) 951-766")) +(constraint (= (f "142-178-290") "(142) 178-290")) +(constraint (= (f "142-178-290") "(142) 178-290")) +(constraint (= (f "142-178-290") "(142) 178-290")) +(constraint (= (f "732-196-946") "(732) 196-946")) +(constraint (= (f "732-196-946") "(732) 196-946")) +(constraint (= (f "732-196-946") "(732) 196-946")) +(constraint (= (f "963-875-745") "(963) 875-745")) +(constraint (= (f "963-875-745") "(963) 875-745")) +(constraint (= (f "963-875-745") "(963) 875-745")) +(constraint (= (f "881-865-867") "(881) 865-867")) +(constraint (= (f "881-865-867") "(881) 865-867")) +(constraint (= (f "881-865-867") "(881) 865-867")) +(constraint (= (f "234-686-715") "(234) 686-715")) +(constraint (= (f "234-686-715") "(234) 686-715")) +(constraint (= (f "234-686-715") "(234) 686-715")) +(constraint (= (f "720-330-583") "(720) 330-583")) +(constraint (= (f "720-330-583") "(720) 330-583")) +(constraint (= (f "720-330-583") "(720) 330-583")) +(constraint (= (f "593-065-126") "(593) 065-126")) +(constraint (= (f "593-065-126") "(593) 065-126")) +(constraint (= (f "593-065-126") "(593) 065-126")) +(constraint (= (f "671-778-064") "(671) 778-064")) +(constraint (= (f "671-778-064") "(671) 778-064")) +(constraint (= (f "671-778-064") "(671) 778-064")) +(constraint (= (f "252-029-036") "(252) 029-036")) +(constraint (= (f "252-029-036") "(252) 029-036")) +(constraint (= (f "252-029-036") "(252) 029-036")) +(constraint (= (f "700-322-036") "(700) 322-036")) +(constraint (= (f "700-322-036") "(700) 322-036")) +(constraint (= (f "700-322-036") "(700) 322-036")) +(constraint (= (f "882-587-473") "(882) 587-473")) +(constraint (= (f "882-587-473") "(882) 587-473")) +(constraint (= (f "882-587-473") "(882) 587-473")) +(constraint (= (f "964-134-953") "(964) 134-953")) +(constraint (= (f "964-134-953") "(964) 134-953")) +(constraint (= (f "964-134-953") "(964) 134-953")) +(constraint (= (f "038-300-876") "(038) 300-876")) +(constraint (= (f "038-300-876") "(038) 300-876")) +(constraint (= (f "038-300-876") "(038) 300-876")) +(constraint (= (f "158-894-947") "(158) 894-947")) +(constraint (= (f "158-894-947") "(158) 894-947")) +(constraint (= (f "158-894-947") "(158) 894-947")) +(constraint (= (f "757-454-374") "(757) 454-374")) +(constraint (= (f "757-454-374") "(757) 454-374")) +(constraint (= (f "757-454-374") "(757) 454-374")) +(constraint (= (f "872-513-190") "(872) 513-190")) +(constraint (= (f "872-513-190") "(872) 513-190")) +(constraint (= (f "872-513-190") "(872) 513-190")) +(constraint (= (f "566-086-726") "(566) 086-726")) +(constraint (= (f "566-086-726") "(566) 086-726")) +(constraint (= (f "566-086-726") "(566) 086-726")) +(constraint (= (f "938-242-504") "(938) 242-504")) +(constraint (= (f "308-916-545") "(308) 916-545")) +(constraint (= (f "623-599-749") "(623) 599-749")) +(constraint (= (f "981-424-843") "(981) 424-843")) +(constraint (= (f "118-980-214") "(118) 980-214")) +(constraint (= (f "244-655-094") "(244) 655-094")) +(constraint (= (f "830-941-991") "(830) 941-991")) +(constraint (= (f "911-186-562") "(911) 186-562")) +(constraint (= (f "002-500-200") "(002) 500-200")) +(constraint (= (f "113-860-034") "(113) 860-034")) +(constraint (= (f "457-622-959") "(457) 622-959")) +(constraint (= (f "986-722-311") "(986) 722-311")) +(constraint (= (f "110-170-771") "(110) 170-771")) +(constraint (= (f "469-610-118") "(469) 610-118")) +(constraint (= (f "817-925-247") "(817) 925-247")) +(constraint (= (f "256-899-439") "(256) 899-439")) +(constraint (= (f "886-911-726") "(886) 911-726")) +(constraint (= (f "562-950-358") "(562) 950-358")) +(constraint (= (f "693-049-588") "(693) 049-588")) +(constraint (= (f "840-503-234") "(840) 503-234")) +(constraint (= (f "698-815-340") "(698) 815-340")) +(constraint (= (f "498-808-434") "(498) 808-434")) +(constraint (= (f "329-545-000") "(329) 545-000")) +(constraint (= (f "380-281-597") "(380) 281-597")) +(constraint (= (f "332-395-493") "(332) 395-493")) +(constraint (= (f "251-903-028") "(251) 903-028")) +(constraint (= (f "176-090-894") "(176) 090-894")) +(constraint (= (f "336-611-100") "(336) 611-100")) +(constraint (= (f "416-390-647") "(416) 390-647")) +(constraint (= (f "019-430-596") "(019) 430-596")) +(constraint (= (f "960-659-771") "(960) 659-771")) +(constraint (= (f "475-505-007") "(475) 505-007")) +(constraint (= (f "424-069-886") "(424) 069-886")) +(constraint (= (f "941-102-117") "(941) 102-117")) +(constraint (= (f "331-728-008") "(331) 728-008")) +(constraint (= (f "487-726-198") "(487) 726-198")) +(constraint (= (f "612-419-942") "(612) 419-942")) +(constraint (= (f "594-741-346") "(594) 741-346")) +(constraint (= (f "320-984-742") "(320) 984-742")) +(constraint (= (f "060-919-361") "(060) 919-361")) +(constraint (= (f "275-536-998") "(275) 536-998")) +(constraint (= (f "548-835-065") "(548) 835-065")) +(constraint (= (f "197-485-507") "(197) 485-507")) +(constraint (= (f "455-776-949") "(455) 776-949")) +(constraint (= (f "085-421-340") "(085) 421-340")) +(constraint (= (f "785-713-099") "(785) 713-099")) +(constraint (= (f "426-712-861") "(426) 712-861")) +(constraint (= (f "386-994-906") "(386) 994-906")) +(constraint (= (f "918-304-840") "(918) 304-840")) +(constraint (= (f "247-153-598") "(247) 153-598")) +(constraint (= (f "075-497-069") "(075) 497-069")) +(constraint (= (f "140-726-583") "(140) 726-583")) +(constraint (= (f "049-413-248") "(049) 413-248")) +(constraint (= (f "977-386-462") "(977) 386-462")) +(constraint (= (f "058-272-455") "(058) 272-455")) +(constraint (= (f "428-629-927") "(428) 629-927")) +(constraint (= (f "449-122-191") "(449) 122-191")) +(constraint (= (f "568-759-670") "(568) 759-670")) +(constraint (= (f "312-846-053") "(312) 846-053")) +(constraint (= (f "943-037-297") "(943) 037-297")) +(constraint (= (f "014-270-177") "(014) 270-177")) +(constraint (= (f "658-877-878") "(658) 877-878")) +(constraint (= (f "888-594-038") "(888) 594-038")) +(constraint (= (f "232-253-254") "(232) 253-254")) +(constraint (= (f "308-722-292") "(308) 722-292")) +(constraint (= (f "342-145-742") "(342) 145-742")) +(constraint (= (f "568-181-515") "(568) 181-515")) +(constraint (= (f "300-140-756") "(300) 140-756")) +(constraint (= (f "099-684-216") "(099) 684-216")) +(constraint (= (f "575-296-621") "(575) 296-621")) +(constraint (= (f "994-443-794") "(994) 443-794")) +(constraint (= (f "400-334-692") "(400) 334-692")) +(constraint (= (f "684-711-883") "(684) 711-883")) +(constraint (= (f "539-636-358") "(539) 636-358")) +(constraint (= (f "009-878-919") "(009) 878-919")) +(constraint (= (f "919-545-701") "(919) 545-701")) +(constraint (= (f "546-399-239") "(546) 399-239")) +(constraint (= (f "993-608-757") "(993) 608-757")) +(constraint (= (f "107-652-845") "(107) 652-845")) +(constraint (= (f "206-805-793") "(206) 805-793")) +(constraint (= (f "198-857-684") "(198) 857-684")) +(constraint (= (f "912-827-430") "(912) 827-430")) +(constraint (= (f "560-951-766") "(560) 951-766")) +(constraint (= (f "142-178-290") "(142) 178-290")) +(constraint (= (f "732-196-946") "(732) 196-946")) +(constraint (= (f "963-875-745") "(963) 875-745")) +(constraint (= (f "881-865-867") "(881) 865-867")) +(constraint (= (f "234-686-715") "(234) 686-715")) +(constraint (= (f "720-330-583") "(720) 330-583")) +(constraint (= (f "593-065-126") "(593) 065-126")) +(constraint (= (f "671-778-064") "(671) 778-064")) +(constraint (= (f "252-029-036") "(252) 029-036")) +(constraint (= (f "700-322-036") "(700) 322-036")) +(constraint (= (f "882-587-473") "(882) 587-473")) +(constraint (= (f "964-134-953") "(964) 134-953")) +(constraint (= (f "038-300-876") "(038) 300-876")) +(constraint (= (f "158-894-947") "(158) 894-947")) +(constraint (= (f "757-454-374") "(757) 454-374")) +(constraint (= (f "872-513-190") "(872) 513-190")) +(constraint (= (f "566-086-726") "(566) 086-726")) + +(check-synth) diff --git a/PBE_Strings_Track/phone-3-long.sl b/PBE_Strings_Track/phone-3-long.sl new file mode 100644 index 0000000000000000000000000000000000000000..4aa18325863d0edc12a5685b98c3a42c64c93670 --- /dev/null +++ b/PBE_Strings_Track/phone-3-long.sl @@ -0,0 +1,126 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "(" ")" "-" + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "938-242-504") "(938) 242-504")) +(constraint (= (f "308-916-545") "(308) 916-545")) +(constraint (= (f "623-599-749") "(623) 599-749")) +(constraint (= (f "981-424-843") "(981) 424-843")) +(constraint (= (f "118-980-214") "(118) 980-214")) +(constraint (= (f "244-655-094") "(244) 655-094")) +(constraint (= (f "830-941-991") "(830) 941-991")) +(constraint (= (f "911-186-562") "(911) 186-562")) +(constraint (= (f "002-500-200") "(002) 500-200")) +(constraint (= (f "113-860-034") "(113) 860-034")) +(constraint (= (f "457-622-959") "(457) 622-959")) +(constraint (= (f "986-722-311") "(986) 722-311")) +(constraint (= (f "110-170-771") "(110) 170-771")) +(constraint (= (f "469-610-118") "(469) 610-118")) +(constraint (= (f "817-925-247") "(817) 925-247")) +(constraint (= (f "256-899-439") "(256) 899-439")) +(constraint (= (f "886-911-726") "(886) 911-726")) +(constraint (= (f "562-950-358") "(562) 950-358")) +(constraint (= (f "693-049-588") "(693) 049-588")) +(constraint (= (f "840-503-234") "(840) 503-234")) +(constraint (= (f "698-815-340") "(698) 815-340")) +(constraint (= (f "498-808-434") "(498) 808-434")) +(constraint (= (f "329-545-000") "(329) 545-000")) +(constraint (= (f "380-281-597") "(380) 281-597")) +(constraint (= (f "332-395-493") "(332) 395-493")) +(constraint (= (f "251-903-028") "(251) 903-028")) +(constraint (= (f "176-090-894") "(176) 090-894")) +(constraint (= (f "336-611-100") "(336) 611-100")) +(constraint (= (f "416-390-647") "(416) 390-647")) +(constraint (= (f "019-430-596") "(019) 430-596")) +(constraint (= (f "960-659-771") "(960) 659-771")) +(constraint (= (f "475-505-007") "(475) 505-007")) +(constraint (= (f "424-069-886") "(424) 069-886")) +(constraint (= (f "941-102-117") "(941) 102-117")) +(constraint (= (f "331-728-008") "(331) 728-008")) +(constraint (= (f "487-726-198") "(487) 726-198")) +(constraint (= (f "612-419-942") "(612) 419-942")) +(constraint (= (f "594-741-346") "(594) 741-346")) +(constraint (= (f "320-984-742") "(320) 984-742")) +(constraint (= (f "060-919-361") "(060) 919-361")) +(constraint (= (f "275-536-998") "(275) 536-998")) +(constraint (= (f "548-835-065") "(548) 835-065")) +(constraint (= (f "197-485-507") "(197) 485-507")) +(constraint (= (f "455-776-949") "(455) 776-949")) +(constraint (= (f "085-421-340") "(085) 421-340")) +(constraint (= (f "785-713-099") "(785) 713-099")) +(constraint (= (f "426-712-861") "(426) 712-861")) +(constraint (= (f "386-994-906") "(386) 994-906")) +(constraint (= (f "918-304-840") "(918) 304-840")) +(constraint (= (f "247-153-598") "(247) 153-598")) +(constraint (= (f "075-497-069") "(075) 497-069")) +(constraint (= (f "140-726-583") "(140) 726-583")) +(constraint (= (f "049-413-248") "(049) 413-248")) +(constraint (= (f "977-386-462") "(977) 386-462")) +(constraint (= (f "058-272-455") "(058) 272-455")) +(constraint (= (f "428-629-927") "(428) 629-927")) +(constraint (= (f "449-122-191") "(449) 122-191")) +(constraint (= (f "568-759-670") "(568) 759-670")) +(constraint (= (f "312-846-053") "(312) 846-053")) +(constraint (= (f "943-037-297") "(943) 037-297")) +(constraint (= (f "014-270-177") "(014) 270-177")) +(constraint (= (f "658-877-878") "(658) 877-878")) +(constraint (= (f "888-594-038") "(888) 594-038")) +(constraint (= (f "232-253-254") "(232) 253-254")) +(constraint (= (f "308-722-292") "(308) 722-292")) +(constraint (= (f "342-145-742") "(342) 145-742")) +(constraint (= (f "568-181-515") "(568) 181-515")) +(constraint (= (f "300-140-756") "(300) 140-756")) +(constraint (= (f "099-684-216") "(099) 684-216")) +(constraint (= (f "575-296-621") "(575) 296-621")) +(constraint (= (f "994-443-794") "(994) 443-794")) +(constraint (= (f "400-334-692") "(400) 334-692")) +(constraint (= (f "684-711-883") "(684) 711-883")) +(constraint (= (f "539-636-358") "(539) 636-358")) +(constraint (= (f "009-878-919") "(009) 878-919")) +(constraint (= (f "919-545-701") "(919) 545-701")) +(constraint (= (f "546-399-239") "(546) 399-239")) +(constraint (= (f "993-608-757") "(993) 608-757")) +(constraint (= (f "107-652-845") "(107) 652-845")) +(constraint (= (f "206-805-793") "(206) 805-793")) +(constraint (= (f "198-857-684") "(198) 857-684")) +(constraint (= (f "912-827-430") "(912) 827-430")) +(constraint (= (f "560-951-766") "(560) 951-766")) +(constraint (= (f "142-178-290") "(142) 178-290")) +(constraint (= (f "732-196-946") "(732) 196-946")) +(constraint (= (f "963-875-745") "(963) 875-745")) +(constraint (= (f "881-865-867") "(881) 865-867")) +(constraint (= (f "234-686-715") "(234) 686-715")) +(constraint (= (f "720-330-583") "(720) 330-583")) +(constraint (= (f "593-065-126") "(593) 065-126")) +(constraint (= (f "671-778-064") "(671) 778-064")) +(constraint (= (f "252-029-036") "(252) 029-036")) +(constraint (= (f "700-322-036") "(700) 322-036")) +(constraint (= (f "882-587-473") "(882) 587-473")) +(constraint (= (f "964-134-953") "(964) 134-953")) +(constraint (= (f "038-300-876") "(038) 300-876")) +(constraint (= (f "158-894-947") "(158) 894-947")) +(constraint (= (f "757-454-374") "(757) 454-374")) +(constraint (= (f "872-513-190") "(872) 513-190")) +(constraint (= (f "566-086-726") "(566) 086-726")) + +(check-synth) diff --git a/PBE_Strings_Track/phone-3.sl b/PBE_Strings_Track/phone-3.sl new file mode 100644 index 0000000000000000000000000000000000000000..6c719adeaf80961e85ce7af6d287ccfe033eadd0 --- /dev/null +++ b/PBE_Strings_Track/phone-3.sl @@ -0,0 +1,33 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "(" ")" "-" + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "938-242-504") "(938) 242-504")) +(constraint (= (f "308-916-545") "(308) 916-545")) +(constraint (= (f "623-599-749") "(623) 599-749")) +(constraint (= (f "981-424-843") "(981) 424-843")) +(constraint (= (f "118-980-214") "(118) 980-214")) +(constraint (= (f "244-655-094") "(244) 655-094")) +(constraint (= (f "830-941-991") "(830) 941-991")) + +(check-synth) diff --git a/PBE_Strings_Track/phone-3_short.sl b/PBE_Strings_Track/phone-3_short.sl new file mode 100644 index 0000000000000000000000000000000000000000..9b299087bdf2a6e98f6ff35844cf4cb0aed716b5 --- /dev/null +++ b/PBE_Strings_Track/phone-3_short.sl @@ -0,0 +1,30 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "(" ")" "-" + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "938-242-504") "(938) 242-504")) +(constraint (= (f "308-916-545") "(308) 916-545")) +(constraint (= (f "623-599-749") "(623) 599-749")) +(constraint (= (f "981-424-843") "(981) 424-843")) +(constraint (= (f "118-980-214") "(118) 980-214")) +(constraint (= (f "244-655-094") "(244) 655-094")) +(constraint (= (f "830-941-991") "(830) 941-991")) + +(check-synth) diff --git a/PBE_Strings_Track/phone-4-long-repeat.sl b/PBE_Strings_Track/phone-4-long-repeat.sl new file mode 100644 index 0000000000000000000000000000000000000000..b35df92e75c6f1f4cff2506fbc523d2407b6918d --- /dev/null +++ b/PBE_Strings_Track/phone-4-long-repeat.sl @@ -0,0 +1,426 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "(" ")" "-" "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "938-242-504") "938.242.504")) +(constraint (= (f "938-242-504") "938.242.504")) +(constraint (= (f "938-242-504") "938.242.504")) +(constraint (= (f "308-916-545") "308.916.545")) +(constraint (= (f "308-916-545") "308.916.545")) +(constraint (= (f "308-916-545") "308.916.545")) +(constraint (= (f "623-599-749") "623.599.749")) +(constraint (= (f "623-599-749") "623.599.749")) +(constraint (= (f "623-599-749") "623.599.749")) +(constraint (= (f "981-424-843") "981.424.843")) +(constraint (= (f "981-424-843") "981.424.843")) +(constraint (= (f "981-424-843") "981.424.843")) +(constraint (= (f "118-980-214") "118.980.214")) +(constraint (= (f "118-980-214") "118.980.214")) +(constraint (= (f "118-980-214") "118.980.214")) +(constraint (= (f "244-655-094") "244.655.094")) +(constraint (= (f "244-655-094") "244.655.094")) +(constraint (= (f "244-655-094") "244.655.094")) +(constraint (= (f "830-941-991") "830.941.991")) +(constraint (= (f "830-941-991") "830.941.991")) +(constraint (= (f "830-941-991") "830.941.991")) +(constraint (= (f "911-186-562") "911.186.562")) +(constraint (= (f "911-186-562") "911.186.562")) +(constraint (= (f "911-186-562") "911.186.562")) +(constraint (= (f "002-500-200") "002.500.200")) +(constraint (= (f "002-500-200") "002.500.200")) +(constraint (= (f "002-500-200") "002.500.200")) +(constraint (= (f "113-860-034") "113.860.034")) +(constraint (= (f "113-860-034") "113.860.034")) +(constraint (= (f "113-860-034") "113.860.034")) +(constraint (= (f "457-622-959") "457.622.959")) +(constraint (= (f "457-622-959") "457.622.959")) +(constraint (= (f "457-622-959") "457.622.959")) +(constraint (= (f "986-722-311") "986.722.311")) +(constraint (= (f "986-722-311") "986.722.311")) +(constraint (= (f "986-722-311") "986.722.311")) +(constraint (= (f "110-170-771") "110.170.771")) +(constraint (= (f "110-170-771") "110.170.771")) +(constraint (= (f "110-170-771") "110.170.771")) +(constraint (= (f "469-610-118") "469.610.118")) +(constraint (= (f "469-610-118") "469.610.118")) +(constraint (= (f "469-610-118") "469.610.118")) +(constraint (= (f "817-925-247") "817.925.247")) +(constraint (= (f "817-925-247") "817.925.247")) +(constraint (= (f "817-925-247") "817.925.247")) +(constraint (= (f "256-899-439") "256.899.439")) +(constraint (= (f "256-899-439") "256.899.439")) +(constraint (= (f "256-899-439") "256.899.439")) +(constraint (= (f "886-911-726") "886.911.726")) +(constraint (= (f "886-911-726") "886.911.726")) +(constraint (= (f "886-911-726") "886.911.726")) +(constraint (= (f "562-950-358") "562.950.358")) +(constraint (= (f "562-950-358") "562.950.358")) +(constraint (= (f "562-950-358") "562.950.358")) +(constraint (= (f "693-049-588") "693.049.588")) +(constraint (= (f "693-049-588") "693.049.588")) +(constraint (= (f "693-049-588") "693.049.588")) +(constraint (= (f "840-503-234") "840.503.234")) +(constraint (= (f "840-503-234") "840.503.234")) +(constraint (= (f "840-503-234") "840.503.234")) +(constraint (= (f "698-815-340") "698.815.340")) +(constraint (= (f "698-815-340") "698.815.340")) +(constraint (= (f "698-815-340") "698.815.340")) +(constraint (= (f "498-808-434") "498.808.434")) +(constraint (= (f "498-808-434") "498.808.434")) +(constraint (= (f "498-808-434") "498.808.434")) +(constraint (= (f "329-545-000") "329.545.000")) +(constraint (= (f "329-545-000") "329.545.000")) +(constraint (= (f "329-545-000") "329.545.000")) +(constraint (= (f "380-281-597") "380.281.597")) +(constraint (= (f "380-281-597") "380.281.597")) +(constraint (= (f "380-281-597") "380.281.597")) +(constraint (= (f "332-395-493") "332.395.493")) +(constraint (= (f "332-395-493") "332.395.493")) +(constraint (= (f "332-395-493") "332.395.493")) +(constraint (= (f "251-903-028") "251.903.028")) +(constraint (= (f "251-903-028") "251.903.028")) +(constraint (= (f "251-903-028") "251.903.028")) +(constraint (= (f "176-090-894") "176.090.894")) +(constraint (= (f "176-090-894") "176.090.894")) +(constraint (= (f "176-090-894") "176.090.894")) +(constraint (= (f "336-611-100") "336.611.100")) +(constraint (= (f "336-611-100") "336.611.100")) +(constraint (= (f "336-611-100") "336.611.100")) +(constraint (= (f "416-390-647") "416.390.647")) +(constraint (= (f "416-390-647") "416.390.647")) +(constraint (= (f "416-390-647") "416.390.647")) +(constraint (= (f "019-430-596") "019.430.596")) +(constraint (= (f "019-430-596") "019.430.596")) +(constraint (= (f "019-430-596") "019.430.596")) +(constraint (= (f "960-659-771") "960.659.771")) +(constraint (= (f "960-659-771") "960.659.771")) +(constraint (= (f "960-659-771") "960.659.771")) +(constraint (= (f "475-505-007") "475.505.007")) +(constraint (= (f "475-505-007") "475.505.007")) +(constraint (= (f "475-505-007") "475.505.007")) +(constraint (= (f "424-069-886") "424.069.886")) +(constraint (= (f "424-069-886") "424.069.886")) +(constraint (= (f "424-069-886") "424.069.886")) +(constraint (= (f "941-102-117") "941.102.117")) +(constraint (= (f "941-102-117") "941.102.117")) +(constraint (= (f "941-102-117") "941.102.117")) +(constraint (= (f "331-728-008") "331.728.008")) +(constraint (= (f "331-728-008") "331.728.008")) +(constraint (= (f "331-728-008") "331.728.008")) +(constraint (= (f "487-726-198") "487.726.198")) +(constraint (= (f "487-726-198") "487.726.198")) +(constraint (= (f "487-726-198") "487.726.198")) +(constraint (= (f "612-419-942") "612.419.942")) +(constraint (= (f "612-419-942") "612.419.942")) +(constraint (= (f "612-419-942") "612.419.942")) +(constraint (= (f "594-741-346") "594.741.346")) +(constraint (= (f "594-741-346") "594.741.346")) +(constraint (= (f "594-741-346") "594.741.346")) +(constraint (= (f "320-984-742") "320.984.742")) +(constraint (= (f "320-984-742") "320.984.742")) +(constraint (= (f "320-984-742") "320.984.742")) +(constraint (= (f "060-919-361") "060.919.361")) +(constraint (= (f "060-919-361") "060.919.361")) +(constraint (= (f "060-919-361") "060.919.361")) +(constraint (= (f "275-536-998") "275.536.998")) +(constraint (= (f "275-536-998") "275.536.998")) +(constraint (= (f "275-536-998") "275.536.998")) +(constraint (= (f "548-835-065") "548.835.065")) +(constraint (= (f "548-835-065") "548.835.065")) +(constraint (= (f "548-835-065") "548.835.065")) +(constraint (= (f "197-485-507") "197.485.507")) +(constraint (= (f "197-485-507") "197.485.507")) +(constraint (= (f "197-485-507") "197.485.507")) +(constraint (= (f "455-776-949") "455.776.949")) +(constraint (= (f "455-776-949") "455.776.949")) +(constraint (= (f "455-776-949") "455.776.949")) +(constraint (= (f "085-421-340") "085.421.340")) +(constraint (= (f "085-421-340") "085.421.340")) +(constraint (= (f "085-421-340") "085.421.340")) +(constraint (= (f "785-713-099") "785.713.099")) +(constraint (= (f "785-713-099") "785.713.099")) +(constraint (= (f "785-713-099") "785.713.099")) +(constraint (= (f "426-712-861") "426.712.861")) +(constraint (= (f "426-712-861") "426.712.861")) +(constraint (= (f "426-712-861") "426.712.861")) +(constraint (= (f "386-994-906") "386.994.906")) +(constraint (= (f "386-994-906") "386.994.906")) +(constraint (= (f "386-994-906") "386.994.906")) +(constraint (= (f "918-304-840") "918.304.840")) +(constraint (= (f "918-304-840") "918.304.840")) +(constraint (= (f "918-304-840") "918.304.840")) +(constraint (= (f "247-153-598") "247.153.598")) +(constraint (= (f "247-153-598") "247.153.598")) +(constraint (= (f "247-153-598") "247.153.598")) +(constraint (= (f "075-497-069") "075.497.069")) +(constraint (= (f "075-497-069") "075.497.069")) +(constraint (= (f "075-497-069") "075.497.069")) +(constraint (= (f "140-726-583") "140.726.583")) +(constraint (= (f "140-726-583") "140.726.583")) +(constraint (= (f "140-726-583") "140.726.583")) +(constraint (= (f "049-413-248") "049.413.248")) +(constraint (= (f "049-413-248") "049.413.248")) +(constraint (= (f "049-413-248") "049.413.248")) +(constraint (= (f "977-386-462") "977.386.462")) +(constraint (= (f "977-386-462") "977.386.462")) +(constraint (= (f "977-386-462") "977.386.462")) +(constraint (= (f "058-272-455") "058.272.455")) +(constraint (= (f "058-272-455") "058.272.455")) +(constraint (= (f "058-272-455") "058.272.455")) +(constraint (= (f "428-629-927") "428.629.927")) +(constraint (= (f "428-629-927") "428.629.927")) +(constraint (= (f "428-629-927") "428.629.927")) +(constraint (= (f "449-122-191") "449.122.191")) +(constraint (= (f "449-122-191") "449.122.191")) +(constraint (= (f "449-122-191") "449.122.191")) +(constraint (= (f "568-759-670") "568.759.670")) +(constraint (= (f "568-759-670") "568.759.670")) +(constraint (= (f "568-759-670") "568.759.670")) +(constraint (= (f "312-846-053") "312.846.053")) +(constraint (= (f "312-846-053") "312.846.053")) +(constraint (= (f "312-846-053") "312.846.053")) +(constraint (= (f "943-037-297") "943.037.297")) +(constraint (= (f "943-037-297") "943.037.297")) +(constraint (= (f "943-037-297") "943.037.297")) +(constraint (= (f "014-270-177") "014.270.177")) +(constraint (= (f "014-270-177") "014.270.177")) +(constraint (= (f "014-270-177") "014.270.177")) +(constraint (= (f "658-877-878") "658.877.878")) +(constraint (= (f "658-877-878") "658.877.878")) +(constraint (= (f "658-877-878") "658.877.878")) +(constraint (= (f "888-594-038") "888.594.038")) +(constraint (= (f "888-594-038") "888.594.038")) +(constraint (= (f "888-594-038") "888.594.038")) +(constraint (= (f "232-253-254") "232.253.254")) +(constraint (= (f "232-253-254") "232.253.254")) +(constraint (= (f "232-253-254") "232.253.254")) +(constraint (= (f "308-722-292") "308.722.292")) +(constraint (= (f "308-722-292") "308.722.292")) +(constraint (= (f "308-722-292") "308.722.292")) +(constraint (= (f "342-145-742") "342.145.742")) +(constraint (= (f "342-145-742") "342.145.742")) +(constraint (= (f "342-145-742") "342.145.742")) +(constraint (= (f "568-181-515") "568.181.515")) +(constraint (= (f "568-181-515") "568.181.515")) +(constraint (= (f "568-181-515") "568.181.515")) +(constraint (= (f "300-140-756") "300.140.756")) +(constraint (= (f "300-140-756") "300.140.756")) +(constraint (= (f "300-140-756") "300.140.756")) +(constraint (= (f "099-684-216") "099.684.216")) +(constraint (= (f "099-684-216") "099.684.216")) +(constraint (= (f "099-684-216") "099.684.216")) +(constraint (= (f "575-296-621") "575.296.621")) +(constraint (= (f "575-296-621") "575.296.621")) +(constraint (= (f "575-296-621") "575.296.621")) +(constraint (= (f "994-443-794") "994.443.794")) +(constraint (= (f "994-443-794") "994.443.794")) +(constraint (= (f "994-443-794") "994.443.794")) +(constraint (= (f "400-334-692") "400.334.692")) +(constraint (= (f "400-334-692") "400.334.692")) +(constraint (= (f "400-334-692") "400.334.692")) +(constraint (= (f "684-711-883") "684.711.883")) +(constraint (= (f "684-711-883") "684.711.883")) +(constraint (= (f "684-711-883") "684.711.883")) +(constraint (= (f "539-636-358") "539.636.358")) +(constraint (= (f "539-636-358") "539.636.358")) +(constraint (= (f "539-636-358") "539.636.358")) +(constraint (= (f "009-878-919") "009.878.919")) +(constraint (= (f "009-878-919") "009.878.919")) +(constraint (= (f "009-878-919") "009.878.919")) +(constraint (= (f "919-545-701") "919.545.701")) +(constraint (= (f "919-545-701") "919.545.701")) +(constraint (= (f "919-545-701") "919.545.701")) +(constraint (= (f "546-399-239") "546.399.239")) +(constraint (= (f "546-399-239") "546.399.239")) +(constraint (= (f "546-399-239") "546.399.239")) +(constraint (= (f "993-608-757") "993.608.757")) +(constraint (= (f "993-608-757") "993.608.757")) +(constraint (= (f "993-608-757") "993.608.757")) +(constraint (= (f "107-652-845") "107.652.845")) +(constraint (= (f "107-652-845") "107.652.845")) +(constraint (= (f "107-652-845") "107.652.845")) +(constraint (= (f "206-805-793") "206.805.793")) +(constraint (= (f "206-805-793") "206.805.793")) +(constraint (= (f "206-805-793") "206.805.793")) +(constraint (= (f "198-857-684") "198.857.684")) +(constraint (= (f "198-857-684") "198.857.684")) +(constraint (= (f "198-857-684") "198.857.684")) +(constraint (= (f "912-827-430") "912.827.430")) +(constraint (= (f "912-827-430") "912.827.430")) +(constraint (= (f "912-827-430") "912.827.430")) +(constraint (= (f "560-951-766") "560.951.766")) +(constraint (= (f "560-951-766") "560.951.766")) +(constraint (= (f "560-951-766") "560.951.766")) +(constraint (= (f "142-178-290") "142.178.290")) +(constraint (= (f "142-178-290") "142.178.290")) +(constraint (= (f "142-178-290") "142.178.290")) +(constraint (= (f "732-196-946") "732.196.946")) +(constraint (= (f "732-196-946") "732.196.946")) +(constraint (= (f "732-196-946") "732.196.946")) +(constraint (= (f "963-875-745") "963.875.745")) +(constraint (= (f "963-875-745") "963.875.745")) +(constraint (= (f "963-875-745") "963.875.745")) +(constraint (= (f "881-865-867") "881.865.867")) +(constraint (= (f "881-865-867") "881.865.867")) +(constraint (= (f "881-865-867") "881.865.867")) +(constraint (= (f "234-686-715") "234.686.715")) +(constraint (= (f "234-686-715") "234.686.715")) +(constraint (= (f "234-686-715") "234.686.715")) +(constraint (= (f "720-330-583") "720.330.583")) +(constraint (= (f "720-330-583") "720.330.583")) +(constraint (= (f "720-330-583") "720.330.583")) +(constraint (= (f "593-065-126") "593.065.126")) +(constraint (= (f "593-065-126") "593.065.126")) +(constraint (= (f "593-065-126") "593.065.126")) +(constraint (= (f "671-778-064") "671.778.064")) +(constraint (= (f "671-778-064") "671.778.064")) +(constraint (= (f "671-778-064") "671.778.064")) +(constraint (= (f "252-029-036") "252.029.036")) +(constraint (= (f "252-029-036") "252.029.036")) +(constraint (= (f "252-029-036") "252.029.036")) +(constraint (= (f "700-322-036") "700.322.036")) +(constraint (= (f "700-322-036") "700.322.036")) +(constraint (= (f "700-322-036") "700.322.036")) +(constraint (= (f "882-587-473") "882.587.473")) +(constraint (= (f "882-587-473") "882.587.473")) +(constraint (= (f "882-587-473") "882.587.473")) +(constraint (= (f "964-134-953") "964.134.953")) +(constraint (= (f "964-134-953") "964.134.953")) +(constraint (= (f "964-134-953") "964.134.953")) +(constraint (= (f "038-300-876") "038.300.876")) +(constraint (= (f "038-300-876") "038.300.876")) +(constraint (= (f "038-300-876") "038.300.876")) +(constraint (= (f "158-894-947") "158.894.947")) +(constraint (= (f "158-894-947") "158.894.947")) +(constraint (= (f "158-894-947") "158.894.947")) +(constraint (= (f "757-454-374") "757.454.374")) +(constraint (= (f "757-454-374") "757.454.374")) +(constraint (= (f "757-454-374") "757.454.374")) +(constraint (= (f "872-513-190") "872.513.190")) +(constraint (= (f "872-513-190") "872.513.190")) +(constraint (= (f "872-513-190") "872.513.190")) +(constraint (= (f "566-086-726") "566.086.726")) +(constraint (= (f "566-086-726") "566.086.726")) +(constraint (= (f "566-086-726") "566.086.726")) +(constraint (= (f "938-242-504") "938.242.504")) +(constraint (= (f "308-916-545") "308.916.545")) +(constraint (= (f "623-599-749") "623.599.749")) +(constraint (= (f "981-424-843") "981.424.843")) +(constraint (= (f "118-980-214") "118.980.214")) +(constraint (= (f "244-655-094") "244.655.094")) +(constraint (= (f "830-941-991") "830.941.991")) +(constraint (= (f "911-186-562") "911.186.562")) +(constraint (= (f "002-500-200") "002.500.200")) +(constraint (= (f "113-860-034") "113.860.034")) +(constraint (= (f "457-622-959") "457.622.959")) +(constraint (= (f "986-722-311") "986.722.311")) +(constraint (= (f "110-170-771") "110.170.771")) +(constraint (= (f "469-610-118") "469.610.118")) +(constraint (= (f "817-925-247") "817.925.247")) +(constraint (= (f "256-899-439") "256.899.439")) +(constraint (= (f "886-911-726") "886.911.726")) +(constraint (= (f "562-950-358") "562.950.358")) +(constraint (= (f "693-049-588") "693.049.588")) +(constraint (= (f "840-503-234") "840.503.234")) +(constraint (= (f "698-815-340") "698.815.340")) +(constraint (= (f "498-808-434") "498.808.434")) +(constraint (= (f "329-545-000") "329.545.000")) +(constraint (= (f "380-281-597") "380.281.597")) +(constraint (= (f "332-395-493") "332.395.493")) +(constraint (= (f "251-903-028") "251.903.028")) +(constraint (= (f "176-090-894") "176.090.894")) +(constraint (= (f "336-611-100") "336.611.100")) +(constraint (= (f "416-390-647") "416.390.647")) +(constraint (= (f "019-430-596") "019.430.596")) +(constraint (= (f "960-659-771") "960.659.771")) +(constraint (= (f "475-505-007") "475.505.007")) +(constraint (= (f "424-069-886") "424.069.886")) +(constraint (= (f "941-102-117") "941.102.117")) +(constraint (= (f "331-728-008") "331.728.008")) +(constraint (= (f "487-726-198") "487.726.198")) +(constraint (= (f "612-419-942") "612.419.942")) +(constraint (= (f "594-741-346") "594.741.346")) +(constraint (= (f "320-984-742") "320.984.742")) +(constraint (= (f "060-919-361") "060.919.361")) +(constraint (= (f "275-536-998") "275.536.998")) +(constraint (= (f "548-835-065") "548.835.065")) +(constraint (= (f "197-485-507") "197.485.507")) +(constraint (= (f "455-776-949") "455.776.949")) +(constraint (= (f "085-421-340") "085.421.340")) +(constraint (= (f "785-713-099") "785.713.099")) +(constraint (= (f "426-712-861") "426.712.861")) +(constraint (= (f "386-994-906") "386.994.906")) +(constraint (= (f "918-304-840") "918.304.840")) +(constraint (= (f "247-153-598") "247.153.598")) +(constraint (= (f "075-497-069") "075.497.069")) +(constraint (= (f "140-726-583") "140.726.583")) +(constraint (= (f "049-413-248") "049.413.248")) +(constraint (= (f "977-386-462") "977.386.462")) +(constraint (= (f "058-272-455") "058.272.455")) +(constraint (= (f "428-629-927") "428.629.927")) +(constraint (= (f "449-122-191") "449.122.191")) +(constraint (= (f "568-759-670") "568.759.670")) +(constraint (= (f "312-846-053") "312.846.053")) +(constraint (= (f "943-037-297") "943.037.297")) +(constraint (= (f "014-270-177") "014.270.177")) +(constraint (= (f "658-877-878") "658.877.878")) +(constraint (= (f "888-594-038") "888.594.038")) +(constraint (= (f "232-253-254") "232.253.254")) +(constraint (= (f "308-722-292") "308.722.292")) +(constraint (= (f "342-145-742") "342.145.742")) +(constraint (= (f "568-181-515") "568.181.515")) +(constraint (= (f "300-140-756") "300.140.756")) +(constraint (= (f "099-684-216") "099.684.216")) +(constraint (= (f "575-296-621") "575.296.621")) +(constraint (= (f "994-443-794") "994.443.794")) +(constraint (= (f "400-334-692") "400.334.692")) +(constraint (= (f "684-711-883") "684.711.883")) +(constraint (= (f "539-636-358") "539.636.358")) +(constraint (= (f "009-878-919") "009.878.919")) +(constraint (= (f "919-545-701") "919.545.701")) +(constraint (= (f "546-399-239") "546.399.239")) +(constraint (= (f "993-608-757") "993.608.757")) +(constraint (= (f "107-652-845") "107.652.845")) +(constraint (= (f "206-805-793") "206.805.793")) +(constraint (= (f "198-857-684") "198.857.684")) +(constraint (= (f "912-827-430") "912.827.430")) +(constraint (= (f "560-951-766") "560.951.766")) +(constraint (= (f "142-178-290") "142.178.290")) +(constraint (= (f "732-196-946") "732.196.946")) +(constraint (= (f "963-875-745") "963.875.745")) +(constraint (= (f "881-865-867") "881.865.867")) +(constraint (= (f "234-686-715") "234.686.715")) +(constraint (= (f "720-330-583") "720.330.583")) +(constraint (= (f "593-065-126") "593.065.126")) +(constraint (= (f "671-778-064") "671.778.064")) +(constraint (= (f "252-029-036") "252.029.036")) +(constraint (= (f "700-322-036") "700.322.036")) +(constraint (= (f "882-587-473") "882.587.473")) +(constraint (= (f "964-134-953") "964.134.953")) +(constraint (= (f "038-300-876") "038.300.876")) +(constraint (= (f "158-894-947") "158.894.947")) +(constraint (= (f "757-454-374") "757.454.374")) +(constraint (= (f "872-513-190") "872.513.190")) +(constraint (= (f "566-086-726") "566.086.726")) + +(check-synth) diff --git a/PBE_Strings_Track/phone-4-long.sl b/PBE_Strings_Track/phone-4-long.sl new file mode 100644 index 0000000000000000000000000000000000000000..a314bcfdf3faae5ecb8d828e52bb0ed53a5378a9 --- /dev/null +++ b/PBE_Strings_Track/phone-4-long.sl @@ -0,0 +1,126 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "(" ")" "-" "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "938-242-504") "938.242.504")) +(constraint (= (f "308-916-545") "308.916.545")) +(constraint (= (f "623-599-749") "623.599.749")) +(constraint (= (f "981-424-843") "981.424.843")) +(constraint (= (f "118-980-214") "118.980.214")) +(constraint (= (f "244-655-094") "244.655.094")) +(constraint (= (f "830-941-991") "830.941.991")) +(constraint (= (f "911-186-562") "911.186.562")) +(constraint (= (f "002-500-200") "002.500.200")) +(constraint (= (f "113-860-034") "113.860.034")) +(constraint (= (f "457-622-959") "457.622.959")) +(constraint (= (f "986-722-311") "986.722.311")) +(constraint (= (f "110-170-771") "110.170.771")) +(constraint (= (f "469-610-118") "469.610.118")) +(constraint (= (f "817-925-247") "817.925.247")) +(constraint (= (f "256-899-439") "256.899.439")) +(constraint (= (f "886-911-726") "886.911.726")) +(constraint (= (f "562-950-358") "562.950.358")) +(constraint (= (f "693-049-588") "693.049.588")) +(constraint (= (f "840-503-234") "840.503.234")) +(constraint (= (f "698-815-340") "698.815.340")) +(constraint (= (f "498-808-434") "498.808.434")) +(constraint (= (f "329-545-000") "329.545.000")) +(constraint (= (f "380-281-597") "380.281.597")) +(constraint (= (f "332-395-493") "332.395.493")) +(constraint (= (f "251-903-028") "251.903.028")) +(constraint (= (f "176-090-894") "176.090.894")) +(constraint (= (f "336-611-100") "336.611.100")) +(constraint (= (f "416-390-647") "416.390.647")) +(constraint (= (f "019-430-596") "019.430.596")) +(constraint (= (f "960-659-771") "960.659.771")) +(constraint (= (f "475-505-007") "475.505.007")) +(constraint (= (f "424-069-886") "424.069.886")) +(constraint (= (f "941-102-117") "941.102.117")) +(constraint (= (f "331-728-008") "331.728.008")) +(constraint (= (f "487-726-198") "487.726.198")) +(constraint (= (f "612-419-942") "612.419.942")) +(constraint (= (f "594-741-346") "594.741.346")) +(constraint (= (f "320-984-742") "320.984.742")) +(constraint (= (f "060-919-361") "060.919.361")) +(constraint (= (f "275-536-998") "275.536.998")) +(constraint (= (f "548-835-065") "548.835.065")) +(constraint (= (f "197-485-507") "197.485.507")) +(constraint (= (f "455-776-949") "455.776.949")) +(constraint (= (f "085-421-340") "085.421.340")) +(constraint (= (f "785-713-099") "785.713.099")) +(constraint (= (f "426-712-861") "426.712.861")) +(constraint (= (f "386-994-906") "386.994.906")) +(constraint (= (f "918-304-840") "918.304.840")) +(constraint (= (f "247-153-598") "247.153.598")) +(constraint (= (f "075-497-069") "075.497.069")) +(constraint (= (f "140-726-583") "140.726.583")) +(constraint (= (f "049-413-248") "049.413.248")) +(constraint (= (f "977-386-462") "977.386.462")) +(constraint (= (f "058-272-455") "058.272.455")) +(constraint (= (f "428-629-927") "428.629.927")) +(constraint (= (f "449-122-191") "449.122.191")) +(constraint (= (f "568-759-670") "568.759.670")) +(constraint (= (f "312-846-053") "312.846.053")) +(constraint (= (f "943-037-297") "943.037.297")) +(constraint (= (f "014-270-177") "014.270.177")) +(constraint (= (f "658-877-878") "658.877.878")) +(constraint (= (f "888-594-038") "888.594.038")) +(constraint (= (f "232-253-254") "232.253.254")) +(constraint (= (f "308-722-292") "308.722.292")) +(constraint (= (f "342-145-742") "342.145.742")) +(constraint (= (f "568-181-515") "568.181.515")) +(constraint (= (f "300-140-756") "300.140.756")) +(constraint (= (f "099-684-216") "099.684.216")) +(constraint (= (f "575-296-621") "575.296.621")) +(constraint (= (f "994-443-794") "994.443.794")) +(constraint (= (f "400-334-692") "400.334.692")) +(constraint (= (f "684-711-883") "684.711.883")) +(constraint (= (f "539-636-358") "539.636.358")) +(constraint (= (f "009-878-919") "009.878.919")) +(constraint (= (f "919-545-701") "919.545.701")) +(constraint (= (f "546-399-239") "546.399.239")) +(constraint (= (f "993-608-757") "993.608.757")) +(constraint (= (f "107-652-845") "107.652.845")) +(constraint (= (f "206-805-793") "206.805.793")) +(constraint (= (f "198-857-684") "198.857.684")) +(constraint (= (f "912-827-430") "912.827.430")) +(constraint (= (f "560-951-766") "560.951.766")) +(constraint (= (f "142-178-290") "142.178.290")) +(constraint (= (f "732-196-946") "732.196.946")) +(constraint (= (f "963-875-745") "963.875.745")) +(constraint (= (f "881-865-867") "881.865.867")) +(constraint (= (f "234-686-715") "234.686.715")) +(constraint (= (f "720-330-583") "720.330.583")) +(constraint (= (f "593-065-126") "593.065.126")) +(constraint (= (f "671-778-064") "671.778.064")) +(constraint (= (f "252-029-036") "252.029.036")) +(constraint (= (f "700-322-036") "700.322.036")) +(constraint (= (f "882-587-473") "882.587.473")) +(constraint (= (f "964-134-953") "964.134.953")) +(constraint (= (f "038-300-876") "038.300.876")) +(constraint (= (f "158-894-947") "158.894.947")) +(constraint (= (f "757-454-374") "757.454.374")) +(constraint (= (f "872-513-190") "872.513.190")) +(constraint (= (f "566-086-726") "566.086.726")) + +(check-synth) diff --git a/PBE_Strings_Track/phone-4.sl b/PBE_Strings_Track/phone-4.sl new file mode 100644 index 0000000000000000000000000000000000000000..2c1d2a2669bb1618bcedf5ac5708ad47fa2258ed --- /dev/null +++ b/PBE_Strings_Track/phone-4.sl @@ -0,0 +1,32 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "(" ")" "-" "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "938-242-504") "938.242.504")) +(constraint (= (f "308-916-545") "308.916.545")) +(constraint (= (f "623-599-749") "623.599.749")) +(constraint (= (f "981-424-843") "981.424.843")) +(constraint (= (f "118-980-214") "118.980.214")) +(constraint (= (f "244-655-094") "244.655.094")) + +(check-synth) diff --git a/PBE_Strings_Track/phone-4_short.sl b/PBE_Strings_Track/phone-4_short.sl new file mode 100644 index 0000000000000000000000000000000000000000..76b7563dfc4ac810ab94827a13da02961bda3b9d --- /dev/null +++ b/PBE_Strings_Track/phone-4_short.sl @@ -0,0 +1,30 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "(" ")" "-" "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "938-242-504") "938.242.504")) +(constraint (= (f "308-916-545") "308.916.545")) +(constraint (= (f "623-599-749") "623.599.749")) +(constraint (= (f "981-424-843") "981.424.843")) +(constraint (= (f "118-980-214") "118.980.214")) +(constraint (= (f "244-655-094") "244.655.094")) + +(check-synth) diff --git a/PBE_Strings_Track/phone-5-long-repeat.sl b/PBE_Strings_Track/phone-5-long-repeat.sl new file mode 100644 index 0000000000000000000000000000000000000000..6af133081b5532f40eef5692f612c10b23616d28 --- /dev/null +++ b/PBE_Strings_Track/phone-5-long-repeat.sl @@ -0,0 +1,426 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "+" "-" "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "+106 769-858-438") "106")) +(constraint (= (f "+106 769-858-438") "106")) +(constraint (= (f "+106 769-858-438") "106")) +(constraint (= (f "+83 973-757-831") "83")) +(constraint (= (f "+83 973-757-831") "83")) +(constraint (= (f "+83 973-757-831") "83")) +(constraint (= (f "+62 647-787-775") "62")) +(constraint (= (f "+62 647-787-775") "62")) +(constraint (= (f "+62 647-787-775") "62")) +(constraint (= (f "+172 027-507-632") "172")) +(constraint (= (f "+172 027-507-632") "172")) +(constraint (= (f "+172 027-507-632") "172")) +(constraint (= (f "+72 001-050-856") "72")) +(constraint (= (f "+72 001-050-856") "72")) +(constraint (= (f "+72 001-050-856") "72")) +(constraint (= (f "+95 310-537-401") "95")) +(constraint (= (f "+95 310-537-401") "95")) +(constraint (= (f "+95 310-537-401") "95")) +(constraint (= (f "+6 775-969-238") "6")) +(constraint (= (f "+6 775-969-238") "6")) +(constraint (= (f "+6 775-969-238") "6")) +(constraint (= (f "+174 594-539-946") "174")) +(constraint (= (f "+174 594-539-946") "174")) +(constraint (= (f "+174 594-539-946") "174")) +(constraint (= (f "+155 927-275-860") "155")) +(constraint (= (f "+155 927-275-860") "155")) +(constraint (= (f "+155 927-275-860") "155")) +(constraint (= (f "+167 405-461-331") "167")) +(constraint (= (f "+167 405-461-331") "167")) +(constraint (= (f "+167 405-461-331") "167")) +(constraint (= (f "+10 538-347-401") "10")) +(constraint (= (f "+10 538-347-401") "10")) +(constraint (= (f "+10 538-347-401") "10")) +(constraint (= (f "+60 971-986-103") "60")) +(constraint (= (f "+60 971-986-103") "60")) +(constraint (= (f "+60 971-986-103") "60")) +(constraint (= (f "+13 258-276-941") "13")) +(constraint (= (f "+13 258-276-941") "13")) +(constraint (= (f "+13 258-276-941") "13")) +(constraint (= (f "+2 604-746-137") "2")) +(constraint (= (f "+2 604-746-137") "2")) +(constraint (= (f "+2 604-746-137") "2")) +(constraint (= (f "+25 998-898-180") "25")) +(constraint (= (f "+25 998-898-180") "25")) +(constraint (= (f "+25 998-898-180") "25")) +(constraint (= (f "+151 862-946-541") "151")) +(constraint (= (f "+151 862-946-541") "151")) +(constraint (= (f "+151 862-946-541") "151")) +(constraint (= (f "+118 165-041-038") "118")) +(constraint (= (f "+118 165-041-038") "118")) +(constraint (= (f "+118 165-041-038") "118")) +(constraint (= (f "+144 170-592-272") "144")) +(constraint (= (f "+144 170-592-272") "144")) +(constraint (= (f "+144 170-592-272") "144")) +(constraint (= (f "+94 462-008-482") "94")) +(constraint (= (f "+94 462-008-482") "94")) +(constraint (= (f "+94 462-008-482") "94")) +(constraint (= (f "+82 685-122-086") "82")) +(constraint (= (f "+82 685-122-086") "82")) +(constraint (= (f "+82 685-122-086") "82")) +(constraint (= (f "+82 675-366-472") "82")) +(constraint (= (f "+82 675-366-472") "82")) +(constraint (= (f "+82 675-366-472") "82")) +(constraint (= (f "+80 066-433-096") "80")) +(constraint (= (f "+80 066-433-096") "80")) +(constraint (= (f "+80 066-433-096") "80")) +(constraint (= (f "+163 039-436-166") "163")) +(constraint (= (f "+163 039-436-166") "163")) +(constraint (= (f "+163 039-436-166") "163")) +(constraint (= (f "+138 808-083-074") "138")) +(constraint (= (f "+138 808-083-074") "138")) +(constraint (= (f "+138 808-083-074") "138")) +(constraint (= (f "+42 643-245-738") "42")) +(constraint (= (f "+42 643-245-738") "42")) +(constraint (= (f "+42 643-245-738") "42")) +(constraint (= (f "+169 822-542-726") "169")) +(constraint (= (f "+169 822-542-726") "169")) +(constraint (= (f "+169 822-542-726") "169")) +(constraint (= (f "+176 767-782-369") "176")) +(constraint (= (f "+176 767-782-369") "176")) +(constraint (= (f "+176 767-782-369") "176")) +(constraint (= (f "+47 414-369-343") "47")) +(constraint (= (f "+47 414-369-343") "47")) +(constraint (= (f "+47 414-369-343") "47")) +(constraint (= (f "+138 885-618-512") "138")) +(constraint (= (f "+138 885-618-512") "138")) +(constraint (= (f "+138 885-618-512") "138")) +(constraint (= (f "+104 158-671-355") "104")) +(constraint (= (f "+104 158-671-355") "104")) +(constraint (= (f "+104 158-671-355") "104")) +(constraint (= (f "+188 280-087-526") "188")) +(constraint (= (f "+188 280-087-526") "188")) +(constraint (= (f "+188 280-087-526") "188")) +(constraint (= (f "+50 268-571-336") "50")) +(constraint (= (f "+50 268-571-336") "50")) +(constraint (= (f "+50 268-571-336") "50")) +(constraint (= (f "+183 225-960-024") "183")) +(constraint (= (f "+183 225-960-024") "183")) +(constraint (= (f "+183 225-960-024") "183")) +(constraint (= (f "+58 191-982-491") "58")) +(constraint (= (f "+58 191-982-491") "58")) +(constraint (= (f "+58 191-982-491") "58")) +(constraint (= (f "+9 507-092-535") "9")) +(constraint (= (f "+9 507-092-535") "9")) +(constraint (= (f "+9 507-092-535") "9")) +(constraint (= (f "+64 061-601-398") "64")) +(constraint (= (f "+64 061-601-398") "64")) +(constraint (= (f "+64 061-601-398") "64")) +(constraint (= (f "+189 831-591-877") "189")) +(constraint (= (f "+189 831-591-877") "189")) +(constraint (= (f "+189 831-591-877") "189")) +(constraint (= (f "+129 425-765-844") "129")) +(constraint (= (f "+129 425-765-844") "129")) +(constraint (= (f "+129 425-765-844") "129")) +(constraint (= (f "+94 856-734-046") "94")) +(constraint (= (f "+94 856-734-046") "94")) +(constraint (= (f "+94 856-734-046") "94")) +(constraint (= (f "+35 082-845-261") "35")) +(constraint (= (f "+35 082-845-261") "35")) +(constraint (= (f "+35 082-845-261") "35")) +(constraint (= (f "+185 394-622-272") "185")) +(constraint (= (f "+185 394-622-272") "185")) +(constraint (= (f "+185 394-622-272") "185")) +(constraint (= (f "+163 905-707-740") "163")) +(constraint (= (f "+163 905-707-740") "163")) +(constraint (= (f "+163 905-707-740") "163")) +(constraint (= (f "+23 448-213-807") "23")) +(constraint (= (f "+23 448-213-807") "23")) +(constraint (= (f "+23 448-213-807") "23")) +(constraint (= (f "+42 634-077-089") "42")) +(constraint (= (f "+42 634-077-089") "42")) +(constraint (= (f "+42 634-077-089") "42")) +(constraint (= (f "+18 051-287-382") "18")) +(constraint (= (f "+18 051-287-382") "18")) +(constraint (= (f "+18 051-287-382") "18")) +(constraint (= (f "+29 773-545-520") "29")) +(constraint (= (f "+29 773-545-520") "29")) +(constraint (= (f "+29 773-545-520") "29")) +(constraint (= (f "+43 249-097-743") "43")) +(constraint (= (f "+43 249-097-743") "43")) +(constraint (= (f "+43 249-097-743") "43")) +(constraint (= (f "+158 674-736-891") "158")) +(constraint (= (f "+158 674-736-891") "158")) +(constraint (= (f "+158 674-736-891") "158")) +(constraint (= (f "+45 124-771-454") "45")) +(constraint (= (f "+45 124-771-454") "45")) +(constraint (= (f "+45 124-771-454") "45")) +(constraint (= (f "+180 029-457-654") "180")) +(constraint (= (f "+180 029-457-654") "180")) +(constraint (= (f "+180 029-457-654") "180")) +(constraint (= (f "+75 227-250-652") "75")) +(constraint (= (f "+75 227-250-652") "75")) +(constraint (= (f "+75 227-250-652") "75")) +(constraint (= (f "+5 528-317-854") "5")) +(constraint (= (f "+5 528-317-854") "5")) +(constraint (= (f "+5 528-317-854") "5")) +(constraint (= (f "+81 849-629-290") "81")) +(constraint (= (f "+81 849-629-290") "81")) +(constraint (= (f "+81 849-629-290") "81")) +(constraint (= (f "+46 005-119-176") "46")) +(constraint (= (f "+46 005-119-176") "46")) +(constraint (= (f "+46 005-119-176") "46")) +(constraint (= (f "+108 150-380-705") "108")) +(constraint (= (f "+108 150-380-705") "108")) +(constraint (= (f "+108 150-380-705") "108")) +(constraint (= (f "+40 122-224-247") "40")) +(constraint (= (f "+40 122-224-247") "40")) +(constraint (= (f "+40 122-224-247") "40")) +(constraint (= (f "+68 890-680-027") "68")) +(constraint (= (f "+68 890-680-027") "68")) +(constraint (= (f "+68 890-680-027") "68")) +(constraint (= (f "+169 060-204-504") "169")) +(constraint (= (f "+169 060-204-504") "169")) +(constraint (= (f "+169 060-204-504") "169")) +(constraint (= (f "+95 620-820-945") "95")) +(constraint (= (f "+95 620-820-945") "95")) +(constraint (= (f "+95 620-820-945") "95")) +(constraint (= (f "+43 592-938-846") "43")) +(constraint (= (f "+43 592-938-846") "43")) +(constraint (= (f "+43 592-938-846") "43")) +(constraint (= (f "+7 023-296-647") "7")) +(constraint (= (f "+7 023-296-647") "7")) +(constraint (= (f "+7 023-296-647") "7")) +(constraint (= (f "+20 541-401-396") "20")) +(constraint (= (f "+20 541-401-396") "20")) +(constraint (= (f "+20 541-401-396") "20")) +(constraint (= (f "+64 751-365-934") "64")) +(constraint (= (f "+64 751-365-934") "64")) +(constraint (= (f "+64 751-365-934") "64")) +(constraint (= (f "+163 546-119-476") "163")) +(constraint (= (f "+163 546-119-476") "163")) +(constraint (= (f "+163 546-119-476") "163")) +(constraint (= (f "+198 557-666-779") "198")) +(constraint (= (f "+198 557-666-779") "198")) +(constraint (= (f "+198 557-666-779") "198")) +(constraint (= (f "+14 673-759-017") "14")) +(constraint (= (f "+14 673-759-017") "14")) +(constraint (= (f "+14 673-759-017") "14")) +(constraint (= (f "+161 086-020-168") "161")) +(constraint (= (f "+161 086-020-168") "161")) +(constraint (= (f "+161 086-020-168") "161")) +(constraint (= (f "+65 970-575-488") "65")) +(constraint (= (f "+65 970-575-488") "65")) +(constraint (= (f "+65 970-575-488") "65")) +(constraint (= (f "+2 455-126-377") "2")) +(constraint (= (f "+2 455-126-377") "2")) +(constraint (= (f "+2 455-126-377") "2")) +(constraint (= (f "+196 728-585-376") "196")) +(constraint (= (f "+196 728-585-376") "196")) +(constraint (= (f "+196 728-585-376") "196")) +(constraint (= (f "+33 117-430-125") "33")) +(constraint (= (f "+33 117-430-125") "33")) +(constraint (= (f "+33 117-430-125") "33")) +(constraint (= (f "+195 488-831-768") "195")) +(constraint (= (f "+195 488-831-768") "195")) +(constraint (= (f "+195 488-831-768") "195")) +(constraint (= (f "+86 468-718-108") "86")) +(constraint (= (f "+86 468-718-108") "86")) +(constraint (= (f "+86 468-718-108") "86")) +(constraint (= (f "+194 278-716-950") "194")) +(constraint (= (f "+194 278-716-950") "194")) +(constraint (= (f "+194 278-716-950") "194")) +(constraint (= (f "+43 730-685-847") "43")) +(constraint (= (f "+43 730-685-847") "43")) +(constraint (= (f "+43 730-685-847") "43")) +(constraint (= (f "+140 794-289-551") "140")) +(constraint (= (f "+140 794-289-551") "140")) +(constraint (= (f "+140 794-289-551") "140")) +(constraint (= (f "+21 679-740-834") "21")) +(constraint (= (f "+21 679-740-834") "21")) +(constraint (= (f "+21 679-740-834") "21")) +(constraint (= (f "+98 717-997-323") "98")) +(constraint (= (f "+98 717-997-323") "98")) +(constraint (= (f "+98 717-997-323") "98")) +(constraint (= (f "+47 401-100-231") "47")) +(constraint (= (f "+47 401-100-231") "47")) +(constraint (= (f "+47 401-100-231") "47")) +(constraint (= (f "+143 726-462-368") "143")) +(constraint (= (f "+143 726-462-368") "143")) +(constraint (= (f "+143 726-462-368") "143")) +(constraint (= (f "+147 864-005-968") "147")) +(constraint (= (f "+147 864-005-968") "147")) +(constraint (= (f "+147 864-005-968") "147")) +(constraint (= (f "+130 590-757-665") "130")) +(constraint (= (f "+130 590-757-665") "130")) +(constraint (= (f "+130 590-757-665") "130")) +(constraint (= (f "+197 700-858-976") "197")) +(constraint (= (f "+197 700-858-976") "197")) +(constraint (= (f "+197 700-858-976") "197")) +(constraint (= (f "+158 344-541-946") "158")) +(constraint (= (f "+158 344-541-946") "158")) +(constraint (= (f "+158 344-541-946") "158")) +(constraint (= (f "+56 242-901-234") "56")) +(constraint (= (f "+56 242-901-234") "56")) +(constraint (= (f "+56 242-901-234") "56")) +(constraint (= (f "+132 313-075-754") "132")) +(constraint (= (f "+132 313-075-754") "132")) +(constraint (= (f "+132 313-075-754") "132")) +(constraint (= (f "+130 517-953-149") "130")) +(constraint (= (f "+130 517-953-149") "130")) +(constraint (= (f "+130 517-953-149") "130")) +(constraint (= (f "+158 684-878-743") "158")) +(constraint (= (f "+158 684-878-743") "158")) +(constraint (= (f "+158 684-878-743") "158")) +(constraint (= (f "+52 836-582-035") "52")) +(constraint (= (f "+52 836-582-035") "52")) +(constraint (= (f "+52 836-582-035") "52")) +(constraint (= (f "+138 117-484-671") "138")) +(constraint (= (f "+138 117-484-671") "138")) +(constraint (= (f "+138 117-484-671") "138")) +(constraint (= (f "+50 012-148-873") "50")) +(constraint (= (f "+50 012-148-873") "50")) +(constraint (= (f "+50 012-148-873") "50")) +(constraint (= (f "+105 048-919-483") "105")) +(constraint (= (f "+105 048-919-483") "105")) +(constraint (= (f "+105 048-919-483") "105")) +(constraint (= (f "+18 209-851-997") "18")) +(constraint (= (f "+18 209-851-997") "18")) +(constraint (= (f "+18 209-851-997") "18")) +(constraint (= (f "+176 938-056-084") "176")) +(constraint (= (f "+176 938-056-084") "176")) +(constraint (= (f "+176 938-056-084") "176")) +(constraint (= (f "+141 018-132-973") "141")) +(constraint (= (f "+141 018-132-973") "141")) +(constraint (= (f "+141 018-132-973") "141")) +(constraint (= (f "+199 936-162-415") "199")) +(constraint (= (f "+199 936-162-415") "199")) +(constraint (= (f "+199 936-162-415") "199")) +(constraint (= (f "+33 547-051-264") "33")) +(constraint (= (f "+33 547-051-264") "33")) +(constraint (= (f "+33 547-051-264") "33")) +(constraint (= (f "+161 233-981-513") "161")) +(constraint (= (f "+161 233-981-513") "161")) +(constraint (= (f "+161 233-981-513") "161")) +(constraint (= (f "+115 101-728-328") "115")) +(constraint (= (f "+115 101-728-328") "115")) +(constraint (= (f "+115 101-728-328") "115")) +(constraint (= (f "+45 095-746-635") "45")) +(constraint (= (f "+45 095-746-635") "45")) +(constraint (= (f "+45 095-746-635") "45")) +(constraint (= (f "+106 769-858-438") "106")) +(constraint (= (f "+83 973-757-831") "83")) +(constraint (= (f "+62 647-787-775") "62")) +(constraint (= (f "+172 027-507-632") "172")) +(constraint (= (f "+72 001-050-856") "72")) +(constraint (= (f "+95 310-537-401") "95")) +(constraint (= (f "+6 775-969-238") "6")) +(constraint (= (f "+174 594-539-946") "174")) +(constraint (= (f "+155 927-275-860") "155")) +(constraint (= (f "+167 405-461-331") "167")) +(constraint (= (f "+10 538-347-401") "10")) +(constraint (= (f "+60 971-986-103") "60")) +(constraint (= (f "+13 258-276-941") "13")) +(constraint (= (f "+2 604-746-137") "2")) +(constraint (= (f "+25 998-898-180") "25")) +(constraint (= (f "+151 862-946-541") "151")) +(constraint (= (f "+118 165-041-038") "118")) +(constraint (= (f "+144 170-592-272") "144")) +(constraint (= (f "+94 462-008-482") "94")) +(constraint (= (f "+82 685-122-086") "82")) +(constraint (= (f "+82 675-366-472") "82")) +(constraint (= (f "+80 066-433-096") "80")) +(constraint (= (f "+163 039-436-166") "163")) +(constraint (= (f "+138 808-083-074") "138")) +(constraint (= (f "+42 643-245-738") "42")) +(constraint (= (f "+169 822-542-726") "169")) +(constraint (= (f "+176 767-782-369") "176")) +(constraint (= (f "+47 414-369-343") "47")) +(constraint (= (f "+138 885-618-512") "138")) +(constraint (= (f "+104 158-671-355") "104")) +(constraint (= (f "+188 280-087-526") "188")) +(constraint (= (f "+50 268-571-336") "50")) +(constraint (= (f "+183 225-960-024") "183")) +(constraint (= (f "+58 191-982-491") "58")) +(constraint (= (f "+9 507-092-535") "9")) +(constraint (= (f "+64 061-601-398") "64")) +(constraint (= (f "+189 831-591-877") "189")) +(constraint (= (f "+129 425-765-844") "129")) +(constraint (= (f "+94 856-734-046") "94")) +(constraint (= (f "+35 082-845-261") "35")) +(constraint (= (f "+185 394-622-272") "185")) +(constraint (= (f "+163 905-707-740") "163")) +(constraint (= (f "+23 448-213-807") "23")) +(constraint (= (f "+42 634-077-089") "42")) +(constraint (= (f "+18 051-287-382") "18")) +(constraint (= (f "+29 773-545-520") "29")) +(constraint (= (f "+43 249-097-743") "43")) +(constraint (= (f "+158 674-736-891") "158")) +(constraint (= (f "+45 124-771-454") "45")) +(constraint (= (f "+180 029-457-654") "180")) +(constraint (= (f "+75 227-250-652") "75")) +(constraint (= (f "+5 528-317-854") "5")) +(constraint (= (f "+81 849-629-290") "81")) +(constraint (= (f "+46 005-119-176") "46")) +(constraint (= (f "+108 150-380-705") "108")) +(constraint (= (f "+40 122-224-247") "40")) +(constraint (= (f "+68 890-680-027") "68")) +(constraint (= (f "+169 060-204-504") "169")) +(constraint (= (f "+95 620-820-945") "95")) +(constraint (= (f "+43 592-938-846") "43")) +(constraint (= (f "+7 023-296-647") "7")) +(constraint (= (f "+20 541-401-396") "20")) +(constraint (= (f "+64 751-365-934") "64")) +(constraint (= (f "+163 546-119-476") "163")) +(constraint (= (f "+198 557-666-779") "198")) +(constraint (= (f "+14 673-759-017") "14")) +(constraint (= (f "+161 086-020-168") "161")) +(constraint (= (f "+65 970-575-488") "65")) +(constraint (= (f "+2 455-126-377") "2")) +(constraint (= (f "+196 728-585-376") "196")) +(constraint (= (f "+33 117-430-125") "33")) +(constraint (= (f "+195 488-831-768") "195")) +(constraint (= (f "+86 468-718-108") "86")) +(constraint (= (f "+194 278-716-950") "194")) +(constraint (= (f "+43 730-685-847") "43")) +(constraint (= (f "+140 794-289-551") "140")) +(constraint (= (f "+21 679-740-834") "21")) +(constraint (= (f "+98 717-997-323") "98")) +(constraint (= (f "+47 401-100-231") "47")) +(constraint (= (f "+143 726-462-368") "143")) +(constraint (= (f "+147 864-005-968") "147")) +(constraint (= (f "+130 590-757-665") "130")) +(constraint (= (f "+197 700-858-976") "197")) +(constraint (= (f "+158 344-541-946") "158")) +(constraint (= (f "+56 242-901-234") "56")) +(constraint (= (f "+132 313-075-754") "132")) +(constraint (= (f "+130 517-953-149") "130")) +(constraint (= (f "+158 684-878-743") "158")) +(constraint (= (f "+52 836-582-035") "52")) +(constraint (= (f "+138 117-484-671") "138")) +(constraint (= (f "+50 012-148-873") "50")) +(constraint (= (f "+105 048-919-483") "105")) +(constraint (= (f "+18 209-851-997") "18")) +(constraint (= (f "+176 938-056-084") "176")) +(constraint (= (f "+141 018-132-973") "141")) +(constraint (= (f "+199 936-162-415") "199")) +(constraint (= (f "+33 547-051-264") "33")) +(constraint (= (f "+161 233-981-513") "161")) +(constraint (= (f "+115 101-728-328") "115")) +(constraint (= (f "+45 095-746-635") "45")) + +(check-synth) diff --git a/PBE_Strings_Track/phone-5-long.sl b/PBE_Strings_Track/phone-5-long.sl new file mode 100644 index 0000000000000000000000000000000000000000..35e25256f16fb47828a383c7cb0d89b6a6457f39 --- /dev/null +++ b/PBE_Strings_Track/phone-5-long.sl @@ -0,0 +1,126 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "+" "-" "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "+106 769-858-438") "106")) +(constraint (= (f "+83 973-757-831") "83")) +(constraint (= (f "+62 647-787-775") "62")) +(constraint (= (f "+172 027-507-632") "172")) +(constraint (= (f "+72 001-050-856") "72")) +(constraint (= (f "+95 310-537-401") "95")) +(constraint (= (f "+6 775-969-238") "6")) +(constraint (= (f "+174 594-539-946") "174")) +(constraint (= (f "+155 927-275-860") "155")) +(constraint (= (f "+167 405-461-331") "167")) +(constraint (= (f "+10 538-347-401") "10")) +(constraint (= (f "+60 971-986-103") "60")) +(constraint (= (f "+13 258-276-941") "13")) +(constraint (= (f "+2 604-746-137") "2")) +(constraint (= (f "+25 998-898-180") "25")) +(constraint (= (f "+151 862-946-541") "151")) +(constraint (= (f "+118 165-041-038") "118")) +(constraint (= (f "+144 170-592-272") "144")) +(constraint (= (f "+94 462-008-482") "94")) +(constraint (= (f "+82 685-122-086") "82")) +(constraint (= (f "+82 675-366-472") "82")) +(constraint (= (f "+80 066-433-096") "80")) +(constraint (= (f "+163 039-436-166") "163")) +(constraint (= (f "+138 808-083-074") "138")) +(constraint (= (f "+42 643-245-738") "42")) +(constraint (= (f "+169 822-542-726") "169")) +(constraint (= (f "+176 767-782-369") "176")) +(constraint (= (f "+47 414-369-343") "47")) +(constraint (= (f "+138 885-618-512") "138")) +(constraint (= (f "+104 158-671-355") "104")) +(constraint (= (f "+188 280-087-526") "188")) +(constraint (= (f "+50 268-571-336") "50")) +(constraint (= (f "+183 225-960-024") "183")) +(constraint (= (f "+58 191-982-491") "58")) +(constraint (= (f "+9 507-092-535") "9")) +(constraint (= (f "+64 061-601-398") "64")) +(constraint (= (f "+189 831-591-877") "189")) +(constraint (= (f "+129 425-765-844") "129")) +(constraint (= (f "+94 856-734-046") "94")) +(constraint (= (f "+35 082-845-261") "35")) +(constraint (= (f "+185 394-622-272") "185")) +(constraint (= (f "+163 905-707-740") "163")) +(constraint (= (f "+23 448-213-807") "23")) +(constraint (= (f "+42 634-077-089") "42")) +(constraint (= (f "+18 051-287-382") "18")) +(constraint (= (f "+29 773-545-520") "29")) +(constraint (= (f "+43 249-097-743") "43")) +(constraint (= (f "+158 674-736-891") "158")) +(constraint (= (f "+45 124-771-454") "45")) +(constraint (= (f "+180 029-457-654") "180")) +(constraint (= (f "+75 227-250-652") "75")) +(constraint (= (f "+5 528-317-854") "5")) +(constraint (= (f "+81 849-629-290") "81")) +(constraint (= (f "+46 005-119-176") "46")) +(constraint (= (f "+108 150-380-705") "108")) +(constraint (= (f "+40 122-224-247") "40")) +(constraint (= (f "+68 890-680-027") "68")) +(constraint (= (f "+169 060-204-504") "169")) +(constraint (= (f "+95 620-820-945") "95")) +(constraint (= (f "+43 592-938-846") "43")) +(constraint (= (f "+7 023-296-647") "7")) +(constraint (= (f "+20 541-401-396") "20")) +(constraint (= (f "+64 751-365-934") "64")) +(constraint (= (f "+163 546-119-476") "163")) +(constraint (= (f "+198 557-666-779") "198")) +(constraint (= (f "+14 673-759-017") "14")) +(constraint (= (f "+161 086-020-168") "161")) +(constraint (= (f "+65 970-575-488") "65")) +(constraint (= (f "+2 455-126-377") "2")) +(constraint (= (f "+196 728-585-376") "196")) +(constraint (= (f "+33 117-430-125") "33")) +(constraint (= (f "+195 488-831-768") "195")) +(constraint (= (f "+86 468-718-108") "86")) +(constraint (= (f "+194 278-716-950") "194")) +(constraint (= (f "+43 730-685-847") "43")) +(constraint (= (f "+140 794-289-551") "140")) +(constraint (= (f "+21 679-740-834") "21")) +(constraint (= (f "+98 717-997-323") "98")) +(constraint (= (f "+47 401-100-231") "47")) +(constraint (= (f "+143 726-462-368") "143")) +(constraint (= (f "+147 864-005-968") "147")) +(constraint (= (f "+130 590-757-665") "130")) +(constraint (= (f "+197 700-858-976") "197")) +(constraint (= (f "+158 344-541-946") "158")) +(constraint (= (f "+56 242-901-234") "56")) +(constraint (= (f "+132 313-075-754") "132")) +(constraint (= (f "+130 517-953-149") "130")) +(constraint (= (f "+158 684-878-743") "158")) +(constraint (= (f "+52 836-582-035") "52")) +(constraint (= (f "+138 117-484-671") "138")) +(constraint (= (f "+50 012-148-873") "50")) +(constraint (= (f "+105 048-919-483") "105")) +(constraint (= (f "+18 209-851-997") "18")) +(constraint (= (f "+176 938-056-084") "176")) +(constraint (= (f "+141 018-132-973") "141")) +(constraint (= (f "+199 936-162-415") "199")) +(constraint (= (f "+33 547-051-264") "33")) +(constraint (= (f "+161 233-981-513") "161")) +(constraint (= (f "+115 101-728-328") "115")) +(constraint (= (f "+45 095-746-635") "45")) + +(check-synth) diff --git a/PBE_Strings_Track/phone-5.sl b/PBE_Strings_Track/phone-5.sl new file mode 100644 index 0000000000000000000000000000000000000000..165ece7d6776ca7989ce641f40b6b4627f4f63d1 --- /dev/null +++ b/PBE_Strings_Track/phone-5.sl @@ -0,0 +1,33 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "+" "-" "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "+106 769-858-438") "106")) +(constraint (= (f "+83 973-757-831") "83")) +(constraint (= (f "+62 647-787-775") "62")) +(constraint (= (f "+172 027-507-632") "172")) +(constraint (= (f "+72 001-050-856") "72")) +(constraint (= (f "+95 310-537-401") "95")) +(constraint (= (f "+6 775-969-238") "6")) + +(check-synth) diff --git a/PBE_Strings_Track/phone-5_short.sl b/PBE_Strings_Track/phone-5_short.sl new file mode 100644 index 0000000000000000000000000000000000000000..6a45e11ef4ec6bb113ce67e23f4331591fa90cf2 --- /dev/null +++ b/PBE_Strings_Track/phone-5_short.sl @@ -0,0 +1,30 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "+" "-" "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "+106 769-858-438") "106")) +(constraint (= (f "+83 973-757-831") "83")) +(constraint (= (f "+62 647-787-775") "62")) +(constraint (= (f "+172 027-507-632") "172")) +(constraint (= (f "+72 001-050-856") "72")) +(constraint (= (f "+95 310-537-401") "95")) +(constraint (= (f "+6 775-969-238") "6")) + +(check-synth) diff --git a/PBE_Strings_Track/phone-6-long-repeat.sl b/PBE_Strings_Track/phone-6-long-repeat.sl new file mode 100644 index 0000000000000000000000000000000000000000..03a77f044cd954bc264ede2c829d200edfde0866 --- /dev/null +++ b/PBE_Strings_Track/phone-6-long-repeat.sl @@ -0,0 +1,426 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "+" "-" "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "+106 769-858-438") "769")) +(constraint (= (f "+106 769-858-438") "769")) +(constraint (= (f "+106 769-858-438") "769")) +(constraint (= (f "+83 973-757-831") "973")) +(constraint (= (f "+83 973-757-831") "973")) +(constraint (= (f "+83 973-757-831") "973")) +(constraint (= (f "+62 647-787-775") "647")) +(constraint (= (f "+62 647-787-775") "647")) +(constraint (= (f "+62 647-787-775") "647")) +(constraint (= (f "+172 027-507-632") "027")) +(constraint (= (f "+172 027-507-632") "027")) +(constraint (= (f "+172 027-507-632") "027")) +(constraint (= (f "+72 001-050-856") "001")) +(constraint (= (f "+72 001-050-856") "001")) +(constraint (= (f "+72 001-050-856") "001")) +(constraint (= (f "+95 310-537-401") "310")) +(constraint (= (f "+95 310-537-401") "310")) +(constraint (= (f "+95 310-537-401") "310")) +(constraint (= (f "+6 775-969-238") "775")) +(constraint (= (f "+6 775-969-238") "775")) +(constraint (= (f "+6 775-969-238") "775")) +(constraint (= (f "+174 594-539-946") "594")) +(constraint (= (f "+174 594-539-946") "594")) +(constraint (= (f "+174 594-539-946") "594")) +(constraint (= (f "+155 927-275-860") "927")) +(constraint (= (f "+155 927-275-860") "927")) +(constraint (= (f "+155 927-275-860") "927")) +(constraint (= (f "+167 405-461-331") "405")) +(constraint (= (f "+167 405-461-331") "405")) +(constraint (= (f "+167 405-461-331") "405")) +(constraint (= (f "+10 538-347-401") "538")) +(constraint (= (f "+10 538-347-401") "538")) +(constraint (= (f "+10 538-347-401") "538")) +(constraint (= (f "+60 971-986-103") "971")) +(constraint (= (f "+60 971-986-103") "971")) +(constraint (= (f "+60 971-986-103") "971")) +(constraint (= (f "+13 258-276-941") "258")) +(constraint (= (f "+13 258-276-941") "258")) +(constraint (= (f "+13 258-276-941") "258")) +(constraint (= (f "+2 604-746-137") "604")) +(constraint (= (f "+2 604-746-137") "604")) +(constraint (= (f "+2 604-746-137") "604")) +(constraint (= (f "+25 998-898-180") "998")) +(constraint (= (f "+25 998-898-180") "998")) +(constraint (= (f "+25 998-898-180") "998")) +(constraint (= (f "+151 862-946-541") "862")) +(constraint (= (f "+151 862-946-541") "862")) +(constraint (= (f "+151 862-946-541") "862")) +(constraint (= (f "+118 165-041-038") "165")) +(constraint (= (f "+118 165-041-038") "165")) +(constraint (= (f "+118 165-041-038") "165")) +(constraint (= (f "+144 170-592-272") "170")) +(constraint (= (f "+144 170-592-272") "170")) +(constraint (= (f "+144 170-592-272") "170")) +(constraint (= (f "+94 462-008-482") "462")) +(constraint (= (f "+94 462-008-482") "462")) +(constraint (= (f "+94 462-008-482") "462")) +(constraint (= (f "+82 685-122-086") "685")) +(constraint (= (f "+82 685-122-086") "685")) +(constraint (= (f "+82 685-122-086") "685")) +(constraint (= (f "+82 675-366-472") "675")) +(constraint (= (f "+82 675-366-472") "675")) +(constraint (= (f "+82 675-366-472") "675")) +(constraint (= (f "+80 066-433-096") "066")) +(constraint (= (f "+80 066-433-096") "066")) +(constraint (= (f "+80 066-433-096") "066")) +(constraint (= (f "+163 039-436-166") "039")) +(constraint (= (f "+163 039-436-166") "039")) +(constraint (= (f "+163 039-436-166") "039")) +(constraint (= (f "+138 808-083-074") "808")) +(constraint (= (f "+138 808-083-074") "808")) +(constraint (= (f "+138 808-083-074") "808")) +(constraint (= (f "+42 643-245-738") "643")) +(constraint (= (f "+42 643-245-738") "643")) +(constraint (= (f "+42 643-245-738") "643")) +(constraint (= (f "+169 822-542-726") "822")) +(constraint (= (f "+169 822-542-726") "822")) +(constraint (= (f "+169 822-542-726") "822")) +(constraint (= (f "+176 767-782-369") "767")) +(constraint (= (f "+176 767-782-369") "767")) +(constraint (= (f "+176 767-782-369") "767")) +(constraint (= (f "+47 414-369-343") "414")) +(constraint (= (f "+47 414-369-343") "414")) +(constraint (= (f "+47 414-369-343") "414")) +(constraint (= (f "+138 885-618-512") "885")) +(constraint (= (f "+138 885-618-512") "885")) +(constraint (= (f "+138 885-618-512") "885")) +(constraint (= (f "+104 158-671-355") "158")) +(constraint (= (f "+104 158-671-355") "158")) +(constraint (= (f "+104 158-671-355") "158")) +(constraint (= (f "+188 280-087-526") "280")) +(constraint (= (f "+188 280-087-526") "280")) +(constraint (= (f "+188 280-087-526") "280")) +(constraint (= (f "+50 268-571-336") "268")) +(constraint (= (f "+50 268-571-336") "268")) +(constraint (= (f "+50 268-571-336") "268")) +(constraint (= (f "+183 225-960-024") "225")) +(constraint (= (f "+183 225-960-024") "225")) +(constraint (= (f "+183 225-960-024") "225")) +(constraint (= (f "+58 191-982-491") "191")) +(constraint (= (f "+58 191-982-491") "191")) +(constraint (= (f "+58 191-982-491") "191")) +(constraint (= (f "+9 507-092-535") "507")) +(constraint (= (f "+9 507-092-535") "507")) +(constraint (= (f "+9 507-092-535") "507")) +(constraint (= (f "+64 061-601-398") "061")) +(constraint (= (f "+64 061-601-398") "061")) +(constraint (= (f "+64 061-601-398") "061")) +(constraint (= (f "+189 831-591-877") "831")) +(constraint (= (f "+189 831-591-877") "831")) +(constraint (= (f "+189 831-591-877") "831")) +(constraint (= (f "+129 425-765-844") "425")) +(constraint (= (f "+129 425-765-844") "425")) +(constraint (= (f "+129 425-765-844") "425")) +(constraint (= (f "+94 856-734-046") "856")) +(constraint (= (f "+94 856-734-046") "856")) +(constraint (= (f "+94 856-734-046") "856")) +(constraint (= (f "+35 082-845-261") "082")) +(constraint (= (f "+35 082-845-261") "082")) +(constraint (= (f "+35 082-845-261") "082")) +(constraint (= (f "+185 394-622-272") "394")) +(constraint (= (f "+185 394-622-272") "394")) +(constraint (= (f "+185 394-622-272") "394")) +(constraint (= (f "+163 905-707-740") "905")) +(constraint (= (f "+163 905-707-740") "905")) +(constraint (= (f "+163 905-707-740") "905")) +(constraint (= (f "+23 448-213-807") "448")) +(constraint (= (f "+23 448-213-807") "448")) +(constraint (= (f "+23 448-213-807") "448")) +(constraint (= (f "+42 634-077-089") "634")) +(constraint (= (f "+42 634-077-089") "634")) +(constraint (= (f "+42 634-077-089") "634")) +(constraint (= (f "+18 051-287-382") "051")) +(constraint (= (f "+18 051-287-382") "051")) +(constraint (= (f "+18 051-287-382") "051")) +(constraint (= (f "+29 773-545-520") "773")) +(constraint (= (f "+29 773-545-520") "773")) +(constraint (= (f "+29 773-545-520") "773")) +(constraint (= (f "+43 249-097-743") "249")) +(constraint (= (f "+43 249-097-743") "249")) +(constraint (= (f "+43 249-097-743") "249")) +(constraint (= (f "+158 674-736-891") "674")) +(constraint (= (f "+158 674-736-891") "674")) +(constraint (= (f "+158 674-736-891") "674")) +(constraint (= (f "+45 124-771-454") "124")) +(constraint (= (f "+45 124-771-454") "124")) +(constraint (= (f "+45 124-771-454") "124")) +(constraint (= (f "+180 029-457-654") "029")) +(constraint (= (f "+180 029-457-654") "029")) +(constraint (= (f "+180 029-457-654") "029")) +(constraint (= (f "+75 227-250-652") "227")) +(constraint (= (f "+75 227-250-652") "227")) +(constraint (= (f "+75 227-250-652") "227")) +(constraint (= (f "+5 528-317-854") "528")) +(constraint (= (f "+5 528-317-854") "528")) +(constraint (= (f "+5 528-317-854") "528")) +(constraint (= (f "+81 849-629-290") "849")) +(constraint (= (f "+81 849-629-290") "849")) +(constraint (= (f "+81 849-629-290") "849")) +(constraint (= (f "+46 005-119-176") "005")) +(constraint (= (f "+46 005-119-176") "005")) +(constraint (= (f "+46 005-119-176") "005")) +(constraint (= (f "+108 150-380-705") "150")) +(constraint (= (f "+108 150-380-705") "150")) +(constraint (= (f "+108 150-380-705") "150")) +(constraint (= (f "+40 122-224-247") "122")) +(constraint (= (f "+40 122-224-247") "122")) +(constraint (= (f "+40 122-224-247") "122")) +(constraint (= (f "+68 890-680-027") "890")) +(constraint (= (f "+68 890-680-027") "890")) +(constraint (= (f "+68 890-680-027") "890")) +(constraint (= (f "+169 060-204-504") "060")) +(constraint (= (f "+169 060-204-504") "060")) +(constraint (= (f "+169 060-204-504") "060")) +(constraint (= (f "+95 620-820-945") "620")) +(constraint (= (f "+95 620-820-945") "620")) +(constraint (= (f "+95 620-820-945") "620")) +(constraint (= (f "+43 592-938-846") "592")) +(constraint (= (f "+43 592-938-846") "592")) +(constraint (= (f "+43 592-938-846") "592")) +(constraint (= (f "+7 023-296-647") "023")) +(constraint (= (f "+7 023-296-647") "023")) +(constraint (= (f "+7 023-296-647") "023")) +(constraint (= (f "+20 541-401-396") "541")) +(constraint (= (f "+20 541-401-396") "541")) +(constraint (= (f "+20 541-401-396") "541")) +(constraint (= (f "+64 751-365-934") "751")) +(constraint (= (f "+64 751-365-934") "751")) +(constraint (= (f "+64 751-365-934") "751")) +(constraint (= (f "+163 546-119-476") "546")) +(constraint (= (f "+163 546-119-476") "546")) +(constraint (= (f "+163 546-119-476") "546")) +(constraint (= (f "+198 557-666-779") "557")) +(constraint (= (f "+198 557-666-779") "557")) +(constraint (= (f "+198 557-666-779") "557")) +(constraint (= (f "+14 673-759-017") "673")) +(constraint (= (f "+14 673-759-017") "673")) +(constraint (= (f "+14 673-759-017") "673")) +(constraint (= (f "+161 086-020-168") "086")) +(constraint (= (f "+161 086-020-168") "086")) +(constraint (= (f "+161 086-020-168") "086")) +(constraint (= (f "+65 970-575-488") "970")) +(constraint (= (f "+65 970-575-488") "970")) +(constraint (= (f "+65 970-575-488") "970")) +(constraint (= (f "+2 455-126-377") "455")) +(constraint (= (f "+2 455-126-377") "455")) +(constraint (= (f "+2 455-126-377") "455")) +(constraint (= (f "+196 728-585-376") "728")) +(constraint (= (f "+196 728-585-376") "728")) +(constraint (= (f "+196 728-585-376") "728")) +(constraint (= (f "+33 117-430-125") "117")) +(constraint (= (f "+33 117-430-125") "117")) +(constraint (= (f "+33 117-430-125") "117")) +(constraint (= (f "+195 488-831-768") "488")) +(constraint (= (f "+195 488-831-768") "488")) +(constraint (= (f "+195 488-831-768") "488")) +(constraint (= (f "+86 468-718-108") "468")) +(constraint (= (f "+86 468-718-108") "468")) +(constraint (= (f "+86 468-718-108") "468")) +(constraint (= (f "+194 278-716-950") "278")) +(constraint (= (f "+194 278-716-950") "278")) +(constraint (= (f "+194 278-716-950") "278")) +(constraint (= (f "+43 730-685-847") "730")) +(constraint (= (f "+43 730-685-847") "730")) +(constraint (= (f "+43 730-685-847") "730")) +(constraint (= (f "+140 794-289-551") "794")) +(constraint (= (f "+140 794-289-551") "794")) +(constraint (= (f "+140 794-289-551") "794")) +(constraint (= (f "+21 679-740-834") "679")) +(constraint (= (f "+21 679-740-834") "679")) +(constraint (= (f "+21 679-740-834") "679")) +(constraint (= (f "+98 717-997-323") "717")) +(constraint (= (f "+98 717-997-323") "717")) +(constraint (= (f "+98 717-997-323") "717")) +(constraint (= (f "+47 401-100-231") "401")) +(constraint (= (f "+47 401-100-231") "401")) +(constraint (= (f "+47 401-100-231") "401")) +(constraint (= (f "+143 726-462-368") "726")) +(constraint (= (f "+143 726-462-368") "726")) +(constraint (= (f "+143 726-462-368") "726")) +(constraint (= (f "+147 864-005-968") "864")) +(constraint (= (f "+147 864-005-968") "864")) +(constraint (= (f "+147 864-005-968") "864")) +(constraint (= (f "+130 590-757-665") "590")) +(constraint (= (f "+130 590-757-665") "590")) +(constraint (= (f "+130 590-757-665") "590")) +(constraint (= (f "+197 700-858-976") "700")) +(constraint (= (f "+197 700-858-976") "700")) +(constraint (= (f "+197 700-858-976") "700")) +(constraint (= (f "+158 344-541-946") "344")) +(constraint (= (f "+158 344-541-946") "344")) +(constraint (= (f "+158 344-541-946") "344")) +(constraint (= (f "+56 242-901-234") "242")) +(constraint (= (f "+56 242-901-234") "242")) +(constraint (= (f "+56 242-901-234") "242")) +(constraint (= (f "+132 313-075-754") "313")) +(constraint (= (f "+132 313-075-754") "313")) +(constraint (= (f "+132 313-075-754") "313")) +(constraint (= (f "+130 517-953-149") "517")) +(constraint (= (f "+130 517-953-149") "517")) +(constraint (= (f "+130 517-953-149") "517")) +(constraint (= (f "+158 684-878-743") "684")) +(constraint (= (f "+158 684-878-743") "684")) +(constraint (= (f "+158 684-878-743") "684")) +(constraint (= (f "+52 836-582-035") "836")) +(constraint (= (f "+52 836-582-035") "836")) +(constraint (= (f "+52 836-582-035") "836")) +(constraint (= (f "+138 117-484-671") "117")) +(constraint (= (f "+138 117-484-671") "117")) +(constraint (= (f "+138 117-484-671") "117")) +(constraint (= (f "+50 012-148-873") "012")) +(constraint (= (f "+50 012-148-873") "012")) +(constraint (= (f "+50 012-148-873") "012")) +(constraint (= (f "+105 048-919-483") "048")) +(constraint (= (f "+105 048-919-483") "048")) +(constraint (= (f "+105 048-919-483") "048")) +(constraint (= (f "+18 209-851-997") "209")) +(constraint (= (f "+18 209-851-997") "209")) +(constraint (= (f "+18 209-851-997") "209")) +(constraint (= (f "+176 938-056-084") "938")) +(constraint (= (f "+176 938-056-084") "938")) +(constraint (= (f "+176 938-056-084") "938")) +(constraint (= (f "+141 018-132-973") "018")) +(constraint (= (f "+141 018-132-973") "018")) +(constraint (= (f "+141 018-132-973") "018")) +(constraint (= (f "+199 936-162-415") "936")) +(constraint (= (f "+199 936-162-415") "936")) +(constraint (= (f "+199 936-162-415") "936")) +(constraint (= (f "+33 547-051-264") "547")) +(constraint (= (f "+33 547-051-264") "547")) +(constraint (= (f "+33 547-051-264") "547")) +(constraint (= (f "+161 233-981-513") "233")) +(constraint (= (f "+161 233-981-513") "233")) +(constraint (= (f "+161 233-981-513") "233")) +(constraint (= (f "+115 101-728-328") "101")) +(constraint (= (f "+115 101-728-328") "101")) +(constraint (= (f "+115 101-728-328") "101")) +(constraint (= (f "+45 095-746-635") "095")) +(constraint (= (f "+45 095-746-635") "095")) +(constraint (= (f "+45 095-746-635") "095")) +(constraint (= (f "+106 769-858-438") "769")) +(constraint (= (f "+83 973-757-831") "973")) +(constraint (= (f "+62 647-787-775") "647")) +(constraint (= (f "+172 027-507-632") "027")) +(constraint (= (f "+72 001-050-856") "001")) +(constraint (= (f "+95 310-537-401") "310")) +(constraint (= (f "+6 775-969-238") "775")) +(constraint (= (f "+174 594-539-946") "594")) +(constraint (= (f "+155 927-275-860") "927")) +(constraint (= (f "+167 405-461-331") "405")) +(constraint (= (f "+10 538-347-401") "538")) +(constraint (= (f "+60 971-986-103") "971")) +(constraint (= (f "+13 258-276-941") "258")) +(constraint (= (f "+2 604-746-137") "604")) +(constraint (= (f "+25 998-898-180") "998")) +(constraint (= (f "+151 862-946-541") "862")) +(constraint (= (f "+118 165-041-038") "165")) +(constraint (= (f "+144 170-592-272") "170")) +(constraint (= (f "+94 462-008-482") "462")) +(constraint (= (f "+82 685-122-086") "685")) +(constraint (= (f "+82 675-366-472") "675")) +(constraint (= (f "+80 066-433-096") "066")) +(constraint (= (f "+163 039-436-166") "039")) +(constraint (= (f "+138 808-083-074") "808")) +(constraint (= (f "+42 643-245-738") "643")) +(constraint (= (f "+169 822-542-726") "822")) +(constraint (= (f "+176 767-782-369") "767")) +(constraint (= (f "+47 414-369-343") "414")) +(constraint (= (f "+138 885-618-512") "885")) +(constraint (= (f "+104 158-671-355") "158")) +(constraint (= (f "+188 280-087-526") "280")) +(constraint (= (f "+50 268-571-336") "268")) +(constraint (= (f "+183 225-960-024") "225")) +(constraint (= (f "+58 191-982-491") "191")) +(constraint (= (f "+9 507-092-535") "507")) +(constraint (= (f "+64 061-601-398") "061")) +(constraint (= (f "+189 831-591-877") "831")) +(constraint (= (f "+129 425-765-844") "425")) +(constraint (= (f "+94 856-734-046") "856")) +(constraint (= (f "+35 082-845-261") "082")) +(constraint (= (f "+185 394-622-272") "394")) +(constraint (= (f "+163 905-707-740") "905")) +(constraint (= (f "+23 448-213-807") "448")) +(constraint (= (f "+42 634-077-089") "634")) +(constraint (= (f "+18 051-287-382") "051")) +(constraint (= (f "+29 773-545-520") "773")) +(constraint (= (f "+43 249-097-743") "249")) +(constraint (= (f "+158 674-736-891") "674")) +(constraint (= (f "+45 124-771-454") "124")) +(constraint (= (f "+180 029-457-654") "029")) +(constraint (= (f "+75 227-250-652") "227")) +(constraint (= (f "+5 528-317-854") "528")) +(constraint (= (f "+81 849-629-290") "849")) +(constraint (= (f "+46 005-119-176") "005")) +(constraint (= (f "+108 150-380-705") "150")) +(constraint (= (f "+40 122-224-247") "122")) +(constraint (= (f "+68 890-680-027") "890")) +(constraint (= (f "+169 060-204-504") "060")) +(constraint (= (f "+95 620-820-945") "620")) +(constraint (= (f "+43 592-938-846") "592")) +(constraint (= (f "+7 023-296-647") "023")) +(constraint (= (f "+20 541-401-396") "541")) +(constraint (= (f "+64 751-365-934") "751")) +(constraint (= (f "+163 546-119-476") "546")) +(constraint (= (f "+198 557-666-779") "557")) +(constraint (= (f "+14 673-759-017") "673")) +(constraint (= (f "+161 086-020-168") "086")) +(constraint (= (f "+65 970-575-488") "970")) +(constraint (= (f "+2 455-126-377") "455")) +(constraint (= (f "+196 728-585-376") "728")) +(constraint (= (f "+33 117-430-125") "117")) +(constraint (= (f "+195 488-831-768") "488")) +(constraint (= (f "+86 468-718-108") "468")) +(constraint (= (f "+194 278-716-950") "278")) +(constraint (= (f "+43 730-685-847") "730")) +(constraint (= (f "+140 794-289-551") "794")) +(constraint (= (f "+21 679-740-834") "679")) +(constraint (= (f "+98 717-997-323") "717")) +(constraint (= (f "+47 401-100-231") "401")) +(constraint (= (f "+143 726-462-368") "726")) +(constraint (= (f "+147 864-005-968") "864")) +(constraint (= (f "+130 590-757-665") "590")) +(constraint (= (f "+197 700-858-976") "700")) +(constraint (= (f "+158 344-541-946") "344")) +(constraint (= (f "+56 242-901-234") "242")) +(constraint (= (f "+132 313-075-754") "313")) +(constraint (= (f "+130 517-953-149") "517")) +(constraint (= (f "+158 684-878-743") "684")) +(constraint (= (f "+52 836-582-035") "836")) +(constraint (= (f "+138 117-484-671") "117")) +(constraint (= (f "+50 012-148-873") "012")) +(constraint (= (f "+105 048-919-483") "048")) +(constraint (= (f "+18 209-851-997") "209")) +(constraint (= (f "+176 938-056-084") "938")) +(constraint (= (f "+141 018-132-973") "018")) +(constraint (= (f "+199 936-162-415") "936")) +(constraint (= (f "+33 547-051-264") "547")) +(constraint (= (f "+161 233-981-513") "233")) +(constraint (= (f "+115 101-728-328") "101")) +(constraint (= (f "+45 095-746-635") "095")) + +(check-synth) diff --git a/PBE_Strings_Track/phone-6-long.sl b/PBE_Strings_Track/phone-6-long.sl new file mode 100644 index 0000000000000000000000000000000000000000..dd11092c438cb788a0ce152925ad4ac0f046e82e --- /dev/null +++ b/PBE_Strings_Track/phone-6-long.sl @@ -0,0 +1,127 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "+" "-" "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + + +(constraint (= (f "+106 769-858-438") "769")) +(constraint (= (f "+83 973-757-831") "973")) +(constraint (= (f "+62 647-787-775") "647")) +(constraint (= (f "+172 027-507-632") "027")) +(constraint (= (f "+72 001-050-856") "001")) +(constraint (= (f "+95 310-537-401") "310")) +(constraint (= (f "+6 775-969-238") "775")) +(constraint (= (f "+174 594-539-946") "594")) +(constraint (= (f "+155 927-275-860") "927")) +(constraint (= (f "+167 405-461-331") "405")) +(constraint (= (f "+10 538-347-401") "538")) +(constraint (= (f "+60 971-986-103") "971")) +(constraint (= (f "+13 258-276-941") "258")) +(constraint (= (f "+2 604-746-137") "604")) +(constraint (= (f "+25 998-898-180") "998")) +(constraint (= (f "+151 862-946-541") "862")) +(constraint (= (f "+118 165-041-038") "165")) +(constraint (= (f "+144 170-592-272") "170")) +(constraint (= (f "+94 462-008-482") "462")) +(constraint (= (f "+82 685-122-086") "685")) +(constraint (= (f "+82 675-366-472") "675")) +(constraint (= (f "+80 066-433-096") "066")) +(constraint (= (f "+163 039-436-166") "039")) +(constraint (= (f "+138 808-083-074") "808")) +(constraint (= (f "+42 643-245-738") "643")) +(constraint (= (f "+169 822-542-726") "822")) +(constraint (= (f "+176 767-782-369") "767")) +(constraint (= (f "+47 414-369-343") "414")) +(constraint (= (f "+138 885-618-512") "885")) +(constraint (= (f "+104 158-671-355") "158")) +(constraint (= (f "+188 280-087-526") "280")) +(constraint (= (f "+50 268-571-336") "268")) +(constraint (= (f "+183 225-960-024") "225")) +(constraint (= (f "+58 191-982-491") "191")) +(constraint (= (f "+9 507-092-535") "507")) +(constraint (= (f "+64 061-601-398") "061")) +(constraint (= (f "+189 831-591-877") "831")) +(constraint (= (f "+129 425-765-844") "425")) +(constraint (= (f "+94 856-734-046") "856")) +(constraint (= (f "+35 082-845-261") "082")) +(constraint (= (f "+185 394-622-272") "394")) +(constraint (= (f "+163 905-707-740") "905")) +(constraint (= (f "+23 448-213-807") "448")) +(constraint (= (f "+42 634-077-089") "634")) +(constraint (= (f "+18 051-287-382") "051")) +(constraint (= (f "+29 773-545-520") "773")) +(constraint (= (f "+43 249-097-743") "249")) +(constraint (= (f "+158 674-736-891") "674")) +(constraint (= (f "+45 124-771-454") "124")) +(constraint (= (f "+180 029-457-654") "029")) +(constraint (= (f "+75 227-250-652") "227")) +(constraint (= (f "+5 528-317-854") "528")) +(constraint (= (f "+81 849-629-290") "849")) +(constraint (= (f "+46 005-119-176") "005")) +(constraint (= (f "+108 150-380-705") "150")) +(constraint (= (f "+40 122-224-247") "122")) +(constraint (= (f "+68 890-680-027") "890")) +(constraint (= (f "+169 060-204-504") "060")) +(constraint (= (f "+95 620-820-945") "620")) +(constraint (= (f "+43 592-938-846") "592")) +(constraint (= (f "+7 023-296-647") "023")) +(constraint (= (f "+20 541-401-396") "541")) +(constraint (= (f "+64 751-365-934") "751")) +(constraint (= (f "+163 546-119-476") "546")) +(constraint (= (f "+198 557-666-779") "557")) +(constraint (= (f "+14 673-759-017") "673")) +(constraint (= (f "+161 086-020-168") "086")) +(constraint (= (f "+65 970-575-488") "970")) +(constraint (= (f "+2 455-126-377") "455")) +(constraint (= (f "+196 728-585-376") "728")) +(constraint (= (f "+33 117-430-125") "117")) +(constraint (= (f "+195 488-831-768") "488")) +(constraint (= (f "+86 468-718-108") "468")) +(constraint (= (f "+194 278-716-950") "278")) +(constraint (= (f "+43 730-685-847") "730")) +(constraint (= (f "+140 794-289-551") "794")) +(constraint (= (f "+21 679-740-834") "679")) +(constraint (= (f "+98 717-997-323") "717")) +(constraint (= (f "+47 401-100-231") "401")) +(constraint (= (f "+143 726-462-368") "726")) +(constraint (= (f "+147 864-005-968") "864")) +(constraint (= (f "+130 590-757-665") "590")) +(constraint (= (f "+197 700-858-976") "700")) +(constraint (= (f "+158 344-541-946") "344")) +(constraint (= (f "+56 242-901-234") "242")) +(constraint (= (f "+132 313-075-754") "313")) +(constraint (= (f "+130 517-953-149") "517")) +(constraint (= (f "+158 684-878-743") "684")) +(constraint (= (f "+52 836-582-035") "836")) +(constraint (= (f "+138 117-484-671") "117")) +(constraint (= (f "+50 012-148-873") "012")) +(constraint (= (f "+105 048-919-483") "048")) +(constraint (= (f "+18 209-851-997") "209")) +(constraint (= (f "+176 938-056-084") "938")) +(constraint (= (f "+141 018-132-973") "018")) +(constraint (= (f "+199 936-162-415") "936")) +(constraint (= (f "+33 547-051-264") "547")) +(constraint (= (f "+161 233-981-513") "233")) +(constraint (= (f "+115 101-728-328") "101")) +(constraint (= (f "+45 095-746-635") "095")) + +(check-synth) diff --git a/PBE_Strings_Track/phone-6.sl b/PBE_Strings_Track/phone-6.sl new file mode 100644 index 0000000000000000000000000000000000000000..abf58bb4361d066a454d7e2e621c71bea2f5840a --- /dev/null +++ b/PBE_Strings_Track/phone-6.sl @@ -0,0 +1,34 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "+" "-" "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + + +(constraint (= (f "+106 769-858-438") "769")) +(constraint (= (f "+83 973-757-831") "973")) +(constraint (= (f "+62 647-787-775") "647")) +(constraint (= (f "+172 027-507-632") "027")) +(constraint (= (f "+72 001-050-856") "001")) +(constraint (= (f "+95 310-537-401") "310")) +(constraint (= (f "+6 775-969-238") "775")) + +(check-synth) diff --git a/PBE_Strings_Track/phone-6_short.sl b/PBE_Strings_Track/phone-6_short.sl new file mode 100644 index 0000000000000000000000000000000000000000..bebbf42b4873bd369992cf30709a21d309a131dc --- /dev/null +++ b/PBE_Strings_Track/phone-6_short.sl @@ -0,0 +1,32 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "+" "-" "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + + +(constraint (= (f "+106 769-858-438") "769")) +(constraint (= (f "+83 973-757-831") "973")) +(constraint (= (f "+62 647-787-775") "647")) +(constraint (= (f "+172 027-507-632") "027")) +(constraint (= (f "+72 001-050-856") "001")) +(constraint (= (f "+95 310-537-401") "310")) +(constraint (= (f "+6 775-969-238") "775")) + +(check-synth) diff --git a/PBE_Strings_Track/phone-7-long-repeat.sl b/PBE_Strings_Track/phone-7-long-repeat.sl new file mode 100644 index 0000000000000000000000000000000000000000..aa4bdc1ac8a5f46c95e399de9528a7f73190d1cd --- /dev/null +++ b/PBE_Strings_Track/phone-7-long-repeat.sl @@ -0,0 +1,426 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "+" "-" "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "+106 769-858-438") "858")) +(constraint (= (f "+106 769-858-438") "858")) +(constraint (= (f "+106 769-858-438") "858")) +(constraint (= (f "+83 973-757-831") "757")) +(constraint (= (f "+83 973-757-831") "757")) +(constraint (= (f "+83 973-757-831") "757")) +(constraint (= (f "+62 647-787-775") "787")) +(constraint (= (f "+62 647-787-775") "787")) +(constraint (= (f "+62 647-787-775") "787")) +(constraint (= (f "+172 027-507-632") "507")) +(constraint (= (f "+172 027-507-632") "507")) +(constraint (= (f "+172 027-507-632") "507")) +(constraint (= (f "+72 001-050-856") "050")) +(constraint (= (f "+72 001-050-856") "050")) +(constraint (= (f "+72 001-050-856") "050")) +(constraint (= (f "+95 310-537-401") "537")) +(constraint (= (f "+95 310-537-401") "537")) +(constraint (= (f "+95 310-537-401") "537")) +(constraint (= (f "+6 775-969-238") "969")) +(constraint (= (f "+6 775-969-238") "969")) +(constraint (= (f "+6 775-969-238") "969")) +(constraint (= (f "+174 594-539-946") "539")) +(constraint (= (f "+174 594-539-946") "539")) +(constraint (= (f "+174 594-539-946") "539")) +(constraint (= (f "+155 927-275-860") "275")) +(constraint (= (f "+155 927-275-860") "275")) +(constraint (= (f "+155 927-275-860") "275")) +(constraint (= (f "+167 405-461-331") "461")) +(constraint (= (f "+167 405-461-331") "461")) +(constraint (= (f "+167 405-461-331") "461")) +(constraint (= (f "+10 538-347-401") "347")) +(constraint (= (f "+10 538-347-401") "347")) +(constraint (= (f "+10 538-347-401") "347")) +(constraint (= (f "+60 971-986-103") "986")) +(constraint (= (f "+60 971-986-103") "986")) +(constraint (= (f "+60 971-986-103") "986")) +(constraint (= (f "+13 258-276-941") "276")) +(constraint (= (f "+13 258-276-941") "276")) +(constraint (= (f "+13 258-276-941") "276")) +(constraint (= (f "+2 604-746-137") "746")) +(constraint (= (f "+2 604-746-137") "746")) +(constraint (= (f "+2 604-746-137") "746")) +(constraint (= (f "+25 998-898-180") "898")) +(constraint (= (f "+25 998-898-180") "898")) +(constraint (= (f "+25 998-898-180") "898")) +(constraint (= (f "+151 862-946-541") "946")) +(constraint (= (f "+151 862-946-541") "946")) +(constraint (= (f "+151 862-946-541") "946")) +(constraint (= (f "+118 165-041-038") "041")) +(constraint (= (f "+118 165-041-038") "041")) +(constraint (= (f "+118 165-041-038") "041")) +(constraint (= (f "+144 170-592-272") "592")) +(constraint (= (f "+144 170-592-272") "592")) +(constraint (= (f "+144 170-592-272") "592")) +(constraint (= (f "+94 462-008-482") "008")) +(constraint (= (f "+94 462-008-482") "008")) +(constraint (= (f "+94 462-008-482") "008")) +(constraint (= (f "+82 685-122-086") "122")) +(constraint (= (f "+82 685-122-086") "122")) +(constraint (= (f "+82 685-122-086") "122")) +(constraint (= (f "+82 675-366-472") "366")) +(constraint (= (f "+82 675-366-472") "366")) +(constraint (= (f "+82 675-366-472") "366")) +(constraint (= (f "+80 066-433-096") "433")) +(constraint (= (f "+80 066-433-096") "433")) +(constraint (= (f "+80 066-433-096") "433")) +(constraint (= (f "+163 039-436-166") "436")) +(constraint (= (f "+163 039-436-166") "436")) +(constraint (= (f "+163 039-436-166") "436")) +(constraint (= (f "+138 808-083-074") "083")) +(constraint (= (f "+138 808-083-074") "083")) +(constraint (= (f "+138 808-083-074") "083")) +(constraint (= (f "+42 643-245-738") "245")) +(constraint (= (f "+42 643-245-738") "245")) +(constraint (= (f "+42 643-245-738") "245")) +(constraint (= (f "+169 822-542-726") "542")) +(constraint (= (f "+169 822-542-726") "542")) +(constraint (= (f "+169 822-542-726") "542")) +(constraint (= (f "+176 767-782-369") "782")) +(constraint (= (f "+176 767-782-369") "782")) +(constraint (= (f "+176 767-782-369") "782")) +(constraint (= (f "+47 414-369-343") "369")) +(constraint (= (f "+47 414-369-343") "369")) +(constraint (= (f "+47 414-369-343") "369")) +(constraint (= (f "+138 885-618-512") "618")) +(constraint (= (f "+138 885-618-512") "618")) +(constraint (= (f "+138 885-618-512") "618")) +(constraint (= (f "+104 158-671-355") "671")) +(constraint (= (f "+104 158-671-355") "671")) +(constraint (= (f "+104 158-671-355") "671")) +(constraint (= (f "+188 280-087-526") "087")) +(constraint (= (f "+188 280-087-526") "087")) +(constraint (= (f "+188 280-087-526") "087")) +(constraint (= (f "+50 268-571-336") "571")) +(constraint (= (f "+50 268-571-336") "571")) +(constraint (= (f "+50 268-571-336") "571")) +(constraint (= (f "+183 225-960-024") "960")) +(constraint (= (f "+183 225-960-024") "960")) +(constraint (= (f "+183 225-960-024") "960")) +(constraint (= (f "+58 191-982-491") "982")) +(constraint (= (f "+58 191-982-491") "982")) +(constraint (= (f "+58 191-982-491") "982")) +(constraint (= (f "+9 507-092-535") "092")) +(constraint (= (f "+9 507-092-535") "092")) +(constraint (= (f "+9 507-092-535") "092")) +(constraint (= (f "+64 061-601-398") "601")) +(constraint (= (f "+64 061-601-398") "601")) +(constraint (= (f "+64 061-601-398") "601")) +(constraint (= (f "+189 831-591-877") "591")) +(constraint (= (f "+189 831-591-877") "591")) +(constraint (= (f "+189 831-591-877") "591")) +(constraint (= (f "+129 425-765-844") "765")) +(constraint (= (f "+129 425-765-844") "765")) +(constraint (= (f "+129 425-765-844") "765")) +(constraint (= (f "+94 856-734-046") "734")) +(constraint (= (f "+94 856-734-046") "734")) +(constraint (= (f "+94 856-734-046") "734")) +(constraint (= (f "+35 082-845-261") "845")) +(constraint (= (f "+35 082-845-261") "845")) +(constraint (= (f "+35 082-845-261") "845")) +(constraint (= (f "+185 394-622-272") "622")) +(constraint (= (f "+185 394-622-272") "622")) +(constraint (= (f "+185 394-622-272") "622")) +(constraint (= (f "+163 905-707-740") "707")) +(constraint (= (f "+163 905-707-740") "707")) +(constraint (= (f "+163 905-707-740") "707")) +(constraint (= (f "+23 448-213-807") "213")) +(constraint (= (f "+23 448-213-807") "213")) +(constraint (= (f "+23 448-213-807") "213")) +(constraint (= (f "+42 634-077-089") "077")) +(constraint (= (f "+42 634-077-089") "077")) +(constraint (= (f "+42 634-077-089") "077")) +(constraint (= (f "+18 051-287-382") "287")) +(constraint (= (f "+18 051-287-382") "287")) +(constraint (= (f "+18 051-287-382") "287")) +(constraint (= (f "+29 773-545-520") "545")) +(constraint (= (f "+29 773-545-520") "545")) +(constraint (= (f "+29 773-545-520") "545")) +(constraint (= (f "+43 249-097-743") "097")) +(constraint (= (f "+43 249-097-743") "097")) +(constraint (= (f "+43 249-097-743") "097")) +(constraint (= (f "+158 674-736-891") "736")) +(constraint (= (f "+158 674-736-891") "736")) +(constraint (= (f "+158 674-736-891") "736")) +(constraint (= (f "+45 124-771-454") "771")) +(constraint (= (f "+45 124-771-454") "771")) +(constraint (= (f "+45 124-771-454") "771")) +(constraint (= (f "+180 029-457-654") "457")) +(constraint (= (f "+180 029-457-654") "457")) +(constraint (= (f "+180 029-457-654") "457")) +(constraint (= (f "+75 227-250-652") "250")) +(constraint (= (f "+75 227-250-652") "250")) +(constraint (= (f "+75 227-250-652") "250")) +(constraint (= (f "+5 528-317-854") "317")) +(constraint (= (f "+5 528-317-854") "317")) +(constraint (= (f "+5 528-317-854") "317")) +(constraint (= (f "+81 849-629-290") "629")) +(constraint (= (f "+81 849-629-290") "629")) +(constraint (= (f "+81 849-629-290") "629")) +(constraint (= (f "+46 005-119-176") "119")) +(constraint (= (f "+46 005-119-176") "119")) +(constraint (= (f "+46 005-119-176") "119")) +(constraint (= (f "+108 150-380-705") "380")) +(constraint (= (f "+108 150-380-705") "380")) +(constraint (= (f "+108 150-380-705") "380")) +(constraint (= (f "+40 122-224-247") "224")) +(constraint (= (f "+40 122-224-247") "224")) +(constraint (= (f "+40 122-224-247") "224")) +(constraint (= (f "+68 890-680-027") "680")) +(constraint (= (f "+68 890-680-027") "680")) +(constraint (= (f "+68 890-680-027") "680")) +(constraint (= (f "+169 060-204-504") "204")) +(constraint (= (f "+169 060-204-504") "204")) +(constraint (= (f "+169 060-204-504") "204")) +(constraint (= (f "+95 620-820-945") "820")) +(constraint (= (f "+95 620-820-945") "820")) +(constraint (= (f "+95 620-820-945") "820")) +(constraint (= (f "+43 592-938-846") "938")) +(constraint (= (f "+43 592-938-846") "938")) +(constraint (= (f "+43 592-938-846") "938")) +(constraint (= (f "+7 023-296-647") "296")) +(constraint (= (f "+7 023-296-647") "296")) +(constraint (= (f "+7 023-296-647") "296")) +(constraint (= (f "+20 541-401-396") "401")) +(constraint (= (f "+20 541-401-396") "401")) +(constraint (= (f "+20 541-401-396") "401")) +(constraint (= (f "+64 751-365-934") "365")) +(constraint (= (f "+64 751-365-934") "365")) +(constraint (= (f "+64 751-365-934") "365")) +(constraint (= (f "+163 546-119-476") "119")) +(constraint (= (f "+163 546-119-476") "119")) +(constraint (= (f "+163 546-119-476") "119")) +(constraint (= (f "+198 557-666-779") "666")) +(constraint (= (f "+198 557-666-779") "666")) +(constraint (= (f "+198 557-666-779") "666")) +(constraint (= (f "+14 673-759-017") "759")) +(constraint (= (f "+14 673-759-017") "759")) +(constraint (= (f "+14 673-759-017") "759")) +(constraint (= (f "+161 086-020-168") "020")) +(constraint (= (f "+161 086-020-168") "020")) +(constraint (= (f "+161 086-020-168") "020")) +(constraint (= (f "+65 970-575-488") "575")) +(constraint (= (f "+65 970-575-488") "575")) +(constraint (= (f "+65 970-575-488") "575")) +(constraint (= (f "+2 455-126-377") "126")) +(constraint (= (f "+2 455-126-377") "126")) +(constraint (= (f "+2 455-126-377") "126")) +(constraint (= (f "+196 728-585-376") "585")) +(constraint (= (f "+196 728-585-376") "585")) +(constraint (= (f "+196 728-585-376") "585")) +(constraint (= (f "+33 117-430-125") "430")) +(constraint (= (f "+33 117-430-125") "430")) +(constraint (= (f "+33 117-430-125") "430")) +(constraint (= (f "+195 488-831-768") "831")) +(constraint (= (f "+195 488-831-768") "831")) +(constraint (= (f "+195 488-831-768") "831")) +(constraint (= (f "+86 468-718-108") "718")) +(constraint (= (f "+86 468-718-108") "718")) +(constraint (= (f "+86 468-718-108") "718")) +(constraint (= (f "+194 278-716-950") "716")) +(constraint (= (f "+194 278-716-950") "716")) +(constraint (= (f "+194 278-716-950") "716")) +(constraint (= (f "+43 730-685-847") "685")) +(constraint (= (f "+43 730-685-847") "685")) +(constraint (= (f "+43 730-685-847") "685")) +(constraint (= (f "+140 794-289-551") "289")) +(constraint (= (f "+140 794-289-551") "289")) +(constraint (= (f "+140 794-289-551") "289")) +(constraint (= (f "+21 679-740-834") "740")) +(constraint (= (f "+21 679-740-834") "740")) +(constraint (= (f "+21 679-740-834") "740")) +(constraint (= (f "+98 717-997-323") "997")) +(constraint (= (f "+98 717-997-323") "997")) +(constraint (= (f "+98 717-997-323") "997")) +(constraint (= (f "+47 401-100-231") "100")) +(constraint (= (f "+47 401-100-231") "100")) +(constraint (= (f "+47 401-100-231") "100")) +(constraint (= (f "+143 726-462-368") "462")) +(constraint (= (f "+143 726-462-368") "462")) +(constraint (= (f "+143 726-462-368") "462")) +(constraint (= (f "+147 864-005-968") "005")) +(constraint (= (f "+147 864-005-968") "005")) +(constraint (= (f "+147 864-005-968") "005")) +(constraint (= (f "+130 590-757-665") "757")) +(constraint (= (f "+130 590-757-665") "757")) +(constraint (= (f "+130 590-757-665") "757")) +(constraint (= (f "+197 700-858-976") "858")) +(constraint (= (f "+197 700-858-976") "858")) +(constraint (= (f "+197 700-858-976") "858")) +(constraint (= (f "+158 344-541-946") "541")) +(constraint (= (f "+158 344-541-946") "541")) +(constraint (= (f "+158 344-541-946") "541")) +(constraint (= (f "+56 242-901-234") "901")) +(constraint (= (f "+56 242-901-234") "901")) +(constraint (= (f "+56 242-901-234") "901")) +(constraint (= (f "+132 313-075-754") "075")) +(constraint (= (f "+132 313-075-754") "075")) +(constraint (= (f "+132 313-075-754") "075")) +(constraint (= (f "+130 517-953-149") "953")) +(constraint (= (f "+130 517-953-149") "953")) +(constraint (= (f "+130 517-953-149") "953")) +(constraint (= (f "+158 684-878-743") "878")) +(constraint (= (f "+158 684-878-743") "878")) +(constraint (= (f "+158 684-878-743") "878")) +(constraint (= (f "+52 836-582-035") "582")) +(constraint (= (f "+52 836-582-035") "582")) +(constraint (= (f "+52 836-582-035") "582")) +(constraint (= (f "+138 117-484-671") "484")) +(constraint (= (f "+138 117-484-671") "484")) +(constraint (= (f "+138 117-484-671") "484")) +(constraint (= (f "+50 012-148-873") "148")) +(constraint (= (f "+50 012-148-873") "148")) +(constraint (= (f "+50 012-148-873") "148")) +(constraint (= (f "+105 048-919-483") "919")) +(constraint (= (f "+105 048-919-483") "919")) +(constraint (= (f "+105 048-919-483") "919")) +(constraint (= (f "+18 209-851-997") "851")) +(constraint (= (f "+18 209-851-997") "851")) +(constraint (= (f "+18 209-851-997") "851")) +(constraint (= (f "+176 938-056-084") "056")) +(constraint (= (f "+176 938-056-084") "056")) +(constraint (= (f "+176 938-056-084") "056")) +(constraint (= (f "+141 018-132-973") "132")) +(constraint (= (f "+141 018-132-973") "132")) +(constraint (= (f "+141 018-132-973") "132")) +(constraint (= (f "+199 936-162-415") "162")) +(constraint (= (f "+199 936-162-415") "162")) +(constraint (= (f "+199 936-162-415") "162")) +(constraint (= (f "+33 547-051-264") "051")) +(constraint (= (f "+33 547-051-264") "051")) +(constraint (= (f "+33 547-051-264") "051")) +(constraint (= (f "+161 233-981-513") "981")) +(constraint (= (f "+161 233-981-513") "981")) +(constraint (= (f "+161 233-981-513") "981")) +(constraint (= (f "+115 101-728-328") "728")) +(constraint (= (f "+115 101-728-328") "728")) +(constraint (= (f "+115 101-728-328") "728")) +(constraint (= (f "+45 095-746-635") "746")) +(constraint (= (f "+45 095-746-635") "746")) +(constraint (= (f "+45 095-746-635") "746")) +(constraint (= (f "+106 769-858-438") "858")) +(constraint (= (f "+83 973-757-831") "757")) +(constraint (= (f "+62 647-787-775") "787")) +(constraint (= (f "+172 027-507-632") "507")) +(constraint (= (f "+72 001-050-856") "050")) +(constraint (= (f "+95 310-537-401") "537")) +(constraint (= (f "+6 775-969-238") "969")) +(constraint (= (f "+174 594-539-946") "539")) +(constraint (= (f "+155 927-275-860") "275")) +(constraint (= (f "+167 405-461-331") "461")) +(constraint (= (f "+10 538-347-401") "347")) +(constraint (= (f "+60 971-986-103") "986")) +(constraint (= (f "+13 258-276-941") "276")) +(constraint (= (f "+2 604-746-137") "746")) +(constraint (= (f "+25 998-898-180") "898")) +(constraint (= (f "+151 862-946-541") "946")) +(constraint (= (f "+118 165-041-038") "041")) +(constraint (= (f "+144 170-592-272") "592")) +(constraint (= (f "+94 462-008-482") "008")) +(constraint (= (f "+82 685-122-086") "122")) +(constraint (= (f "+82 675-366-472") "366")) +(constraint (= (f "+80 066-433-096") "433")) +(constraint (= (f "+163 039-436-166") "436")) +(constraint (= (f "+138 808-083-074") "083")) +(constraint (= (f "+42 643-245-738") "245")) +(constraint (= (f "+169 822-542-726") "542")) +(constraint (= (f "+176 767-782-369") "782")) +(constraint (= (f "+47 414-369-343") "369")) +(constraint (= (f "+138 885-618-512") "618")) +(constraint (= (f "+104 158-671-355") "671")) +(constraint (= (f "+188 280-087-526") "087")) +(constraint (= (f "+50 268-571-336") "571")) +(constraint (= (f "+183 225-960-024") "960")) +(constraint (= (f "+58 191-982-491") "982")) +(constraint (= (f "+9 507-092-535") "092")) +(constraint (= (f "+64 061-601-398") "601")) +(constraint (= (f "+189 831-591-877") "591")) +(constraint (= (f "+129 425-765-844") "765")) +(constraint (= (f "+94 856-734-046") "734")) +(constraint (= (f "+35 082-845-261") "845")) +(constraint (= (f "+185 394-622-272") "622")) +(constraint (= (f "+163 905-707-740") "707")) +(constraint (= (f "+23 448-213-807") "213")) +(constraint (= (f "+42 634-077-089") "077")) +(constraint (= (f "+18 051-287-382") "287")) +(constraint (= (f "+29 773-545-520") "545")) +(constraint (= (f "+43 249-097-743") "097")) +(constraint (= (f "+158 674-736-891") "736")) +(constraint (= (f "+45 124-771-454") "771")) +(constraint (= (f "+180 029-457-654") "457")) +(constraint (= (f "+75 227-250-652") "250")) +(constraint (= (f "+5 528-317-854") "317")) +(constraint (= (f "+81 849-629-290") "629")) +(constraint (= (f "+46 005-119-176") "119")) +(constraint (= (f "+108 150-380-705") "380")) +(constraint (= (f "+40 122-224-247") "224")) +(constraint (= (f "+68 890-680-027") "680")) +(constraint (= (f "+169 060-204-504") "204")) +(constraint (= (f "+95 620-820-945") "820")) +(constraint (= (f "+43 592-938-846") "938")) +(constraint (= (f "+7 023-296-647") "296")) +(constraint (= (f "+20 541-401-396") "401")) +(constraint (= (f "+64 751-365-934") "365")) +(constraint (= (f "+163 546-119-476") "119")) +(constraint (= (f "+198 557-666-779") "666")) +(constraint (= (f "+14 673-759-017") "759")) +(constraint (= (f "+161 086-020-168") "020")) +(constraint (= (f "+65 970-575-488") "575")) +(constraint (= (f "+2 455-126-377") "126")) +(constraint (= (f "+196 728-585-376") "585")) +(constraint (= (f "+33 117-430-125") "430")) +(constraint (= (f "+195 488-831-768") "831")) +(constraint (= (f "+86 468-718-108") "718")) +(constraint (= (f "+194 278-716-950") "716")) +(constraint (= (f "+43 730-685-847") "685")) +(constraint (= (f "+140 794-289-551") "289")) +(constraint (= (f "+21 679-740-834") "740")) +(constraint (= (f "+98 717-997-323") "997")) +(constraint (= (f "+47 401-100-231") "100")) +(constraint (= (f "+143 726-462-368") "462")) +(constraint (= (f "+147 864-005-968") "005")) +(constraint (= (f "+130 590-757-665") "757")) +(constraint (= (f "+197 700-858-976") "858")) +(constraint (= (f "+158 344-541-946") "541")) +(constraint (= (f "+56 242-901-234") "901")) +(constraint (= (f "+132 313-075-754") "075")) +(constraint (= (f "+130 517-953-149") "953")) +(constraint (= (f "+158 684-878-743") "878")) +(constraint (= (f "+52 836-582-035") "582")) +(constraint (= (f "+138 117-484-671") "484")) +(constraint (= (f "+50 012-148-873") "148")) +(constraint (= (f "+105 048-919-483") "919")) +(constraint (= (f "+18 209-851-997") "851")) +(constraint (= (f "+176 938-056-084") "056")) +(constraint (= (f "+141 018-132-973") "132")) +(constraint (= (f "+199 936-162-415") "162")) +(constraint (= (f "+33 547-051-264") "051")) +(constraint (= (f "+161 233-981-513") "981")) +(constraint (= (f "+115 101-728-328") "728")) +(constraint (= (f "+45 095-746-635") "746")) + +(check-synth) diff --git a/PBE_Strings_Track/phone-7-long.sl b/PBE_Strings_Track/phone-7-long.sl new file mode 100644 index 0000000000000000000000000000000000000000..21ddaac623f375b9d7b8ab2e2c54422545a3c2dc --- /dev/null +++ b/PBE_Strings_Track/phone-7-long.sl @@ -0,0 +1,126 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "+" "-" "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "+106 769-858-438") "858")) +(constraint (= (f "+83 973-757-831") "757")) +(constraint (= (f "+62 647-787-775") "787")) +(constraint (= (f "+172 027-507-632") "507")) +(constraint (= (f "+72 001-050-856") "050")) +(constraint (= (f "+95 310-537-401") "537")) +(constraint (= (f "+6 775-969-238") "969")) +(constraint (= (f "+174 594-539-946") "539")) +(constraint (= (f "+155 927-275-860") "275")) +(constraint (= (f "+167 405-461-331") "461")) +(constraint (= (f "+10 538-347-401") "347")) +(constraint (= (f "+60 971-986-103") "986")) +(constraint (= (f "+13 258-276-941") "276")) +(constraint (= (f "+2 604-746-137") "746")) +(constraint (= (f "+25 998-898-180") "898")) +(constraint (= (f "+151 862-946-541") "946")) +(constraint (= (f "+118 165-041-038") "041")) +(constraint (= (f "+144 170-592-272") "592")) +(constraint (= (f "+94 462-008-482") "008")) +(constraint (= (f "+82 685-122-086") "122")) +(constraint (= (f "+82 675-366-472") "366")) +(constraint (= (f "+80 066-433-096") "433")) +(constraint (= (f "+163 039-436-166") "436")) +(constraint (= (f "+138 808-083-074") "083")) +(constraint (= (f "+42 643-245-738") "245")) +(constraint (= (f "+169 822-542-726") "542")) +(constraint (= (f "+176 767-782-369") "782")) +(constraint (= (f "+47 414-369-343") "369")) +(constraint (= (f "+138 885-618-512") "618")) +(constraint (= (f "+104 158-671-355") "671")) +(constraint (= (f "+188 280-087-526") "087")) +(constraint (= (f "+50 268-571-336") "571")) +(constraint (= (f "+183 225-960-024") "960")) +(constraint (= (f "+58 191-982-491") "982")) +(constraint (= (f "+9 507-092-535") "092")) +(constraint (= (f "+64 061-601-398") "601")) +(constraint (= (f "+189 831-591-877") "591")) +(constraint (= (f "+129 425-765-844") "765")) +(constraint (= (f "+94 856-734-046") "734")) +(constraint (= (f "+35 082-845-261") "845")) +(constraint (= (f "+185 394-622-272") "622")) +(constraint (= (f "+163 905-707-740") "707")) +(constraint (= (f "+23 448-213-807") "213")) +(constraint (= (f "+42 634-077-089") "077")) +(constraint (= (f "+18 051-287-382") "287")) +(constraint (= (f "+29 773-545-520") "545")) +(constraint (= (f "+43 249-097-743") "097")) +(constraint (= (f "+158 674-736-891") "736")) +(constraint (= (f "+45 124-771-454") "771")) +(constraint (= (f "+180 029-457-654") "457")) +(constraint (= (f "+75 227-250-652") "250")) +(constraint (= (f "+5 528-317-854") "317")) +(constraint (= (f "+81 849-629-290") "629")) +(constraint (= (f "+46 005-119-176") "119")) +(constraint (= (f "+108 150-380-705") "380")) +(constraint (= (f "+40 122-224-247") "224")) +(constraint (= (f "+68 890-680-027") "680")) +(constraint (= (f "+169 060-204-504") "204")) +(constraint (= (f "+95 620-820-945") "820")) +(constraint (= (f "+43 592-938-846") "938")) +(constraint (= (f "+7 023-296-647") "296")) +(constraint (= (f "+20 541-401-396") "401")) +(constraint (= (f "+64 751-365-934") "365")) +(constraint (= (f "+163 546-119-476") "119")) +(constraint (= (f "+198 557-666-779") "666")) +(constraint (= (f "+14 673-759-017") "759")) +(constraint (= (f "+161 086-020-168") "020")) +(constraint (= (f "+65 970-575-488") "575")) +(constraint (= (f "+2 455-126-377") "126")) +(constraint (= (f "+196 728-585-376") "585")) +(constraint (= (f "+33 117-430-125") "430")) +(constraint (= (f "+195 488-831-768") "831")) +(constraint (= (f "+86 468-718-108") "718")) +(constraint (= (f "+194 278-716-950") "716")) +(constraint (= (f "+43 730-685-847") "685")) +(constraint (= (f "+140 794-289-551") "289")) +(constraint (= (f "+21 679-740-834") "740")) +(constraint (= (f "+98 717-997-323") "997")) +(constraint (= (f "+47 401-100-231") "100")) +(constraint (= (f "+143 726-462-368") "462")) +(constraint (= (f "+147 864-005-968") "005")) +(constraint (= (f "+130 590-757-665") "757")) +(constraint (= (f "+197 700-858-976") "858")) +(constraint (= (f "+158 344-541-946") "541")) +(constraint (= (f "+56 242-901-234") "901")) +(constraint (= (f "+132 313-075-754") "075")) +(constraint (= (f "+130 517-953-149") "953")) +(constraint (= (f "+158 684-878-743") "878")) +(constraint (= (f "+52 836-582-035") "582")) +(constraint (= (f "+138 117-484-671") "484")) +(constraint (= (f "+50 012-148-873") "148")) +(constraint (= (f "+105 048-919-483") "919")) +(constraint (= (f "+18 209-851-997") "851")) +(constraint (= (f "+176 938-056-084") "056")) +(constraint (= (f "+141 018-132-973") "132")) +(constraint (= (f "+199 936-162-415") "162")) +(constraint (= (f "+33 547-051-264") "051")) +(constraint (= (f "+161 233-981-513") "981")) +(constraint (= (f "+115 101-728-328") "728")) +(constraint (= (f "+45 095-746-635") "746")) + +(check-synth) diff --git a/PBE_Strings_Track/phone-7.sl b/PBE_Strings_Track/phone-7.sl new file mode 100644 index 0000000000000000000000000000000000000000..f655f618d9f8ee1395c412269917eb4e7129a2f2 --- /dev/null +++ b/PBE_Strings_Track/phone-7.sl @@ -0,0 +1,33 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "+" "-" "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "+106 769-858-438") "858")) +(constraint (= (f "+83 973-757-831") "757")) +(constraint (= (f "+62 647-787-775") "787")) +(constraint (= (f "+172 027-507-632") "507")) +(constraint (= (f "+72 001-050-856") "050")) +(constraint (= (f "+95 310-537-401") "537")) +(constraint (= (f "+6 775-969-238") "969")) + +(check-synth) diff --git a/PBE_Strings_Track/phone-7_short.sl b/PBE_Strings_Track/phone-7_short.sl new file mode 100644 index 0000000000000000000000000000000000000000..1dc851b319e19b532de9572ac19dd7fae4b0c06b --- /dev/null +++ b/PBE_Strings_Track/phone-7_short.sl @@ -0,0 +1,31 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "+" "-" "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "+106 769-858-438") "858")) +(constraint (= (f "+83 973-757-831") "757")) +(constraint (= (f "+62 647-787-775") "787")) +(constraint (= (f "+172 027-507-632") "507")) +(constraint (= (f "+72 001-050-856") "050")) +(constraint (= (f "+95 310-537-401") "537")) +(constraint (= (f "+6 775-969-238") "969")) + +(check-synth) diff --git a/PBE_Strings_Track/phone-8-long-repeat.sl b/PBE_Strings_Track/phone-8-long-repeat.sl new file mode 100644 index 0000000000000000000000000000000000000000..2b898e5b4e0cf7bd6cc7dec49f79142c44742e8d --- /dev/null +++ b/PBE_Strings_Track/phone-8-long-repeat.sl @@ -0,0 +1,426 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "+" "-" "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "+106 769-858-438") "438")) +(constraint (= (f "+106 769-858-438") "438")) +(constraint (= (f "+106 769-858-438") "438")) +(constraint (= (f "+83 973-757-831") "831")) +(constraint (= (f "+83 973-757-831") "831")) +(constraint (= (f "+83 973-757-831") "831")) +(constraint (= (f "+62 647-787-775") "775")) +(constraint (= (f "+62 647-787-775") "775")) +(constraint (= (f "+62 647-787-775") "775")) +(constraint (= (f "+172 027-507-632") "632")) +(constraint (= (f "+172 027-507-632") "632")) +(constraint (= (f "+172 027-507-632") "632")) +(constraint (= (f "+72 001-050-856") "856")) +(constraint (= (f "+72 001-050-856") "856")) +(constraint (= (f "+72 001-050-856") "856")) +(constraint (= (f "+95 310-537-401") "401")) +(constraint (= (f "+95 310-537-401") "401")) +(constraint (= (f "+95 310-537-401") "401")) +(constraint (= (f "+6 775-969-238") "238")) +(constraint (= (f "+6 775-969-238") "238")) +(constraint (= (f "+6 775-969-238") "238")) +(constraint (= (f "+174 594-539-946") "946")) +(constraint (= (f "+174 594-539-946") "946")) +(constraint (= (f "+174 594-539-946") "946")) +(constraint (= (f "+155 927-275-860") "860")) +(constraint (= (f "+155 927-275-860") "860")) +(constraint (= (f "+155 927-275-860") "860")) +(constraint (= (f "+167 405-461-331") "331")) +(constraint (= (f "+167 405-461-331") "331")) +(constraint (= (f "+167 405-461-331") "331")) +(constraint (= (f "+10 538-347-401") "401")) +(constraint (= (f "+10 538-347-401") "401")) +(constraint (= (f "+10 538-347-401") "401")) +(constraint (= (f "+60 971-986-103") "103")) +(constraint (= (f "+60 971-986-103") "103")) +(constraint (= (f "+60 971-986-103") "103")) +(constraint (= (f "+13 258-276-941") "941")) +(constraint (= (f "+13 258-276-941") "941")) +(constraint (= (f "+13 258-276-941") "941")) +(constraint (= (f "+2 604-746-137") "137")) +(constraint (= (f "+2 604-746-137") "137")) +(constraint (= (f "+2 604-746-137") "137")) +(constraint (= (f "+25 998-898-180") "180")) +(constraint (= (f "+25 998-898-180") "180")) +(constraint (= (f "+25 998-898-180") "180")) +(constraint (= (f "+151 862-946-541") "541")) +(constraint (= (f "+151 862-946-541") "541")) +(constraint (= (f "+151 862-946-541") "541")) +(constraint (= (f "+118 165-041-038") "038")) +(constraint (= (f "+118 165-041-038") "038")) +(constraint (= (f "+118 165-041-038") "038")) +(constraint (= (f "+144 170-592-272") "272")) +(constraint (= (f "+144 170-592-272") "272")) +(constraint (= (f "+144 170-592-272") "272")) +(constraint (= (f "+94 462-008-482") "482")) +(constraint (= (f "+94 462-008-482") "482")) +(constraint (= (f "+94 462-008-482") "482")) +(constraint (= (f "+82 685-122-086") "086")) +(constraint (= (f "+82 685-122-086") "086")) +(constraint (= (f "+82 685-122-086") "086")) +(constraint (= (f "+82 675-366-472") "472")) +(constraint (= (f "+82 675-366-472") "472")) +(constraint (= (f "+82 675-366-472") "472")) +(constraint (= (f "+80 066-433-096") "096")) +(constraint (= (f "+80 066-433-096") "096")) +(constraint (= (f "+80 066-433-096") "096")) +(constraint (= (f "+163 039-436-166") "166")) +(constraint (= (f "+163 039-436-166") "166")) +(constraint (= (f "+163 039-436-166") "166")) +(constraint (= (f "+138 808-083-074") "074")) +(constraint (= (f "+138 808-083-074") "074")) +(constraint (= (f "+138 808-083-074") "074")) +(constraint (= (f "+42 643-245-738") "738")) +(constraint (= (f "+42 643-245-738") "738")) +(constraint (= (f "+42 643-245-738") "738")) +(constraint (= (f "+169 822-542-726") "726")) +(constraint (= (f "+169 822-542-726") "726")) +(constraint (= (f "+169 822-542-726") "726")) +(constraint (= (f "+176 767-782-369") "369")) +(constraint (= (f "+176 767-782-369") "369")) +(constraint (= (f "+176 767-782-369") "369")) +(constraint (= (f "+47 414-369-343") "343")) +(constraint (= (f "+47 414-369-343") "343")) +(constraint (= (f "+47 414-369-343") "343")) +(constraint (= (f "+138 885-618-512") "512")) +(constraint (= (f "+138 885-618-512") "512")) +(constraint (= (f "+138 885-618-512") "512")) +(constraint (= (f "+104 158-671-355") "355")) +(constraint (= (f "+104 158-671-355") "355")) +(constraint (= (f "+104 158-671-355") "355")) +(constraint (= (f "+188 280-087-526") "526")) +(constraint (= (f "+188 280-087-526") "526")) +(constraint (= (f "+188 280-087-526") "526")) +(constraint (= (f "+50 268-571-336") "336")) +(constraint (= (f "+50 268-571-336") "336")) +(constraint (= (f "+50 268-571-336") "336")) +(constraint (= (f "+183 225-960-024") "024")) +(constraint (= (f "+183 225-960-024") "024")) +(constraint (= (f "+183 225-960-024") "024")) +(constraint (= (f "+58 191-982-491") "491")) +(constraint (= (f "+58 191-982-491") "491")) +(constraint (= (f "+58 191-982-491") "491")) +(constraint (= (f "+9 507-092-535") "535")) +(constraint (= (f "+9 507-092-535") "535")) +(constraint (= (f "+9 507-092-535") "535")) +(constraint (= (f "+64 061-601-398") "398")) +(constraint (= (f "+64 061-601-398") "398")) +(constraint (= (f "+64 061-601-398") "398")) +(constraint (= (f "+189 831-591-877") "877")) +(constraint (= (f "+189 831-591-877") "877")) +(constraint (= (f "+189 831-591-877") "877")) +(constraint (= (f "+129 425-765-844") "844")) +(constraint (= (f "+129 425-765-844") "844")) +(constraint (= (f "+129 425-765-844") "844")) +(constraint (= (f "+94 856-734-046") "046")) +(constraint (= (f "+94 856-734-046") "046")) +(constraint (= (f "+94 856-734-046") "046")) +(constraint (= (f "+35 082-845-261") "261")) +(constraint (= (f "+35 082-845-261") "261")) +(constraint (= (f "+35 082-845-261") "261")) +(constraint (= (f "+185 394-622-272") "272")) +(constraint (= (f "+185 394-622-272") "272")) +(constraint (= (f "+185 394-622-272") "272")) +(constraint (= (f "+163 905-707-740") "740")) +(constraint (= (f "+163 905-707-740") "740")) +(constraint (= (f "+163 905-707-740") "740")) +(constraint (= (f "+23 448-213-807") "807")) +(constraint (= (f "+23 448-213-807") "807")) +(constraint (= (f "+23 448-213-807") "807")) +(constraint (= (f "+42 634-077-089") "089")) +(constraint (= (f "+42 634-077-089") "089")) +(constraint (= (f "+42 634-077-089") "089")) +(constraint (= (f "+18 051-287-382") "382")) +(constraint (= (f "+18 051-287-382") "382")) +(constraint (= (f "+18 051-287-382") "382")) +(constraint (= (f "+29 773-545-520") "520")) +(constraint (= (f "+29 773-545-520") "520")) +(constraint (= (f "+29 773-545-520") "520")) +(constraint (= (f "+43 249-097-743") "743")) +(constraint (= (f "+43 249-097-743") "743")) +(constraint (= (f "+43 249-097-743") "743")) +(constraint (= (f "+158 674-736-891") "891")) +(constraint (= (f "+158 674-736-891") "891")) +(constraint (= (f "+158 674-736-891") "891")) +(constraint (= (f "+45 124-771-454") "454")) +(constraint (= (f "+45 124-771-454") "454")) +(constraint (= (f "+45 124-771-454") "454")) +(constraint (= (f "+180 029-457-654") "654")) +(constraint (= (f "+180 029-457-654") "654")) +(constraint (= (f "+180 029-457-654") "654")) +(constraint (= (f "+75 227-250-652") "652")) +(constraint (= (f "+75 227-250-652") "652")) +(constraint (= (f "+75 227-250-652") "652")) +(constraint (= (f "+5 528-317-854") "854")) +(constraint (= (f "+5 528-317-854") "854")) +(constraint (= (f "+5 528-317-854") "854")) +(constraint (= (f "+81 849-629-290") "290")) +(constraint (= (f "+81 849-629-290") "290")) +(constraint (= (f "+81 849-629-290") "290")) +(constraint (= (f "+46 005-119-176") "176")) +(constraint (= (f "+46 005-119-176") "176")) +(constraint (= (f "+46 005-119-176") "176")) +(constraint (= (f "+108 150-380-705") "705")) +(constraint (= (f "+108 150-380-705") "705")) +(constraint (= (f "+108 150-380-705") "705")) +(constraint (= (f "+40 122-224-247") "247")) +(constraint (= (f "+40 122-224-247") "247")) +(constraint (= (f "+40 122-224-247") "247")) +(constraint (= (f "+68 890-680-027") "027")) +(constraint (= (f "+68 890-680-027") "027")) +(constraint (= (f "+68 890-680-027") "027")) +(constraint (= (f "+169 060-204-504") "504")) +(constraint (= (f "+169 060-204-504") "504")) +(constraint (= (f "+169 060-204-504") "504")) +(constraint (= (f "+95 620-820-945") "945")) +(constraint (= (f "+95 620-820-945") "945")) +(constraint (= (f "+95 620-820-945") "945")) +(constraint (= (f "+43 592-938-846") "846")) +(constraint (= (f "+43 592-938-846") "846")) +(constraint (= (f "+43 592-938-846") "846")) +(constraint (= (f "+7 023-296-647") "647")) +(constraint (= (f "+7 023-296-647") "647")) +(constraint (= (f "+7 023-296-647") "647")) +(constraint (= (f "+20 541-401-396") "396")) +(constraint (= (f "+20 541-401-396") "396")) +(constraint (= (f "+20 541-401-396") "396")) +(constraint (= (f "+64 751-365-934") "934")) +(constraint (= (f "+64 751-365-934") "934")) +(constraint (= (f "+64 751-365-934") "934")) +(constraint (= (f "+163 546-119-476") "476")) +(constraint (= (f "+163 546-119-476") "476")) +(constraint (= (f "+163 546-119-476") "476")) +(constraint (= (f "+198 557-666-779") "779")) +(constraint (= (f "+198 557-666-779") "779")) +(constraint (= (f "+198 557-666-779") "779")) +(constraint (= (f "+14 673-759-017") "017")) +(constraint (= (f "+14 673-759-017") "017")) +(constraint (= (f "+14 673-759-017") "017")) +(constraint (= (f "+161 086-020-168") "168")) +(constraint (= (f "+161 086-020-168") "168")) +(constraint (= (f "+161 086-020-168") "168")) +(constraint (= (f "+65 970-575-488") "488")) +(constraint (= (f "+65 970-575-488") "488")) +(constraint (= (f "+65 970-575-488") "488")) +(constraint (= (f "+2 455-126-377") "377")) +(constraint (= (f "+2 455-126-377") "377")) +(constraint (= (f "+2 455-126-377") "377")) +(constraint (= (f "+196 728-585-376") "376")) +(constraint (= (f "+196 728-585-376") "376")) +(constraint (= (f "+196 728-585-376") "376")) +(constraint (= (f "+33 117-430-125") "125")) +(constraint (= (f "+33 117-430-125") "125")) +(constraint (= (f "+33 117-430-125") "125")) +(constraint (= (f "+195 488-831-768") "768")) +(constraint (= (f "+195 488-831-768") "768")) +(constraint (= (f "+195 488-831-768") "768")) +(constraint (= (f "+86 468-718-108") "108")) +(constraint (= (f "+86 468-718-108") "108")) +(constraint (= (f "+86 468-718-108") "108")) +(constraint (= (f "+194 278-716-950") "950")) +(constraint (= (f "+194 278-716-950") "950")) +(constraint (= (f "+194 278-716-950") "950")) +(constraint (= (f "+43 730-685-847") "847")) +(constraint (= (f "+43 730-685-847") "847")) +(constraint (= (f "+43 730-685-847") "847")) +(constraint (= (f "+140 794-289-551") "551")) +(constraint (= (f "+140 794-289-551") "551")) +(constraint (= (f "+140 794-289-551") "551")) +(constraint (= (f "+21 679-740-834") "834")) +(constraint (= (f "+21 679-740-834") "834")) +(constraint (= (f "+21 679-740-834") "834")) +(constraint (= (f "+98 717-997-323") "323")) +(constraint (= (f "+98 717-997-323") "323")) +(constraint (= (f "+98 717-997-323") "323")) +(constraint (= (f "+47 401-100-231") "231")) +(constraint (= (f "+47 401-100-231") "231")) +(constraint (= (f "+47 401-100-231") "231")) +(constraint (= (f "+143 726-462-368") "368")) +(constraint (= (f "+143 726-462-368") "368")) +(constraint (= (f "+143 726-462-368") "368")) +(constraint (= (f "+147 864-005-968") "968")) +(constraint (= (f "+147 864-005-968") "968")) +(constraint (= (f "+147 864-005-968") "968")) +(constraint (= (f "+130 590-757-665") "665")) +(constraint (= (f "+130 590-757-665") "665")) +(constraint (= (f "+130 590-757-665") "665")) +(constraint (= (f "+197 700-858-976") "976")) +(constraint (= (f "+197 700-858-976") "976")) +(constraint (= (f "+197 700-858-976") "976")) +(constraint (= (f "+158 344-541-946") "946")) +(constraint (= (f "+158 344-541-946") "946")) +(constraint (= (f "+158 344-541-946") "946")) +(constraint (= (f "+56 242-901-234") "234")) +(constraint (= (f "+56 242-901-234") "234")) +(constraint (= (f "+56 242-901-234") "234")) +(constraint (= (f "+132 313-075-754") "754")) +(constraint (= (f "+132 313-075-754") "754")) +(constraint (= (f "+132 313-075-754") "754")) +(constraint (= (f "+130 517-953-149") "149")) +(constraint (= (f "+130 517-953-149") "149")) +(constraint (= (f "+130 517-953-149") "149")) +(constraint (= (f "+158 684-878-743") "743")) +(constraint (= (f "+158 684-878-743") "743")) +(constraint (= (f "+158 684-878-743") "743")) +(constraint (= (f "+52 836-582-035") "035")) +(constraint (= (f "+52 836-582-035") "035")) +(constraint (= (f "+52 836-582-035") "035")) +(constraint (= (f "+138 117-484-671") "671")) +(constraint (= (f "+138 117-484-671") "671")) +(constraint (= (f "+138 117-484-671") "671")) +(constraint (= (f "+50 012-148-873") "873")) +(constraint (= (f "+50 012-148-873") "873")) +(constraint (= (f "+50 012-148-873") "873")) +(constraint (= (f "+105 048-919-483") "483")) +(constraint (= (f "+105 048-919-483") "483")) +(constraint (= (f "+105 048-919-483") "483")) +(constraint (= (f "+18 209-851-997") "997")) +(constraint (= (f "+18 209-851-997") "997")) +(constraint (= (f "+18 209-851-997") "997")) +(constraint (= (f "+176 938-056-084") "084")) +(constraint (= (f "+176 938-056-084") "084")) +(constraint (= (f "+176 938-056-084") "084")) +(constraint (= (f "+141 018-132-973") "973")) +(constraint (= (f "+141 018-132-973") "973")) +(constraint (= (f "+141 018-132-973") "973")) +(constraint (= (f "+199 936-162-415") "415")) +(constraint (= (f "+199 936-162-415") "415")) +(constraint (= (f "+199 936-162-415") "415")) +(constraint (= (f "+33 547-051-264") "264")) +(constraint (= (f "+33 547-051-264") "264")) +(constraint (= (f "+33 547-051-264") "264")) +(constraint (= (f "+161 233-981-513") "513")) +(constraint (= (f "+161 233-981-513") "513")) +(constraint (= (f "+161 233-981-513") "513")) +(constraint (= (f "+115 101-728-328") "328")) +(constraint (= (f "+115 101-728-328") "328")) +(constraint (= (f "+115 101-728-328") "328")) +(constraint (= (f "+45 095-746-635") "635")) +(constraint (= (f "+45 095-746-635") "635")) +(constraint (= (f "+45 095-746-635") "635")) +(constraint (= (f "+106 769-858-438") "438")) +(constraint (= (f "+83 973-757-831") "831")) +(constraint (= (f "+62 647-787-775") "775")) +(constraint (= (f "+172 027-507-632") "632")) +(constraint (= (f "+72 001-050-856") "856")) +(constraint (= (f "+95 310-537-401") "401")) +(constraint (= (f "+6 775-969-238") "238")) +(constraint (= (f "+174 594-539-946") "946")) +(constraint (= (f "+155 927-275-860") "860")) +(constraint (= (f "+167 405-461-331") "331")) +(constraint (= (f "+10 538-347-401") "401")) +(constraint (= (f "+60 971-986-103") "103")) +(constraint (= (f "+13 258-276-941") "941")) +(constraint (= (f "+2 604-746-137") "137")) +(constraint (= (f "+25 998-898-180") "180")) +(constraint (= (f "+151 862-946-541") "541")) +(constraint (= (f "+118 165-041-038") "038")) +(constraint (= (f "+144 170-592-272") "272")) +(constraint (= (f "+94 462-008-482") "482")) +(constraint (= (f "+82 685-122-086") "086")) +(constraint (= (f "+82 675-366-472") "472")) +(constraint (= (f "+80 066-433-096") "096")) +(constraint (= (f "+163 039-436-166") "166")) +(constraint (= (f "+138 808-083-074") "074")) +(constraint (= (f "+42 643-245-738") "738")) +(constraint (= (f "+169 822-542-726") "726")) +(constraint (= (f "+176 767-782-369") "369")) +(constraint (= (f "+47 414-369-343") "343")) +(constraint (= (f "+138 885-618-512") "512")) +(constraint (= (f "+104 158-671-355") "355")) +(constraint (= (f "+188 280-087-526") "526")) +(constraint (= (f "+50 268-571-336") "336")) +(constraint (= (f "+183 225-960-024") "024")) +(constraint (= (f "+58 191-982-491") "491")) +(constraint (= (f "+9 507-092-535") "535")) +(constraint (= (f "+64 061-601-398") "398")) +(constraint (= (f "+189 831-591-877") "877")) +(constraint (= (f "+129 425-765-844") "844")) +(constraint (= (f "+94 856-734-046") "046")) +(constraint (= (f "+35 082-845-261") "261")) +(constraint (= (f "+185 394-622-272") "272")) +(constraint (= (f "+163 905-707-740") "740")) +(constraint (= (f "+23 448-213-807") "807")) +(constraint (= (f "+42 634-077-089") "089")) +(constraint (= (f "+18 051-287-382") "382")) +(constraint (= (f "+29 773-545-520") "520")) +(constraint (= (f "+43 249-097-743") "743")) +(constraint (= (f "+158 674-736-891") "891")) +(constraint (= (f "+45 124-771-454") "454")) +(constraint (= (f "+180 029-457-654") "654")) +(constraint (= (f "+75 227-250-652") "652")) +(constraint (= (f "+5 528-317-854") "854")) +(constraint (= (f "+81 849-629-290") "290")) +(constraint (= (f "+46 005-119-176") "176")) +(constraint (= (f "+108 150-380-705") "705")) +(constraint (= (f "+40 122-224-247") "247")) +(constraint (= (f "+68 890-680-027") "027")) +(constraint (= (f "+169 060-204-504") "504")) +(constraint (= (f "+95 620-820-945") "945")) +(constraint (= (f "+43 592-938-846") "846")) +(constraint (= (f "+7 023-296-647") "647")) +(constraint (= (f "+20 541-401-396") "396")) +(constraint (= (f "+64 751-365-934") "934")) +(constraint (= (f "+163 546-119-476") "476")) +(constraint (= (f "+198 557-666-779") "779")) +(constraint (= (f "+14 673-759-017") "017")) +(constraint (= (f "+161 086-020-168") "168")) +(constraint (= (f "+65 970-575-488") "488")) +(constraint (= (f "+2 455-126-377") "377")) +(constraint (= (f "+196 728-585-376") "376")) +(constraint (= (f "+33 117-430-125") "125")) +(constraint (= (f "+195 488-831-768") "768")) +(constraint (= (f "+86 468-718-108") "108")) +(constraint (= (f "+194 278-716-950") "950")) +(constraint (= (f "+43 730-685-847") "847")) +(constraint (= (f "+140 794-289-551") "551")) +(constraint (= (f "+21 679-740-834") "834")) +(constraint (= (f "+98 717-997-323") "323")) +(constraint (= (f "+47 401-100-231") "231")) +(constraint (= (f "+143 726-462-368") "368")) +(constraint (= (f "+147 864-005-968") "968")) +(constraint (= (f "+130 590-757-665") "665")) +(constraint (= (f "+197 700-858-976") "976")) +(constraint (= (f "+158 344-541-946") "946")) +(constraint (= (f "+56 242-901-234") "234")) +(constraint (= (f "+132 313-075-754") "754")) +(constraint (= (f "+130 517-953-149") "149")) +(constraint (= (f "+158 684-878-743") "743")) +(constraint (= (f "+52 836-582-035") "035")) +(constraint (= (f "+138 117-484-671") "671")) +(constraint (= (f "+50 012-148-873") "873")) +(constraint (= (f "+105 048-919-483") "483")) +(constraint (= (f "+18 209-851-997") "997")) +(constraint (= (f "+176 938-056-084") "084")) +(constraint (= (f "+141 018-132-973") "973")) +(constraint (= (f "+199 936-162-415") "415")) +(constraint (= (f "+33 547-051-264") "264")) +(constraint (= (f "+161 233-981-513") "513")) +(constraint (= (f "+115 101-728-328") "328")) +(constraint (= (f "+45 095-746-635") "635")) + +(check-synth) diff --git a/PBE_Strings_Track/phone-8-long.sl b/PBE_Strings_Track/phone-8-long.sl new file mode 100644 index 0000000000000000000000000000000000000000..e91a79decf1a6c31c8b16d75882b5a08b291729c --- /dev/null +++ b/PBE_Strings_Track/phone-8-long.sl @@ -0,0 +1,126 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "+" "-" "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "+106 769-858-438") "438")) +(constraint (= (f "+83 973-757-831") "831")) +(constraint (= (f "+62 647-787-775") "775")) +(constraint (= (f "+172 027-507-632") "632")) +(constraint (= (f "+72 001-050-856") "856")) +(constraint (= (f "+95 310-537-401") "401")) +(constraint (= (f "+6 775-969-238") "238")) +(constraint (= (f "+174 594-539-946") "946")) +(constraint (= (f "+155 927-275-860") "860")) +(constraint (= (f "+167 405-461-331") "331")) +(constraint (= (f "+10 538-347-401") "401")) +(constraint (= (f "+60 971-986-103") "103")) +(constraint (= (f "+13 258-276-941") "941")) +(constraint (= (f "+2 604-746-137") "137")) +(constraint (= (f "+25 998-898-180") "180")) +(constraint (= (f "+151 862-946-541") "541")) +(constraint (= (f "+118 165-041-038") "038")) +(constraint (= (f "+144 170-592-272") "272")) +(constraint (= (f "+94 462-008-482") "482")) +(constraint (= (f "+82 685-122-086") "086")) +(constraint (= (f "+82 675-366-472") "472")) +(constraint (= (f "+80 066-433-096") "096")) +(constraint (= (f "+163 039-436-166") "166")) +(constraint (= (f "+138 808-083-074") "074")) +(constraint (= (f "+42 643-245-738") "738")) +(constraint (= (f "+169 822-542-726") "726")) +(constraint (= (f "+176 767-782-369") "369")) +(constraint (= (f "+47 414-369-343") "343")) +(constraint (= (f "+138 885-618-512") "512")) +(constraint (= (f "+104 158-671-355") "355")) +(constraint (= (f "+188 280-087-526") "526")) +(constraint (= (f "+50 268-571-336") "336")) +(constraint (= (f "+183 225-960-024") "024")) +(constraint (= (f "+58 191-982-491") "491")) +(constraint (= (f "+9 507-092-535") "535")) +(constraint (= (f "+64 061-601-398") "398")) +(constraint (= (f "+189 831-591-877") "877")) +(constraint (= (f "+129 425-765-844") "844")) +(constraint (= (f "+94 856-734-046") "046")) +(constraint (= (f "+35 082-845-261") "261")) +(constraint (= (f "+185 394-622-272") "272")) +(constraint (= (f "+163 905-707-740") "740")) +(constraint (= (f "+23 448-213-807") "807")) +(constraint (= (f "+42 634-077-089") "089")) +(constraint (= (f "+18 051-287-382") "382")) +(constraint (= (f "+29 773-545-520") "520")) +(constraint (= (f "+43 249-097-743") "743")) +(constraint (= (f "+158 674-736-891") "891")) +(constraint (= (f "+45 124-771-454") "454")) +(constraint (= (f "+180 029-457-654") "654")) +(constraint (= (f "+75 227-250-652") "652")) +(constraint (= (f "+5 528-317-854") "854")) +(constraint (= (f "+81 849-629-290") "290")) +(constraint (= (f "+46 005-119-176") "176")) +(constraint (= (f "+108 150-380-705") "705")) +(constraint (= (f "+40 122-224-247") "247")) +(constraint (= (f "+68 890-680-027") "027")) +(constraint (= (f "+169 060-204-504") "504")) +(constraint (= (f "+95 620-820-945") "945")) +(constraint (= (f "+43 592-938-846") "846")) +(constraint (= (f "+7 023-296-647") "647")) +(constraint (= (f "+20 541-401-396") "396")) +(constraint (= (f "+64 751-365-934") "934")) +(constraint (= (f "+163 546-119-476") "476")) +(constraint (= (f "+198 557-666-779") "779")) +(constraint (= (f "+14 673-759-017") "017")) +(constraint (= (f "+161 086-020-168") "168")) +(constraint (= (f "+65 970-575-488") "488")) +(constraint (= (f "+2 455-126-377") "377")) +(constraint (= (f "+196 728-585-376") "376")) +(constraint (= (f "+33 117-430-125") "125")) +(constraint (= (f "+195 488-831-768") "768")) +(constraint (= (f "+86 468-718-108") "108")) +(constraint (= (f "+194 278-716-950") "950")) +(constraint (= (f "+43 730-685-847") "847")) +(constraint (= (f "+140 794-289-551") "551")) +(constraint (= (f "+21 679-740-834") "834")) +(constraint (= (f "+98 717-997-323") "323")) +(constraint (= (f "+47 401-100-231") "231")) +(constraint (= (f "+143 726-462-368") "368")) +(constraint (= (f "+147 864-005-968") "968")) +(constraint (= (f "+130 590-757-665") "665")) +(constraint (= (f "+197 700-858-976") "976")) +(constraint (= (f "+158 344-541-946") "946")) +(constraint (= (f "+56 242-901-234") "234")) +(constraint (= (f "+132 313-075-754") "754")) +(constraint (= (f "+130 517-953-149") "149")) +(constraint (= (f "+158 684-878-743") "743")) +(constraint (= (f "+52 836-582-035") "035")) +(constraint (= (f "+138 117-484-671") "671")) +(constraint (= (f "+50 012-148-873") "873")) +(constraint (= (f "+105 048-919-483") "483")) +(constraint (= (f "+18 209-851-997") "997")) +(constraint (= (f "+176 938-056-084") "084")) +(constraint (= (f "+141 018-132-973") "973")) +(constraint (= (f "+199 936-162-415") "415")) +(constraint (= (f "+33 547-051-264") "264")) +(constraint (= (f "+161 233-981-513") "513")) +(constraint (= (f "+115 101-728-328") "328")) +(constraint (= (f "+45 095-746-635") "635")) + +(check-synth) diff --git a/PBE_Strings_Track/phone-8.sl b/PBE_Strings_Track/phone-8.sl new file mode 100644 index 0000000000000000000000000000000000000000..2a399ae83d7c6ad00e2ccd2bf75f9f5a933d7dd8 --- /dev/null +++ b/PBE_Strings_Track/phone-8.sl @@ -0,0 +1,33 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "+" "-" "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "+106 769-858-438") "438")) +(constraint (= (f "+83 973-757-831") "831")) +(constraint (= (f "+62 647-787-775") "775")) +(constraint (= (f "+172 027-507-632") "632")) +(constraint (= (f "+72 001-050-856") "856")) +(constraint (= (f "+95 310-537-401") "401")) +(constraint (= (f "+6 775-969-238") "238")) + +(check-synth) diff --git a/PBE_Strings_Track/phone-8_short.sl b/PBE_Strings_Track/phone-8_short.sl new file mode 100644 index 0000000000000000000000000000000000000000..38ec23582b2bd050f901a4d437bbd417adc5d4f9 --- /dev/null +++ b/PBE_Strings_Track/phone-8_short.sl @@ -0,0 +1,31 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "+" "-" "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "+106 769-858-438") "438")) +(constraint (= (f "+83 973-757-831") "831")) +(constraint (= (f "+62 647-787-775") "775")) +(constraint (= (f "+172 027-507-632") "632")) +(constraint (= (f "+72 001-050-856") "856")) +(constraint (= (f "+95 310-537-401") "401")) +(constraint (= (f "+6 775-969-238") "238")) + +(check-synth) diff --git a/PBE_Strings_Track/phone-9-long-repeat.sl b/PBE_Strings_Track/phone-9-long-repeat.sl new file mode 100644 index 0000000000000000000000000000000000000000..099e71167f87f4388f23be13fd9e0f7b90f5ad5f --- /dev/null +++ b/PBE_Strings_Track/phone-9-long-repeat.sl @@ -0,0 +1,426 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "+" "-" "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "+106 769-858-438") "106.769.858.438")) +(constraint (= (f "+106 769-858-438") "106.769.858.438")) +(constraint (= (f "+106 769-858-438") "106.769.858.438")) +(constraint (= (f "+83 973-757-831") "83.973.757.831")) +(constraint (= (f "+83 973-757-831") "83.973.757.831")) +(constraint (= (f "+83 973-757-831") "83.973.757.831")) +(constraint (= (f "+62 647-787-775") "62.647.787.775")) +(constraint (= (f "+62 647-787-775") "62.647.787.775")) +(constraint (= (f "+62 647-787-775") "62.647.787.775")) +(constraint (= (f "+172 027-507-632") "172.027.507.632")) +(constraint (= (f "+172 027-507-632") "172.027.507.632")) +(constraint (= (f "+172 027-507-632") "172.027.507.632")) +(constraint (= (f "+72 001-050-856") "72.001.050.856")) +(constraint (= (f "+72 001-050-856") "72.001.050.856")) +(constraint (= (f "+72 001-050-856") "72.001.050.856")) +(constraint (= (f "+95 310-537-401") "95.310.537.401")) +(constraint (= (f "+95 310-537-401") "95.310.537.401")) +(constraint (= (f "+95 310-537-401") "95.310.537.401")) +(constraint (= (f "+6 775-969-238") "6.775.969.238")) +(constraint (= (f "+6 775-969-238") "6.775.969.238")) +(constraint (= (f "+6 775-969-238") "6.775.969.238")) +(constraint (= (f "+174 594-539-946") "174.594.539.946")) +(constraint (= (f "+174 594-539-946") "174.594.539.946")) +(constraint (= (f "+174 594-539-946") "174.594.539.946")) +(constraint (= (f "+155 927-275-860") "155.927.275.860")) +(constraint (= (f "+155 927-275-860") "155.927.275.860")) +(constraint (= (f "+155 927-275-860") "155.927.275.860")) +(constraint (= (f "+167 405-461-331") "167.405.461.331")) +(constraint (= (f "+167 405-461-331") "167.405.461.331")) +(constraint (= (f "+167 405-461-331") "167.405.461.331")) +(constraint (= (f "+10 538-347-401") "10.538.347.401")) +(constraint (= (f "+10 538-347-401") "10.538.347.401")) +(constraint (= (f "+10 538-347-401") "10.538.347.401")) +(constraint (= (f "+60 971-986-103") "60.971.986.103")) +(constraint (= (f "+60 971-986-103") "60.971.986.103")) +(constraint (= (f "+60 971-986-103") "60.971.986.103")) +(constraint (= (f "+13 258-276-941") "13.258.276.941")) +(constraint (= (f "+13 258-276-941") "13.258.276.941")) +(constraint (= (f "+13 258-276-941") "13.258.276.941")) +(constraint (= (f "+2 604-746-137") "2.604.746.137")) +(constraint (= (f "+2 604-746-137") "2.604.746.137")) +(constraint (= (f "+2 604-746-137") "2.604.746.137")) +(constraint (= (f "+25 998-898-180") "25.998.898.180")) +(constraint (= (f "+25 998-898-180") "25.998.898.180")) +(constraint (= (f "+25 998-898-180") "25.998.898.180")) +(constraint (= (f "+151 862-946-541") "151.862.946.541")) +(constraint (= (f "+151 862-946-541") "151.862.946.541")) +(constraint (= (f "+151 862-946-541") "151.862.946.541")) +(constraint (= (f "+118 165-041-038") "118.165.041.038")) +(constraint (= (f "+118 165-041-038") "118.165.041.038")) +(constraint (= (f "+118 165-041-038") "118.165.041.038")) +(constraint (= (f "+144 170-592-272") "144.170.592.272")) +(constraint (= (f "+144 170-592-272") "144.170.592.272")) +(constraint (= (f "+144 170-592-272") "144.170.592.272")) +(constraint (= (f "+94 462-008-482") "94.462.008.482")) +(constraint (= (f "+94 462-008-482") "94.462.008.482")) +(constraint (= (f "+94 462-008-482") "94.462.008.482")) +(constraint (= (f "+82 685-122-086") "82.685.122.086")) +(constraint (= (f "+82 685-122-086") "82.685.122.086")) +(constraint (= (f "+82 685-122-086") "82.685.122.086")) +(constraint (= (f "+82 675-366-472") "82.675.366.472")) +(constraint (= (f "+82 675-366-472") "82.675.366.472")) +(constraint (= (f "+82 675-366-472") "82.675.366.472")) +(constraint (= (f "+80 066-433-096") "80.066.433.096")) +(constraint (= (f "+80 066-433-096") "80.066.433.096")) +(constraint (= (f "+80 066-433-096") "80.066.433.096")) +(constraint (= (f "+163 039-436-166") "163.039.436.166")) +(constraint (= (f "+163 039-436-166") "163.039.436.166")) +(constraint (= (f "+163 039-436-166") "163.039.436.166")) +(constraint (= (f "+138 808-083-074") "138.808.083.074")) +(constraint (= (f "+138 808-083-074") "138.808.083.074")) +(constraint (= (f "+138 808-083-074") "138.808.083.074")) +(constraint (= (f "+42 643-245-738") "42.643.245.738")) +(constraint (= (f "+42 643-245-738") "42.643.245.738")) +(constraint (= (f "+42 643-245-738") "42.643.245.738")) +(constraint (= (f "+169 822-542-726") "169.822.542.726")) +(constraint (= (f "+169 822-542-726") "169.822.542.726")) +(constraint (= (f "+169 822-542-726") "169.822.542.726")) +(constraint (= (f "+176 767-782-369") "176.767.782.369")) +(constraint (= (f "+176 767-782-369") "176.767.782.369")) +(constraint (= (f "+176 767-782-369") "176.767.782.369")) +(constraint (= (f "+47 414-369-343") "47.414.369.343")) +(constraint (= (f "+47 414-369-343") "47.414.369.343")) +(constraint (= (f "+47 414-369-343") "47.414.369.343")) +(constraint (= (f "+138 885-618-512") "138.885.618.512")) +(constraint (= (f "+138 885-618-512") "138.885.618.512")) +(constraint (= (f "+138 885-618-512") "138.885.618.512")) +(constraint (= (f "+104 158-671-355") "104.158.671.355")) +(constraint (= (f "+104 158-671-355") "104.158.671.355")) +(constraint (= (f "+104 158-671-355") "104.158.671.355")) +(constraint (= (f "+188 280-087-526") "188.280.087.526")) +(constraint (= (f "+188 280-087-526") "188.280.087.526")) +(constraint (= (f "+188 280-087-526") "188.280.087.526")) +(constraint (= (f "+50 268-571-336") "50.268.571.336")) +(constraint (= (f "+50 268-571-336") "50.268.571.336")) +(constraint (= (f "+50 268-571-336") "50.268.571.336")) +(constraint (= (f "+183 225-960-024") "183.225.960.024")) +(constraint (= (f "+183 225-960-024") "183.225.960.024")) +(constraint (= (f "+183 225-960-024") "183.225.960.024")) +(constraint (= (f "+58 191-982-491") "58.191.982.491")) +(constraint (= (f "+58 191-982-491") "58.191.982.491")) +(constraint (= (f "+58 191-982-491") "58.191.982.491")) +(constraint (= (f "+9 507-092-535") "9.507.092.535")) +(constraint (= (f "+9 507-092-535") "9.507.092.535")) +(constraint (= (f "+9 507-092-535") "9.507.092.535")) +(constraint (= (f "+64 061-601-398") "64.061.601.398")) +(constraint (= (f "+64 061-601-398") "64.061.601.398")) +(constraint (= (f "+64 061-601-398") "64.061.601.398")) +(constraint (= (f "+189 831-591-877") "189.831.591.877")) +(constraint (= (f "+189 831-591-877") "189.831.591.877")) +(constraint (= (f "+189 831-591-877") "189.831.591.877")) +(constraint (= (f "+129 425-765-844") "129.425.765.844")) +(constraint (= (f "+129 425-765-844") "129.425.765.844")) +(constraint (= (f "+129 425-765-844") "129.425.765.844")) +(constraint (= (f "+94 856-734-046") "94.856.734.046")) +(constraint (= (f "+94 856-734-046") "94.856.734.046")) +(constraint (= (f "+94 856-734-046") "94.856.734.046")) +(constraint (= (f "+35 082-845-261") "35.082.845.261")) +(constraint (= (f "+35 082-845-261") "35.082.845.261")) +(constraint (= (f "+35 082-845-261") "35.082.845.261")) +(constraint (= (f "+185 394-622-272") "185.394.622.272")) +(constraint (= (f "+185 394-622-272") "185.394.622.272")) +(constraint (= (f "+185 394-622-272") "185.394.622.272")) +(constraint (= (f "+163 905-707-740") "163.905.707.740")) +(constraint (= (f "+163 905-707-740") "163.905.707.740")) +(constraint (= (f "+163 905-707-740") "163.905.707.740")) +(constraint (= (f "+23 448-213-807") "23.448.213.807")) +(constraint (= (f "+23 448-213-807") "23.448.213.807")) +(constraint (= (f "+23 448-213-807") "23.448.213.807")) +(constraint (= (f "+42 634-077-089") "42.634.077.089")) +(constraint (= (f "+42 634-077-089") "42.634.077.089")) +(constraint (= (f "+42 634-077-089") "42.634.077.089")) +(constraint (= (f "+18 051-287-382") "18.051.287.382")) +(constraint (= (f "+18 051-287-382") "18.051.287.382")) +(constraint (= (f "+18 051-287-382") "18.051.287.382")) +(constraint (= (f "+29 773-545-520") "29.773.545.520")) +(constraint (= (f "+29 773-545-520") "29.773.545.520")) +(constraint (= (f "+29 773-545-520") "29.773.545.520")) +(constraint (= (f "+43 249-097-743") "43.249.097.743")) +(constraint (= (f "+43 249-097-743") "43.249.097.743")) +(constraint (= (f "+43 249-097-743") "43.249.097.743")) +(constraint (= (f "+158 674-736-891") "158.674.736.891")) +(constraint (= (f "+158 674-736-891") "158.674.736.891")) +(constraint (= (f "+158 674-736-891") "158.674.736.891")) +(constraint (= (f "+45 124-771-454") "45.124.771.454")) +(constraint (= (f "+45 124-771-454") "45.124.771.454")) +(constraint (= (f "+45 124-771-454") "45.124.771.454")) +(constraint (= (f "+180 029-457-654") "180.029.457.654")) +(constraint (= (f "+180 029-457-654") "180.029.457.654")) +(constraint (= (f "+180 029-457-654") "180.029.457.654")) +(constraint (= (f "+75 227-250-652") "75.227.250.652")) +(constraint (= (f "+75 227-250-652") "75.227.250.652")) +(constraint (= (f "+75 227-250-652") "75.227.250.652")) +(constraint (= (f "+5 528-317-854") "5.528.317.854")) +(constraint (= (f "+5 528-317-854") "5.528.317.854")) +(constraint (= (f "+5 528-317-854") "5.528.317.854")) +(constraint (= (f "+81 849-629-290") "81.849.629.290")) +(constraint (= (f "+81 849-629-290") "81.849.629.290")) +(constraint (= (f "+81 849-629-290") "81.849.629.290")) +(constraint (= (f "+46 005-119-176") "46.005.119.176")) +(constraint (= (f "+46 005-119-176") "46.005.119.176")) +(constraint (= (f "+46 005-119-176") "46.005.119.176")) +(constraint (= (f "+108 150-380-705") "108.150.380.705")) +(constraint (= (f "+108 150-380-705") "108.150.380.705")) +(constraint (= (f "+108 150-380-705") "108.150.380.705")) +(constraint (= (f "+40 122-224-247") "40.122.224.247")) +(constraint (= (f "+40 122-224-247") "40.122.224.247")) +(constraint (= (f "+40 122-224-247") "40.122.224.247")) +(constraint (= (f "+68 890-680-027") "68.890.680.027")) +(constraint (= (f "+68 890-680-027") "68.890.680.027")) +(constraint (= (f "+68 890-680-027") "68.890.680.027")) +(constraint (= (f "+169 060-204-504") "169.060.204.504")) +(constraint (= (f "+169 060-204-504") "169.060.204.504")) +(constraint (= (f "+169 060-204-504") "169.060.204.504")) +(constraint (= (f "+95 620-820-945") "95.620.820.945")) +(constraint (= (f "+95 620-820-945") "95.620.820.945")) +(constraint (= (f "+95 620-820-945") "95.620.820.945")) +(constraint (= (f "+43 592-938-846") "43.592.938.846")) +(constraint (= (f "+43 592-938-846") "43.592.938.846")) +(constraint (= (f "+43 592-938-846") "43.592.938.846")) +(constraint (= (f "+7 023-296-647") "7.023.296.647")) +(constraint (= (f "+7 023-296-647") "7.023.296.647")) +(constraint (= (f "+7 023-296-647") "7.023.296.647")) +(constraint (= (f "+20 541-401-396") "20.541.401.396")) +(constraint (= (f "+20 541-401-396") "20.541.401.396")) +(constraint (= (f "+20 541-401-396") "20.541.401.396")) +(constraint (= (f "+64 751-365-934") "64.751.365.934")) +(constraint (= (f "+64 751-365-934") "64.751.365.934")) +(constraint (= (f "+64 751-365-934") "64.751.365.934")) +(constraint (= (f "+163 546-119-476") "163.546.119.476")) +(constraint (= (f "+163 546-119-476") "163.546.119.476")) +(constraint (= (f "+163 546-119-476") "163.546.119.476")) +(constraint (= (f "+198 557-666-779") "198.557.666.779")) +(constraint (= (f "+198 557-666-779") "198.557.666.779")) +(constraint (= (f "+198 557-666-779") "198.557.666.779")) +(constraint (= (f "+14 673-759-017") "14.673.759.017")) +(constraint (= (f "+14 673-759-017") "14.673.759.017")) +(constraint (= (f "+14 673-759-017") "14.673.759.017")) +(constraint (= (f "+161 086-020-168") "161.086.020.168")) +(constraint (= (f "+161 086-020-168") "161.086.020.168")) +(constraint (= (f "+161 086-020-168") "161.086.020.168")) +(constraint (= (f "+65 970-575-488") "65.970.575.488")) +(constraint (= (f "+65 970-575-488") "65.970.575.488")) +(constraint (= (f "+65 970-575-488") "65.970.575.488")) +(constraint (= (f "+2 455-126-377") "2.455.126.377")) +(constraint (= (f "+2 455-126-377") "2.455.126.377")) +(constraint (= (f "+2 455-126-377") "2.455.126.377")) +(constraint (= (f "+196 728-585-376") "196.728.585.376")) +(constraint (= (f "+196 728-585-376") "196.728.585.376")) +(constraint (= (f "+196 728-585-376") "196.728.585.376")) +(constraint (= (f "+33 117-430-125") "33.117.430.125")) +(constraint (= (f "+33 117-430-125") "33.117.430.125")) +(constraint (= (f "+33 117-430-125") "33.117.430.125")) +(constraint (= (f "+195 488-831-768") "195.488.831.768")) +(constraint (= (f "+195 488-831-768") "195.488.831.768")) +(constraint (= (f "+195 488-831-768") "195.488.831.768")) +(constraint (= (f "+86 468-718-108") "86.468.718.108")) +(constraint (= (f "+86 468-718-108") "86.468.718.108")) +(constraint (= (f "+86 468-718-108") "86.468.718.108")) +(constraint (= (f "+194 278-716-950") "194.278.716.950")) +(constraint (= (f "+194 278-716-950") "194.278.716.950")) +(constraint (= (f "+194 278-716-950") "194.278.716.950")) +(constraint (= (f "+43 730-685-847") "43.730.685.847")) +(constraint (= (f "+43 730-685-847") "43.730.685.847")) +(constraint (= (f "+43 730-685-847") "43.730.685.847")) +(constraint (= (f "+140 794-289-551") "140.794.289.551")) +(constraint (= (f "+140 794-289-551") "140.794.289.551")) +(constraint (= (f "+140 794-289-551") "140.794.289.551")) +(constraint (= (f "+21 679-740-834") "21.679.740.834")) +(constraint (= (f "+21 679-740-834") "21.679.740.834")) +(constraint (= (f "+21 679-740-834") "21.679.740.834")) +(constraint (= (f "+98 717-997-323") "98.717.997.323")) +(constraint (= (f "+98 717-997-323") "98.717.997.323")) +(constraint (= (f "+98 717-997-323") "98.717.997.323")) +(constraint (= (f "+47 401-100-231") "47.401.100.231")) +(constraint (= (f "+47 401-100-231") "47.401.100.231")) +(constraint (= (f "+47 401-100-231") "47.401.100.231")) +(constraint (= (f "+143 726-462-368") "143.726.462.368")) +(constraint (= (f "+143 726-462-368") "143.726.462.368")) +(constraint (= (f "+143 726-462-368") "143.726.462.368")) +(constraint (= (f "+147 864-005-968") "147.864.005.968")) +(constraint (= (f "+147 864-005-968") "147.864.005.968")) +(constraint (= (f "+147 864-005-968") "147.864.005.968")) +(constraint (= (f "+130 590-757-665") "130.590.757.665")) +(constraint (= (f "+130 590-757-665") "130.590.757.665")) +(constraint (= (f "+130 590-757-665") "130.590.757.665")) +(constraint (= (f "+197 700-858-976") "197.700.858.976")) +(constraint (= (f "+197 700-858-976") "197.700.858.976")) +(constraint (= (f "+197 700-858-976") "197.700.858.976")) +(constraint (= (f "+158 344-541-946") "158.344.541.946")) +(constraint (= (f "+158 344-541-946") "158.344.541.946")) +(constraint (= (f "+158 344-541-946") "158.344.541.946")) +(constraint (= (f "+56 242-901-234") "56.242.901.234")) +(constraint (= (f "+56 242-901-234") "56.242.901.234")) +(constraint (= (f "+56 242-901-234") "56.242.901.234")) +(constraint (= (f "+132 313-075-754") "132.313.075.754")) +(constraint (= (f "+132 313-075-754") "132.313.075.754")) +(constraint (= (f "+132 313-075-754") "132.313.075.754")) +(constraint (= (f "+130 517-953-149") "130.517.953.149")) +(constraint (= (f "+130 517-953-149") "130.517.953.149")) +(constraint (= (f "+130 517-953-149") "130.517.953.149")) +(constraint (= (f "+158 684-878-743") "158.684.878.743")) +(constraint (= (f "+158 684-878-743") "158.684.878.743")) +(constraint (= (f "+158 684-878-743") "158.684.878.743")) +(constraint (= (f "+52 836-582-035") "52.836.582.035")) +(constraint (= (f "+52 836-582-035") "52.836.582.035")) +(constraint (= (f "+52 836-582-035") "52.836.582.035")) +(constraint (= (f "+138 117-484-671") "138.117.484.671")) +(constraint (= (f "+138 117-484-671") "138.117.484.671")) +(constraint (= (f "+138 117-484-671") "138.117.484.671")) +(constraint (= (f "+50 012-148-873") "50.012.148.873")) +(constraint (= (f "+50 012-148-873") "50.012.148.873")) +(constraint (= (f "+50 012-148-873") "50.012.148.873")) +(constraint (= (f "+105 048-919-483") "105.048.919.483")) +(constraint (= (f "+105 048-919-483") "105.048.919.483")) +(constraint (= (f "+105 048-919-483") "105.048.919.483")) +(constraint (= (f "+18 209-851-997") "18.209.851.997")) +(constraint (= (f "+18 209-851-997") "18.209.851.997")) +(constraint (= (f "+18 209-851-997") "18.209.851.997")) +(constraint (= (f "+176 938-056-084") "176.938.056.084")) +(constraint (= (f "+176 938-056-084") "176.938.056.084")) +(constraint (= (f "+176 938-056-084") "176.938.056.084")) +(constraint (= (f "+141 018-132-973") "141.018.132.973")) +(constraint (= (f "+141 018-132-973") "141.018.132.973")) +(constraint (= (f "+141 018-132-973") "141.018.132.973")) +(constraint (= (f "+199 936-162-415") "199.936.162.415")) +(constraint (= (f "+199 936-162-415") "199.936.162.415")) +(constraint (= (f "+199 936-162-415") "199.936.162.415")) +(constraint (= (f "+33 547-051-264") "33.547.051.264")) +(constraint (= (f "+33 547-051-264") "33.547.051.264")) +(constraint (= (f "+33 547-051-264") "33.547.051.264")) +(constraint (= (f "+161 233-981-513") "161.233.981.513")) +(constraint (= (f "+161 233-981-513") "161.233.981.513")) +(constraint (= (f "+161 233-981-513") "161.233.981.513")) +(constraint (= (f "+115 101-728-328") "115.101.728.328")) +(constraint (= (f "+115 101-728-328") "115.101.728.328")) +(constraint (= (f "+115 101-728-328") "115.101.728.328")) +(constraint (= (f "+45 095-746-635") "45.095.746.635")) +(constraint (= (f "+45 095-746-635") "45.095.746.635")) +(constraint (= (f "+45 095-746-635") "45.095.746.635")) +(constraint (= (f "+106 769-858-438") "106.769.858.438")) +(constraint (= (f "+83 973-757-831") "83.973.757.831")) +(constraint (= (f "+62 647-787-775") "62.647.787.775")) +(constraint (= (f "+172 027-507-632") "172.027.507.632")) +(constraint (= (f "+72 001-050-856") "72.001.050.856")) +(constraint (= (f "+95 310-537-401") "95.310.537.401")) +(constraint (= (f "+6 775-969-238") "6.775.969.238")) +(constraint (= (f "+174 594-539-946") "174.594.539.946")) +(constraint (= (f "+155 927-275-860") "155.927.275.860")) +(constraint (= (f "+167 405-461-331") "167.405.461.331")) +(constraint (= (f "+10 538-347-401") "10.538.347.401")) +(constraint (= (f "+60 971-986-103") "60.971.986.103")) +(constraint (= (f "+13 258-276-941") "13.258.276.941")) +(constraint (= (f "+2 604-746-137") "2.604.746.137")) +(constraint (= (f "+25 998-898-180") "25.998.898.180")) +(constraint (= (f "+151 862-946-541") "151.862.946.541")) +(constraint (= (f "+118 165-041-038") "118.165.041.038")) +(constraint (= (f "+144 170-592-272") "144.170.592.272")) +(constraint (= (f "+94 462-008-482") "94.462.008.482")) +(constraint (= (f "+82 685-122-086") "82.685.122.086")) +(constraint (= (f "+82 675-366-472") "82.675.366.472")) +(constraint (= (f "+80 066-433-096") "80.066.433.096")) +(constraint (= (f "+163 039-436-166") "163.039.436.166")) +(constraint (= (f "+138 808-083-074") "138.808.083.074")) +(constraint (= (f "+42 643-245-738") "42.643.245.738")) +(constraint (= (f "+169 822-542-726") "169.822.542.726")) +(constraint (= (f "+176 767-782-369") "176.767.782.369")) +(constraint (= (f "+47 414-369-343") "47.414.369.343")) +(constraint (= (f "+138 885-618-512") "138.885.618.512")) +(constraint (= (f "+104 158-671-355") "104.158.671.355")) +(constraint (= (f "+188 280-087-526") "188.280.087.526")) +(constraint (= (f "+50 268-571-336") "50.268.571.336")) +(constraint (= (f "+183 225-960-024") "183.225.960.024")) +(constraint (= (f "+58 191-982-491") "58.191.982.491")) +(constraint (= (f "+9 507-092-535") "9.507.092.535")) +(constraint (= (f "+64 061-601-398") "64.061.601.398")) +(constraint (= (f "+189 831-591-877") "189.831.591.877")) +(constraint (= (f "+129 425-765-844") "129.425.765.844")) +(constraint (= (f "+94 856-734-046") "94.856.734.046")) +(constraint (= (f "+35 082-845-261") "35.082.845.261")) +(constraint (= (f "+185 394-622-272") "185.394.622.272")) +(constraint (= (f "+163 905-707-740") "163.905.707.740")) +(constraint (= (f "+23 448-213-807") "23.448.213.807")) +(constraint (= (f "+42 634-077-089") "42.634.077.089")) +(constraint (= (f "+18 051-287-382") "18.051.287.382")) +(constraint (= (f "+29 773-545-520") "29.773.545.520")) +(constraint (= (f "+43 249-097-743") "43.249.097.743")) +(constraint (= (f "+158 674-736-891") "158.674.736.891")) +(constraint (= (f "+45 124-771-454") "45.124.771.454")) +(constraint (= (f "+180 029-457-654") "180.029.457.654")) +(constraint (= (f "+75 227-250-652") "75.227.250.652")) +(constraint (= (f "+5 528-317-854") "5.528.317.854")) +(constraint (= (f "+81 849-629-290") "81.849.629.290")) +(constraint (= (f "+46 005-119-176") "46.005.119.176")) +(constraint (= (f "+108 150-380-705") "108.150.380.705")) +(constraint (= (f "+40 122-224-247") "40.122.224.247")) +(constraint (= (f "+68 890-680-027") "68.890.680.027")) +(constraint (= (f "+169 060-204-504") "169.060.204.504")) +(constraint (= (f "+95 620-820-945") "95.620.820.945")) +(constraint (= (f "+43 592-938-846") "43.592.938.846")) +(constraint (= (f "+7 023-296-647") "7.023.296.647")) +(constraint (= (f "+20 541-401-396") "20.541.401.396")) +(constraint (= (f "+64 751-365-934") "64.751.365.934")) +(constraint (= (f "+163 546-119-476") "163.546.119.476")) +(constraint (= (f "+198 557-666-779") "198.557.666.779")) +(constraint (= (f "+14 673-759-017") "14.673.759.017")) +(constraint (= (f "+161 086-020-168") "161.086.020.168")) +(constraint (= (f "+65 970-575-488") "65.970.575.488")) +(constraint (= (f "+2 455-126-377") "2.455.126.377")) +(constraint (= (f "+196 728-585-376") "196.728.585.376")) +(constraint (= (f "+33 117-430-125") "33.117.430.125")) +(constraint (= (f "+195 488-831-768") "195.488.831.768")) +(constraint (= (f "+86 468-718-108") "86.468.718.108")) +(constraint (= (f "+194 278-716-950") "194.278.716.950")) +(constraint (= (f "+43 730-685-847") "43.730.685.847")) +(constraint (= (f "+140 794-289-551") "140.794.289.551")) +(constraint (= (f "+21 679-740-834") "21.679.740.834")) +(constraint (= (f "+98 717-997-323") "98.717.997.323")) +(constraint (= (f "+47 401-100-231") "47.401.100.231")) +(constraint (= (f "+143 726-462-368") "143.726.462.368")) +(constraint (= (f "+147 864-005-968") "147.864.005.968")) +(constraint (= (f "+130 590-757-665") "130.590.757.665")) +(constraint (= (f "+197 700-858-976") "197.700.858.976")) +(constraint (= (f "+158 344-541-946") "158.344.541.946")) +(constraint (= (f "+56 242-901-234") "56.242.901.234")) +(constraint (= (f "+132 313-075-754") "132.313.075.754")) +(constraint (= (f "+130 517-953-149") "130.517.953.149")) +(constraint (= (f "+158 684-878-743") "158.684.878.743")) +(constraint (= (f "+52 836-582-035") "52.836.582.035")) +(constraint (= (f "+138 117-484-671") "138.117.484.671")) +(constraint (= (f "+50 012-148-873") "50.012.148.873")) +(constraint (= (f "+105 048-919-483") "105.048.919.483")) +(constraint (= (f "+18 209-851-997") "18.209.851.997")) +(constraint (= (f "+176 938-056-084") "176.938.056.084")) +(constraint (= (f "+141 018-132-973") "141.018.132.973")) +(constraint (= (f "+199 936-162-415") "199.936.162.415")) +(constraint (= (f "+33 547-051-264") "33.547.051.264")) +(constraint (= (f "+161 233-981-513") "161.233.981.513")) +(constraint (= (f "+115 101-728-328") "115.101.728.328")) +(constraint (= (f "+45 095-746-635") "45.095.746.635")) + +(check-synth) diff --git a/PBE_Strings_Track/phone-9-long.sl b/PBE_Strings_Track/phone-9-long.sl new file mode 100644 index 0000000000000000000000000000000000000000..766e875f5c4605002b5db1d9922e9f39fcb7df1b --- /dev/null +++ b/PBE_Strings_Track/phone-9-long.sl @@ -0,0 +1,126 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "+" "-" "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "+106 769-858-438") "106.769.858.438")) +(constraint (= (f "+83 973-757-831") "83.973.757.831")) +(constraint (= (f "+62 647-787-775") "62.647.787.775")) +(constraint (= (f "+172 027-507-632") "172.027.507.632")) +(constraint (= (f "+72 001-050-856") "72.001.050.856")) +(constraint (= (f "+95 310-537-401") "95.310.537.401")) +(constraint (= (f "+6 775-969-238") "6.775.969.238")) +(constraint (= (f "+174 594-539-946") "174.594.539.946")) +(constraint (= (f "+155 927-275-860") "155.927.275.860")) +(constraint (= (f "+167 405-461-331") "167.405.461.331")) +(constraint (= (f "+10 538-347-401") "10.538.347.401")) +(constraint (= (f "+60 971-986-103") "60.971.986.103")) +(constraint (= (f "+13 258-276-941") "13.258.276.941")) +(constraint (= (f "+2 604-746-137") "2.604.746.137")) +(constraint (= (f "+25 998-898-180") "25.998.898.180")) +(constraint (= (f "+151 862-946-541") "151.862.946.541")) +(constraint (= (f "+118 165-041-038") "118.165.041.038")) +(constraint (= (f "+144 170-592-272") "144.170.592.272")) +(constraint (= (f "+94 462-008-482") "94.462.008.482")) +(constraint (= (f "+82 685-122-086") "82.685.122.086")) +(constraint (= (f "+82 675-366-472") "82.675.366.472")) +(constraint (= (f "+80 066-433-096") "80.066.433.096")) +(constraint (= (f "+163 039-436-166") "163.039.436.166")) +(constraint (= (f "+138 808-083-074") "138.808.083.074")) +(constraint (= (f "+42 643-245-738") "42.643.245.738")) +(constraint (= (f "+169 822-542-726") "169.822.542.726")) +(constraint (= (f "+176 767-782-369") "176.767.782.369")) +(constraint (= (f "+47 414-369-343") "47.414.369.343")) +(constraint (= (f "+138 885-618-512") "138.885.618.512")) +(constraint (= (f "+104 158-671-355") "104.158.671.355")) +(constraint (= (f "+188 280-087-526") "188.280.087.526")) +(constraint (= (f "+50 268-571-336") "50.268.571.336")) +(constraint (= (f "+183 225-960-024") "183.225.960.024")) +(constraint (= (f "+58 191-982-491") "58.191.982.491")) +(constraint (= (f "+9 507-092-535") "9.507.092.535")) +(constraint (= (f "+64 061-601-398") "64.061.601.398")) +(constraint (= (f "+189 831-591-877") "189.831.591.877")) +(constraint (= (f "+129 425-765-844") "129.425.765.844")) +(constraint (= (f "+94 856-734-046") "94.856.734.046")) +(constraint (= (f "+35 082-845-261") "35.082.845.261")) +(constraint (= (f "+185 394-622-272") "185.394.622.272")) +(constraint (= (f "+163 905-707-740") "163.905.707.740")) +(constraint (= (f "+23 448-213-807") "23.448.213.807")) +(constraint (= (f "+42 634-077-089") "42.634.077.089")) +(constraint (= (f "+18 051-287-382") "18.051.287.382")) +(constraint (= (f "+29 773-545-520") "29.773.545.520")) +(constraint (= (f "+43 249-097-743") "43.249.097.743")) +(constraint (= (f "+158 674-736-891") "158.674.736.891")) +(constraint (= (f "+45 124-771-454") "45.124.771.454")) +(constraint (= (f "+180 029-457-654") "180.029.457.654")) +(constraint (= (f "+75 227-250-652") "75.227.250.652")) +(constraint (= (f "+5 528-317-854") "5.528.317.854")) +(constraint (= (f "+81 849-629-290") "81.849.629.290")) +(constraint (= (f "+46 005-119-176") "46.005.119.176")) +(constraint (= (f "+108 150-380-705") "108.150.380.705")) +(constraint (= (f "+40 122-224-247") "40.122.224.247")) +(constraint (= (f "+68 890-680-027") "68.890.680.027")) +(constraint (= (f "+169 060-204-504") "169.060.204.504")) +(constraint (= (f "+95 620-820-945") "95.620.820.945")) +(constraint (= (f "+43 592-938-846") "43.592.938.846")) +(constraint (= (f "+7 023-296-647") "7.023.296.647")) +(constraint (= (f "+20 541-401-396") "20.541.401.396")) +(constraint (= (f "+64 751-365-934") "64.751.365.934")) +(constraint (= (f "+163 546-119-476") "163.546.119.476")) +(constraint (= (f "+198 557-666-779") "198.557.666.779")) +(constraint (= (f "+14 673-759-017") "14.673.759.017")) +(constraint (= (f "+161 086-020-168") "161.086.020.168")) +(constraint (= (f "+65 970-575-488") "65.970.575.488")) +(constraint (= (f "+2 455-126-377") "2.455.126.377")) +(constraint (= (f "+196 728-585-376") "196.728.585.376")) +(constraint (= (f "+33 117-430-125") "33.117.430.125")) +(constraint (= (f "+195 488-831-768") "195.488.831.768")) +(constraint (= (f "+86 468-718-108") "86.468.718.108")) +(constraint (= (f "+194 278-716-950") "194.278.716.950")) +(constraint (= (f "+43 730-685-847") "43.730.685.847")) +(constraint (= (f "+140 794-289-551") "140.794.289.551")) +(constraint (= (f "+21 679-740-834") "21.679.740.834")) +(constraint (= (f "+98 717-997-323") "98.717.997.323")) +(constraint (= (f "+47 401-100-231") "47.401.100.231")) +(constraint (= (f "+143 726-462-368") "143.726.462.368")) +(constraint (= (f "+147 864-005-968") "147.864.005.968")) +(constraint (= (f "+130 590-757-665") "130.590.757.665")) +(constraint (= (f "+197 700-858-976") "197.700.858.976")) +(constraint (= (f "+158 344-541-946") "158.344.541.946")) +(constraint (= (f "+56 242-901-234") "56.242.901.234")) +(constraint (= (f "+132 313-075-754") "132.313.075.754")) +(constraint (= (f "+130 517-953-149") "130.517.953.149")) +(constraint (= (f "+158 684-878-743") "158.684.878.743")) +(constraint (= (f "+52 836-582-035") "52.836.582.035")) +(constraint (= (f "+138 117-484-671") "138.117.484.671")) +(constraint (= (f "+50 012-148-873") "50.012.148.873")) +(constraint (= (f "+105 048-919-483") "105.048.919.483")) +(constraint (= (f "+18 209-851-997") "18.209.851.997")) +(constraint (= (f "+176 938-056-084") "176.938.056.084")) +(constraint (= (f "+141 018-132-973") "141.018.132.973")) +(constraint (= (f "+199 936-162-415") "199.936.162.415")) +(constraint (= (f "+33 547-051-264") "33.547.051.264")) +(constraint (= (f "+161 233-981-513") "161.233.981.513")) +(constraint (= (f "+115 101-728-328") "115.101.728.328")) +(constraint (= (f "+45 095-746-635") "45.095.746.635")) + +(check-synth) diff --git a/PBE_Strings_Track/phone-9.sl b/PBE_Strings_Track/phone-9.sl new file mode 100644 index 0000000000000000000000000000000000000000..8ce1d13f9db277152ad37008e6e3589c6ae9c547 --- /dev/null +++ b/PBE_Strings_Track/phone-9.sl @@ -0,0 +1,33 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "+" "-" "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "+106 769-858-438") "106.769.858.438")) +(constraint (= (f "+83 973-757-831") "83.973.757.831")) +(constraint (= (f "+62 647-787-775") "62.647.787.775")) +(constraint (= (f "+172 027-507-632") "172.027.507.632")) +(constraint (= (f "+72 001-050-856") "72.001.050.856")) +(constraint (= (f "+95 310-537-401") "95.310.537.401")) +(constraint (= (f "+6 775-969-238") "6.775.969.238")) + +(check-synth) diff --git a/PBE_Strings_Track/phone-9_short.sl b/PBE_Strings_Track/phone-9_short.sl new file mode 100644 index 0000000000000000000000000000000000000000..23b008d50bbac9a8a650996cbc8c60755648b867 --- /dev/null +++ b/PBE_Strings_Track/phone-9_short.sl @@ -0,0 +1,31 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "+" "-" "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "+106 769-858-438") "106.769.858.438")) +(constraint (= (f "+83 973-757-831") "83.973.757.831")) +(constraint (= (f "+62 647-787-775") "62.647.787.775")) +(constraint (= (f "+172 027-507-632") "172.027.507.632")) +(constraint (= (f "+72 001-050-856") "72.001.050.856")) +(constraint (= (f "+95 310-537-401") "95.310.537.401")) +(constraint (= (f "+6 775-969-238") "6.775.969.238")) + +(check-synth) diff --git a/PBE_Strings_Track/phone-long-repeat.sl b/PBE_Strings_Track/phone-long-repeat.sl new file mode 100644 index 0000000000000000000000000000000000000000..2bcba48e4480d0829c982b75d7d37c34ca6ebbf7 --- /dev/null +++ b/PBE_Strings_Track/phone-long-repeat.sl @@ -0,0 +1,426 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "938-242-504") "938")) +(constraint (= (f "938-242-504") "938")) +(constraint (= (f "938-242-504") "938")) +(constraint (= (f "308-916-545") "308")) +(constraint (= (f "308-916-545") "308")) +(constraint (= (f "308-916-545") "308")) +(constraint (= (f "623-599-749") "623")) +(constraint (= (f "623-599-749") "623")) +(constraint (= (f "623-599-749") "623")) +(constraint (= (f "981-424-843") "981")) +(constraint (= (f "981-424-843") "981")) +(constraint (= (f "981-424-843") "981")) +(constraint (= (f "118-980-214") "118")) +(constraint (= (f "118-980-214") "118")) +(constraint (= (f "118-980-214") "118")) +(constraint (= (f "244-655-094") "244")) +(constraint (= (f "244-655-094") "244")) +(constraint (= (f "244-655-094") "244")) +(constraint (= (f "830-941-991") "830")) +(constraint (= (f "830-941-991") "830")) +(constraint (= (f "830-941-991") "830")) +(constraint (= (f "911-186-562") "911")) +(constraint (= (f "911-186-562") "911")) +(constraint (= (f "911-186-562") "911")) +(constraint (= (f "002-500-200") "002")) +(constraint (= (f "002-500-200") "002")) +(constraint (= (f "002-500-200") "002")) +(constraint (= (f "113-860-034") "113")) +(constraint (= (f "113-860-034") "113")) +(constraint (= (f "113-860-034") "113")) +(constraint (= (f "457-622-959") "457")) +(constraint (= (f "457-622-959") "457")) +(constraint (= (f "457-622-959") "457")) +(constraint (= (f "986-722-311") "986")) +(constraint (= (f "986-722-311") "986")) +(constraint (= (f "986-722-311") "986")) +(constraint (= (f "110-170-771") "110")) +(constraint (= (f "110-170-771") "110")) +(constraint (= (f "110-170-771") "110")) +(constraint (= (f "469-610-118") "469")) +(constraint (= (f "469-610-118") "469")) +(constraint (= (f "469-610-118") "469")) +(constraint (= (f "817-925-247") "817")) +(constraint (= (f "817-925-247") "817")) +(constraint (= (f "817-925-247") "817")) +(constraint (= (f "256-899-439") "256")) +(constraint (= (f "256-899-439") "256")) +(constraint (= (f "256-899-439") "256")) +(constraint (= (f "886-911-726") "886")) +(constraint (= (f "886-911-726") "886")) +(constraint (= (f "886-911-726") "886")) +(constraint (= (f "562-950-358") "562")) +(constraint (= (f "562-950-358") "562")) +(constraint (= (f "562-950-358") "562")) +(constraint (= (f "693-049-588") "693")) +(constraint (= (f "693-049-588") "693")) +(constraint (= (f "693-049-588") "693")) +(constraint (= (f "840-503-234") "840")) +(constraint (= (f "840-503-234") "840")) +(constraint (= (f "840-503-234") "840")) +(constraint (= (f "698-815-340") "698")) +(constraint (= (f "698-815-340") "698")) +(constraint (= (f "698-815-340") "698")) +(constraint (= (f "498-808-434") "498")) +(constraint (= (f "498-808-434") "498")) +(constraint (= (f "498-808-434") "498")) +(constraint (= (f "329-545-000") "329")) +(constraint (= (f "329-545-000") "329")) +(constraint (= (f "329-545-000") "329")) +(constraint (= (f "380-281-597") "380")) +(constraint (= (f "380-281-597") "380")) +(constraint (= (f "380-281-597") "380")) +(constraint (= (f "332-395-493") "332")) +(constraint (= (f "332-395-493") "332")) +(constraint (= (f "332-395-493") "332")) +(constraint (= (f "251-903-028") "251")) +(constraint (= (f "251-903-028") "251")) +(constraint (= (f "251-903-028") "251")) +(constraint (= (f "176-090-894") "176")) +(constraint (= (f "176-090-894") "176")) +(constraint (= (f "176-090-894") "176")) +(constraint (= (f "336-611-100") "336")) +(constraint (= (f "336-611-100") "336")) +(constraint (= (f "336-611-100") "336")) +(constraint (= (f "416-390-647") "416")) +(constraint (= (f "416-390-647") "416")) +(constraint (= (f "416-390-647") "416")) +(constraint (= (f "019-430-596") "019")) +(constraint (= (f "019-430-596") "019")) +(constraint (= (f "019-430-596") "019")) +(constraint (= (f "960-659-771") "960")) +(constraint (= (f "960-659-771") "960")) +(constraint (= (f "960-659-771") "960")) +(constraint (= (f "475-505-007") "475")) +(constraint (= (f "475-505-007") "475")) +(constraint (= (f "475-505-007") "475")) +(constraint (= (f "424-069-886") "424")) +(constraint (= (f "424-069-886") "424")) +(constraint (= (f "424-069-886") "424")) +(constraint (= (f "941-102-117") "941")) +(constraint (= (f "941-102-117") "941")) +(constraint (= (f "941-102-117") "941")) +(constraint (= (f "331-728-008") "331")) +(constraint (= (f "331-728-008") "331")) +(constraint (= (f "331-728-008") "331")) +(constraint (= (f "487-726-198") "487")) +(constraint (= (f "487-726-198") "487")) +(constraint (= (f "487-726-198") "487")) +(constraint (= (f "612-419-942") "612")) +(constraint (= (f "612-419-942") "612")) +(constraint (= (f "612-419-942") "612")) +(constraint (= (f "594-741-346") "594")) +(constraint (= (f "594-741-346") "594")) +(constraint (= (f "594-741-346") "594")) +(constraint (= (f "320-984-742") "320")) +(constraint (= (f "320-984-742") "320")) +(constraint (= (f "320-984-742") "320")) +(constraint (= (f "060-919-361") "060")) +(constraint (= (f "060-919-361") "060")) +(constraint (= (f "060-919-361") "060")) +(constraint (= (f "275-536-998") "275")) +(constraint (= (f "275-536-998") "275")) +(constraint (= (f "275-536-998") "275")) +(constraint (= (f "548-835-065") "548")) +(constraint (= (f "548-835-065") "548")) +(constraint (= (f "548-835-065") "548")) +(constraint (= (f "197-485-507") "197")) +(constraint (= (f "197-485-507") "197")) +(constraint (= (f "197-485-507") "197")) +(constraint (= (f "455-776-949") "455")) +(constraint (= (f "455-776-949") "455")) +(constraint (= (f "455-776-949") "455")) +(constraint (= (f "085-421-340") "085")) +(constraint (= (f "085-421-340") "085")) +(constraint (= (f "085-421-340") "085")) +(constraint (= (f "785-713-099") "785")) +(constraint (= (f "785-713-099") "785")) +(constraint (= (f "785-713-099") "785")) +(constraint (= (f "426-712-861") "426")) +(constraint (= (f "426-712-861") "426")) +(constraint (= (f "426-712-861") "426")) +(constraint (= (f "386-994-906") "386")) +(constraint (= (f "386-994-906") "386")) +(constraint (= (f "386-994-906") "386")) +(constraint (= (f "918-304-840") "918")) +(constraint (= (f "918-304-840") "918")) +(constraint (= (f "918-304-840") "918")) +(constraint (= (f "247-153-598") "247")) +(constraint (= (f "247-153-598") "247")) +(constraint (= (f "247-153-598") "247")) +(constraint (= (f "075-497-069") "075")) +(constraint (= (f "075-497-069") "075")) +(constraint (= (f "075-497-069") "075")) +(constraint (= (f "140-726-583") "140")) +(constraint (= (f "140-726-583") "140")) +(constraint (= (f "140-726-583") "140")) +(constraint (= (f "049-413-248") "049")) +(constraint (= (f "049-413-248") "049")) +(constraint (= (f "049-413-248") "049")) +(constraint (= (f "977-386-462") "977")) +(constraint (= (f "977-386-462") "977")) +(constraint (= (f "977-386-462") "977")) +(constraint (= (f "058-272-455") "058")) +(constraint (= (f "058-272-455") "058")) +(constraint (= (f "058-272-455") "058")) +(constraint (= (f "428-629-927") "428")) +(constraint (= (f "428-629-927") "428")) +(constraint (= (f "428-629-927") "428")) +(constraint (= (f "449-122-191") "449")) +(constraint (= (f "449-122-191") "449")) +(constraint (= (f "449-122-191") "449")) +(constraint (= (f "568-759-670") "568")) +(constraint (= (f "568-759-670") "568")) +(constraint (= (f "568-759-670") "568")) +(constraint (= (f "312-846-053") "312")) +(constraint (= (f "312-846-053") "312")) +(constraint (= (f "312-846-053") "312")) +(constraint (= (f "943-037-297") "943")) +(constraint (= (f "943-037-297") "943")) +(constraint (= (f "943-037-297") "943")) +(constraint (= (f "014-270-177") "014")) +(constraint (= (f "014-270-177") "014")) +(constraint (= (f "014-270-177") "014")) +(constraint (= (f "658-877-878") "658")) +(constraint (= (f "658-877-878") "658")) +(constraint (= (f "658-877-878") "658")) +(constraint (= (f "888-594-038") "888")) +(constraint (= (f "888-594-038") "888")) +(constraint (= (f "888-594-038") "888")) +(constraint (= (f "232-253-254") "232")) +(constraint (= (f "232-253-254") "232")) +(constraint (= (f "232-253-254") "232")) +(constraint (= (f "308-722-292") "308")) +(constraint (= (f "308-722-292") "308")) +(constraint (= (f "308-722-292") "308")) +(constraint (= (f "342-145-742") "342")) +(constraint (= (f "342-145-742") "342")) +(constraint (= (f "342-145-742") "342")) +(constraint (= (f "568-181-515") "568")) +(constraint (= (f "568-181-515") "568")) +(constraint (= (f "568-181-515") "568")) +(constraint (= (f "300-140-756") "300")) +(constraint (= (f "300-140-756") "300")) +(constraint (= (f "300-140-756") "300")) +(constraint (= (f "099-684-216") "099")) +(constraint (= (f "099-684-216") "099")) +(constraint (= (f "099-684-216") "099")) +(constraint (= (f "575-296-621") "575")) +(constraint (= (f "575-296-621") "575")) +(constraint (= (f "575-296-621") "575")) +(constraint (= (f "994-443-794") "994")) +(constraint (= (f "994-443-794") "994")) +(constraint (= (f "994-443-794") "994")) +(constraint (= (f "400-334-692") "400")) +(constraint (= (f "400-334-692") "400")) +(constraint (= (f "400-334-692") "400")) +(constraint (= (f "684-711-883") "684")) +(constraint (= (f "684-711-883") "684")) +(constraint (= (f "684-711-883") "684")) +(constraint (= (f "539-636-358") "539")) +(constraint (= (f "539-636-358") "539")) +(constraint (= (f "539-636-358") "539")) +(constraint (= (f "009-878-919") "009")) +(constraint (= (f "009-878-919") "009")) +(constraint (= (f "009-878-919") "009")) +(constraint (= (f "919-545-701") "919")) +(constraint (= (f "919-545-701") "919")) +(constraint (= (f "919-545-701") "919")) +(constraint (= (f "546-399-239") "546")) +(constraint (= (f "546-399-239") "546")) +(constraint (= (f "546-399-239") "546")) +(constraint (= (f "993-608-757") "993")) +(constraint (= (f "993-608-757") "993")) +(constraint (= (f "993-608-757") "993")) +(constraint (= (f "107-652-845") "107")) +(constraint (= (f "107-652-845") "107")) +(constraint (= (f "107-652-845") "107")) +(constraint (= (f "206-805-793") "206")) +(constraint (= (f "206-805-793") "206")) +(constraint (= (f "206-805-793") "206")) +(constraint (= (f "198-857-684") "198")) +(constraint (= (f "198-857-684") "198")) +(constraint (= (f "198-857-684") "198")) +(constraint (= (f "912-827-430") "912")) +(constraint (= (f "912-827-430") "912")) +(constraint (= (f "912-827-430") "912")) +(constraint (= (f "560-951-766") "560")) +(constraint (= (f "560-951-766") "560")) +(constraint (= (f "560-951-766") "560")) +(constraint (= (f "142-178-290") "142")) +(constraint (= (f "142-178-290") "142")) +(constraint (= (f "142-178-290") "142")) +(constraint (= (f "732-196-946") "732")) +(constraint (= (f "732-196-946") "732")) +(constraint (= (f "732-196-946") "732")) +(constraint (= (f "963-875-745") "963")) +(constraint (= (f "963-875-745") "963")) +(constraint (= (f "963-875-745") "963")) +(constraint (= (f "881-865-867") "881")) +(constraint (= (f "881-865-867") "881")) +(constraint (= (f "881-865-867") "881")) +(constraint (= (f "234-686-715") "234")) +(constraint (= (f "234-686-715") "234")) +(constraint (= (f "234-686-715") "234")) +(constraint (= (f "720-330-583") "720")) +(constraint (= (f "720-330-583") "720")) +(constraint (= (f "720-330-583") "720")) +(constraint (= (f "593-065-126") "593")) +(constraint (= (f "593-065-126") "593")) +(constraint (= (f "593-065-126") "593")) +(constraint (= (f "671-778-064") "671")) +(constraint (= (f "671-778-064") "671")) +(constraint (= (f "671-778-064") "671")) +(constraint (= (f "252-029-036") "252")) +(constraint (= (f "252-029-036") "252")) +(constraint (= (f "252-029-036") "252")) +(constraint (= (f "700-322-036") "700")) +(constraint (= (f "700-322-036") "700")) +(constraint (= (f "700-322-036") "700")) +(constraint (= (f "882-587-473") "882")) +(constraint (= (f "882-587-473") "882")) +(constraint (= (f "882-587-473") "882")) +(constraint (= (f "964-134-953") "964")) +(constraint (= (f "964-134-953") "964")) +(constraint (= (f "964-134-953") "964")) +(constraint (= (f "038-300-876") "038")) +(constraint (= (f "038-300-876") "038")) +(constraint (= (f "038-300-876") "038")) +(constraint (= (f "158-894-947") "158")) +(constraint (= (f "158-894-947") "158")) +(constraint (= (f "158-894-947") "158")) +(constraint (= (f "757-454-374") "757")) +(constraint (= (f "757-454-374") "757")) +(constraint (= (f "757-454-374") "757")) +(constraint (= (f "872-513-190") "872")) +(constraint (= (f "872-513-190") "872")) +(constraint (= (f "872-513-190") "872")) +(constraint (= (f "566-086-726") "566")) +(constraint (= (f "566-086-726") "566")) +(constraint (= (f "566-086-726") "566")) +(constraint (= (f "938-242-504") "938")) +(constraint (= (f "308-916-545") "308")) +(constraint (= (f "623-599-749") "623")) +(constraint (= (f "981-424-843") "981")) +(constraint (= (f "118-980-214") "118")) +(constraint (= (f "244-655-094") "244")) +(constraint (= (f "830-941-991") "830")) +(constraint (= (f "911-186-562") "911")) +(constraint (= (f "002-500-200") "002")) +(constraint (= (f "113-860-034") "113")) +(constraint (= (f "457-622-959") "457")) +(constraint (= (f "986-722-311") "986")) +(constraint (= (f "110-170-771") "110")) +(constraint (= (f "469-610-118") "469")) +(constraint (= (f "817-925-247") "817")) +(constraint (= (f "256-899-439") "256")) +(constraint (= (f "886-911-726") "886")) +(constraint (= (f "562-950-358") "562")) +(constraint (= (f "693-049-588") "693")) +(constraint (= (f "840-503-234") "840")) +(constraint (= (f "698-815-340") "698")) +(constraint (= (f "498-808-434") "498")) +(constraint (= (f "329-545-000") "329")) +(constraint (= (f "380-281-597") "380")) +(constraint (= (f "332-395-493") "332")) +(constraint (= (f "251-903-028") "251")) +(constraint (= (f "176-090-894") "176")) +(constraint (= (f "336-611-100") "336")) +(constraint (= (f "416-390-647") "416")) +(constraint (= (f "019-430-596") "019")) +(constraint (= (f "960-659-771") "960")) +(constraint (= (f "475-505-007") "475")) +(constraint (= (f "424-069-886") "424")) +(constraint (= (f "941-102-117") "941")) +(constraint (= (f "331-728-008") "331")) +(constraint (= (f "487-726-198") "487")) +(constraint (= (f "612-419-942") "612")) +(constraint (= (f "594-741-346") "594")) +(constraint (= (f "320-984-742") "320")) +(constraint (= (f "060-919-361") "060")) +(constraint (= (f "275-536-998") "275")) +(constraint (= (f "548-835-065") "548")) +(constraint (= (f "197-485-507") "197")) +(constraint (= (f "455-776-949") "455")) +(constraint (= (f "085-421-340") "085")) +(constraint (= (f "785-713-099") "785")) +(constraint (= (f "426-712-861") "426")) +(constraint (= (f "386-994-906") "386")) +(constraint (= (f "918-304-840") "918")) +(constraint (= (f "247-153-598") "247")) +(constraint (= (f "075-497-069") "075")) +(constraint (= (f "140-726-583") "140")) +(constraint (= (f "049-413-248") "049")) +(constraint (= (f "977-386-462") "977")) +(constraint (= (f "058-272-455") "058")) +(constraint (= (f "428-629-927") "428")) +(constraint (= (f "449-122-191") "449")) +(constraint (= (f "568-759-670") "568")) +(constraint (= (f "312-846-053") "312")) +(constraint (= (f "943-037-297") "943")) +(constraint (= (f "014-270-177") "014")) +(constraint (= (f "658-877-878") "658")) +(constraint (= (f "888-594-038") "888")) +(constraint (= (f "232-253-254") "232")) +(constraint (= (f "308-722-292") "308")) +(constraint (= (f "342-145-742") "342")) +(constraint (= (f "568-181-515") "568")) +(constraint (= (f "300-140-756") "300")) +(constraint (= (f "099-684-216") "099")) +(constraint (= (f "575-296-621") "575")) +(constraint (= (f "994-443-794") "994")) +(constraint (= (f "400-334-692") "400")) +(constraint (= (f "684-711-883") "684")) +(constraint (= (f "539-636-358") "539")) +(constraint (= (f "009-878-919") "009")) +(constraint (= (f "919-545-701") "919")) +(constraint (= (f "546-399-239") "546")) +(constraint (= (f "993-608-757") "993")) +(constraint (= (f "107-652-845") "107")) +(constraint (= (f "206-805-793") "206")) +(constraint (= (f "198-857-684") "198")) +(constraint (= (f "912-827-430") "912")) +(constraint (= (f "560-951-766") "560")) +(constraint (= (f "142-178-290") "142")) +(constraint (= (f "732-196-946") "732")) +(constraint (= (f "963-875-745") "963")) +(constraint (= (f "881-865-867") "881")) +(constraint (= (f "234-686-715") "234")) +(constraint (= (f "720-330-583") "720")) +(constraint (= (f "593-065-126") "593")) +(constraint (= (f "671-778-064") "671")) +(constraint (= (f "252-029-036") "252")) +(constraint (= (f "700-322-036") "700")) +(constraint (= (f "882-587-473") "882")) +(constraint (= (f "964-134-953") "964")) +(constraint (= (f "038-300-876") "038")) +(constraint (= (f "158-894-947") "158")) +(constraint (= (f "757-454-374") "757")) +(constraint (= (f "872-513-190") "872")) +(constraint (= (f "566-086-726") "566")) + +(check-synth) diff --git a/PBE_Strings_Track/phone-long.sl b/PBE_Strings_Track/phone-long.sl new file mode 100644 index 0000000000000000000000000000000000000000..5d4d19c1eee6633050a4157d7c5163a2d95bb334 --- /dev/null +++ b/PBE_Strings_Track/phone-long.sl @@ -0,0 +1,126 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "938-242-504") "938")) +(constraint (= (f "308-916-545") "308")) +(constraint (= (f "623-599-749") "623")) +(constraint (= (f "981-424-843") "981")) +(constraint (= (f "118-980-214") "118")) +(constraint (= (f "244-655-094") "244")) +(constraint (= (f "830-941-991") "830")) +(constraint (= (f "911-186-562") "911")) +(constraint (= (f "002-500-200") "002")) +(constraint (= (f "113-860-034") "113")) +(constraint (= (f "457-622-959") "457")) +(constraint (= (f "986-722-311") "986")) +(constraint (= (f "110-170-771") "110")) +(constraint (= (f "469-610-118") "469")) +(constraint (= (f "817-925-247") "817")) +(constraint (= (f "256-899-439") "256")) +(constraint (= (f "886-911-726") "886")) +(constraint (= (f "562-950-358") "562")) +(constraint (= (f "693-049-588") "693")) +(constraint (= (f "840-503-234") "840")) +(constraint (= (f "698-815-340") "698")) +(constraint (= (f "498-808-434") "498")) +(constraint (= (f "329-545-000") "329")) +(constraint (= (f "380-281-597") "380")) +(constraint (= (f "332-395-493") "332")) +(constraint (= (f "251-903-028") "251")) +(constraint (= (f "176-090-894") "176")) +(constraint (= (f "336-611-100") "336")) +(constraint (= (f "416-390-647") "416")) +(constraint (= (f "019-430-596") "019")) +(constraint (= (f "960-659-771") "960")) +(constraint (= (f "475-505-007") "475")) +(constraint (= (f "424-069-886") "424")) +(constraint (= (f "941-102-117") "941")) +(constraint (= (f "331-728-008") "331")) +(constraint (= (f "487-726-198") "487")) +(constraint (= (f "612-419-942") "612")) +(constraint (= (f "594-741-346") "594")) +(constraint (= (f "320-984-742") "320")) +(constraint (= (f "060-919-361") "060")) +(constraint (= (f "275-536-998") "275")) +(constraint (= (f "548-835-065") "548")) +(constraint (= (f "197-485-507") "197")) +(constraint (= (f "455-776-949") "455")) +(constraint (= (f "085-421-340") "085")) +(constraint (= (f "785-713-099") "785")) +(constraint (= (f "426-712-861") "426")) +(constraint (= (f "386-994-906") "386")) +(constraint (= (f "918-304-840") "918")) +(constraint (= (f "247-153-598") "247")) +(constraint (= (f "075-497-069") "075")) +(constraint (= (f "140-726-583") "140")) +(constraint (= (f "049-413-248") "049")) +(constraint (= (f "977-386-462") "977")) +(constraint (= (f "058-272-455") "058")) +(constraint (= (f "428-629-927") "428")) +(constraint (= (f "449-122-191") "449")) +(constraint (= (f "568-759-670") "568")) +(constraint (= (f "312-846-053") "312")) +(constraint (= (f "943-037-297") "943")) +(constraint (= (f "014-270-177") "014")) +(constraint (= (f "658-877-878") "658")) +(constraint (= (f "888-594-038") "888")) +(constraint (= (f "232-253-254") "232")) +(constraint (= (f "308-722-292") "308")) +(constraint (= (f "342-145-742") "342")) +(constraint (= (f "568-181-515") "568")) +(constraint (= (f "300-140-756") "300")) +(constraint (= (f "099-684-216") "099")) +(constraint (= (f "575-296-621") "575")) +(constraint (= (f "994-443-794") "994")) +(constraint (= (f "400-334-692") "400")) +(constraint (= (f "684-711-883") "684")) +(constraint (= (f "539-636-358") "539")) +(constraint (= (f "009-878-919") "009")) +(constraint (= (f "919-545-701") "919")) +(constraint (= (f "546-399-239") "546")) +(constraint (= (f "993-608-757") "993")) +(constraint (= (f "107-652-845") "107")) +(constraint (= (f "206-805-793") "206")) +(constraint (= (f "198-857-684") "198")) +(constraint (= (f "912-827-430") "912")) +(constraint (= (f "560-951-766") "560")) +(constraint (= (f "142-178-290") "142")) +(constraint (= (f "732-196-946") "732")) +(constraint (= (f "963-875-745") "963")) +(constraint (= (f "881-865-867") "881")) +(constraint (= (f "234-686-715") "234")) +(constraint (= (f "720-330-583") "720")) +(constraint (= (f "593-065-126") "593")) +(constraint (= (f "671-778-064") "671")) +(constraint (= (f "252-029-036") "252")) +(constraint (= (f "700-322-036") "700")) +(constraint (= (f "882-587-473") "882")) +(constraint (= (f "964-134-953") "964")) +(constraint (= (f "038-300-876") "038")) +(constraint (= (f "158-894-947") "158")) +(constraint (= (f "757-454-374") "757")) +(constraint (= (f "872-513-190") "872")) +(constraint (= (f "566-086-726") "566")) + +(check-synth) diff --git a/PBE_Strings_Track/phone.sl b/PBE_Strings_Track/phone.sl new file mode 100644 index 0000000000000000000000000000000000000000..2e757c9d85e349103749064bde749faba799df42 --- /dev/null +++ b/PBE_Strings_Track/phone.sl @@ -0,0 +1,32 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "938-242-504") "938")) +(constraint (= (f "308-916-545") "308")) +(constraint (= (f "623-599-749") "623")) +(constraint (= (f "981-424-843") "981")) +(constraint (= (f "118-980-214") "118")) +(constraint (= (f "244-655-094") "244")) + +(check-synth) diff --git a/PBE_Strings_Track/phone_short.sl b/PBE_Strings_Track/phone_short.sl new file mode 100644 index 0000000000000000000000000000000000000000..28202756732680afa5aaca92cc720916a65fc541 --- /dev/null +++ b/PBE_Strings_Track/phone_short.sl @@ -0,0 +1,30 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "938-242-504") "938")) +(constraint (= (f "308-916-545") "308")) +(constraint (= (f "623-599-749") "623")) +(constraint (= (f "981-424-843") "981")) +(constraint (= (f "118-980-214") "118")) +(constraint (= (f "244-655-094") "244")) + +(check-synth) diff --git a/PBE_Strings_Track/reverse-name-long-repeat.sl b/PBE_Strings_Track/reverse-name-long-repeat.sl new file mode 100644 index 0000000000000000000000000000000000000000..0fb21fadab219fca0fd07bb754eaaf5a677484f9 --- /dev/null +++ b/PBE_Strings_Track/reverse-name-long-repeat.sl @@ -0,0 +1,227 @@ +(set-logic SLIA) + +(synth-fun f ((firstname String) (lastname String)) String + ((Start String (ntString)) + (ntString String (firstname lastname " " + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var firstname String) +(declare-var lastname String) + +(constraint (= (f "Launa" "Withers") "Withers Launa")) +(constraint (= (f "Launa" "Withers") "Withers Launa")) +(constraint (= (f "Launa" "Withers") "Withers Launa")) +(constraint (= (f "Lakenya" "Edison") "Edison Lakenya")) +(constraint (= (f "Lakenya" "Edison") "Edison Lakenya")) +(constraint (= (f "Lakenya" "Edison") "Edison Lakenya")) +(constraint (= (f "Brendan" "Hage") "Hage Brendan")) +(constraint (= (f "Brendan" "Hage") "Hage Brendan")) +(constraint (= (f "Brendan" "Hage") "Hage Brendan")) +(constraint (= (f "Bradford" "Lango") "Lango Bradford")) +(constraint (= (f "Bradford" "Lango") "Lango Bradford")) +(constraint (= (f "Bradford" "Lango") "Lango Bradford")) +(constraint (= (f "Rudolf" "Akiyama") "Akiyama Rudolf")) +(constraint (= (f "Rudolf" "Akiyama") "Akiyama Rudolf")) +(constraint (= (f "Rudolf" "Akiyama") "Akiyama Rudolf")) +(constraint (= (f "Lara" "Constable") "Constable Lara")) +(constraint (= (f "Lara" "Constable") "Constable Lara")) +(constraint (= (f "Lara" "Constable") "Constable Lara")) +(constraint (= (f "Madelaine" "Ghoston") "Ghoston Madelaine")) +(constraint (= (f "Madelaine" "Ghoston") "Ghoston Madelaine")) +(constraint (= (f "Madelaine" "Ghoston") "Ghoston Madelaine")) +(constraint (= (f "Salley" "Hornak") "Hornak Salley")) +(constraint (= (f "Salley" "Hornak") "Hornak Salley")) +(constraint (= (f "Salley" "Hornak") "Hornak Salley")) +(constraint (= (f "Micha" "Junkin") "Junkin Micha")) +(constraint (= (f "Micha" "Junkin") "Junkin Micha")) +(constraint (= (f "Micha" "Junkin") "Junkin Micha")) +(constraint (= (f "Teddy" "Bobo") "Bobo Teddy")) +(constraint (= (f "Teddy" "Bobo") "Bobo Teddy")) +(constraint (= (f "Teddy" "Bobo") "Bobo Teddy")) +(constraint (= (f "Coralee" "Scalia") "Scalia Coralee")) +(constraint (= (f "Coralee" "Scalia") "Scalia Coralee")) +(constraint (= (f "Coralee" "Scalia") "Scalia Coralee")) +(constraint (= (f "Jeff" "Quashie") "Quashie Jeff")) +(constraint (= (f "Jeff" "Quashie") "Quashie Jeff")) +(constraint (= (f "Jeff" "Quashie") "Quashie Jeff")) +(constraint (= (f "Vena" "Babiarz") "Babiarz Vena")) +(constraint (= (f "Vena" "Babiarz") "Babiarz Vena")) +(constraint (= (f "Vena" "Babiarz") "Babiarz Vena")) +(constraint (= (f "Karrie" "Lain") "Lain Karrie")) +(constraint (= (f "Karrie" "Lain") "Lain Karrie")) +(constraint (= (f "Karrie" "Lain") "Lain Karrie")) +(constraint (= (f "Tobias" "Dermody") "Dermody Tobias")) +(constraint (= (f "Tobias" "Dermody") "Dermody Tobias")) +(constraint (= (f "Tobias" "Dermody") "Dermody Tobias")) +(constraint (= (f "Celsa" "Hopkins") "Hopkins Celsa")) +(constraint (= (f "Celsa" "Hopkins") "Hopkins Celsa")) +(constraint (= (f "Celsa" "Hopkins") "Hopkins Celsa")) +(constraint (= (f "Kimberley" "Halpern") "Halpern Kimberley")) +(constraint (= (f "Kimberley" "Halpern") "Halpern Kimberley")) +(constraint (= (f "Kimberley" "Halpern") "Halpern Kimberley")) +(constraint (= (f "Phillip" "Rowden") "Rowden Phillip")) +(constraint (= (f "Phillip" "Rowden") "Rowden Phillip")) +(constraint (= (f "Phillip" "Rowden") "Rowden Phillip")) +(constraint (= (f "Elias" "Neil") "Neil Elias")) +(constraint (= (f "Elias" "Neil") "Neil Elias")) +(constraint (= (f "Elias" "Neil") "Neil Elias")) +(constraint (= (f "Lashanda" "Cortes") "Cortes Lashanda")) +(constraint (= (f "Lashanda" "Cortes") "Cortes Lashanda")) +(constraint (= (f "Lashanda" "Cortes") "Cortes Lashanda")) +(constraint (= (f "Mackenzie" "Spell") "Spell Mackenzie")) +(constraint (= (f "Mackenzie" "Spell") "Spell Mackenzie")) +(constraint (= (f "Mackenzie" "Spell") "Spell Mackenzie")) +(constraint (= (f "Kathlyn" "Eccleston") "Eccleston Kathlyn")) +(constraint (= (f "Kathlyn" "Eccleston") "Eccleston Kathlyn")) +(constraint (= (f "Kathlyn" "Eccleston") "Eccleston Kathlyn")) +(constraint (= (f "Georgina" "Brescia") "Brescia Georgina")) +(constraint (= (f "Georgina" "Brescia") "Brescia Georgina")) +(constraint (= (f "Georgina" "Brescia") "Brescia Georgina")) +(constraint (= (f "Beata" "Miah") "Miah Beata")) +(constraint (= (f "Beata" "Miah") "Miah Beata")) +(constraint (= (f "Beata" "Miah") "Miah Beata")) +(constraint (= (f "Desiree" "Seamons") "Seamons Desiree")) +(constraint (= (f "Desiree" "Seamons") "Seamons Desiree")) +(constraint (= (f "Desiree" "Seamons") "Seamons Desiree")) +(constraint (= (f "Jeanice" "Soderstrom") "Soderstrom Jeanice")) +(constraint (= (f "Jeanice" "Soderstrom") "Soderstrom Jeanice")) +(constraint (= (f "Jeanice" "Soderstrom") "Soderstrom Jeanice")) +(constraint (= (f "Mariel" "Jurgens") "Jurgens Mariel")) +(constraint (= (f "Mariel" "Jurgens") "Jurgens Mariel")) +(constraint (= (f "Mariel" "Jurgens") "Jurgens Mariel")) +(constraint (= (f "Alida" "Bogle") "Bogle Alida")) +(constraint (= (f "Alida" "Bogle") "Bogle Alida")) +(constraint (= (f "Alida" "Bogle") "Bogle Alida")) +(constraint (= (f "Jacqualine" "Olague") "Olague Jacqualine")) +(constraint (= (f "Jacqualine" "Olague") "Olague Jacqualine")) +(constraint (= (f "Jacqualine" "Olague") "Olague Jacqualine")) +(constraint (= (f "Joaquin" "Clasen") "Clasen Joaquin")) +(constraint (= (f "Joaquin" "Clasen") "Clasen Joaquin")) +(constraint (= (f "Joaquin" "Clasen") "Clasen Joaquin")) +(constraint (= (f "Samuel" "Richert") "Richert Samuel")) +(constraint (= (f "Samuel" "Richert") "Richert Samuel")) +(constraint (= (f "Samuel" "Richert") "Richert Samuel")) +(constraint (= (f "Malissa" "Marcus") "Marcus Malissa")) +(constraint (= (f "Malissa" "Marcus") "Marcus Malissa")) +(constraint (= (f "Malissa" "Marcus") "Marcus Malissa")) +(constraint (= (f "Alaina" "Partida") "Partida Alaina")) +(constraint (= (f "Alaina" "Partida") "Partida Alaina")) +(constraint (= (f "Alaina" "Partida") "Partida Alaina")) +(constraint (= (f "Trinidad" "Mulloy") "Mulloy Trinidad")) +(constraint (= (f "Trinidad" "Mulloy") "Mulloy Trinidad")) +(constraint (= (f "Trinidad" "Mulloy") "Mulloy Trinidad")) +(constraint (= (f "Carlene" "Garrard") "Garrard Carlene")) +(constraint (= (f "Carlene" "Garrard") "Garrard Carlene")) +(constraint (= (f "Carlene" "Garrard") "Garrard Carlene")) +(constraint (= (f "Melodi" "Chism") "Chism Melodi")) +(constraint (= (f "Melodi" "Chism") "Chism Melodi")) +(constraint (= (f "Melodi" "Chism") "Chism Melodi")) +(constraint (= (f "Bess" "Chilcott") "Chilcott Bess")) +(constraint (= (f "Bess" "Chilcott") "Chilcott Bess")) +(constraint (= (f "Bess" "Chilcott") "Chilcott Bess")) +(constraint (= (f "Chong" "Aylward") "Aylward Chong")) +(constraint (= (f "Chong" "Aylward") "Aylward Chong")) +(constraint (= (f "Chong" "Aylward") "Aylward Chong")) +(constraint (= (f "Jani" "Ramthun") "Ramthun Jani")) +(constraint (= (f "Jani" "Ramthun") "Ramthun Jani")) +(constraint (= (f "Jani" "Ramthun") "Ramthun Jani")) +(constraint (= (f "Jacquiline" "Heintz") "Heintz Jacquiline")) +(constraint (= (f "Jacquiline" "Heintz") "Heintz Jacquiline")) +(constraint (= (f "Jacquiline" "Heintz") "Heintz Jacquiline")) +(constraint (= (f "Hayley" "Marquess") "Marquess Hayley")) +(constraint (= (f "Hayley" "Marquess") "Marquess Hayley")) +(constraint (= (f "Hayley" "Marquess") "Marquess Hayley")) +(constraint (= (f "Andria" "Spagnoli") "Spagnoli Andria")) +(constraint (= (f "Andria" "Spagnoli") "Spagnoli Andria")) +(constraint (= (f "Andria" "Spagnoli") "Spagnoli Andria")) +(constraint (= (f "Irwin" "Covelli") "Covelli Irwin")) +(constraint (= (f "Irwin" "Covelli") "Covelli Irwin")) +(constraint (= (f "Irwin" "Covelli") "Covelli Irwin")) +(constraint (= (f "Gertude" "Montiel") "Montiel Gertude")) +(constraint (= (f "Gertude" "Montiel") "Montiel Gertude")) +(constraint (= (f "Gertude" "Montiel") "Montiel Gertude")) +(constraint (= (f "Stefany" "Reily") "Reily Stefany")) +(constraint (= (f "Stefany" "Reily") "Reily Stefany")) +(constraint (= (f "Stefany" "Reily") "Reily Stefany")) +(constraint (= (f "Rae" "Mcgaughey") "Mcgaughey Rae")) +(constraint (= (f "Rae" "Mcgaughey") "Mcgaughey Rae")) +(constraint (= (f "Rae" "Mcgaughey") "Mcgaughey Rae")) +(constraint (= (f "Cruz" "Latimore") "Latimore Cruz")) +(constraint (= (f "Cruz" "Latimore") "Latimore Cruz")) +(constraint (= (f "Cruz" "Latimore") "Latimore Cruz")) +(constraint (= (f "Maryann" "Casler") "Casler Maryann")) +(constraint (= (f "Maryann" "Casler") "Casler Maryann")) +(constraint (= (f "Maryann" "Casler") "Casler Maryann")) +(constraint (= (f "Annalisa" "Gregori") "Gregori Annalisa")) +(constraint (= (f "Annalisa" "Gregori") "Gregori Annalisa")) +(constraint (= (f "Annalisa" "Gregori") "Gregori Annalisa")) +(constraint (= (f "Jenee" "Pannell") "Pannell Jenee")) +(constraint (= (f "Jenee" "Pannell") "Pannell Jenee")) +(constraint (= (f "Jenee" "Pannell") "Pannell Jenee")) +(constraint (= (f "Launa" "Withers") "Withers Launa")) +(constraint (= (f "Lakenya" "Edison") "Edison Lakenya")) +(constraint (= (f "Brendan" "Hage") "Hage Brendan")) +(constraint (= (f "Bradford" "Lango") "Lango Bradford")) +(constraint (= (f "Rudolf" "Akiyama") "Akiyama Rudolf")) +(constraint (= (f "Lara" "Constable") "Constable Lara")) +(constraint (= (f "Madelaine" "Ghoston") "Ghoston Madelaine")) +(constraint (= (f "Salley" "Hornak") "Hornak Salley")) +(constraint (= (f "Micha" "Junkin") "Junkin Micha")) +(constraint (= (f "Teddy" "Bobo") "Bobo Teddy")) +(constraint (= (f "Coralee" "Scalia") "Scalia Coralee")) +(constraint (= (f "Jeff" "Quashie") "Quashie Jeff")) +(constraint (= (f "Vena" "Babiarz") "Babiarz Vena")) +(constraint (= (f "Karrie" "Lain") "Lain Karrie")) +(constraint (= (f "Tobias" "Dermody") "Dermody Tobias")) +(constraint (= (f "Celsa" "Hopkins") "Hopkins Celsa")) +(constraint (= (f "Kimberley" "Halpern") "Halpern Kimberley")) +(constraint (= (f "Phillip" "Rowden") "Rowden Phillip")) +(constraint (= (f "Elias" "Neil") "Neil Elias")) +(constraint (= (f "Lashanda" "Cortes") "Cortes Lashanda")) +(constraint (= (f "Mackenzie" "Spell") "Spell Mackenzie")) +(constraint (= (f "Kathlyn" "Eccleston") "Eccleston Kathlyn")) +(constraint (= (f "Georgina" "Brescia") "Brescia Georgina")) +(constraint (= (f "Beata" "Miah") "Miah Beata")) +(constraint (= (f "Desiree" "Seamons") "Seamons Desiree")) +(constraint (= (f "Jeanice" "Soderstrom") "Soderstrom Jeanice")) +(constraint (= (f "Mariel" "Jurgens") "Jurgens Mariel")) +(constraint (= (f "Alida" "Bogle") "Bogle Alida")) +(constraint (= (f "Jacqualine" "Olague") "Olague Jacqualine")) +(constraint (= (f "Joaquin" "Clasen") "Clasen Joaquin")) +(constraint (= (f "Samuel" "Richert") "Richert Samuel")) +(constraint (= (f "Malissa" "Marcus") "Marcus Malissa")) +(constraint (= (f "Alaina" "Partida") "Partida Alaina")) +(constraint (= (f "Trinidad" "Mulloy") "Mulloy Trinidad")) +(constraint (= (f "Carlene" "Garrard") "Garrard Carlene")) +(constraint (= (f "Melodi" "Chism") "Chism Melodi")) +(constraint (= (f "Bess" "Chilcott") "Chilcott Bess")) +(constraint (= (f "Chong" "Aylward") "Aylward Chong")) +(constraint (= (f "Jani" "Ramthun") "Ramthun Jani")) +(constraint (= (f "Jacquiline" "Heintz") "Heintz Jacquiline")) +(constraint (= (f "Hayley" "Marquess") "Marquess Hayley")) +(constraint (= (f "Andria" "Spagnoli") "Spagnoli Andria")) +(constraint (= (f "Irwin" "Covelli") "Covelli Irwin")) +(constraint (= (f "Gertude" "Montiel") "Montiel Gertude")) +(constraint (= (f "Stefany" "Reily") "Reily Stefany")) +(constraint (= (f "Rae" "Mcgaughey") "Mcgaughey Rae")) +(constraint (= (f "Cruz" "Latimore") "Latimore Cruz")) +(constraint (= (f "Maryann" "Casler") "Casler Maryann")) +(constraint (= (f "Annalisa" "Gregori") "Gregori Annalisa")) +(constraint (= (f "Jenee" "Pannell") "Pannell Jenee")) + +(check-synth) diff --git a/PBE_Strings_Track/reverse-name-long.sl b/PBE_Strings_Track/reverse-name-long.sl new file mode 100644 index 0000000000000000000000000000000000000000..6c9885b00e83c2621519eb7012ccb356126c6e44 --- /dev/null +++ b/PBE_Strings_Track/reverse-name-long.sl @@ -0,0 +1,77 @@ +(set-logic SLIA) + +(synth-fun f ((firstname String) (lastname String)) String + ((Start String (ntString)) + (ntString String (firstname lastname " " + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var firstname String) +(declare-var lastname String) + +(constraint (= (f "Launa" "Withers") "Withers Launa")) +(constraint (= (f "Lakenya" "Edison") "Edison Lakenya")) +(constraint (= (f "Brendan" "Hage") "Hage Brendan")) +(constraint (= (f "Bradford" "Lango") "Lango Bradford")) +(constraint (= (f "Rudolf" "Akiyama") "Akiyama Rudolf")) +(constraint (= (f "Lara" "Constable") "Constable Lara")) +(constraint (= (f "Madelaine" "Ghoston") "Ghoston Madelaine")) +(constraint (= (f "Salley" "Hornak") "Hornak Salley")) +(constraint (= (f "Micha" "Junkin") "Junkin Micha")) +(constraint (= (f "Teddy" "Bobo") "Bobo Teddy")) +(constraint (= (f "Coralee" "Scalia") "Scalia Coralee")) +(constraint (= (f "Jeff" "Quashie") "Quashie Jeff")) +(constraint (= (f "Vena" "Babiarz") "Babiarz Vena")) +(constraint (= (f "Karrie" "Lain") "Lain Karrie")) +(constraint (= (f "Tobias" "Dermody") "Dermody Tobias")) +(constraint (= (f "Celsa" "Hopkins") "Hopkins Celsa")) +(constraint (= (f "Kimberley" "Halpern") "Halpern Kimberley")) +(constraint (= (f "Phillip" "Rowden") "Rowden Phillip")) +(constraint (= (f "Elias" "Neil") "Neil Elias")) +(constraint (= (f "Lashanda" "Cortes") "Cortes Lashanda")) +(constraint (= (f "Mackenzie" "Spell") "Spell Mackenzie")) +(constraint (= (f "Kathlyn" "Eccleston") "Eccleston Kathlyn")) +(constraint (= (f "Georgina" "Brescia") "Brescia Georgina")) +(constraint (= (f "Beata" "Miah") "Miah Beata")) +(constraint (= (f "Desiree" "Seamons") "Seamons Desiree")) +(constraint (= (f "Jeanice" "Soderstrom") "Soderstrom Jeanice")) +(constraint (= (f "Mariel" "Jurgens") "Jurgens Mariel")) +(constraint (= (f "Alida" "Bogle") "Bogle Alida")) +(constraint (= (f "Jacqualine" "Olague") "Olague Jacqualine")) +(constraint (= (f "Joaquin" "Clasen") "Clasen Joaquin")) +(constraint (= (f "Samuel" "Richert") "Richert Samuel")) +(constraint (= (f "Malissa" "Marcus") "Marcus Malissa")) +(constraint (= (f "Alaina" "Partida") "Partida Alaina")) +(constraint (= (f "Trinidad" "Mulloy") "Mulloy Trinidad")) +(constraint (= (f "Carlene" "Garrard") "Garrard Carlene")) +(constraint (= (f "Melodi" "Chism") "Chism Melodi")) +(constraint (= (f "Bess" "Chilcott") "Chilcott Bess")) +(constraint (= (f "Chong" "Aylward") "Aylward Chong")) +(constraint (= (f "Jani" "Ramthun") "Ramthun Jani")) +(constraint (= (f "Jacquiline" "Heintz") "Heintz Jacquiline")) +(constraint (= (f "Hayley" "Marquess") "Marquess Hayley")) +(constraint (= (f "Andria" "Spagnoli") "Spagnoli Andria")) +(constraint (= (f "Irwin" "Covelli") "Covelli Irwin")) +(constraint (= (f "Gertude" "Montiel") "Montiel Gertude")) +(constraint (= (f "Stefany" "Reily") "Reily Stefany")) +(constraint (= (f "Rae" "Mcgaughey") "Mcgaughey Rae")) +(constraint (= (f "Cruz" "Latimore") "Latimore Cruz")) +(constraint (= (f "Maryann" "Casler") "Casler Maryann")) +(constraint (= (f "Annalisa" "Gregori") "Gregori Annalisa")) +(constraint (= (f "Jenee" "Pannell") "Pannell Jenee")) + +(check-synth) diff --git a/PBE_Strings_Track/reverse-name.sl b/PBE_Strings_Track/reverse-name.sl new file mode 100644 index 0000000000000000000000000000000000000000..015131e076e00c63e41ff4a89591375ca495c77e --- /dev/null +++ b/PBE_Strings_Track/reverse-name.sl @@ -0,0 +1,33 @@ +(set-logic SLIA) + +(synth-fun f ((firstname String) (lastname String)) String + ((Start String (ntString)) + (ntString String (firstname lastname " " + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var firstname String) +(declare-var lastname String) + +(constraint (= (f "Launa" "Withers") "Withers Launa")) +(constraint (= (f "Lakenya" "Edison") "Edison Lakenya")) +(constraint (= (f "Brendan" "Hage") "Hage Brendan")) +(constraint (= (f "Bradford" "Lango") "Lango Bradford")) +(constraint (= (f "Rudolf" "Akiyama") "Akiyama Rudolf")) +(constraint (= (f "Lara" "Constable") "Constable Lara")) + +(check-synth) diff --git a/PBE_Strings_Track/reverse-name_short.sl b/PBE_Strings_Track/reverse-name_short.sl new file mode 100644 index 0000000000000000000000000000000000000000..1a6f157870799cd244172e3dedb824dd139aeb74 --- /dev/null +++ b/PBE_Strings_Track/reverse-name_short.sl @@ -0,0 +1,32 @@ +(set-logic SLIA) + +(synth-fun f ((firstname String) (lastname String)) String + ((Start String (ntString)) + (ntString String (firstname lastname " " + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var firstname String) +(declare-var lastname String) + + +(constraint (= (f "Launa" "Withers") "Withers Launa")) +(constraint (= (f "Lakenya" "Edison") "Edison Lakenya")) +(constraint (= (f "Brendan" "Hage") "Hage Brendan")) +(constraint (= (f "Bradford" "Lango") "Lango Bradford")) +(constraint (= (f "Rudolf" "Akiyama") "Akiyama Rudolf")) +(constraint (= (f "Lara" "Constable") "Constable Lara")) + +(check-synth) diff --git a/PBE_Strings_Track/starexec_description.txt b/PBE_Strings_Track/starexec_description.txt new file mode 100644 index 0000000000000000000000000000000000000000..825c41b6270fa563d6f482424c7c188c8979c9ba --- /dev/null +++ b/PBE_Strings_Track/starexec_description.txt @@ -0,0 +1 @@ +no description \ No newline at end of file diff --git a/PBE_Strings_Track/univ_1-long-repeat.sl b/PBE_Strings_Track/univ_1-long-repeat.sl new file mode 100644 index 0000000000000000000000000000000000000000..da777a02a84e08c00d2ad94cb5aa021e5abdc073 --- /dev/null +++ b/PBE_Strings_Track/univ_1-long-repeat.sl @@ -0,0 +1,117 @@ +(set-logic SLIA) + +(synth-fun f ((col1 String) (col2 String)) String + ((Start String (ntString)) + (ntString String (col1 col2 " " "," + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var col1 String) +(declare-var col2 String) + +(constraint (= (f "UC Berkeley" "Berkeley, CA") + "UC Berkeley, Berkeley, CA")) + +(constraint (= (f "University of Pennsylvania" "Phialdelphia, PA, USA") + "University of Pennsylvania, Phialdelphia, PA, USA")) + +(constraint (= (f "UCLA" "Los Angeles, CA") + "UCLA, Los Angeles, CA")) + +(constraint (= (f "Cornell University" "Ithaca, New York, USA") + "Cornell University, Ithaca, New York, USA")) + +(constraint (= (f "Penn" "Philadelphia, PA, USA") + "Penn, Philadelphia, PA, USA")) + +(constraint (= (f "University of Michigan" "Ann Arbor, MI, USA") + "University of Michigan, Ann Arbor, MI, USA")) + +(constraint (= (f "UC Berkeley" "Berkeley, CA") + "UC Berkeley, Berkeley, CA")) + +(constraint (= (f "MIT" "Cambridge, MA") + "MIT, Cambridge, MA")) + +(constraint (= (f "University of Pennsylvania" "Phialdelphia, PA, USA") + "University of Pennsylvania, Phialdelphia, PA, USA")) + +(constraint (= (f "UCLA" "Los Angeles, CA") + "UCLA, Los Angeles, CA")) + +(constraint (= (f "University of Maryland College Park" "College Park, MD") + "University of Maryland College Park, College Park, MD")) + +(constraint (= (f "University of Michigan" "Ann Arbor, MI, USA") + "University of Michigan, Ann Arbor, MI, USA")) + +(constraint (= (f "UC Berkeley" "Berkeley, CA") + "UC Berkeley, Berkeley, CA")) + +(constraint (= (f "MIT" "Cambridge, MA") + "MIT, Cambridge, MA")) + +(constraint (= (f "Rice University" "Houston, TX") + "Rice University, Houston, TX")) + +(constraint (= (f "Yale University" "New Haven, CT, USA") + "Yale University, New Haven, CT, USA")) + +(constraint (= (f "Columbia University" "New York, NY, USA") + "Columbia University, New York, NY, USA")) + +(constraint (= (f "NYU" "New York, New York, USA") + "NYU, New York, New York, USA")) + +(constraint (= (f "Drexel University" "Philadelphia, PA") + "Drexel University, Philadelphia, PA")) + +(constraint (= (f "UC Berkeley" "Berkeley, CA") + "UC Berkeley, Berkeley, CA")) + +(constraint (= (f "UIUC" "Urbana, IL") + "UIUC, Urbana, IL")) + +(constraint (= (f "Temple University" "Philadelphia, PA") + "Temple University, Philadelphia, PA")) + +(constraint (= (f "Harvard University" "Cambridge, MA, USA") + "Harvard University, Cambridge, MA, USA")) + +(constraint (= (f "University of Connecticut" "Storrs, CT, USA") + "University of Connecticut, Storrs, CT, USA")) + +(constraint (= (f "Drexel University" "Philadelphia, PA") + "Drexel University, Philadelphia, PA")) + +(constraint (= (f "NYU" "New York, New York, USA") + "NYU, New York, New York, USA")) + +(constraint (= (f "UIUC" "Urbana, IL") + "UIUC, Urbana, IL")) + +(constraint (= (f "New Haven University" "New Haven, CT, USA") + "New Haven University, New Haven, CT, USA")) + +(constraint (= (f "University of California, Santa Barbara" "Santa Barbara, CA, USA") + "University of California, Santa Barbara, Santa Barbara, CA, USA")) + +(constraint (= (f "University of Connecticut" "Storrs, CT, USA") + "University of Connecticut, Storrs, CT, USA")) + + +(check-synth) diff --git a/PBE_Strings_Track/univ_1-long.sl b/PBE_Strings_Track/univ_1-long.sl new file mode 100644 index 0000000000000000000000000000000000000000..8a08df8001c1be04afaf96038e52a70d0e8dbd4e --- /dev/null +++ b/PBE_Strings_Track/univ_1-long.sl @@ -0,0 +1,87 @@ +(set-logic SLIA) + +(synth-fun f ((col1 String) (col2 String)) String + ((Start String (ntString)) + (ntString String (col1 col2 " " "," + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var col1 String) +(declare-var col2 String) + +(constraint (= (f "University of Pennsylvania" "Phialdelphia, PA, USA") + "University of Pennsylvania, Phialdelphia, PA, USA")) + +(constraint (= (f "UCLA" "Los Angeles, CA") + "UCLA, Los Angeles, CA")) + +(constraint (= (f "Cornell University" "Ithaca, New York, USA") + "Cornell University, Ithaca, New York, USA")) + +(constraint (= (f "Penn" "Philadelphia, PA, USA") + "Penn, Philadelphia, PA, USA")) + +(constraint (= (f "University of Maryland College Park" "College Park, MD") + "University of Maryland College Park, College Park, MD")) + +(constraint (= (f "University of Michigan" "Ann Arbor, MI, USA") + "University of Michigan, Ann Arbor, MI, USA")) + +(constraint (= (f "UC Berkeley" "Berkeley, CA") + "UC Berkeley, Berkeley, CA")) + +(constraint (= (f "MIT" "Cambridge, MA") + "MIT, Cambridge, MA")) + +(constraint (= (f "Rice University" "Houston, TX") + "Rice University, Houston, TX")) + +(constraint (= (f "Yale University" "New Haven, CT, USA") + "Yale University, New Haven, CT, USA")) + +(constraint (= (f "Columbia University" "New York, NY, USA") + "Columbia University, New York, NY, USA")) + +(constraint (= (f "NYU" "New York, New York, USA") + "NYU, New York, New York, USA")) + +(constraint (= (f "UC Berkeley" "Berkeley, CA") + "UC Berkeley, Berkeley, CA")) + +(constraint (= (f "UIUC" "Urbana, IL") + "UIUC, Urbana, IL")) + +(constraint (= (f "Temple University" "Philadelphia, PA") + "Temple University, Philadelphia, PA")) + +(constraint (= (f "Harvard University" "Cambridge, MA, USA") + "Harvard University, Cambridge, MA, USA")) + +(constraint (= (f "University of Connecticut" "Storrs, CT, USA") + "University of Connecticut, Storrs, CT, USA")) + +(constraint (= (f "Drexel University" "Philadelphia, PA") + "Drexel University, Philadelphia, PA")) + +(constraint (= (f "New Haven University" "New Haven, CT, USA") + "New Haven University, New Haven, CT, USA")) + +(constraint (= (f "University of California, Santa Barbara" "Santa Barbara, CA, USA") + "University of California, Santa Barbara, Santa Barbara, CA, USA")) + + +(check-synth) diff --git a/PBE_Strings_Track/univ_1.sl b/PBE_Strings_Track/univ_1.sl new file mode 100644 index 0000000000000000000000000000000000000000..07c3e5abf1c8ff15ed41e723ee600dea295c5733 --- /dev/null +++ b/PBE_Strings_Track/univ_1.sl @@ -0,0 +1,44 @@ +(set-logic SLIA) + +(synth-fun f ((col1 String) (col2 String)) String + ((Start String (ntString)) + (ntString String (col1 col2 " " "," + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var col1 String) +(declare-var col2 String) + +(constraint (= (f "University of Pennsylvania" "Phialdelphia, PA, USA") + "University of Pennsylvania, Phialdelphia, PA, USA")) + +(constraint (= (f "Cornell University" "Ithaca, New York, USA") + "Cornell University, Ithaca, New York, USA")) + +(constraint (= (f "University of Maryland College Park" "College Park, MD") + "University of Maryland College Park, College Park, MD")) + +(constraint (= (f "University of Michigan" "Ann Arbor, MI, USA") + "University of Michigan, Ann Arbor, MI, USA")) + +(constraint (= (f "Yale University" "New Haven, CT, USA") + "Yale University, New Haven, CT, USA")) + +(constraint (= (f "Columbia University" "New York, NY, USA") + "Columbia University, New York, NY, USA")) + +(check-synth) diff --git a/PBE_Strings_Track/univ_1_short.sl b/PBE_Strings_Track/univ_1_short.sl new file mode 100644 index 0000000000000000000000000000000000000000..87e2a30fac789b2751472c3e38916db7c1d451e1 --- /dev/null +++ b/PBE_Strings_Track/univ_1_short.sl @@ -0,0 +1,41 @@ +(set-logic SLIA) + +(synth-fun f ((col1 String) (col2 String)) String + ((Start String (ntString)) + (ntString String (col1 col2 " " "," + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString))))) + + +(declare-var col1 String) +(declare-var col2 String) + +(constraint (= (f "University of Pennsylvania" "Phialdelphia, PA, USA") + "University of Pennsylvania, Phialdelphia, PA, USA")) + +(constraint (= (f "Cornell University" "Ithaca, New York, USA") + "Cornell University, Ithaca, New York, USA")) + +(constraint (= (f "University of Maryland College Park" "College Park, MD") + "University of Maryland College Park, College Park, MD")) + +(constraint (= (f "University of Michigan" "Ann Arbor, MI, USA") + "University of Michigan, Ann Arbor, MI, USA")) + +(constraint (= (f "Yale University" "New Haven, CT, USA") + "Yale University, New Haven, CT, USA")) + +(constraint (= (f "Columbia University" "New York, NY, USA") + "Columbia University, New York, NY, USA")) + +(check-synth) diff --git a/PBE_Strings_Track/univ_2-long-repeat.sl b/PBE_Strings_Track/univ_2-long-repeat.sl new file mode 100644 index 0000000000000000000000000000000000000000..4bec54aa7a9e7c4794538824ba59bb7352ecc381 --- /dev/null +++ b/PBE_Strings_Track/univ_2-long-repeat.sl @@ -0,0 +1,118 @@ +(set-logic SLIA) + +(synth-fun f ((col1 String) (col2 String)) String + ((Start String (ntString)) + (ntString String (col1 col2 " " "," "USA" "PA" "CT" "CA" "MD" "NY" + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (ite ntBool ntString ntString) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var col1 String) +(declare-var col2 String) + +(constraint (= (f "UC Berkeley" "Berkeley, CA") + "UC Berkeley, Berkeley, CA, USA")) + +(constraint (= (f "University of Pennsylvania" "Phialdelphia, PA, USA") + "University of Pennsylvania, Phialdelphia, PA, USA")) + +(constraint (= (f "UCLA" "Los Angeles, CA") + "UCLA, Los Angeles, CA, USA")) + +(constraint (= (f "Cornell University" "Ithaca, New York, USA") + "Cornell University, Ithaca, New York, USA")) + +(constraint (= (f "Penn" "Philadelphia, PA, USA") + "Penn, Philadelphia, PA, USA")) + +(constraint (= (f "University of Michigan" "Ann Arbor, MI, USA") + "University of Michigan, Ann Arbor, MI, USA")) + +(constraint (= (f "UC Berkeley" "Berkeley, CA") + "UC Berkeley, Berkeley, CA, USA")) + +(constraint (= (f "MIT" "Cambridge, MA") + "MIT, Cambridge, MA, USA")) + +(constraint (= (f "University of Pennsylvania" "Phialdelphia, PA, USA") + "University of Pennsylvania, Phialdelphia, PA, USA")) + +(constraint (= (f "UCLA" "Los Angeles, CA") + "UCLA, Los Angeles, CA, USA")) + +(constraint (= (f "University of Maryland College Park" "College Park, MD") + "University of Maryland College Park, College Park, MD, USA")) + +(constraint (= (f "University of Michigan" "Ann Arbor, MI, USA") + "University of Michigan, Ann Arbor, MI, USA")) + +(constraint (= (f "UC Berkeley" "Berkeley, CA") + "UC Berkeley, Berkeley, CA, USA")) + +(constraint (= (f "MIT" "Cambridge, MA") + "MIT, Cambridge, MA, USA")) + +(constraint (= (f "Rice University" "Houston, TX") + "Rice University, Houston, TX, USA")) + +(constraint (= (f "Yale University" "New Haven, CT, USA") + "Yale University, New Haven, CT, USA")) + +(constraint (= (f "Columbia University" "New York, NY, USA") + "Columbia University, New York, NY, USA")) + +(constraint (= (f "NYU" "New York, New York, USA") + "NYU, New York, New York, USA")) + +(constraint (= (f "Drexel University" "Philadelphia, PA") + "Drexel University, Philadelphia, PA, USA")) + +(constraint (= (f "UC Berkeley" "Berkeley, CA") + "UC Berkeley, Berkeley, CA, USA")) + +(constraint (= (f "UIUC" "Urbana, IL") + "UIUC, Urbana, IL, USA")) + +(constraint (= (f "Temple University" "Philadelphia, PA") + "Temple University, Philadelphia, PA, USA")) + +(constraint (= (f "Harvard University" "Cambridge, MA, USA") + "Harvard University, Cambridge, MA, USA")) + +(constraint (= (f "University of Connecticut" "Storrs, CT, USA") + "University of Connecticut, Storrs, CT, USA")) + +(constraint (= (f "Drexel University" "Philadelphia, PA") + "Drexel University, Philadelphia, PA, USA")) + +(constraint (= (f "NYU" "New York, New York, USA") + "NYU, New York, New York, USA")) + +(constraint (= (f "UIUC" "Urbana, IL") + "UIUC, Urbana, IL, USA")) + +(constraint (= (f "New Haven University" "New Haven, CT, USA") + "New Haven University, New Haven, CT, USA")) + +(constraint (= (f "University of California, Santa Barbara" "Santa Barbara, CA, USA") + "University of California, Santa Barbara, Santa Barbara, CA, USA")) + +(constraint (= (f "University of Connecticut" "Storrs, CT, USA") + "University of Connecticut, Storrs, CT, USA")) + + +(check-synth) diff --git a/PBE_Strings_Track/univ_2-long.sl b/PBE_Strings_Track/univ_2-long.sl new file mode 100644 index 0000000000000000000000000000000000000000..f024322f411d04fa6a49cbf4298b17989f904c90 --- /dev/null +++ b/PBE_Strings_Track/univ_2-long.sl @@ -0,0 +1,88 @@ +(set-logic SLIA) + +(synth-fun f ((col1 String) (col2 String)) String + ((Start String (ntString)) + (ntString String (col1 col2 " " "," "USA" "PA" "CT" "CA" "MD" "NY" + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (ite ntBool ntString ntString) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var col1 String) +(declare-var col2 String) + +(constraint (= (f "University of Pennsylvania" "Phialdelphia, PA, USA") + "University of Pennsylvania, Phialdelphia, PA, USA")) + +(constraint (= (f "UCLA" "Los Angeles, CA") + "UCLA, Los Angeles, CA, USA")) + +(constraint (= (f "Cornell University" "Ithaca, New York, USA") + "Cornell University, Ithaca, New York, USA")) + +(constraint (= (f "Penn" "Philadelphia, PA, USA") + "Penn, Philadelphia, PA, USA")) + +(constraint (= (f "University of Maryland College Park" "College Park, MD") + "University of Maryland College Park, College Park, MD, USA")) + +(constraint (= (f "University of Michigan" "Ann Arbor, MI, USA") + "University of Michigan, Ann Arbor, MI, USA")) + +(constraint (= (f "UC Berkeley" "Berkeley, CA") + "UC Berkeley, Berkeley, CA, USA")) + +(constraint (= (f "MIT" "Cambridge, MA") + "MIT, Cambridge, MA, USA")) + +(constraint (= (f "Rice University" "Houston, TX") + "Rice University, Houston, TX, USA")) + +(constraint (= (f "Yale University" "New Haven, CT, USA") + "Yale University, New Haven, CT, USA")) + +(constraint (= (f "Columbia University" "New York, NY, USA") + "Columbia University, New York, NY, USA")) + +(constraint (= (f "NYU" "New York, New York, USA") + "NYU, New York, New York, USA")) + +(constraint (= (f "UC Berkeley" "Berkeley, CA") + "UC Berkeley, Berkeley, CA, USA")) + +(constraint (= (f "UIUC" "Urbana, IL") + "UIUC, Urbana, IL, USA")) + +(constraint (= (f "Temple University" "Philadelphia, PA") + "Temple University, Philadelphia, PA, USA")) + +(constraint (= (f "Harvard University" "Cambridge, MA, USA") + "Harvard University, Cambridge, MA, USA")) + +(constraint (= (f "University of Connecticut" "Storrs, CT, USA") + "University of Connecticut, Storrs, CT, USA")) + +(constraint (= (f "Drexel University" "Philadelphia, PA") + "Drexel University, Philadelphia, PA, USA")) + +(constraint (= (f "New Haven University" "New Haven, CT, USA") + "New Haven University, New Haven, CT, USA")) + +(constraint (= (f "University of California, Santa Barbara" "Santa Barbara, CA, USA") + "University of California, Santa Barbara, Santa Barbara, CA, USA")) + + +(check-synth) diff --git a/PBE_Strings_Track/univ_2.sl b/PBE_Strings_Track/univ_2.sl new file mode 100644 index 0000000000000000000000000000000000000000..ef38a68e4e112b0890b5f437b09f614aa4e65196 --- /dev/null +++ b/PBE_Strings_Track/univ_2.sl @@ -0,0 +1,47 @@ +(set-logic SLIA) + +(synth-fun f ((col1 String) (col2 String)) String + ((Start String (ntString)) + (ntString String (col1 col2 " " "," "USA" "PA" "CT" "CA" "MD" "NY" + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (ite ntBool ntString ntString) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var col1 String) +(declare-var col2 String) + +(constraint (= (f "University of Pennsylvania" "Phialdelphia, PA, USA") + "University of Pennsylvania, Phialdelphia, PA, USA")) + +(constraint (= (f "UCLA" "Los Angeles, CA") + "UCLA, Los Angeles, CA, USA")) + +(constraint (= (f "Cornell University" "Ithaca, New York, USA") + "Cornell University, Ithaca, New York, USA")) + +(constraint (= (f "Penn" "Philadelphia, PA, USA") + "Penn, Philadelphia, PA, USA")) + +(constraint (= (f "University of Maryland College Park" "College Park, MD") + "University of Maryland College Park, College Park, MD, USA")) + +(constraint (= (f "University of Michigan" "Ann Arbor, MI, USA") + "University of Michigan, Ann Arbor, MI, USA")) + + + +(check-synth) diff --git a/PBE_Strings_Track/univ_2_short.sl b/PBE_Strings_Track/univ_2_short.sl new file mode 100644 index 0000000000000000000000000000000000000000..4ed2268dbe805dbb78fc5a7be364bd39a8aa1b24 --- /dev/null +++ b/PBE_Strings_Track/univ_2_short.sl @@ -0,0 +1,44 @@ +(set-logic SLIA) + +(synth-fun f ((col1 String) (col2 String)) String + ((Start String (ntString)) + (ntString String (col1 col2 " " "," "USA" "PA" "CT" "CA" "MD" "NY" + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (ite ntBool ntString ntString) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString))))) + + +(declare-var col1 String) +(declare-var col2 String) + +(constraint (= (f "University of Pennsylvania" "Phialdelphia, PA, USA") + "University of Pennsylvania, Phialdelphia, PA, USA")) + +(constraint (= (f "UCLA" "Los Angeles, CA") + "UCLA, Los Angeles, CA, USA")) + +(constraint (= (f "Cornell University" "Ithaca, New York, USA") + "Cornell University, Ithaca, New York, USA")) + +(constraint (= (f "Penn" "Philadelphia, PA, USA") + "Penn, Philadelphia, PA, USA")) + +(constraint (= (f "University of Maryland College Park" "College Park, MD") + "University of Maryland College Park, College Park, MD, USA")) + +(constraint (= (f "University of Michigan" "Ann Arbor, MI, USA") + "University of Michigan, Ann Arbor, MI, USA")) + + + +(check-synth) diff --git a/PBE_Strings_Track/univ_3-long-repeat.sl b/PBE_Strings_Track/univ_3-long-repeat.sl new file mode 100644 index 0000000000000000000000000000000000000000..128b00078cae210ae01aa85cac41a286ce582b12 --- /dev/null +++ b/PBE_Strings_Track/univ_3-long-repeat.sl @@ -0,0 +1,118 @@ +(set-logic SLIA) + +(synth-fun f ((col1 String) (col2 String)) String + ((Start String (ntString)) + (ntString String (col1 col2 " " "," "USA" "PA" "CT" "CA" "MD" "NY" + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (ite ntBool ntString ntString) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var col1 String) +(declare-var col2 String) + +(constraint (= (f "UC Berkeley" "Berkeley, CA") + "Berkeley, CA, USA")) + +(constraint (= (f "University of Pennsylvania" "Phialdelphia, PA, USA") + "Phialdelphia, PA, USA")) + +(constraint (= (f "UCLA" "Los Angeles, CA") + "UCLA, Los Angeles, CA, USA")) + +(constraint (= (f "Cornell University" "Ithaca, New York, USA") + "Ithaca, New York, USA")) + +(constraint (= (f "Penn" "Philadelphia, PA, USA") + "Philadelphia, PA, USA")) + +(constraint (= (f "University of Michigan" "Ann Arbor, MI, USA") + "Ann Arbor, MI, USA")) + +(constraint (= (f "UC Berkeley" "Berkeley, CA") + "Berkeley, CA, USA")) + +(constraint (= (f "MIT" "Cambridge, MA") + "Cambridge, MA, USA")) + +(constraint (= (f "University of Pennsylvania" "Phialdelphia, PA, USA") + "Phialdelphia, PA, USA")) + +(constraint (= (f "UCLA" "Los Angeles, CA") + "Los Angeles, CA, USA")) + +(constraint (= (f "University of Maryland College Park" "College Park, MD") + "College Park, MD, USA")) + +(constraint (= (f "University of Michigan" "Ann Arbor, MI, USA") + "Ann Arbor, MI, USA")) + +(constraint (= (f "UC Berkeley" "Berkeley, CA") + "Berkeley, CA, USA")) + +(constraint (= (f "MIT" "Cambridge, MA") + "Cambridge, MA, USA")) + +(constraint (= (f "Rice University" "Houston, TX") + "Houston, TX, USA")) + +(constraint (= (f "Yale University" "New Haven, CT, USA") + "New Haven, CT, USA")) + +(constraint (= (f "Columbia University" "New York, NY, USA") + "New York, NY, USA")) + +(constraint (= (f "NYU" "New York, New York, USA") + "New York, New York, USA")) + +(constraint (= (f "Drexel University" "Philadelphia, PA") + "Philadelphia, PA, USA")) + +(constraint (= (f "UC Berkeley" "Berkeley, CA") + "Berkeley, CA, USA")) + +(constraint (= (f "UIUC" "Urbana, IL") + "Urbana, IL, USA")) + +(constraint (= (f "Temple University" "Philadelphia, PA") + "Philadelphia, PA, USA")) + +(constraint (= (f "Harvard University" "Cambridge, MA, USA") + "Cambridge, MA, USA")) + +(constraint (= (f "University of Connecticut" "Storrs, CT, USA") + "Storrs, CT, USA")) + +(constraint (= (f "Drexel University" "Philadelphia, PA") + "DPhiladelphia, PA, USA")) + +(constraint (= (f "NYU" "New York, New York, USA") + "New York, New York, USA")) + +(constraint (= (f "UIUC" "Urbana, IL") + "Urbana, IL, USA")) + +(constraint (= (f "New Haven University" "New Haven, CT, USA") + "New Haven, CT, USA")) + +(constraint (= (f "University of California, Santa Barbara" "Santa Barbara, CA, USA") + "Santa Barbara, CA, USA")) + +(constraint (= (f "University of Connecticut" "Storrs, CT, USA") + "Storrs, CT, USA")) + + +(check-synth) diff --git a/PBE_Strings_Track/univ_3-long.sl b/PBE_Strings_Track/univ_3-long.sl new file mode 100644 index 0000000000000000000000000000000000000000..30539d5e243d1577b0a531ee9516cf5710f6a31e --- /dev/null +++ b/PBE_Strings_Track/univ_3-long.sl @@ -0,0 +1,88 @@ +(set-logic SLIA) + +(synth-fun f ((col1 String) (col2 String)) String + ((Start String (ntString)) + (ntString String (col1 col2 " " "," "USA" "PA" "CT" "CA" "MD" "NY" + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (ite ntBool ntString ntString) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var col1 String) +(declare-var col2 String) + +(constraint (= (f "University of Pennsylvania" "Phialdelphia, PA, USA") + "Phialdelphia, PA, USA")) + +(constraint (= (f "UCLA" "Los Angeles, CA") + "Los Angeles, CA, USA")) + +(constraint (= (f "Cornell University" "Ithaca, New York, USA") + "Ithaca, New York, USA")) + +(constraint (= (f "Penn" "Philadelphia, PA, USA") + "Philadelphia, PA, USA")) + +(constraint (= (f "University of Maryland College Park" "College Park, MD") + "College Park, MD, USA")) + +(constraint (= (f "University of Michigan" "Ann Arbor, MI, USA") + "Ann Arbor, MI, USA")) + +(constraint (= (f "UC Berkeley" "Berkeley, CA") + "Berkeley, CA, USA")) + +(constraint (= (f "MIT" "Cambridge, MA") + "Cambridge, MA, USA")) + +(constraint (= (f "Rice University" "Houston, TX") + "Houston, TX, USA")) + +(constraint (= (f "Yale University" "New Haven, CT, USA") + "New Haven, CT, USA")) + +(constraint (= (f "Columbia University" "New York, NY, USA") + "New York, NY, USA")) + +(constraint (= (f "NYU" "New York, New York, USA") + "New York, New York, USA")) + +(constraint (= (f "UC Berkeley" "Berkeley, CA") + "Berkeley, CA, USA")) + +(constraint (= (f "UIUC" "Urbana, IL") + "Urbana, IL, USA")) + +(constraint (= (f "Temple University" "Philadelphia, PA") + "Philadelphia, PA, USA")) + +(constraint (= (f "Harvard University" "Cambridge, MA, USA") + "Cambridge, MA, USA")) + +(constraint (= (f "University of Connecticut" "Storrs, CT, USA") + "Storrs, CT, USA")) + +(constraint (= (f "Drexel University" "Philadelphia, PA") + "Philadelphia, PA, USA")) + +(constraint (= (f "New Haven University" "New Haven, CT, USA") + "New Haven, CT, USA")) + +(constraint (= (f "University of California, Santa Barbara" "Santa Barbara, CA, USA") + "Santa Barbara, CA, USA")) + + +(check-synth) diff --git a/PBE_Strings_Track/univ_3.sl b/PBE_Strings_Track/univ_3.sl new file mode 100644 index 0000000000000000000000000000000000000000..e406e6d162d77d9f19e4db97609b7d0e4a6ef1b3 --- /dev/null +++ b/PBE_Strings_Track/univ_3.sl @@ -0,0 +1,47 @@ +(set-logic SLIA) + +(synth-fun f ((col1 String) (col2 String)) String + ((Start String (ntString)) + (ntString String (col1 col2 " " "," "USA" "PA" "CT" "CA" "MD" "NY" + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (ite ntBool ntString ntString) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var col1 String) +(declare-var col2 String) + +(constraint (= (f "University of Pennsylvania" "Phialdelphia, PA, USA") + "Phialdelphia, PA, USA")) + +(constraint (= (f "UCLA" "Los Angeles, CA") + "Los Angeles, CA, USA")) + +(constraint (= (f "Cornell University" "Ithaca, New York, USA") + "Ithaca, New York, USA")) + +(constraint (= (f "Penn" "Philadelphia, PA, USA") + "Philadelphia, PA, USA")) + +(constraint (= (f "University of Maryland College Park" "College Park, MD") + "College Park, MD, USA")) + +(constraint (= (f "University of Michigan" "Ann Arbor, MI, USA") + "Ann Arbor, MI, USA")) + + + +(check-synth) diff --git a/PBE_Strings_Track/univ_3_short.sl b/PBE_Strings_Track/univ_3_short.sl new file mode 100644 index 0000000000000000000000000000000000000000..cc1795cf0117e52564442de5ce37bd69802dfe38 --- /dev/null +++ b/PBE_Strings_Track/univ_3_short.sl @@ -0,0 +1,42 @@ +(set-logic SLIA) + +(synth-fun f ((col1 String) (col2 String)) String + ((Start String (ntString)) + (ntString String (col1 col2 " " "," "USA" "PA" "CT" "CA" "MD" "NY" + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (ite ntBool ntString ntString) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString))))) + + +(declare-var col1 String) +(declare-var col2 String) + +(constraint (= (f "University of Pennsylvania" "Phialdelphia, PA, USA") + "Phialdelphia, PA, USA")) + +(constraint (= (f "UCLA" "Los Angeles, CA") + "Los Angeles, CA, USA")) + +(constraint (= (f "Cornell University" "Ithaca, New York, USA") + "Ithaca, New York, USA")) + +(constraint (= (f "Penn" "Philadelphia, PA, USA") + "Philadelphia, PA, USA")) + +(constraint (= (f "University of Maryland College Park" "College Park, MD") + "College Park, MD, USA")) + +(constraint (= (f "University of Michigan" "Ann Arbor, MI, USA") + "Ann Arbor, MI, USA")) + +(check-synth) diff --git a/PBE_Strings_Track/univ_4-long-repeat.sl b/PBE_Strings_Track/univ_4-long-repeat.sl new file mode 100644 index 0000000000000000000000000000000000000000..31e45ccf6ab97562dedaf0331828725f2cd0546c --- /dev/null +++ b/PBE_Strings_Track/univ_4-long-repeat.sl @@ -0,0 +1,118 @@ +(set-logic SLIA) + +(synth-fun f ((col1 String) (col2 String)) String + ((Start String (ntString)) + (ntString String (col1 col2 " " "," "New York" "USA" "PA" "CT" "CA" "MD" "NY" + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (ite ntBool ntString ntString) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var col1 String) +(declare-var col2 String) + +(constraint (= (f "UC Berkeley" "Berkeley, CA") + "Berkeley, CA, USA")) + +(constraint (= (f "University of Pennsylvania" "Phialdelphia, PA, USA") + "Phialdelphia, PA, USA")) + +(constraint (= (f "UCLA" "Los Angeles, CA") + "UCLA, Los Angeles, CA, USA")) + +(constraint (= (f "Cornell University" "Ithaca, New York, USA") + "Ithaca, NY, USA")) + +(constraint (= (f "Penn" "Philadelphia, PA, USA") + "Philadelphia, PA, USA")) + +(constraint (= (f "University of Michigan" "Ann Arbor, MI, USA") + "Ann Arbor, MI, USA")) + +(constraint (= (f "UC Berkeley" "Berkeley, CA") + "Berkeley, CA, USA")) + +(constraint (= (f "MIT" "Cambridge, MA") + "Cambridge, MA, USA")) + +(constraint (= (f "University of Pennsylvania" "Phialdelphia, PA, USA") + "Phialdelphia, PA, USA")) + +(constraint (= (f "UCLA" "Los Angeles, CA") + "Los Angeles, CA, USA")) + +(constraint (= (f "University of Maryland College Park" "College Park, MD") + "College Park, MD, USA")) + +(constraint (= (f "University of Michigan" "Ann Arbor, MI, USA") + "Ann Arbor, MI, USA")) + +(constraint (= (f "UC Berkeley" "Berkeley, CA") + "Berkeley, CA, USA")) + +(constraint (= (f "MIT" "Cambridge, MA") + "Cambridge, MA, USA")) + +(constraint (= (f "Rice University" "Houston, TX") + "Houston, TX, USA")) + +(constraint (= (f "Yale University" "New Haven, CT, USA") + "New Haven, CT, USA")) + +(constraint (= (f "Columbia University" "New York, NY, USA") + "New York, NY, USA")) + +(constraint (= (f "NYU" "New York, New York, USA") + "New York, NY, USA")) + +(constraint (= (f "Drexel University" "Philadelphia, PA") + "Philadelphia, PA, USA")) + +(constraint (= (f "UC Berkeley" "Berkeley, CA") + "Berkeley, CA, USA")) + +(constraint (= (f "UIUC" "Urbana, IL") + "Urbana, IL, USA")) + +(constraint (= (f "Temple University" "Philadelphia, PA") + "Philadelphia, PA, USA")) + +(constraint (= (f "Harvard University" "Cambridge, MA, USA") + "Cambridge, MA, USA")) + +(constraint (= (f "University of Connecticut" "Storrs, CT, USA") + "Storrs, CT, USA")) + +(constraint (= (f "Drexel University" "Philadelphia, PA") + "DPhiladelphia, PA, USA")) + +(constraint (= (f "NYU" "New York, New York, USA") + "New York, NY, USA")) + +(constraint (= (f "UIUC" "Urbana, IL") + "Urbana, IL, USA")) + +(constraint (= (f "New Haven University" "New Haven, CT, USA") + "New Haven, CT, USA")) + +(constraint (= (f "University of California, Santa Barbara" "Santa Barbara, CA, USA") + "Santa Barbara, CA, USA")) + +(constraint (= (f "University of Connecticut" "Storrs, CT, USA") + "Storrs, CT, USA")) + + +(check-synth) diff --git a/PBE_Strings_Track/univ_4-long.sl b/PBE_Strings_Track/univ_4-long.sl new file mode 100644 index 0000000000000000000000000000000000000000..1e1928e44a358fbe79e657acd8eaec133525b0cb --- /dev/null +++ b/PBE_Strings_Track/univ_4-long.sl @@ -0,0 +1,88 @@ +(set-logic SLIA) + +(synth-fun f ((col1 String) (col2 String)) String + ((Start String (ntString)) + (ntString String (col1 col2 " " "," "New York" "USA" "PA" "CT" "CA" "MD" "NY" + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (ite ntBool ntString ntString) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var col1 String) +(declare-var col2 String) + +(constraint (= (f "University of Pennsylvania" "Phialdelphia, PA, USA") + "Phialdelphia, PA, USA")) + +(constraint (= (f "UCLA" "Los Angeles, CA") + "Los Angeles, CA, USA")) + +(constraint (= (f "Cornell University" "Ithaca, New York, USA") + "Ithaca, NY, USA")) + +(constraint (= (f "Penn" "Philadelphia, PA, USA") + "Philadelphia, PA, USA")) + +(constraint (= (f "University of Maryland College Park" "College Park, MD") + "College Park, MD, USA")) + +(constraint (= (f "University of Michigan" "Ann Arbor, MI, USA") + "Ann Arbor, MI, USA")) + +(constraint (= (f "UC Berkeley" "Berkeley, CA") + "Berkeley, CA, USA")) + +(constraint (= (f "MIT" "Cambridge, MA") + "Cambridge, MA, USA")) + +(constraint (= (f "Rice University" "Houston, TX") + "Houston, TX, USA")) + +(constraint (= (f "Yale University" "New Haven, CT, USA") + "New Haven, CT, USA")) + +(constraint (= (f "Columbia University" "New York, NY, USA") + "New York, NY, USA")) + +(constraint (= (f "NYU" "New York, New York, USA") + "New York, NY, USA")) + +(constraint (= (f "UC Berkeley" "Berkeley, CA") + "Berkeley, CA, USA")) + +(constraint (= (f "UIUC" "Urbana, IL") + "Urbana, IL, USA")) + +(constraint (= (f "Temple University" "Philadelphia, PA") + "Philadelphia, PA, USA")) + +(constraint (= (f "Harvard University" "Cambridge, MA, USA") + "Cambridge, MA, USA")) + +(constraint (= (f "University of Connecticut" "Storrs, CT, USA") + "Storrs, CT, USA")) + +(constraint (= (f "Drexel University" "Philadelphia, PA") + "Philadelphia, PA, USA")) + +(constraint (= (f "New Haven University" "New Haven, CT, USA") + "New Haven, CT, USA")) + +(constraint (= (f "University of California, Santa Barbara" "Santa Barbara, CA, USA") + "Santa Barbara, CA, USA")) + + +(check-synth) diff --git a/PBE_Strings_Track/univ_4.sl b/PBE_Strings_Track/univ_4.sl new file mode 100644 index 0000000000000000000000000000000000000000..2cf08e897b2f51f822aecd7ea9115504fe069482 --- /dev/null +++ b/PBE_Strings_Track/univ_4.sl @@ -0,0 +1,51 @@ +(set-logic SLIA) + +(synth-fun f ((col1 String) (col2 String)) String + ((Start String (ntString)) + (ntString String (col1 col2 " " "," "New York" "USA" "PA" "CT" "CA" "MD" "NY" + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (ite ntBool ntString ntString) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var col1 String) +(declare-var col2 String) + +(constraint (= (f "University of Pennsylvania" "Phialdelphia, PA, USA") + "Phialdelphia, PA, USA")) + +(constraint (= (f "UCLA" "Los Angeles, CA") + "Los Angeles, CA, USA")) + +(constraint (= (f "Cornell University" "Ithaca, New York, USA") + "Ithaca, NY, USA")) + +(constraint (= (f "Penn" "Philadelphia, PA, USA") + "Philadelphia, PA, USA")) + +(constraint (= (f "University of Maryland College Park" "College Park, MD") + "College Park, MD, USA")) + +(constraint (= (f "University of Michigan" "Ann Arbor, MI, USA") + "Ann Arbor, MI, USA")) + +(constraint (= (f "Columbia University" "New York, NY, USA") + "New York, NY, USA")) + +(constraint (= (f "NYU" "New York, New York, USA") + "New York, NY, USA")) + +(check-synth) diff --git a/PBE_Strings_Track/univ_4_short.sl b/PBE_Strings_Track/univ_4_short.sl new file mode 100644 index 0000000000000000000000000000000000000000..f50b01922b0df06ed087467341eb9e73b7b8bb6a --- /dev/null +++ b/PBE_Strings_Track/univ_4_short.sl @@ -0,0 +1,48 @@ +(set-logic SLIA) + +(synth-fun f ((col1 String) (col2 String)) String + ((Start String (ntString)) + (ntString String (col1 col2 " " "," "New York" "USA" "PA" "CT" "CA" "MD" "NY" + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (ite ntBool ntString ntString) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString))))) + + +(declare-var col1 String) +(declare-var col2 String) + +(constraint (= (f "University of Pennsylvania" "Phialdelphia, PA, USA") + "Phialdelphia, PA, USA")) + +(constraint (= (f "UCLA" "Los Angeles, CA") + "Los Angeles, CA, USA")) + +(constraint (= (f "Cornell University" "Ithaca, New York, USA") + "Ithaca, NY, USA")) + +(constraint (= (f "Penn" "Philadelphia, PA, USA") + "Philadelphia, PA, USA")) + +(constraint (= (f "University of Maryland College Park" "College Park, MD") + "College Park, MD, USA")) + +(constraint (= (f "University of Michigan" "Ann Arbor, MI, USA") + "Ann Arbor, MI, USA")) + +(constraint (= (f "Columbia University" "New York, NY, USA") + "New York, NY, USA")) + +(constraint (= (f "NYU" "New York, New York, USA") + "New York, NY, USA")) + +(check-synth) diff --git a/PBE_Strings_Track/univ_5-long-repeat.sl b/PBE_Strings_Track/univ_5-long-repeat.sl new file mode 100644 index 0000000000000000000000000000000000000000..6cce485b02421a37b15ea141d7be3268cf4f60f5 --- /dev/null +++ b/PBE_Strings_Track/univ_5-long-repeat.sl @@ -0,0 +1,116 @@ +(set-logic SLIA) + +(synth-fun f ((col1 String) (col2 String)) String + ((Start String (ntString)) + (ntString String (col1 col2 "New York" " " "," "A" "B" "C" "D" "E" "F" "G" "H" + "I" "J" "K" "L" "M" "N" "O" "P" "Q" "R" "S" "T" "U" "V" "W" "X" "Y" "Z" + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (ite ntBool ntString ntString) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString))))) + + +(declare-var col1 String) +(declare-var col2 String) + +(constraint (= (f "UC Berkeley" "Berkeley, CA") + "Berkeley, CA, USA")) + +(constraint (= (f "University of Pennsylvania" "Phialdelphia, PA, USA") + "Phialdelphia, PA, USA")) + +(constraint (= (f "UCLA" "Los Angeles, CA") + "UCLA, Los Angeles, CA, USA")) + +(constraint (= (f "Cornell University" "Ithaca, New York, USA") + "Ithaca, NY, USA")) + +(constraint (= (f "Penn" "Philadelphia, PA, USA") + "Philadelphia, PA, USA")) + +(constraint (= (f "University of Michigan" "Ann Arbor, MI, USA") + "Ann Arbor, MI, USA")) + +(constraint (= (f "UC Berkeley" "Berkeley, CA") + "Berkeley, CA, USA")) + +(constraint (= (f "MIT" "Cambridge, MA") + "Cambridge, MA, USA")) + +(constraint (= (f "University of Pennsylvania" "Phialdelphia, PA, USA") + "Phialdelphia, PA, USA")) + +(constraint (= (f "UCLA" "Los Angeles, CA") + "Los Angeles, CA, USA")) + +(constraint (= (f "University of Maryland College Park" "College Park, MD") + "College Park, MD, USA")) + +(constraint (= (f "University of Michigan" "Ann Arbor, MI, USA") + "Ann Arbor, MI, USA")) + +(constraint (= (f "UC Berkeley" "Berkeley, CA") + "Berkeley, CA, USA")) + +(constraint (= (f "MIT" "Cambridge, MA") + "Cambridge, MA, USA")) + +(constraint (= (f "Rice University" "Houston, TX") + "Houston, TX, USA")) + +(constraint (= (f "Yale University" "New Haven, CT, USA") + "New Haven, CT, USA")) + +(constraint (= (f "Columbia University" "New York, NY, USA") + "New York, NY, USA")) + +(constraint (= (f "NYU" "New York, New York, USA") + "New York, NY, USA")) + +(constraint (= (f "Drexel University" "Philadelphia, PA") + "Philadelphia, PA, USA")) + +(constraint (= (f "UC Berkeley" "Berkeley, CA") + "Berkeley, CA, USA")) + +(constraint (= (f "UIUC" "Urbana, IL") + "Urbana, IL, USA")) + +(constraint (= (f "Temple University" "Philadelphia, PA") + "Philadelphia, PA, USA")) + +(constraint (= (f "Harvard University" "Cambridge, MA, USA") + "Cambridge, MA, USA")) + +(constraint (= (f "University of Connecticut" "Storrs, CT, USA") + "Storrs, CT, USA")) + +(constraint (= (f "Drexel University" "Philadelphia, PA") + "DPhiladelphia, PA, USA")) + +(constraint (= (f "NYU" "New York, New York, USA") + "New York, NY, USA")) + +(constraint (= (f "UIUC" "Urbana, IL") + "Urbana, IL, USA")) + +(constraint (= (f "New Haven University" "New Haven, CT, USA") + "New Haven, CT, USA")) + +(constraint (= (f "University of California, Santa Barbara" "Santa Barbara, CA, USA") + "Santa Barbara, CA, USA")) + +(constraint (= (f "University of Connecticut" "Storrs, CT, USA") + "Storrs, CT, USA")) + + +(check-synth) diff --git a/PBE_Strings_Track/univ_5-long.sl b/PBE_Strings_Track/univ_5-long.sl new file mode 100644 index 0000000000000000000000000000000000000000..b61aa7346832afde6b96becea921d2bb50cf54a2 --- /dev/null +++ b/PBE_Strings_Track/univ_5-long.sl @@ -0,0 +1,89 @@ +(set-logic SLIA) + +(synth-fun f ((col1 String) (col2 String)) String + ((Start String (ntString)) + (ntString String (col1 col2 "New York" " " "," "A" "B" "C" "D" "E" "F" "G" "H" + "I" "J" "K" "L" "M" "N" "O" "P" "Q" "R" "S" "T" "U" "V" "W" "X" "Y" "Z" + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (ite ntBool ntString ntString) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var col1 String) +(declare-var col2 String) + +(constraint (= (f "University of Pennsylvania" "Phialdelphia, PA, USA") + "Phialdelphia, PA, USA")) + +(constraint (= (f "UCLA" "Los Angeles, CA") + "Los Angeles, CA, USA")) + +(constraint (= (f "Cornell University" "Ithaca, New York, USA") + "Ithaca, NY, USA")) + +(constraint (= (f "Penn" "Philadelphia, PA, USA") + "Philadelphia, PA, USA")) + +(constraint (= (f "University of Maryland College Park" "College Park, MD") + "College Park, MD, USA")) + +(constraint (= (f "University of Michigan" "Ann Arbor, MI, USA") + "Ann Arbor, MI, USA")) + +(constraint (= (f "UC Berkeley" "Berkeley, CA") + "Berkeley, CA, USA")) + +(constraint (= (f "MIT" "Cambridge, MA") + "Cambridge, MA, USA")) + +(constraint (= (f "Rice University" "Houston, TX") + "Houston, TX, USA")) + +(constraint (= (f "Yale University" "New Haven, CT, USA") + "New Haven, CT, USA")) + +(constraint (= (f "Columbia University" "New York, NY, USA") + "New York, NY, USA")) + +(constraint (= (f "NYU" "New York, New York, USA") + "New York, NY, USA")) + +(constraint (= (f "UC Berkeley" "Berkeley, CA") + "Berkeley, CA, USA")) + +(constraint (= (f "UIUC" "Urbana, IL") + "Urbana, IL, USA")) + +(constraint (= (f "Temple University" "Philadelphia, PA") + "Philadelphia, PA, USA")) + +(constraint (= (f "Harvard University" "Cambridge, MA, USA") + "Cambridge, MA, USA")) + +(constraint (= (f "University of Connecticut" "Storrs, CT, USA") + "Storrs, CT, USA")) + +(constraint (= (f "Drexel University" "Philadelphia, PA") + "Philadelphia, PA, USA")) + +(constraint (= (f "New Haven University" "New Haven, CT, USA") + "New Haven, CT, USA")) + +(constraint (= (f "University of California, Santa Barbara" "Santa Barbara, CA, USA") + "Santa Barbara, CA, USA")) + + +(check-synth) diff --git a/PBE_Strings_Track/univ_5.sl b/PBE_Strings_Track/univ_5.sl new file mode 100644 index 0000000000000000000000000000000000000000..e211c151031e41d1b2c6bc5d6f6a408fd1cb3568 --- /dev/null +++ b/PBE_Strings_Track/univ_5.sl @@ -0,0 +1,52 @@ +(set-logic SLIA) + +(synth-fun f ((col1 String) (col2 String)) String + ((Start String (ntString)) + (ntString String (col1 col2 "New York" " " "," "A" "B" "C" "D" "E" "F" "G" "H" + "I" "J" "K" "L" "M" "N" "O" "P" "Q" "R" "S" "T" "U" "V" "W" "X" "Y" "Z" + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (ite ntBool ntString ntString) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var col1 String) +(declare-var col2 String) + +(constraint (= (f "University of Pennsylvania" "Phialdelphia, PA, USA") + "Phialdelphia, PA, USA")) + +(constraint (= (f "UCLA" "Los Angeles, CA") + "Los Angeles, CA, USA")) + +(constraint (= (f "Cornell University" "Ithaca, New York, USA") + "Ithaca, NY, USA")) + +(constraint (= (f "Penn" "Philadelphia, PA, USA") + "Philadelphia, PA, USA")) + +(constraint (= (f "University of Maryland College Park" "College Park, MD") + "College Park, MD, USA")) + +(constraint (= (f "University of Michigan" "Ann Arbor, MI, USA") + "Ann Arbor, MI, USA")) + +(constraint (= (f "Columbia University" "New York, NY, USA") + "New York, NY, USA")) + +(constraint (= (f "NYU" "New York, New York, USA") + "New York, NY, USA")) + +(check-synth) diff --git a/PBE_Strings_Track/univ_5_short.sl b/PBE_Strings_Track/univ_5_short.sl new file mode 100644 index 0000000000000000000000000000000000000000..05083daac5a1b93d3a604abc2d803d7eef8a15f6 --- /dev/null +++ b/PBE_Strings_Track/univ_5_short.sl @@ -0,0 +1,49 @@ +(set-logic SLIA) + +(synth-fun f ((col1 String) (col2 String)) String + ((Start String (ntString)) + (ntString String (col1 col2 "New York" " " "," "A" "B" "C" "D" "E" "F" "G" "H" + "I" "J" "K" "L" "M" "N" "O" "P" "Q" "R" "S" "T" "U" "V" "W" "X" "Y" "Z" + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (ite ntBool ntString ntString) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString))))) + + +(declare-var col1 String) +(declare-var col2 String) + +(constraint (= (f "University of Pennsylvania" "Phialdelphia, PA, USA") + "Phialdelphia, PA, USA")) + +(constraint (= (f "UCLA" "Los Angeles, CA") + "Los Angeles, CA, USA")) + +(constraint (= (f "Cornell University" "Ithaca, New York, USA") + "Ithaca, NY, USA")) + +(constraint (= (f "Penn" "Philadelphia, PA, USA") + "Philadelphia, PA, USA")) + +(constraint (= (f "University of Maryland College Park" "College Park, MD") + "College Park, MD, USA")) + +(constraint (= (f "University of Michigan" "Ann Arbor, MI, USA") + "Ann Arbor, MI, USA")) + +(constraint (= (f "Columbia University" "New York, NY, USA") + "New York, NY, USA")) + +(constraint (= (f "NYU" "New York, New York, USA") + "New York, NY, USA")) + +(check-synth) diff --git a/PBE_Strings_Track/univ_6-long-repeat.sl b/PBE_Strings_Track/univ_6-long-repeat.sl new file mode 100644 index 0000000000000000000000000000000000000000..238b68025f6cb6335c8a7f4fbef011b66ca89a22 --- /dev/null +++ b/PBE_Strings_Track/univ_6-long-repeat.sl @@ -0,0 +1,115 @@ +(set-logic SLIA) + +(synth-fun f ((col1 String) (col2 String)) String + ((Start String (ntString)) + (ntString String (col1 col2 "New York" " " "," "AK" "AZ" "AR" "CA" "CO" "CT" "DE" "FL" "GA" "HI" "ID" "IL" "IN" "IA" "KS" "KY" "LA" "ME" "MD" "MA" "MI" "MN" "MS" "MO" "MT" "NE" "NV" "NH" "NJ" "NM" "NY" "NC" "ND" "OH" "OK" "OR" "PA" "RI" "SC" "SD" "TN" "TX" "UT" "VT" "VA" "WA" "WV" "WI" "USA" + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (ite ntBool ntString ntString) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString))))) + + +(declare-var col1 String) +(declare-var col2 String) + +(constraint (= (f "UC Berkeley" "Berkeley, CA") + "Berkeley, CA, USA")) + +(constraint (= (f "University of Pennsylvania" "Phialdelphia, PA, USA") + "Phialdelphia, PA, USA")) + +(constraint (= (f "UCLA" "Los Angeles, CA") + "UCLA, Los Angeles, CA, USA")) + +(constraint (= (f "Cornell University" "Ithaca, New York, USA") + "Ithaca, NY, USA")) + +(constraint (= (f "Penn" "Philadelphia, PA, USA") + "Philadelphia, PA, USA")) + +(constraint (= (f "University of Michigan" "Ann Arbor, MI, USA") + "Ann Arbor, MI, USA")) + +(constraint (= (f "UC Berkeley" "Berkeley, CA") + "Berkeley, CA, USA")) + +(constraint (= (f "MIT" "Cambridge, MA") + "Cambridge, MA, USA")) + +(constraint (= (f "University of Pennsylvania" "Phialdelphia, PA, USA") + "Phialdelphia, PA, USA")) + +(constraint (= (f "UCLA" "Los Angeles, CA") + "Los Angeles, CA, USA")) + +(constraint (= (f "University of Maryland College Park" "College Park, MD") + "College Park, MD, USA")) + +(constraint (= (f "University of Michigan" "Ann Arbor, MI, USA") + "Ann Arbor, MI, USA")) + +(constraint (= (f "UC Berkeley" "Berkeley, CA") + "Berkeley, CA, USA")) + +(constraint (= (f "MIT" "Cambridge, MA") + "Cambridge, MA, USA")) + +(constraint (= (f "Rice University" "Houston, TX") + "Houston, TX, USA")) + +(constraint (= (f "Yale University" "New Haven, CT, USA") + "New Haven, CT, USA")) + +(constraint (= (f "Columbia University" "New York, NY, USA") + "New York, NY, USA")) + +(constraint (= (f "NYU" "New York, New York, USA") + "New York, NY, USA")) + +(constraint (= (f "Drexel University" "Philadelphia, PA") + "Philadelphia, PA, USA")) + +(constraint (= (f "UC Berkeley" "Berkeley, CA") + "Berkeley, CA, USA")) + +(constraint (= (f "UIUC" "Urbana, IL") + "Urbana, IL, USA")) + +(constraint (= (f "Temple University" "Philadelphia, PA") + "Philadelphia, PA, USA")) + +(constraint (= (f "Harvard University" "Cambridge, MA, USA") + "Cambridge, MA, USA")) + +(constraint (= (f "University of Connecticut" "Storrs, CT, USA") + "Storrs, CT, USA")) + +(constraint (= (f "Drexel University" "Philadelphia, PA") + "DPhiladelphia, PA, USA")) + +(constraint (= (f "NYU" "New York, New York, USA") + "New York, NY, USA")) + +(constraint (= (f "UIUC" "Urbana, IL") + "Urbana, IL, USA")) + +(constraint (= (f "New Haven University" "New Haven, CT, USA") + "New Haven, CT, USA")) + +(constraint (= (f "University of California, Santa Barbara" "Santa Barbara, CA, USA") + "Santa Barbara, CA, USA")) + +(constraint (= (f "University of Connecticut" "Storrs, CT, USA") + "Storrs, CT, USA")) + + +(check-synth) diff --git a/PBE_Strings_Track/univ_6-long.sl b/PBE_Strings_Track/univ_6-long.sl new file mode 100644 index 0000000000000000000000000000000000000000..10d2ddde838c3f55195f59dac12125c1c366ace9 --- /dev/null +++ b/PBE_Strings_Track/univ_6-long.sl @@ -0,0 +1,88 @@ +(set-logic SLIA) + +(synth-fun f ((col1 String) (col2 String)) String + ((Start String (ntString)) + (ntString String (col1 col2 "New York" " " "," "AK" "AZ" "AR" "CA" "CO" "CT" "DE" "FL" "GA" "HI" "ID" "IL" "IN" "IA" "KS" "KY" "LA" "ME" "MD" "MA" "MI" "MN" "MS" "MO" "MT" "NE" "NV" "NH" "NJ" "NM" "NY" "NC" "ND" "OH" "OK" "OR" "PA" "RI" "SC" "SD" "TN" "TX" "UT" "VT" "VA" "WA" "WV" "WI" "USA" + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (ite ntBool ntString ntString) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var col1 String) +(declare-var col2 String) + +(constraint (= (f "University of Pennsylvania" "Phialdelphia, PA, USA") + "Phialdelphia, PA, USA")) + +(constraint (= (f "UCLA" "Los Angeles, CA") + "Los Angeles, CA, USA")) + +(constraint (= (f "Cornell University" "Ithaca, New York, USA") + "Ithaca, NY, USA")) + +(constraint (= (f "Penn" "Philadelphia, PA, USA") + "Philadelphia, PA, USA")) + +(constraint (= (f "University of Maryland College Park" "College Park, MD") + "College Park, MD, USA")) + +(constraint (= (f "University of Michigan" "Ann Arbor, MI, USA") + "Ann Arbor, MI, USA")) + +(constraint (= (f "UC Berkeley" "Berkeley, CA") + "Berkeley, CA, USA")) + +(constraint (= (f "MIT" "Cambridge, MA") + "Cambridge, MA, USA")) + +(constraint (= (f "Rice University" "Houston, TX") + "Houston, TX, USA")) + +(constraint (= (f "Yale University" "New Haven, CT, USA") + "New Haven, CT, USA")) + +(constraint (= (f "Columbia University" "New York, NY, USA") + "New York, NY, USA")) + +(constraint (= (f "NYU" "New York, New York, USA") + "New York, NY, USA")) + +(constraint (= (f "UC Berkeley" "Berkeley, CA") + "Berkeley, CA, USA")) + +(constraint (= (f "UIUC" "Urbana, IL") + "Urbana, IL, USA")) + +(constraint (= (f "Temple University" "Philadelphia, PA") + "Philadelphia, PA, USA")) + +(constraint (= (f "Harvard University" "Cambridge, MA, USA") + "Cambridge, MA, USA")) + +(constraint (= (f "University of Connecticut" "Storrs, CT, USA") + "Storrs, CT, USA")) + +(constraint (= (f "Drexel University" "Philadelphia, PA") + "Philadelphia, PA, USA")) + +(constraint (= (f "New Haven University" "New Haven, CT, USA") + "New Haven, CT, USA")) + +(constraint (= (f "University of California, Santa Barbara" "Santa Barbara, CA, USA") + "Santa Barbara, CA, USA")) + + +(check-synth) diff --git a/PBE_Strings_Track/univ_6.sl b/PBE_Strings_Track/univ_6.sl new file mode 100644 index 0000000000000000000000000000000000000000..b3ba273036c243092f6ccc56d80df125a1038675 --- /dev/null +++ b/PBE_Strings_Track/univ_6.sl @@ -0,0 +1,51 @@ +(set-logic SLIA) + +(synth-fun f ((col1 String) (col2 String)) String + ((Start String (ntString)) + (ntString String (col1 col2 "New York" " " "," "USA" "AK" "AZ" "AR" "CA" "CO" "CT" "DE" "FL" "GA" "HI" "ID" "IL" "IN" "IA" "KS" "KY" "LA" "ME" "MD" "MA" "MI" "MN" "MS" "MO" "MT" "NE" "NV" "NH" "NJ" "NM" "NY" "NC" "ND" "OH" "OK" "OR" "PA" "RI" "SC" "SD" "TN" "TX" "UT" "VT" "VA" "WA" "WV" "WI" + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (ite ntBool ntString ntString) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var col1 String) +(declare-var col2 String) + +(constraint (= (f "University of Pennsylvania" "Phialdelphia, PA, USA") + "Phialdelphia, PA, USA")) + +(constraint (= (f "UCLA" "Los Angeles, CA") + "Los Angeles, CA, USA")) + +(constraint (= (f "Cornell University" "Ithaca, New York, USA") + "Ithaca, NY, USA")) + +(constraint (= (f "Penn" "Philadelphia, PA, USA") + "Philadelphia, PA, USA")) + +(constraint (= (f "University of Maryland College Park" "College Park, MD") + "College Park, MD, USA")) + +(constraint (= (f "University of Michigan" "Ann Arbor, MI, USA") + "Ann Arbor, MI, USA")) + +(constraint (= (f "Columbia University" "New York, NY, USA") + "New York, NY, USA")) + +(constraint (= (f "NYU" "New York, New York, USA") + "New York, NY, USA")) + +(check-synth) diff --git a/PBE_Strings_Track/univ_6_short.sl b/PBE_Strings_Track/univ_6_short.sl new file mode 100644 index 0000000000000000000000000000000000000000..b7769a26eb5a3c0c01fbbb7a520ea76fb0ec01de --- /dev/null +++ b/PBE_Strings_Track/univ_6_short.sl @@ -0,0 +1,48 @@ +(set-logic SLIA) + +(synth-fun f ((col1 String) (col2 String)) String + ((Start String (ntString)) + (ntString String (col1 col2 "New York" " " "," "USA" "PA" "CT" "CA" "MD" "NY" + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (ite ntBool ntString ntString) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString))))) + + +(declare-var col1 String) +(declare-var col2 String) + +(constraint (= (f "University of Pennsylvania" "Phialdelphia, PA, USA") + "Phialdelphia, PA, USA")) + +(constraint (= (f "UCLA" "Los Angeles, CA") + "Los Angeles, CA, USA")) + +(constraint (= (f "Cornell University" "Ithaca, New York, USA") + "Ithaca, NY, USA")) + +(constraint (= (f "Penn" "Philadelphia, PA, USA") + "Philadelphia, PA, USA")) + +(constraint (= (f "University of Maryland College Park" "College Park, MD") + "College Park, MD, USA")) + +(constraint (= (f "University of Michigan" "Ann Arbor, MI, USA") + "Ann Arbor, MI, USA")) + +(constraint (= (f "Columbia University" "New York, NY, USA") + "New York, NY, USA")) + +(constraint (= (f "NYU" "New York, New York, USA") + "New York, NY, USA")) + +(check-synth) diff --git a/README.md b/README.md new file mode 100644 index 0000000000000000000000000000000000000000..7f6c30784beabb306c5e159a0469de8bbf75193c --- /dev/null +++ b/README.md @@ -0,0 +1,28 @@ +--- +language: + - en +thumbnail: "https://huggingface.co/Fraser/program-synthesis/resolve/main/img.png" +tags: +- program-synthesis +license: "mit" +datasets: +- program-synthesis +--- +# Program Synthesis Data + +Generated program synthesis datasets used to train [dreamcoder](https://github.com/ellisk42/ec). + +Currently just supports text & list data. + +```python +_FEATURES = datasets.Features( + { + "description": datasets.Value("string"), + "input": datasets.Value("string"), + "output": datasets.Value("string"), + "types": datasets.Value("string") + } +) +``` + +![](https://huggingface.co/Fraser/program-synthesis/resolve/main/img.png) diff --git a/data/csv_filtered_all_background_novel.p b/data/csv_filtered_all_background_novel.p new file mode 100644 index 0000000000000000000000000000000000000000..63fcf1487442457e39ac1cc23b0ce72d31b7b8d8 Binary files /dev/null and b/data/csv_filtered_all_background_novel.p differ diff --git a/data/data_filtered.json b/data/data_filtered.json new file mode 100644 index 0000000000000000000000000000000000000000..177c974ad91d5833f00b3b419a0e17f29b70859c --- /dev/null +++ b/data/data_filtered.json @@ -0,0 +1 @@ +[["D", "R", "P", "S", "V", "J", "M", "P", "L", "J", "L", "L", "B", "G", "L", "R", "M", "G", "P", "C", "F", "E", "C", "J", "J", "D", "G", "R", "J", "C", "D", "M", "J", "S", "T", "M", "C", "P", "N", "J", "J", "A", "E", "R", "H", "R", "J", "L", "S", "G", "D", "J", "J", "G", "B", "K", "L", "J", "K", "R", "J", "J", "S", "B", "R", "T", "D", "J", "T", "T", "H", "T", "J", "P", "M", "A", "A", "K", "N", "C", "M", "B", "M", "J", "C", "M", "A", "T", "R", "P", "P", "G", "V", "M", "D", "A", "D", "K", "T", "K", "T", "D", "G", "D", "S", "R", "D", "L", "K", "E", "D", "M", "G", "K", "J", "K", "H", "B", "L", "A", "M", "L", "J", "L", "M", "K", "A", "A", "B", "R", "N", "M", "G", "A", "B", "J", "L", "A", "K", "C", "S", "C", "K", "R", "V", "A", "C", "S", "C", "L", "A", "A", "J", "A", "C", "E", "S", "L", "W", "J", "W", "S", "B", "C", "J", "C", "F", "W", "R", "W", "T", "J", "M", "C", "J", "L", "G", "N", "S", "R", "V", "S", "P", "S", "P", "J", "S", "H", "L", "G", "M", "C", "G", "P", "R", "M", "D", "W", "L", "M", "B", "S", "F", "N", "E", "R", "J", "J", "J", "S", "J", "D", "C", "E", "D", "B", "R", "J", "J", "J", "H", "J", "K", "J", "L", "S", "S", "S", "R", "R", "E", "J", "S", "R", "T", "M", "S", "S", "L", "M", "R", "L", "F", "M", "L", "M", "S", "J", "E", "R", "R", "E", "J", "M", "C", "G", "J", "D", "R", "J", "J", "T", "T", "J", "W", "R", "M", "S", "C", "R", "K", "L", "K", "S", "C", "S", "M", "M", "J", "J", "K", "D", "H", "K", "K", "V", "J", "J", "S", "J", "R", "R", "J", "P", "R", "D", "C", "R", "C", "K", "R", "A", "S", "A", "P", "E", "H", "D", "R", "K", "B", "T", "T", "N", "W", "A", "R", "B", "R", "T", "A", "C", "L", "K", "E", "B", "A", "S", "A", "E", "I", "G", "C", "M", "E", "C", "F", "T", "A", "E", "S", "R", "M", "D", "C", "F", "A", "R", "M", "M", "C", "A", "L", "R", "R", "A", "K", "A", "M", "A", "J", "K", "T", "M", "S", "N", "P", "R", "S", "C", "A", "J", "R", "A", "A", "M", "J", "R", "J", "B", "B", "R", "V", "K", "A", "E", "J", "C", "D", "T", "H", "W", "L", "A", "R", "D", "L", "T", "A", "C", "J", "G", "P", "R", "J", "F", "L", "J", "P", "M", "J", "C", "G", "C", "K", "V", "K", "B", "T", "G", "B", "C", "S", "N", "M", "D", "J", "G", "H", "S", "M", "C", "G", "S", "L", "A", "D", "R", "T", "D", "J", "D", "O", "B", "T", "D", "T", "I", "J", "R", "R", "R", "M", "R", "J", "J", "L", "J", "B", "M", "L", "J", "E", "C", "L", "D", "C", "D", "E", "L", "E", "M", "M", "E", "C", "J", "E", "J", "W", "M", "A", "T", "B", "S", "D", "M", "J", "S", "A", "D", "D", "L", "A", "C", "G", "J", "D", "B", "W", "L"], ["j", "l", "a", "d", "a", "b", "j", "c", "g", "g", "k", "h", "k", "j", "f", "i", "k", "b", "h", "e", "k", "e", "c", "i", "d", "h", "e", "h", "f", "c", "b", "e", "l", "h", "l", "h", "i", "d", "a", "b", "d", "d", "e", "j", "b", "i", "a", "g", "h", "b", "c", "k", "g", "k", "a", "f", "d", "c", "b", "k", "k", "e", "g", "c", "g", "h", "f", "i", "f", "d", "c", "e", "e", "b", "f", "j", "a", "a", "e", "i", "k", "e", "e", "a", "d", "k", "e", "b", "k", "c", "d", "i", "l", "l", "l", "f", "a", "h", "f", "h", "a", "g", "c", "d", "l", "f", "j", "f", "c", "j", "c", "i", "d", "i", "k", "j", "f", "e", "b", "d", "g", "c", "a", "j", "b", "c", "k", "h", "c", "c", "g", "l", "i", "i", "b", "k", "i", "e", "b", "a", "h", "g", "f", "d", "a", "a", "l", "g", "i", "k", "g", "i", "i", "i", "f", "b", "k", "g", "l", "h", "j", "b", "e", "b", "l", "f", "h", "d", "f", "h", "j", "d", "c", "g", "d", "e", "e", "d", "k", "f", "f", "d", "c", "e", "f", "a", "c", "l", "a", "g", "a", "i", "a", "h", "h", "b", "k", "h", "j", "b", "g", "j"], ["G", "B", "C", "H", "A", "L", "F", "J", "A", "K", "J", "K", "H", "I", "K", "J", "C", "J", "D", "C", "H", "I", "J", "K", "D", "L", "E", "L", "C", "B", "I", "L", "D", "J", "G", "F", "L", "A", "L", "L", "C", "G", "B", "A", "J", "H", "J", "G", "B", "C", "K", "I", "D", "L", "E", "J", "C", "D", "B", "E", "I", "E", "K", "B", "E", "A", "I", "D", "F", "H", "E", "C", "L", "F", "E", "C", "D", "H", "G", "F", "L", "D", "A", "C", "B", "B", "D", "J", "H", "L", "F", "L", "L", "F", "D", "F", "D", "K", "J", "G", "J", "E", "F", "E", "J", "F", "F", "I", "B", "K", "F", "L", "L", "D", "F", "G", "E", "F", "A", "J", "G", "I", "J", "G", "B", "F", "K", "D", "K", "K", "D", "L", "B", "K", "D", "L", "C", "E", "J", "D", "J", "I", "A", "D", "F", "F", "G", "B", "L", "C", "K", "E", "A", "D", "A", "C", "A", "E", "K", "K", "L", "L", "J", "A", "E", "E", "B", "C", "A", "J", "I", "B", "L", "H", "K", "B", "I", "G", "A", "H", "G", "A", "L", "L", "J", "I", "H", "K", "B", "K", "E", "J", "E", "C", "K", "H", "C", "A", "F", "E", "H", "L"], ["3", "3", "8", "8", "7", "3", "0", "3", "4", "6", "7", "2", "1", "8", "4", "8", "4", "2", "8", "9", "9", "9", "9", "6", "8", "8", "5", "2", "2", "7", "9", "6", "6", "7", "5", "5", "5", "6", "5", "9", "0", "5", "1", "6", "6", "3", "1", "7", "4", "7", "1", "0", "2", "9", "1", "7", "4", "4", "6", "1", "6", "1", "6", "5", "9", "4", "4", "7", "8", "9", "6", "3", "9", "1", "0", "0", "0", "0", "1", "5", "5", "9", "5", "7", "8", "7", "4", "9", "2", "2", "5", "4", "3", "3", "9", "6", "0", "4", "2", "3", "0", "7", "7", "4", "2", "8", "1", "9", "5", "1", "0", "3", "1", "0", "2", "8", "2", "6", "5", "8", "7", "2", "1", "9", "5", "0", "6", "8", "4", "1", "9", "2", "9", "0", "6", "8", "2", "6", "7", "3", "9", "8", "2", "2", "7", "6", "4", "3", "3", "5"], ["5", "6", "6", "6", "6", "5", "3", "2", "6", "3", "1", "1", "4", "1", "4", "6", "2", "2", "3", "2", "5", "4", "5", "3", "5", "4", "1", "3", "4", "1", "5", "6", "2", "6", "4", "1", "4", "5", "3", "4", "3", "5", "1", "1", "4", "6", "1", "1", "4", "2", "2", "6", "5", "3", "2", "3", "6", "1", "2", "2", "4", "5", "3", "6", "2", "3", "6", "1", "5", "1", "2", "3", "3", "1", "4", "2", "4", "3", "4", "3", "5", "2", "6", "6", "4", "1", "5", "5", "2", "5"], ["9", "7", "8", "9", "9", "6", "9", "8", "9", "5", "6", "5", "6", "5", "6", "7", "7", "5", "7", "8", "5", "9", "5", "7", "6", "9", "8", "8", "5", "9", "5", "7", "8", "9", "9", "5", "7", "8", "8", "7", "7", "6", "5", "7", "7", "5", "8", "8", "6", "7", "9", "6", "6", "8", "6", "9", "7", "9", "8", "8", "6", "8", "9", "7", "5", "9", "5", "8", "5", "8", "7", "5", "6", "9", "6", "6", "5", "9", "8", "6", "6", "9", "5", "9", "9", "6", "6", "8", "9", "8", "5", "7", "9", "7", "5", "5", "8", "9", "9", "7", "5", "8", "8", "5", "5", "7", "5", "6", "7", "8", "7", "9", "6", "8", "7", "5", "8", "6", "7", "5", "6", "5", "5", "9", "8", "6", "7", "8", "7", "6", "5", "7", "7", "7", "9", "8", "5", "8", "6", "9", "6", "6", "8", "7", "9", "7", "9", "8", "6", "7", "5", "6", "6"], ["5", "5", "6", "6", "4", "8", "5", "5", "4", "7", "6", "7", "5", "5", "6", "5", "6", "6", "5", "7", "7", "5", "6", "7", "4", "5", "6", "5", "3", "5", "6", "4", "6", "4", "7", "6", "4", "7", "7", "7", "5", "8", "6", "5", "8", "7", "3", "5", "6", "7", "5", "7"], ["3", "2", "4", "1", "1", "2", "3", "2", "2", "2", "4", "2", "3", "3", "3", "1", "4", "3", "1", "3", "2", "4", "2", "2", "2", "2", "2", "1", "4", "4", "3", "4", "3", "1", "1", "2", "1", "3", "2", "4", "2", "1", "1", "4", "4", "4", "3", "1", "2", "3", "1", "3", "3", "1", "2", "3", "4", "2", "1", "4", "1", "4", "1", "4", "3", "1", "3", "1", "3", "1", "2", "2", "2", "1", "4", "3", "4", "1", "3", "4", "4", "1", "4", "4", "1", "2", "3", "2", "2", "1", "3", "4", "3", "4", "3", "3", "4", "1", "2"], ["2", "1", "1", "2", "2", "2", "5", "5", "5", "5", "3", "5", "1", "1", "3", "5", "3", "1", "1", "2", "5", "1", "1", "5", "2", "1", "3", "2", "3", "1", "1", "5", "1", "5", "2", "3", "3", "1", "3", "2", "3", "5", "2", "2", "3", "2", "2", "3", "1", "2", "5", "3", "2", "3", "3", "3", "3", "5", "3", "3", "1", "5", "1", "5", "1", "1", "5", "1", "5", "5", "5"], ["1", "2", "0", "1", "0", "2", "0", "1", "2", "3", "1", "2", "2", "1", "3", "0", "0", "2", "1", "3", "1", "2", "3", "3", "0", "1", "2", "1", "1", "1", "2", "0", "2", "2", "0", "0", "1", "0", "0", "3", "3", "3", "1", "3", "0", "3", "2", "1", "2", "1", "1", "1", "0", "3", "1", "2", "2", "2", "2", "3", "1", "2", "0", "1"], ["B", "A", "B", "A", "B", "D", "A", "D", "D", "B", "B", "D", "D", "A", "A", "B", "B", "A", "D", "D", "B", "D", "B", "A", "A", "B", "A", "A", "A", "D", "D", "A", "A", "B", "B", "A", "B", "A", "D", "B", "A", "B", "A", "B", "D", "B", "A", "D", "B", "D", "A", "B", "A", "B", "D", "D", "B", "A", "B", "A", "D", "B", "D", "B", "A", "B", "A", "A", "A", "B", "D", "D", "D", "D", "A", "D", "B", "A", "A", "A", "B", "A", "B", "D", "A", "B", "D", "A", "A", "D", "B", "D", "A", "A", "A", "A", "A", "D", "B", "D", "A", "A", "B", "D", "D", "A", "B", "A", "D", "A", "B", "A", "A", "A", "D", "A", "B", "D", "B", "A", "D", "A", "B", "B", "B", "A", "D", "B", "A", "A", "A", "D", "B", "B", "D", "D", "D", "A", "A", "D", "A", "A", "D", "B", "D", "B", "A", "D", "D", "B", "B", "D", "A", "A", "B", "A", "A", "A", "A", "B", "D", "B", "B", "A", "D", "A", "D", "B", "A", "A", "B", "B", "B", "A", "B", "B", "D", "D", "D", "D", "D", "D", "B", "B", "D", "A", "A", "D", "A", "B", "D", "B", "D", "A", "A", "A", "B", "B", "B", "D", "B", "A", "A", "D", "B", "A", "B", "D", "B", "B", "B", "A", "B", "B", "D", "D", "A", "B", "B", "D", "D", "A", "A", "B", "A", "A", "B", "D", "A", "B", "A", "D", "B", "B", "D", "B", "B", "D", "A", "D", "D", "B", "B", "A", "A", "D", "B", "D", "D", "B", "D", "A", "B", "B", "A", "B", "A", "B", "D", "D", "B", "B", "A", "B", "B", "A", "D", "A", "D", "B", "B", "A", "A", "A", "D", "A", "A", "A", "D", "A", "D", "A", "B", "D", "B", "B", "A", "B", "A", "D", "A", "D", "A", "D", "D", "B", "D", "A", "D", "A", "B", "D", "B", "B", "A", "B", "B", "D", "A", "B", "D", "D", "A", "A", "A", "B", "B", "B", "D", "A", "A", "B", "D", "B", "B", "A", "A", "B", "B", "B", "A", "B", "A", "B", "A", "B", "A", "B", "D", "B", "B", "B", "A", "A", "D", "D", "B", "A", "A", "D", "B", "D", "D", "D", "A", "B", "A", "B", "A", "A", "B", "B", "A", "D", "D", "B", "B", "A", "A", "B", "D", "A", "A", "A", "B", "A", "A", "A", "D", "B", "A", "D", "B", "A", "B", "A", "D", "B", "A", "B", "D", "D", "D", "D", "B", "A", "D", "B", "D", "A", "A", "B", "A", "D", "D", "D", "D", "B", "D", "D", "B", "D", "A", "A", "A", "A", "A", "D", "B", "D", "D", "A", "A", "B", "B", "A", "D", "A", "B", "A", "B", "D", "B", "A", "D", "D", "D", "B", "A", "A", "B", "D", "B", "B", "A", "D", "A", "A", "B", "A", "A", "B", "B", "A", "B", "B", "D", "A", "A", "D", "A", "A", "B", "B", "B", "D", "D", "B", "A", "B", "D", "B", "B", "D", "A", "A", "B", "D", "B", "B", "B", "A", "D", "A", "A", "A", "D", "B", "A", "B", "B", "A", "B", "D", "A", "B", "D", "D", "D", "B"], ["J", "H", "J", "J", "H", "J", "J", "J", "J", "J", "H", "J", "J", "H", "H", "J", "J", "I", "H", "H", "I", "H", "J", "J", "H", "I", "J", "J", "J", "J", "J", "H", "H", "H", "H", "J", "J", "H", "J", "H", "J", "J", "J", "J", "J", "J", "J", "I", "J", "J", "J", "H", "H", "J", "H", "J", "H", "J", "H", "J", "J", "J", "J", "H", "H", "J", "H", "J", "H", "H", "F", "J", "H", "J", "H", "H", "J", "J", "J", "J", "H", "H", "H", "J", "J", "J", "J", "H", "H", "J", "H", "I", "H", "H", "H", "H", "H", "J", "F", "H", "H", "J", "F", "J", "J", "J", "J", "J", "H", "H", "J", "H", "H", "I", "J", "H", "J", "J", "H", "H", "H", "J", "H", "J", "J", "J", "H", "H", "J", "J", "H", "J", "F", "H", "H", "H", "J", "F", "J", "H", "F", "H", "H", "H", "J", "J", "F", "H", "H", "J", "J", "H", "F", "J", "J", "H", "H", "H", "H", "H", "H", "J", "H", "H", "J", "H", "J", "H", "H", "J", "J", "H", "H", "H", "J", "H", "H", "J", "J", "J", "J", "J", "H", "J", "J", "J", "H", "H", "J", "H", "J", "H", "H", "J", "J", "H", "J", "J", "J", "J", "F", "I", "I", "J", "J", "J", "J", "H", "J", "J", "J", "J", "J", "H", "J", "J", "J", "J", "H", "J", "J", "J", "J", "H", "J", "J", "J", "H", "J", "H", "J", "H", "J", "J", "H", "H", "J", "I", "H", "F", "J", "H", "H", "J", "H", "H", "J", "H", "H", "H", "J", "J", "I", "F", "H", "H", "F", "H", "H", "J", "J", "H", "H", "F", "J", "J", "J", "J", "J", "J", "J", "J", "H", "H", "J", "H", "H", "H", "H", "J", "J", "H", "H", "J", "F", "I", "F", "H", "J", "H", "H", "J", "F", "H", "J", "J", "J", "J", "H", "H", "J", "H", "J", "J", "J", "J", "I", "J", "J", "I", "J", "H", "J", "J", "J", "J", "J", "H", "J", "H", "J", "H", "J", "H", "J", "H", "H", "J", "H", "H", "I", "J", "J", "F"], ["A", "A", "A", "A", "A", "B", "A", "A", "A", "A", "A", "A", "F", "A", "A", "B", "A", "B", "A", "A", "B", "D", "C", "B", "A", "A", "A", "B", "A", "A", "F", "A", "B", "A", "A", "A", "A", "A", "A", "B", "B", "A", "D", "F", "A", "D", "A", "C", "A", "A", "A", "A", "F", "A", "C", "A", "A", "A", "B", "E", "A", "A", "A", "A", "A", "A", "C", "C", "A", "B", "B", "A", "A", "A", "A", "B", "A", "A", "A", "A", "A", "A", "D", "A", "A", "A", "A", "B", "A", "A", "A", "A", "B", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "C", "A", "C", "A", "D", "A", "A", "B", "A", "A", "A", "A", "A", "A", "D", "C", "A", "C", "A", "F", "A", "A", "A", "A", "A", "A", "A", "A", "B", "C", "A", "A", "C", "A", "C", "B", "B", "B", "A", "B", "A", "E", "A", "A", "A", "A", "A", "A", "A", "A", "B", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "B", "F", "A", "A", "A", "A", "A", "A", "A", "A", "A", "B", "A", "A", "A", "B", "A", "A", "A", "A", "A", "A", "A", "B", "A", "A", "A", "E", "A", "A", "A", "A", "A", "A", "A", "A", "A", "B", "B", "A", "A", "A", "B", "A", "B", "A", "C", "B", "A", "B", "A", "A", "A", "D", "E", "C", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "C", "A", "D", "A", "F", "A", "A", "A", "F", "E", "A"], ["A", "A", "A", "A", "A", "E", "A", "E", "A", "A", "A", "J", "J", "A", "E", "A", "A", "E", "A", "A", "A", "J", "E", "J", "A", "J", "A", "J", "A", "A", "A", "A", "A", "A", "J", "A", "J", "J", "J", "J", "A", "A", "J", "J", "A", "A", "A", "A", "A", "J", "A", "A", "A", "A", "A", "J", "A", "A", "J", "A", "A", "A", "E", "A", "A", "E", "A", "A", "J", "A", "A", "A", "A", "E", "J", "J", "A", "A", "A", "E", "A", "A", "J", "A", "A", "J", "J", "A", "A", "A", "A", "J", "A", "A", "A", "J", "A", "J", "A", "J", "A", "A", "E", "A", "J", "A", "A", "A", "E", "A", "J", "A", "A", "A", "A", "A", "A", "A", "E", "A", "E", "A", "E", "A", "E", "A", "J", "A", "A", "A", "J", "J", "A", "J", "E", "A", "A", "J", "A", "A", "A", "E", "A", "A", "J", "A", "A", "A", "E", "A", "A", "A", "E", "E", "A", "A", "A", "A", "A", "A", "A", "J", "A", "A", "E", "A", "A", "A", "A", "A", "A", "A", "J", "A", "A", "J", "J", "E", "E", "A", "A", "A", "J", "J", "E", "A", "A", "J", "A", "J", "A", "A", "A", "A", "A", "E", "A", "J", "J", "A", "A", "A", "J", "A", "E", "A", "J", "A", "A", "A", "E", "J", "A", "A", "A", "A", "A", "A", "A", "A", "A", "J", "A", "J", "E", "E", "A", "E", "A", "E", "J", "A", "A", "E", "A", "A", "A", "J", "E", "E", "E", "A", "A", "E", "A", "A", "J", "E", "A", "E", "A", "J", "A", "A", "J", "J", "A", "J", "A", "A", "J", "A", "E", "A", "A", "A", "J", "J", "J", "J", "A", "A", "E", "A", "E", "E", "A", "A", "A", "A", "A", "A", "A", "E", "A", "A", "J", "E", "E", "A", "E", "J", "E", "A", "A", "E", "A", "A", "A", "J", "A", "J", "J", "A", "E", "A", "A", "E", "E", "E", "A", "A", "A", "A", "J", "J", "E", "A", "A", "J", "J", "E", "E", "A", "E", "E", "A", "E", "E", "A", "A", "E", "A", "A", "J", "A", "A", "A", "A", "A", "A", "E", "A", "J", "A", "E", "A", "A", "A", "E", "J", "A", "A", "A", "E", "J", "A", "A", "A", "A", "E", "A", "A", "E", "J", "A", "A", "A", "A", "E", "A", "A", "A", "A", "A", "A", "A", "E", "A", "A", "A", "A", "J", "A", "A", "J", "A", "A", "A", "A"], ["P", "N", "P", "A", "N", "A", "P", "N", "N", "N", "P", "P", "N", "N", "N", "N", "N", "N", "N", "A", "N", "N", "P", "P", "A", "N", "N", "N", "N", "N", "N", "N", "N", "P", "N", "N", "N", "N", "N", "N", "P", "N", "N", "P", "P", "A", "P", "N", "N", "A", "N", "N", "N", "P", "P", "N", "N", "P", "N", "P", "P", "N", "P", "N", "P", "N", "N", "N", "A", "N", "N", "N", "P", "N", "P", "N", "P", "N", "A", "N", "N", "N", "N", "P", "N", "N", "P", "P", "N", "P", "N", "P", "N", "N", "N", "A", "N", "P", "N", "N", "A", "N", "N", "P", "N", "N", "N", "N", "P", "N", "A", "N", "N", "P", "N", "P", "N", "N", "N", "P", "N", "N", "N", "P", "A", "N", "N", "N", "N", "N", "P", "N", "P", "N", "N", "N", "N", "N", "N", "A", "N", "N", "P", "A", "N", "N", "P", "P", "N", "P", "P", "N", "P", "A", "N", "N", "N", "A", "N", "P", "N", "A", "N", "N", "P", "P", "P", "P", "P", "P", "P", "N", "N", "A", "N", "P", "N", "N", "N", "N", "N", "P", "N", "A", "N", "N", "N", "N", "N", "N", "P", "A", "N", "N", "N", "N", "N", "N", "N", "N", "N", "N", "N", "N", "A", "P", "N", "N", "P", "P", "N", "N", "N", "P", "N", "N", "P", "P", "N", "N", "N", "N", "N", "N", "N", "N", "P", "N", "N", "P", "N", "P", "N", "A", "P", "A", "P", "P", "N", "A", "P", "N", "N", "N", "P", "N", "N", "N", "P", "N", "P", "N", "N", "P", "P", "N", "N", "N", "N", "N", "N", "N", "P", "N", "P", "P", "N", "P", "P", "N", "N", "N", "N", "N", "N", "P", "P", "N", "N", "N", "P", "N", "N", "N", "N", "P", "N", "P", "P", "N", "N", "N", "N", "A", "N", "N", "P", "N", "N", "N", "P", "N", "N", "P", "P", "N", "N", "N", "P", "N", "N", "N", "N", "N", "A", "N", "N", "N", "A", "N", "P", "N", "N", "N", "N", "N", "P", "A", "A", "P", "A", "P", "N", "N", "N", "N", "P", "P", "N", "P", "N", "N", "P", "N", "P", "P", "N", "P", "P", "N", "P", "N", "P", "N", "N", "N", "N", "N", "N", "N", "N", "N", "N", "P", "N", "N", "N", "P", "N", "P", "N", "P", "N", "N", "N", "N", "P", "N", "P", "N", "N", "N", "N", "N", "N", "N", "N", "P", "P", "A", "N", "N", "P", "P", "P", "N", "N", "A", "P", "N", "N", "P", "P", "P", "N", "N", "N", "N", "N", "Z", "P", "N", "A", "N", "N", "N", "N", "N", "N", "N", "P", "P", "N", "N", "N", "P", "P", "N", "P", "P", "N", "N", "N", "N", "N", "P", "N", "N", "N", "N", "P", "N", "A", "A", "N", "P", "N", "N", "A", "N", "N", "N", "N", "N", "P", "P", "A", "N", "N", "N", "N", "N", "N", "P", "P", "N", "N", "P", "N", "P", "P", "N", "P", "A", "N", "N", "N", "N", "P", "N", "P", "N", "N", "N", "N", "N", "N", "N", "N", "P", "P", "N", "N", "N", "N", "P", "A", "P", "N", "N"], ["S", "C", "C", "S", "C", "S", "S", "S", "S", "S", "Q", "C", "S", "S", "C", "C", "S", "C", "C", "S", "S", "C", "C", "C", "S", "C", "C", "S", "S", "S", "Q", "C", "C", "C", "S", "S", "S", "S", "S", "Q", "S", "Q", "S", "S", "Q", "S", "S", "C", "S", "S", "S", "S", "S", "S", "S", "C", "S", "S", "S", "S", "S", "S", "C", "S", "S", "S", "C", "Q", "C", "C", "S", "S", "S", "S", "C", "C", "S", "S", "C", "S", "Q", "C", "S", "S", "S", "S", "Q", "S", "Q", "S", "S", "S", "S", "S", "S", "S", "S", "S", "Q", "C", "C", "Q", "S", "C", "Q", "S", "S", "S", "C", "Q", "S", "S", "S", "S", "S", "C", "S", "S", "S", "S", "C", "S", "S", "S", "S", "S", "S", "S", "S", "S", "C", "S", "S", "Q", "S", "S", "S", "S", "S", "S", "S", "S", "S", "S", "S", "S", "S", "S", "C", "S", "S", "S", "S", "S", "C", "S", "S", "S", "S", "S", "C", "C", "C", "S", "S", "C", "S", "S", "S", "S", "S", "Q", "S", "S", "S", "S", "S", "C", "S", "C", "S", "Q", "S", "S", "S", "S", "S", "S", "Q", "S", "C", "S", "Q", "S", "Q", "C", "S", "C", "S", "S", "S", "S", "S", "S", "S", "S", "S", "S", "S", "S", "C", "C", "Q", "S", "S", "S", "Q", "S", "S", "S", "S", "S", "S", "S", "S", "S", "S", "S", "S", "C", "S", "C", "Q", "S", "Q", "S", "C", "S", "S", "S", "S", "C", "S", "S", "S", "C", "S", "S", "S", "Q", "S", "S", "S", "S", "S", "S", "C", "S", "S", "S", "S", "C", "C", "C", "S", "S", "C", "C", "S", "Q", "C", "S", "S", "S", "C", "Q", "S", "S", "S", "S", "Q", "S", "C", "S", "S", "S", "S", "Q", "S", "Q", "S", "C", "S", "C", "S", "S", "C", "C", "S", "S", "S", "S", "S", "S", "C", "S", "Q", "C", "S", "S", "S", "S", "S", "S", "C", "S", "S", "S", "S", "S", "S", "S", "S", "C", "S", "C", "S", "S", "S", "C", "S", "S", "S", "S", "C", "C", "S", "S", "S", "S", "Q", "S", "S", "S", "Q", "S", "S", "S", "S", "S", "Q", "S", "S", "S", "S", "S", "S", "S", "S", "C", "S", "Q", "C", "S", "Q", "S", "Q", "S", "S", "S", "C", "C", "S", "S", "S", "C", "S", "S", "S", "S", "C", "C", "S", "S", "S", "S", "C", "Q", "C", "S", "S", "S", "Q", "S", "C", "S", "S", "S", "S", "S", "C", "S", "S", "S", "S", "C", "C", "S", "S", "C", "C", "Q", "S", "S", "Q", "S", "C", "S", "C", "S", "S", "S", "C", "S", "C", "S", "S", "S", "S", "Q", "S", "C", "C", "S", "C", "Q", "S", "S", "S", "S", "S", "S", "S", "S", "C", "S", "S", "S", "S", "S", "S", "S", "S", "S", "C", "C", "C", "S", "S", "S", "S", "S", "S", "Q", "S", "S", "S", "S", "S", "S", "C", "C", "S", "S", "C", "S", "Q", "S", "S", "S", "S", "S", "S", "S", "S", "S", "C", "C", "Q", "S", "Q", "S", "C", "S", "C", "Q", "C", "C", "S", "C"], ["M", "M", "M", "F", "F", "M", "M", "M", "M", "M", "F", "F", "F", "F", "F", "M", "F", "M", "F", "M", "M", "F", "F", "F", "F", "M", "M", "F", "F", "M", "F", "M", "F", "F", "F", "M", "M", "M", "M", "F", "F", "M", "M", "M", "F", "M", "M", "M", "M", "M", "F", "M", "F", "M", "M", "F", "F", "F", "F", "M", "M", "M", "M", "M", "M", "F", "M", "M", "M", "M", "F", "M", "F", "M", "M", "M", "F", "F", "F", "F", "M", "M", "M", "F", "M", "F", "M", "M", "F", "F", "F", "M", "F", "M", "F", "M", "M", "M", "F", "M", "M", "M", "M", "M", "F", "F", "F", "F", "M", "M", "F", "F", "M", "M", "F", "F", "M", "M", "F", "M", "F", "F", "F", "M", "F", "M", "F", "M", "F", "F", "F", "F", "F", "M", "M", "F", "F", "F", "M", "F", "M", "M", "M", "M", "M", "F", "M", "M", "M", "M", "F", "M", "M", "F", "F", "F", "F", "M", "F", "M", "M", "F", "M", "M", "F", "M", "F", "F", "M", "M", "F", "F", "M", "F", "F", "M", "M", "M", "F", "M", "M", "M", "M", "M", "M", "F", "M", "F", "F", "M", "M", "?", "M", "M", "F", "M", "F", "F", "M", "F", "M", "M", "M", "F", "F", "M", "F", "F", "F", "M", "F", "M", "F", "F", "M", "M", "M", "F", "F", "M", "M", "M", "M", "F", "F", "M", "M", "M", "F", "M", "M", "M", "M", "M", "M", "F", "F", "M", "M", "M", "M", "M", "M", "F", "F", "M", "M", "F", "M", "F", "M", "M", "M", "M", "M", "M", "M", "F", "M", "F", "F", "M", "M", "F", "M", "F", "M", "F", "M", "F", "F", "M", "M", "M", "F", "F", "M", "F", "F", "F", "M", "M", "M", "M", "M", "F", "F", "M", "M", "F", "M", "F", "M", "M", "M", "M", "M", "M", "F", "F", "M", "F", "M", "M", "M", "F", "F", "M", "F", "F", "M", "M", "F", "M", "F", "F", "M", "M", "F", "M", "M", "F", "M", "M", "M", "F", "F", "M", "F", "M", "?", "F", "F", "M", "M", "M", "M", "M", "M", "M", "M", "M", "F", "M", "M", "F", "M", "M", "M", "F", "F", "M", "F", "M", "M", "F", "M", "M", "F", "M", "M", "F", "M", "F", "M", "F", "M", "F", "M", "M", "M", "M", "F", "M", "F", "F", "M", "M", "M", "M", "M", "F", "F", "M", "F", "F", "F", "M", "F", "F", "F", "M", "M", "M", "F", "F", "F", "F", "M", "M", "M", "M", "M", "M", "M", "F", "F", "F", "M", "F", "M", "M", "F", "M", "F", "M", "M", "F", "F", "F", "M", "M", "M", "F", "M", "M", "M", "M", "M", "M", "F", "F", "M", "M", "M", "M", "M", "F", "M", "M", "F", "F", "M", "M", "F", "M", "M", "F", "M", "F", "F", "F", "M", "F", "M", "F", "F", "M", "M", "M", "F", "M", "M", "M", "M", "F", "M", "M", "F", "F", "F", "M", "M", "F", "M", "M", "F", "F", "M", "M", "F", "F", "F", "F", "M", "F", "F", "M", "F", "M", "M", "M", "M", "M", "M", "F", "M", "M", "M", "F"], ["1", "1", "0", "1", "0", "0", "1", "1", "1", "0", "1", "1", "0", "0", "1", "0", "1", "0", "1", "0", "0", "1", "1", "1", "0", "0", "0", "1", "0", "1", "0", "0"], ["a", "a", "A", "A", "A", "a", "A", "a", "a", "a", "a", "A", "a", "a", "A", "a", "a", "a", "A", "A", "a", "a", "A", "a", "a", "a", "A", "A", "a", "A", "a", "a", "A", "a", "a", "a", "a", "A", "A", "a", "A", "a", "A", "a", "A", "A", "A", "a", "A", "A", "a", "A", "A", "A", "A", "a", "A", "A", "a", "a", "A", "A", "A", "A", "A", "A", "A", "a", "a", "a", "a", "A", "a", "A", "a", "A", "a", "A", "a", "a", "A", "A", "a", "a", "a", "A", "A", "A", "A", "A", "a", "a", "A", "a", "A", "A", "A", "a", "a"], ["N", "n", "n", "n", "N", "N", "N", "n", "N", "N", "n", "N", "N", "N", "N", "n", "n", "N", "N", "n", "n", "n", "n", "N", "n", "n", "n", "n", "N", "n", "n", "n", "n", "n", "n", "N", "n", "N", "n", "n", "N", "N", "n", "n", "N", "n", "N", "N", "n", "n", "N", "N", "N", "n", "n", "N", "N", "N", "N", "n", "n", "N", "n", "N", "N", "N", "n", "N", "N", "N", "N", "n", "N", "n", "n", "n", "N", "N", "N", "n", "n", "N", "n", "N", "N", "n", "n", "n", "n", "N", "n", "n", "N", "n", "N", "N", "n", "N", "N"], ["F", "F", "F", "M", "M", "F", "F", "F", "M", "M", "F", "F", "M", "M", "F", "M", "F", "M", "F", "M", "M", "F", "M", "F", "M", "F", "F", "F", "F", "M", "F", "F", "M", "M", "M", "M", "F", "F", "F", "F", "F", "F", "F", "M", "M", "F", "M", "M", "F", "M", "F", "F", "M", "M", "M", "M", "F", "M", "F", "F", "M", "F", "M", "M", "M", "M", "M", "F", "M", "F", "F", "M", "F", "F", "M", "F", "M", "F", "F", "F", "F", "M", "F", "M", "M", "F", "M", "M", "M", "M", "M", "F", "F", "M", "M", "F", "F", "F", "F", "M", "M", "M", "F", "F", "M", "F", "M", "M", "M", "F", "F", "M", "F", "F", "M", "F", "F", "M", "M", "M", "M", "M", "F", "F", "M", "M", "M", "F", "M", "F", "M", "F", "M", "F", "F", "F", "M", "M", "F", "M", "M", "F", "F", "F", "F", "M", "F", "M", "M", "M", "F", "M", "F", "M", "M", "M", "M", "M", "F", "F", "F", "F", "M", "F", "M", "F", "M", "M", "F", "F", "M", "M", "M", "M", "F", "F", "F", "M", "M", "F", "F", "F", "F", "F", "M", "M", "F", "F", "F", "M", "M", "M", "M", "F", "F", "F", "F", "F", "F", "F", "F", "M", "M", "M", "F", "F", "F", "M", "F", "M", "M", "F", "M", "F", "M", "F", "F", "M", "M", "F", "F", "M", "M", "F", "F", "F", "M", "M", "F", "M", "F", "F", "M", "M", "M", "F", "F", "F", "F", "M", "M", "F", "F", "F", "F", "F", "M", "F", "M", "M", "M", "F", "F", "M", "F", "M", "M", "F", "M", "M", "F", "M", "M", "F", "M", "F", "M", "F", "M", "M", "F", "F", "F", "F", "F", "M", "F", "F", "F", "M", "F", "F", "F", "M", "M", "M", "M", "F", "M", "M", "F", "M", "M", "M", "F", "F", "F", "M", "F", "M", "M", "M", "F", "M", "F", "M", "M", "F", "F", "F", "M", "M", "F", "M", "M", "M", "M", "M", "F", "M", "M", "F", "M", "F", "M", "F", "F", "F", "F", "M", "F", "M", "F", "M", "M", "F", "F", "M", "F", "M", "F", "M", "M", "F", "M", "F", "M", "M", "F", "M", "F", "F", "F", "F", "M", "M", "M", "F", "F", "F", "M", "M", "M", "M", "M", "M", "F", "F", "F", "M", "M", "F", "M", "M", "M", "F", "M", "F", "F", "M", "F", "F", "M", "M", "M", "M", "M", "F", "F", "F", "F", "M", "M", "M", "M", "F", "F", "F", "F", "F", "F", "F", "F", "F", "F", "M", "F", "F", "F", "F", "F", "F", "M", "F", "M", "F", "M", "M", "F", "F", "F", "F", "M", "M", "M", "M", "M", "F", "M", "M", "F", "F", "F", "F", "M", "F", "M", "M", "F", "F", "F", "F", "M", "M", "F", "M", "M", "F", "F", "M", "F", "M", "M", "M", "F", "M", "F", "M", "F", "M", "M", "M", "M", "M", "F", "M", "F", "F", "F", "M", "M", "M", "F", "M", "F", "M", "M", "M", "F", "M", "F", "F", "M", "F", "M", "F", "F", "M", "F", "M", "M", "F", "M", "F", "M", "M", "M", "F", "M", "F"], ["2", "1", "2", "2", "1", "1", "2", "1", "1", "2", "1", "2", "1", "2", "2", "2", "2", "2", "1", "2", "1", "2", "2", "2", "1", "2", "2", "2", "1", "2", "2", "1", "1", "1", "2", "2", "2", "1", "2", "2", "1", "1", "1", "2", "1", "2", "1", "2", "1", "2", "1", "1", "2", "1", "1", "1", "2", "1", "2", "1", "2", "1", "2", "2", "2", "1", "2", "1", "1", "1", "2", "2", "2", "2", "1", "1", "1", "2", "1", "2", "1", "2", "2", "1", "2", "2", "1", "2", "2", "1", "1", "2", "1", "2", "2", "2", "2", "1", "1", "2", "2", "1", "1", "1", "1", "1", "2", "2", "1", "2", "2", "2", "1", "1", "2", "2", "2", "1", "2", "1", "2", "1", "1", "1", "1", "2", "1", "1", "2", "2", "2", "1", "2", "1", "2", "1", "2", "1", "1", "1", "2", "1", "2", "1", "2", "1", "1", "2", "1", "1", "2", "2", "1", "2", "1", "2", "1", "2", "2", "1", "1", "2", "2", "1", "2", "1", "1", "2", "1", "1", "2", "1", "1", "1", "2", "2", "2", "2", "2", "2", "2", "1", "1", "1", "1", "1", "1", "2", "2", "1", "2", "2", "2", "1", "2", "2", "2", "1", "1", "2", "2", "2", "1", "1", "1", "1", "1", "2", "1", "1", "2", "1", "2", "2", "1", "2", "2", "2", "2", "2", "2", "2", "2", "1", "1", "1", "1", "1", "2", "1", "1", "2", "1", "1", "2", "2", "2", "2", "2", "2", "1", "2", "1", "2", "1", "2", "1", "2", "2", "1", "1", "1", "1", "1", "1", "1", "2", "2", "2", "2", "2", "2", "2", "1", "2", "2", "1", "2", "2", "1", "1", "2", "1", "2", "2", "1", "1", "2", "2", "1", "1", "1", "1", "1", "1", "2", "2", "2", "1", "1", "2", "2", "2", "2", "1", "2", "1", "1", "2", "1", "1", "1", "2", "1", "2", "2", "2", "2", "1", "1", "2", "1", "2", "1", "1", "2", "1", "2", "1", "2", "2", "1", "2", "1", "2", "1", "1", "1", "2", "2", "2", "1", "1", "2", "2", "1", "2", "2", "1", "1", "2", "1", "2", "1", "1", "1", "1", "1", "2", "1", "1", "2", "2", "2", "2", "2", "2", "2", "1", "1", "2", "2", "2", "2", "2", "2", "1", "1", "2", "1", "1", "2", "1", "2", "2", "2", "2", "1", "1", "1", "2", "2", "1", "1", "1", "1", "2", "2", "1", "1", "1", "1", "2", "2", "2", "2", "2", "1", "2", "2", "1", "2", "2", "2", "2", "2", "1", "2", "1", "1", "2", "2", "1", "2", "2", "1", "1", "1", "1", "1", "2", "1", "1", "1", "1", "1", "1", "1", "1", "1", "2", "1", "2", "1", "1", "1", "2", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "2", "2", "2", "2", "1", "1", "1", "1", "2", "1", "2", "2", "2", "2", "1", "1", "1", "2", "2", "1", "1", "2", "1", "2", "1", "2", "1", "1", "2", "2", "1", "1", "1", "1", "1", "1", "1", "2", "2", "1", "1", "2", "1", "2", "1", "1", "2", "1", "2", "1", "1", "1", "2"], ["R", "L", "R", "L", "L", "L", "L", "L", "L", "R", "R", "R", "L", "L", "L", "R", "R", "R", "R", "L", "R", "R", "L", "L", "L", "R", "L", "R", "R", "L", "R", "R", "R", "L", "R", "R", "R", "R", "R", "L", "R", "R", "L", "L", "L", "L", "R", "R", "R", "R", "R", "L", "L", "L", "R", "L", "R", "R", "L", "R", "L", "L", "R", "L", "L", "R", "L", "R", "R", "R", "L", "L", "R", "L", "R", "L", "R", "R", "R", "R", "R", "L", "R", "L", "R", "L", "L", "R", "L", "L", "R", "R", "L", "L", "L", "L", "L", "L", "L", "R", "L", "L", "R", "R", "R", "L", "L", "L", "L", "L", "L", "L", "R", "R", "R", "L", "L", "L", "L", "L", "L", "R", "R", "L", "R", "R", "L", "L", "L", "R", "R", "L", "R", "R", "R", "L", "L", "R", "L", "L", "R", "L", "R", "R", "L", "R", "L", "R", "L", "R", "R", "R", "L", "R", "R", "L", "R", "L", "R", "L", "R", "R", "R", "R", "R", "L", "L", "R", "L", "L", "L", "L", "L", "L", "R", "L", "L", "L", "L", "R", "R", "R", "L", "R", "R", "R", "R", "L", "L", "L", "L", "R", "L", "L", "L", "R", "L", "R", "L", "R", "R", "L", "L", "R", "R", "R", "L", "R", "R", "L", "L", "R", "R", "L", "L", "L", "L", "L", "L", "L", "R", "R", "R", "L", "L", "L", "L", "L", "R", "L", "L", "R", "L", "L", "R", "L", "R", "L", "R", "R", "L", "R", "L", "R", "R", "R", "L", "L", "R", "L", "R", "R", "R", "L", "R", "L", "R", "L", "L", "R", "L", "L", "L", "L", "L", "R", "L", "R", "R", "R", "L", "L", "R", "L", "R", "L", "R", "R", "L", "R", "R", "L", "R", "L", "L", "L", "R", "R", "R", "R", "R", "R", "L", "L", "L", "R", "L", "L", "L", "R", "L", "R", "R", "R", "L", "R", "R", "R", "R", "R", "L", "R", "L", "R", "L", "R", "L", "L", "L", "L", "R", "R", "R", "L", "R", "L", "L", "R", "R", "R", "R", "L", "L", "R", "L", "L", "L", "L", "L", "L", "R", "L", "R", "L", "R", "R", "L", "R", "R", "R", "L", "R", "L", "L", "L", "L", "R", "R", "R", "L", "R", "L", "L", "R", "R", "R", "R", "R", "R", "R", "L", "L", "L", "R", "L", "R", "R", "R", "R", "R", "R", "L", "R", "R", "R", "L", "R", "L", "L", "L", "R", "R", "R", "L", "L", "R", "R", "L", "R", "R", "L", "L", "R", "R", "L", "L", "L", "L", "L", "L", "R", "L", "R", "R", "L", "R", "R", "R", "R", "L", "L", "R", "L", "L", "L", "L", "L", "R", "R", "R", "L", "L", "L", "L", "R", "L", "L", "R", "L", "L", "L", "L", "R", "L", "L", "L", "R", "R", "R", "L", "R", "L", "R", "R", "L", "L", "L", "R", "R", "L", "L", "L", "L", "R", "R", "R", "R", "L", "R", "L", "R", "L", "L", "R", "R", "L", "L", "L", "R", "R", "L", "L", "L", "R", "L", "L", "L", "L", "R", "L", "L", "L", "R", "R", "L", "R", "R", "R", "L", "R"], ["C", "O", "C", "C", "O", "O", "C", "C", "O", "C", "O", "C", "O", "C", "O", "O", "O", "C", "O", "C", "C", "O", "O", "C", "O", "O", "O", "O", "O", "C", "O", "O", "O", "C", "C", "C", "C", "C", "O", "O", "O", "C", "C", "C", "O", "O", "O", "C", "O", "C", "C", "C", "C", "O", "O", "C", "C", "O", "O", "O", "O", "O", "O", "C", "O", "C", "O", "O", "C", "O", "O", "C", "C", "C", "C", "O", "C", "C", "C", "C", "C", "C", "C", "O", "C", "C", "O", "C", "C", "O", "O", "C", "O", "O", "C", "O", "C", "C", "C", "O", "O", "C", "C", "O", "O", "O", "O", "C", "O", "O", "O", "O", "O", "O", "C", "O", "O", "C", "C", "O", "O", "O", "C", "O", "O", "C", "C", "C", "O", "O", "C", "C", "O", "O", "O", "O", "O", "O", "O", "O", "O", "C", "C", "C", "O", "C", "O", "C", "O", "O", "O", "C", "C", "O", "O", "O", "O", "C", "O", "O", "O", "C", "C", "C", "C", "O", "C", "C", "O", "O", "O", "O", "O", "C", "C", "C", "C", "C", "C", "O", "O", "O", "C", "C", "O", "O", "O", "O", "C", "C", "O", "C", "C", "O", "C", "C", "C", "C", "O", "O", "C", "C", "C", "C", "O", "C", "C", "O", "O", "C", "C", "O", "C", "O", "O", "C", "C", "O", "C", "C", "O", "O", "C", "O", "O", "C", "C", "C", "O", "C", "C", "C", "C", "C", "O", "C", "C", "O", "O", "C", "C", "C", "O", "O", "C", "C", "O", "O", "O", "C", "C", "O", "C", "C", "C", "O", "C", "O", "C", "O", "C", "C", "O", "O", "O", "O", "C", "O", "O", "O", "O", "C", "O", "C", "C", "C", "C", "C", "O", "O", "O", "C", "C", "C", "O", "C", "O", "O", "O", "O", "O", "C", "O", "C", "C", "O", "O", "O", "O", "C", "O", "O", "O", "C", "C", "O", "C", "O", "C", "O", "C", "O", "O", "O", "C", "C", "O", "C", "C", "O", "O", "O", "C", "C", "C", "O", "O", "C", "C", "O", "C", "O", "O", "O", "O", "C", "C", "O", "C", "O", "C", "O", "O", "O", "O", "O", "C", "O", "C", "C", "O", "O", "O", "O", "O", "C", "C", "C", "O"], ["m", "m", "m", "m", "M", "m", "M", "m", "m", "m", "m", "m", "m", "m", "m", "M", "M", "m", "M", "M", "m", "M", "M", "M", "M", "M", "m", "M", "M", "m", "M", "m", "m", "M", "M", "M", "m", "M", "M", "m", "M", "m", "m", "m", "M", "M", "M", "M", "m", "m", "m", "M", "M", "m", "M", "M", "m", "M", "m", "m", "m", "M", "M", "m", "m", "m", "m", "M", "M", "M", "M", "M", "m", "M", "M", "m", "M", "M", "m", "m", "M", "M", "M", "M", "M", "M", "m", "m", "m", "M", "m", "M", "m", "m", "M", "M", "M", "M", "m"], ["Y", "N", "Y", "N", "N", "Y", "N", "Y", "Y", "Y", "N", "Y", "N", "N", "Y", "Y", "Y", "N", "Y", "Y", "Y", "Y", "Y", "N", "Y", "N", "N", "N", "N", "Y", "Y", "Y", "Y", "N", "Y", "N", "Y", "Y", "Y", "Y", "N", "N", "Y", "Y", "Y", "Y", "N", "Y", "N", "N", "N", "N", "N", "N", "N", "Y", "Y", "N", "N", "N", "Y", "N", "Y", "N", "Y", "N", "N", "Y", "Y", "N", "N", "Y", "Y", "Y", "Y", "Y", "N", "N", "Y", "Y", "Y", "N", "Y", "N", "N", "Y", "Y", "Y", "N", "N", "Y", "Y", "Y", "N", "N", "N", "Y", "Y", "N", "Y", "Y", "N", "N", "Y", "Y", "N", "Y", "Y", "N", "N", "N", "Y", "N", "Y", "N", "N", "N", "N", "Y", "Y", "N", "Y", "N", "N", "N", "Y", "Y", "N", "Y", "N", "N", "N", "Y", "N", "Y", "N", "Y", "Y", "Y", "N", "N", "N", "N", "Y", "N", "N", "N", "N", "N", "N", "Y", "N", "N", "N", "Y", "N", "N", "N", "Y", "Y", "N", "N", "Y", "Y", "N", "N", "N", "Y", "Y", "Y", "Y", "N", "N", "Y", "Y", "Y", "Y", "N", "N", "Y", "N", "N", "Y", "N", "Y", "Y", "Y", "N", "Y", "N", "N", "Y", "Y", "N", "Y", "Y", "Y", "N", "N", "N", "N", "Y", "N", "N", "N", "Y", "Y", "Y", "Y", "N", "Y", "Y", "Y", "N", "N", "N", "N", "Y", "N", "N", "Y", "N", "Y", "N", "Y", "N", "Y", "Y", "Y", "Y", "Y", "N", "Y", "N", "N", "Y", "Y", "Y", "N", "Y", "N", "N", "Y", "Y", "N", "Y", "N", "Y", "N", "Y", "N", "N", "N", "Y", "N", "Y", "N", "N", "N", "N", "Y", "Y", "N", "Y", "N", "N", "N", "N", "Y", "N", "N", "N", "Y", "N", "N", "Y", "N", "Y", "Y", "Y", "Y", "Y", "N", "Y", "Y", "N", "N", "N", "Y", "Y", "Y", "N", "Y", "N", "Y", "Y", "N", "Y", "N", "Y", "N", "Y", "Y", "N", "N", "N", "N", "N", "Y", "N", "Y", "Y", "Y", "Y", "N", "N", "Y", "N", "N", "Y", "N", "N", "N", "N", "Y", "N", "Y", "Y", "N", "Y", "Y", "Y", "N", "N", "N", "Y", "N", "Y", "N", "Y", "Y", "N", "Y", "N", "N", "N", "Y", "N", "Y", "N", "N", "N", "Y", "N", "N", "N", "Y", "N", "N", "N", "Y", "N", "Y", "N", "Y", "Y", "N", "N", "N", "Y", "N", "N", "Y", "N", "N", "Y", "N", "N", "Y", "N", "Y", "Y", "Y", "Y", "Y", "N", "Y", "N", "Y", "Y", "N", "Y", "N", "Y", "N", "N", "Y", "N", "N", "Y", "N", "N", "Y", "N", "Y", "N", "N", "N", "N", "N", "Y", "N", "N", "Y", "N", "N", "Y", "N", "N", "Y", "Y", "N", "Y", "N", "N", "N", "N", "N", "N", "N", "N", "Y", "Y", "N", "N", "N", "Y", "N", "Y", "Y", "N", "N", "Y", "N", "N", "N", "Y", "Y", "N", "N", "Y", "Y", "Y", "N", "Y", "Y", "N", "N", "N", "N", "Y", "N", "N", "Y", "Y", "N", "Y", "N", "Y", "N", "N", "N", "N", "Y", "Y", "N", "N", "Y", "N", "N", "Y", "Y", "Y", "N", "N", "N", "Y", "N", "N", "N", "N", "N", "Y", "N", "N", "Y", "Y", "Y", "N", "N"], ["S", "S", "S", "S", "S", "S", "R", "S", "R", "R", "R", "S", "R", "S", "R", "R", "S", "S", "S", "S", "S", "S", "R", "R", "R", "R", "R", "R", "S", "S", "S", "R", "R", "R", "R", "R", "R", "R", "S", "R", "S", "S", "R", "S", "R", "R", "R", "S", "R", "R", "R", "S", "R", "S", "R", "R", "S", "R", "R", "R", "R", "S", "R", "R", "S", "R", "S", "S", "R", "R", "S", "S", "S", "R", "R", "R", "R"], ["B", "B", "A", "A", "A", "A", "A", "A", "A", "A", "B", "A", "A", "A", "B", "B", "A", "A", "A", "B", "B", "A", "B", "A", "A", "A", "A", "A", "A", "A", "F", "A", "B", "B", "A", "A", "A", "A", "A", "B", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "B", "A", "A", "A", "B", "A", "A", "A", "A", "B", "B", "A", "A", "A", "A", "A", "A", "A", "A", "B", "B", "B", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "B", "A", "B", "A", "B", "A", "B", "B", "A", "A", "A", "A", "B", "A", "A", "B", "A", "A", "A", "A", "A", "A", "A", "A", "B", "A", "A", "B", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "B", "A", "B", "A", "A", "A", "A", "A", "A", "B", "A", "A", "A", "A", "A", "A", "A", "B", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "F", "A", "B", "A", "A", "A", "A", "A", "A", "A", "A", "F", "A", "B", "F", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "F", "A", "B", "A", "A", "B", "B", "B", "B", "A", "A", "A", "F", "A", "A", "A", "A", "B", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "B", "A", "A", "A", "B", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A"], ["0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "1", "0", "0", "1", "0", "1", "0", "0", "0", "0", "0", "0", "0", "4", "0", "0", "0", "2", "0", "0", "0", "0", "0", "0", "1", "0", "0", "0", "0", "0", "0", "0", "1", "0", "0", "0", "0", "1", "0", "0", "0", "0", "0", "0", "0", "1", "0", "0", "0", "1", "0", "1", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "1", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "1", "0", "0", "0", "0", "0", "0", "0"], ["0", "0", "0", "0", "1", "0", "0", "0", "1", "0", "0", "0", "0", "0", "0", "0", "6", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "9", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "4", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0"], ["A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "B", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "B", "A", "A", "A", "A", "B", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "B", "A", "A", "B", "A", "A", "A", "A", "B", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "B", "A", "A", "A", "A", "A", "B", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A", "A"], ["0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "2", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0"], ["0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "6", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0"], ["0", "0"], ["U", "jj", "v", "J", "m", "hh", "g", "ii", "P", "c", "j", "SS", "bb", "M", "e", "o", "p", "w", "SS", "S", "DD", "kk", "mm", "Y", "WW", "u", "TT", "MM", "mm", "NN", "N", "ss", "Q", "H", "Z", "II", "ff", "F", "pp", "kk", "dd", "CC", "cc", "j", "x", "XX", "t", "b", "R", "BB", "q", "MM", "N", "dd", "O", "K", "ii", "c", "I", "WW", "k", "HH", "ff", "nn", "ww", "yy", "ss", "f", "e", "KK", "aa", "DD", "ee", "X", "K", "G", "D", "UU", "L", "x", "hh", "NN", "B", "AA", "A", "AA", "F", "u", "aa", "GG", "p", "k", "v", "s", "QQ", "yy", "qq", "m", "HH", "rr", "gg", "oo", "P", "XX", "EE", "VV", "n", "h", "pp", "nn", "o", "PP", "Q", "t", "ee", "T", "KK", "n", "RR", "W", "zz", "z", "d", "TT", "ww", "s", "zz", "rr", "i", "h", "l", "LL", "U", "gg", "r", "M", "E", "a", "FF", "w", "L", "O", "i", "UU", "b", "VV", "OO", "ll", "JJ", "GG", "I", "vv", "ll", "T", "qq", "jj", "X", "bb", "V", "A", "Y", "oo", "xx", "C", "II", "q", "PP", "EE", "cc", "OO", "y", "BB", "B", "V", "l", "z", "C", "xx", "a", "r", "RR", "tt", "G", "JJ", "E", "H", "f", "QQ", "uu", "uu", "J", "S", "tt", "d", "CC", "W", "LL", "y", "D", "g", "Z", "R"], ["55", "30", "39", "42", "81", "23", "59", "7", "55", "61", "11", "2", "48", "21", "55", "31", "76", "3", "41", "44", "47", "32", "25", "74", "40", "48", "33", "17", "15", "43", "56", "63", "46", "80", "70", "70", "5", "54", "45", "70", "26", "10", "24", "65", "85", "11", "16", "4", "84", "61", "44", "2", "36", "26", "33", "21", "63", "38", "23", "37", "8", "65", "51", "5", "71", "66", "86", "45", "59", "8", "36", "80", "33", "74", "65", "56", "18", "61", "1", "84", "40", "6", "41", "27", "2", "11", "63", "33", "41", "82", "52", "78", "11", "76", "75", "83", "81", "33", "2", "75", "86", "74", "16", "9", "15", "46", "56", "75", "10", "45", "34", "36", "66", "8", "16", "23", "73", "21", "27", "21", "55", "65", "58", "20", "69", "58", "24", "33", "27", "5", "38", "63", "41", "50", "28", "50", "27", "24", "5", "14", "22", "67", "37", "35", "14", "63", "6", "75", "37", "37", "7", "9", "52", "52", "27", "59", "25", "8", "40", "67", "50", "72", "5", "49", "37", "16", "42", "33", "20", "55", "13", "63", "24", "72", "83", "68", "34", "85", "76", "51", "70", "82", "7", "13", "18", "54", "75", "45", "30", "12", "80", "2", "44", "14", "83", "56", "39", "58", "5", "41", "57", "51", "24", "24", "1", "77", "1", "25", "45", "53", "11", "23", "76", "69", "13", "63", "51", "62", "69", "72", "70", "59", "85", "68", "9", "16", "19", "68", "48", "61", "47", "25", "56", "48", "11", "29", "14", "44", "29", "55", "39", "67", "23", "85", "16", "83", "64", "39", "37", "65", "78", "56", "82", "48", "39", "70", "12", "61", "23", "72", "86", "59", "39", "7", "43", "64", "14", "26", "56", "41", "81", "30", "28", "10", "47", "68", "39", "61", "76", "41", "86", "47", "56", "70", "40", "50", "15", "74", "84", "5", "58", "40", "24", "84", "31", "10", "68", "37", "36", "32", "84", "56", "51", "73", "49", "59", "73", "49", "81", "81", "64", "60", "58", "60", "2", "19", "62", "80", "44", "67", "77", "5", "42", "51", "74", "7", "57", "64", "55", "67", "44", "20", "42", "19", "62", "81", "81", "34", "16", "67", "34", "28", "86", "33", "62", "49", "84", "13", "53", "46", "77", "40", "15", "41", "41", "78", "30", "6", "20", "23", "61", "25", "8", "66", "17", "23", "67", "31", "1", "47", "39", "18", "5", "50", "33", "35", "47", "73", "72", "9", "15", "32", "71", "86", "77", "6", "86", "26", "48", "63", "81", "13", "77", "17", "28", "38", "64", "19", "84", "78", "41", "6", "59", "4", "57", "73", "73", "33", "21", "25", "24", "54", "7", "29", "76", "50", "21", "58", "19", "11", "19", "80", "68", "83", "48", "31", "54", "16", "44", "59", "86", "38", "52", "75", "7", "39", "37", "21", "60", "47", "20", "9", "46", "51", "81", "80", "83", "61", "62", "5", "82", "72", "79", "69", "6", "1", "63", "24", "71", "41", "71", "6", "12", "40", "66", "24", "14", "69", "33", "62", "26", "80", "44", "55", "69", "14", "20", "84", "12", "79", "73", "75", "84", "7", "14", "82", "30", "5", "6", "12", "85", "37", "5", "76", "16", "59", "59", "45", "65", "86"], ["44", "28", "46", "23", "25", "11", "31", "36", "16", "45", "26", "52", "1", "30", "47", "5", "42", "29", "20", "17", "7", "22", "15", "39", "4", "8", "13", "24", "6", "33", "3", "32", "40", "38", "21", "14", "37", "2", "50", "9", "43", "12", "48", "10", "27", "35", "18", "34", "41", "51", "19", "49"], ["NM", "ID", "ID", "KY", "MI", "NE", "VA", "ME", "NJ", "NY", "WY", "ID", "NE", "KS", "IN", "MI", "CT", "ND", "IA", "NM", "SC", "HI", "SC", "MS", "MT", "MA", "WI", "TX", "KS", "FL", "PA", "TX", "MA", "NH", "GA", "SC", "TN", "GA", "FL", "AL", "AK", "NM", "TN", "SC", "ME", "AK", "FL", "PR", "KY", "PA", "IA", "NV", "TN", "MS", "KS", "TN", "HI", "PR", "DE", "TN", "AK", "CO", "NE", "NH", "MN", "AL", "VT", "SC", "MD", "NV", "VA", "UT", "NH", "AR", "FL", "OK", "OR", "RI", "IN", "ND", "UT", "MO", "MN", "OH", "NJ", "MT", "AK", "MO", "AZ", "OK", "NC", "TX", "AK", "PR", "KS", "PR", "LA", "AL", "KS", "UT", "GA", "WY", "SC", "OR", "MD", "WY", "SD", "GA", "KY", "VI", "TN", "DE", "PA", "NH", "AL", "NJ", "WV", "MT", "MN", "ID", "NJ", "NY", "RI", "NC", "KS", "MN", "GA", "CO", "OR", "IN", "AR", "WA", "CO", "SC", "AR", "UT", "FL", "MS", "KY", "WI", "MS", "VA", "CA", "AL", "GA", "MA", "IN", "KS", "CT", "SD", "NM", "OH", "IN", "MO", "IA", "VI", "VT", "VT", "NE", "MD", "MD", "CT", "KS", "WA", "PR", "NY", "OK", "NM", "WY", "TX", "NV", "PA", "MI", "ME", "OH", "WV", "MA", "ID", "NM", "NJ", "NH", "ID", "WY", "CT", "NV", "MT", "HI", "IN", "WI", "NE", "AK", "MA", "TN", "WA", "MD", "AR", "NV", "SC", "MD", "VI", "ID", "OR", "KS", "UT", "IL", "ID", "NJ", "MA", "TX", "NV", "RI", "WY", "WI", "RI", "OK", "GA", "PR", "ID", "MN", "NM", "MT", "MS", "VI", "CA", "IL", "MA", "AZ", "VI", "AL", "IL", "AZ", "FL", "FL", "HI", "KY", "SD", "DE", "VT", "KY", "NC", "VA", "WA", "WA", "DE", "MO", "CA", "IN", "MI", "MN", "MS", "NV", "HI", "UT", "GA", "MI", "AL", "MN", "PR", "KS", "AL", "NJ", "WV", "PR", "WV", "LA", "WA", "AR", "RI", "IN", "MA", "SD", "SD", "MN", "PR", "AK", "AK", "KY", "UT", "RI", "IL", "NE", "VA", "SC", "ND", "MT", "AR", "GA", "IA", "MN", "NM", "LA", "IN", "CT", "MS", "WA", "RI", "FL", "MA", "MN", "DE", "NM", "VT", "AK", "CT", "NY", "NJ", "ME", "ME", "OR", "PA", "FL", "NH", "MT", "WV", "LA", "CO", "ME", "NC", "CT", "MO", "OK", "LA", "NC", "WA", "IL", "AR", "VI", "MS", "OH", "AR", "ID", "NH", "SD", "AK", "SD", "KS", "CO", "MA", "NC", "WV", "KY", "WA", "VI", "GA", "SC", "RI", "NY", "MI", "NV", "VT", "OK", "AK", "MO", "IL", "PA", "WI", "NV", "IA", "IN", "OH", "CA", "WI", "SD", "OH", "RI", "NH", "VT", "MD", "AZ", "MN", "LA", "HI", "TX", "AZ", "CT", "KS", "VT", "MD", "NV", "WY", "AZ", "KS", "ND", "TN", "KY", "VA", "CA", "VA", "NH", "OK", "RI", "PA", "NC", "CO", "KS", "IA", "NH", "IL", "WA", "LA", "NV", "MS", "NH", "HI", "AR", "LA", "OR", "PA", "HI", "CO", "NV", "SD", "VI", "NV", "TX", "HI", "KY", "MS", "NV", "VI", "AL", "WV", "AR", "RI", "IL", "TX", "AL", "CO", "ME", "VA", "AZ", "MA", "ID", "LA", "OH", "NJ", "WY", "MI", "CT", "NY", "ME", "NE", "AR", "UT", "VA", "WV", "WA", "MS", "NH", "MT", "SC", "MA", "TN", "IN", "AR", "NJ", "PA", "VA", "WA", "NM", "WV", "MA", "CA", "KY", "MA", "CA", "WY", "MD", "CO", "WA", "VI", "VI", "AL", "ND", "VT", "IA", "OR", "NH", "LA", "MT", "AK", "MO", "ND", "FL", "MO", "HI", "MT", "LA", "SC", "AK", "OH", "NH", "NH", "NV", "AZ", "MD", "UT", "KS", "WV", "HI"], ["41", "32", "32", "35", "41", "51", "29", "44", "60", "27", "50", "58", "26", "28", "58", "NA", "32", "38", "30", "27", "27", "25", "28", "60", "37", "24", "44", "51", "18", "37", "64", "29", "20", "30", "24", "32", "33", "25", "21", "27", "50", "57", "52", "18", "44", "38", "33", "41", "NA", "18", "50", "21", "24", "40", "42", "36", "22", "26", "22", "21", "22", "31", "35", "35", "25", "24", "35", "25", "41", "NA", "21", "24", "27", "66", "29", "38", "29", "25", "36", "25", "43", "37", "25", "36", "70", "24", "26", "36", "19", "36", "22", "41", "35", "35", "29", "24", "33", "28", "43", "29", "41", "31", "20", "23", "30", "67", "27", "19", "26", "41", "37", "44", "30", "44", "34", "16", "15", "31", "20", "23", "58", "50", "78", "31", "31", "27", "45", "40", "25", "55", "71", "30", "33", "34", "25", "31", "28", "32", "65", "35", "48", "21", "23", "33", "30", "41", "29", "49", "61", "35", "26", "30", "65", "35", "24", "23", "35", "18", "31", "33", "25", "45", "38", "35", "80", "29", "27", "26", "18", "67", "18", "41", "55", "39", "51", "37", "21", "61", "16", "31", "30", "18", "22", "27", "30", "51", "16", "41", "39", "36", "23", "31", "39", "55", "27", "48", "20", "31", "51", "44", "39", "52", "43", "19", "32", "81", "42", "37", "21", "35", "30", "50", "43", "18", "20", "20", "34", "69", "33", "37", "23", "32", "39", "29", "17", "35", "40", "40", "45", "35", "28", "45", "38"], ["78", "90", "88", "65", "58", "78", "76", "90", "92", "73", "84", "69", "72", "90", "91", "77", "87", "59", "89", "78", "67", "73", "92", "69", "84", "85", "81", "81", "65", "77", "78", "75", "68", "86", "82", "82", "85", "85", "82", "70", "80", "74", "79", "77", "74", "80", "97", "88", "87", "89", "66", "81", "76", "81", "79", "68", "59", "76", "82", "82", "68", "56", "63", "77", "76", "85", "77", "82", "84", "75", "57", "87", "76", "83", "73", "76", "68", "92", "93", "83", "73", "87", "81", "74", "66", "78", "72", "86", "76", "74", "57", "75", "81", "82", "71", "77", "77", "88", "80", "86", "69", "64", "86", "73", "84", "82", "75", "79", "72", "71", "86", "87", "80", "84", "79", "81", "61", "61", "81", "67", "61", "81", "96", "64", "94", "83", "57", "93", "94", "86", "92", "79", "67", "82", "67", "81", "78", "76", "66", "76", "83", "62", "92", "93", "62", "71", "85", "91", "79", "80", "81", "58", "86"], ["4", "11", "12", "2", "28", "20", "31", "3", "31", "15", "1", "29", "12", "16", "18", "2", "10", "26", "16", "4", "20", "28", "29", "21", "24", "17", "28", "23", "17", "13", "5", "23", "25", "4", "5", "21", "2", "6", "25", "30", "25", "19", "20", "29", "1", "3", "16", "7", "26", "30", "14", "2", "12", "29", "18", "19", "29", "30", "25", "9", "27", "22", "11", "27", "15", "26", "5", "23", "9", "21", "8", "17", "15", "14", "31", "18", "19", "24", "30", "22", "9", "7", "9", "14", "13", "13", "22", "5", "11", "1", "11", "8", "6", "4", "27", "23", "26", "24", "10", "18", "20", "14", "18", "8", "17", "2", "30", "22", "4", "3", "6", "3", "21", "20", "27", "17", "19", "25", "13", "27", "8", "10", "15", "12", "28", "23", "14", "12", "7", "1", "21", "13", "28", "26", "15", "24", "11", "16", "7", "19", "3", "8", "24", "7", "10", "5", "10", "16", "9", "6", "22", "6", "1"], ["20", "30", "25", "15", "35", "33", "35", "65", "42", "37", "45", "20", "49", "31", "27", "40", "36", "21", "37", "24", "26", "25", "68", "17", "29", "38", "20", "38", "32", "54", "27", "18", "21", "15", "18", "56", "23", "42", "32", "18", "42", "30", "18", "33", "26", "15", "23", "26", "87", "20", "15", "36", "51", "56", "33", "32", "38", "24", "20", "22", "31", "45"], ["33", "6", "51", "36", "54", "57", "6", "51", "21", "27", "33", "12", "18", "57", "0", "6", "21", "42", "42", "18", "27", "51", "42", "3", "54", "21", "36", "42", "45", "9", "33", "57", "12", "3", "15", "27", "30", "0", "12", "54", "30", "30", "51", "54", "51", "15", "36", "51", "9", "27", "48", "18", "45", "39", "6", "45", "15", "15", "51", "36", "24", "21", "27", "21", "9", "18", "6", "3", "33", "33", "24", "21", "42", "0", "6", "42", "54", "45", "27", "51", "15", "51", "27", "3", "45", "39", "0", "48", "4", "24", "27", "6", "15", "33", "21", "36", "54", "9", "57", "48", "1", "0", "24", "15", "30", "48", "9", "39", "57", "57", "39", "6", "18", "48", "21", "18", "36", "21", "24", "27", "54", "0", "6", "48", "3", "18", "6", "45", "3", "3", "48", "48", "48", "15", "0", "45", "12", "21", "54", "39", "21", "0", "24", "18", "24", "51", "9", "27", "0", "9", "48", "12", "54", "27", "48", "45", "3", "12", "0", "3", "36", "57", "9", "0", "57", "57", "51", "9", "39", "36", "0", "42", "33", "3", "12", "57", "3", "3", "54", "21", "27", "3", "15", "39", "33", "3", "36", "45", "30", "30", "15", "30", "45", "36", "51", "24", "42", "12", "42", "18", "42", "51", "42", "33", "30", "6", "48", "33", "15", "9", "57", "45", "54", "45", "51", "48", "12", "57", "18", "21", "12", "27", "9", "18", "45", "54", "39", "51", "39", "51", "33", "55", "48", "3", "51", "15", "24", "9", "36", "51", "24", "9", "42", "18", "51", "0", "15", "12", "54", "30", "15", "39", "45", "30", "57", "21", "12", "30", "12", "18", "30", "0", "42", "48", "30", "6", "36", "6", "6", "3", "33", "24", "36", "0", "39", "48", "57", "12", "3", "24", "57", "51", "42", "24", "27", "21", "0", "42", "36", "36", "0", "48", "30", "33", "6", "27", "48", "18", "6", "0", "33", "6", "42", "24", "54", "21", "58", "57", "21", "57", "45", "15", "33", "0", "24", "45", "51", "6", "33", "15", "27", "51", "18", "9", "9", "12", "30", "27", "33", "15", "3", "15", "39", "45", "24", "39", "18", "54", "30", "6", "42", "12", "9", "24", "18", "21", "24", "57", "57", "21", "0", "33", "27", "24", "12", "12", "48", "3", "3", "0", "0", "57", "39", "3", "36", "27", "30", "18", "39", "18", "12", "27", "30", "18", "42", "51", "9", "9", "39", "45", "12", "12", "48", "6", "42", "39", "51", "57", "9", "27", "54", "12", "48", "54", "0", "30", "36", "0", "54", "45", "30", "21", "54", "39", "0", "27", "24", "33", "21", "15", "27", "21", "30", "12", "9", "15", "36", "24", "18", "6", "24", "54", "15", "30", "36", "30", "15", "15", "6", "15", "48", "18", "39", "33", "9", "33", "54", "3", "54", "45", "33", "27", "30", "48", "57", "21", "39", "6", "12", "48", "42", "57", "3", "9", "36", "6", "42", "57", "36", "24", "39", "36", "18", "30", "39", "33", "24", "36", "39", "33", "30", "42", "45", "33", "9", "0", "36", "45", "15", "39", "42", "45", "24", "21", "3", "9", "27", "45", "54", "42", "54", "18", "18", "21", "3"], ["45", "62", "59", "46", "46", "39", "67", "62", "49", "49", "52", "54", "46", "46", "52", "63", "57", "52", "47", "59", "61", "54", "62", "54", "49", "40", "65", "39", "31", "39", "52", "63", "62", "46", "52", "49", "65", "65", "62", "37", "55", "33", "59", "41", "49", "44", "62", "41", "62", "36", "65", "31", "61", "46", "59", "59", "49", "52", "65", "44", "57", "54", "59", "59", "44", "31", "41", "62", "63", "60", "59", "59", "54", "37", "65", "65", "54", "40", "55", "59", "55", "42", "67", "62", "54", "54", "65", "63", "54", "33", "31", "54", "44", "41", "59", "46", "54", "59", "59", "57", "37", "41", "49", "52", "59", "59", "50", "57", "52", "59", "62", "54", "57", "52", "59", "41", "62", "57", "49", "52", "57", "57", "65", "43", "67", "44", "38", "41", "59", "44", "44", "59", "52", "60", "62", "44", "61", "54", "60", "49", "39", "40", "62", "59", "59", "54", "49", "57", "47", "41", "44", "52", "59", "57", "54", "53", "65", "65", "49", "65", "65", "41", "50", "62", "46", "60", "59", "65", "57", "33", "42", "44", "54", "35", "61", "44", "35", "59", "33", "62", "39", "52", "67", "62", "36", "46", "54", "52", "67", "65", "52", "62", "67", "57", "44", "41", "65", "59", "62", "67"], ["19", "15", "12", "7", "13", "19", "4", "16", "13", "10", "11", "19", "9", "7", "19", "19", "8", "10", "3", "3", "12", "10", "9", "17", "5", "11", "2", "8", "8", "1", "12", "10", "2", "2", "3", "7", "11", "12", "14", "9", "5", "16", "8", "13", "19", "6", "14", "13", "16", "6", "7", "12", "6", "7", "4", "12", "10", "5", "2", "7", "9", "4", "9", "3", "9", "5", "6", "14", "6", "11", "11", "14", "12", "17", "19", "18", "10", "14", "7", "13", "8", "1", "1", "12", "4", "8", "9", "16", "11", "17", "16", "11", "15", "18", "17", "14", "18", "6", "18", "18", "13", "4", "5", "19", "15", "17", "9", "6", "2", "11", "6", "6", "13", "6", "17", "10", "18", "8", "9", "10", "10", "11", "17", "5", "17", "12", "5", "16", "5", "3", "12", "18", "16", "16", "14", "4", "12", "19", "9", "6", "9", "15", "10", "1", "2", "11", "14", "3", "13", "4", "3", "3", "17", "19", "13", "4", "15", "14", "9", "7", "1", "18", "15", "15", "6", "14", "3", "18", "11", "5", "15", "8", "5", "5", "12", "7", "8", "15", "7", "10", "19", "16", "6", "1", "4", "14", "14", "2", "1", "2", "12", "13", "18", "9", "1", "15", "2", "13", "3", "17", "4", "5", "16", "1", "17", "1", "17", "5", "8", "18", "7", "3", "8", "16", "10", "11", "11", "8", "13", "6", "5", "16", "13", "17", "4", "10", "14", "14", "6", "18", "10", "3", "18", "7", "9", "13", "17", "19", "19", "16", "7", "11", "4", "10", "15", "3", "1", "1", "15", "11", "16", "8", "3", "11", "4", "14", "8", "19", "1", "8", "16", "18", "12", "8", "11", "8", "10", "1", "19", "1", "3", "3", "4", "10", "4", "15", "1", "12", "18", "2", "11", "13", "6", "15", "12", "2", "19", "2", "3", "4", "18", "7", "5", "19", "9", "18", "8", "12", "15", "10", "18", "17", "7", "5", "14", "7", "16", "10", "4", "16", "5", "2", "3", "15", "6", "5", "2", "13", "12", "9", "2", "17", "7", "15", "4", "16", "2", "2", "8", "16", "1", "17", "1", "6", "11", "15", "15", "14", "3", "13", "9", "17", "7", "14", "9", "17", "9", "2", "13", "1", "4", "14", "6", "13", "19", "12", "5", "2", "7"], ["73", "52", "42", "55", "52", "44", "50", "65", "35", "44", "47", "57", "52", "55", "65", "34", "55", "57", "47", "39", "65", "65", "63", "47", "46", "52", "73", "39", "52", "36", "42", "68", "63", "36", "50", "42", "50", "73", "63", "42", "43", "42", "63", "52", "42", "55", "42", "47", "52", "39", "50", "63", "73", "63", "47", "68", "65", "47", "37", "55", "44", "60", "63", "47", "42", "47", "47", "52", "47", "47", "44", "57", "34", "47", "47", "44", "50", "45", "45", "50", "68", "47", "39", "52", "47", "48", "60", "68", "47", "50", "57", "39", "65", "47", "63", "68", "50", "50", "68", "50", "47", "52", "47", "65", "28", "61", "50", "42", "57", "60", "65", "44", "57", "55", "63", "55", "57", "57", "47", "76", "50", "57", "52", "76", "60", "55", "34", "47", "50", "55", "60", "63", "57", "57", "73", "44", "63", "50", "42", "63", "55", "41", "63", "31", "63", "57", "43", "50", "63", "44", "44", "71", "42", "68", "55", "37", "39", "44", "47", "47", "63", "66", "60", "52", "47", "50", "55", "42", "68", "44", "50", "47", "39", "60", "57", "60", "54", "34", "34", "53", "68", "57", "44", "42", "36", "47", "34", "68", "65", "44", "50", "71", "68", "55", "52", "39", "47", "41", "52", "60"], ["NY", "NY", "ME", "FL", "MD", "MA", "VA", "PA", "MI", "FL", "LA", "ME", "IL", "CT", "MA", "MD", "MA", "NY", "FL", "NY", "RI", "TN", "GA", "PA", "TN", "NY", "MA", "PA", "CT", "NJ", "NC", "CT", "NY", "CT", "CO", "ME", "GA", "NY", "NY", "NY", "NY", "GA", "IN", "FL", "FL", "PA", "MA", "CT", "PA", "IL", "CT", "FL", "NH", "NV", "NY", "NY", "AZ", "NY", "IL", "NH", "CT", "TX", "NJ", "IL", "GA", "CT", "IL", "MA", "CT", "RI", "DC", "MA", "IN", "NY", "NY", "PA", "FL", "FL", "AZ", "CO", "NY", "MD", "PA", "NY", "FL", "MD", "MA", "FL", "AZ", "PA", "NY", "PA", "MA", "MA", "VA", "NJ", "NY", "MA", "MD", "MA", "PA", "MA", "ME", "CT", "IN", "PA", "NJ", "PA", "NY", "OH", "MA", "PA", "NC", "NY", "NY", "NY", "RI", "NH", "FL", "AL", "NJ", "PA", "AR", "NY", "FL", "NH", "NY", "NY", "MA", "NJ", "IL", "CT", "NC", "FL", "NY", "FL", "MA", "FL", "MA", "IL", "CT", "SC", "PA", "MD", "ME", "NJ", "MA", "MA", "SC", "NY", "NY", "NY", "PA", "ME", "FL", "NY", "NJ", "CT", "GA", "RI", "NY", "KS", "CT", "NY", "MD", "NY", "FL", "CT", "VA", "NY", "NY", "NY", "MA", "NY", "ME", "NY", "PA", "SC", "FL", "NC", "NJ", "NJ", "NY", "NY", "MA", "NY", "PA", "NY", "MD", "TN", "FL", "NJ", "NY", "PA", "PA", "FL", "NY", "FL", "AZ", "MA", "TX", "IL", "NY", "MI", "ME", "VA", "NY", "PA", "FL", "NJ", "CT", "MD", "SC", "NJ", "OH", "DE", "CT", "MA", "NJ", "NY", "NY", "NY", "CT", "FL", "TN", "CT", "FL", "PA", "FL", "NJ", "PA", "PA", "IL", "NY", "FL", "IL", "NY", "NC", "FL", "NY", "NY", "SC", "OH", "NC", "FL", "NY", "MA", "NY", "MA", "CT", "GA", "NY", "FL", "IL", "FL", "CT", "NY", "NY", "PA", "MA", "NY", "NC", "NJ", "MI", "NY", "NY", "NY", "FL", "IL", "MA", "MI", "MD", "MA", "NJ", "MD", "PA", "VT", "CT", "MA", "CT", "OH", "NJ", "MA", "FL", "IL", "FL", "MA", "AR", "SC", "NJ", "NJ", "IL", "NJ", "PA", "MA", "FL", "NH", "MA", "NH", "NY", "DE", "NY", "NY", "NY", "NJ", "CT", "ME", "FL", "VA", "PA", "FL", "NY", "NY", "FL", "NY", "MA", "FL", "NJ", "NY", "NJ", "NY", "NJ", "CT", "IL", "MA", "NC", "ME", "NY", "MA", "MA", "RI", "MA", "NY", "FL", "FL", "NY", "VA", "NC", "AZ", "NY", "RI", "MA", "RI", "MA", "PA", "MA", "ME", "OH", "FL", "IL", "NY", "NY", "MI", "IL", "MI", "TX", "MI", "FL", "MA", "FL", "FL", "NY", "NH", "MA", "FL", "AL", "NY", "RI", "FL", "FL", "RI", "KY", "PA", "MA", "KY", "MA", "MD", "IL", "MA", "VA", "PA", "NY", "FL", "PA", "CT", "NH", "NJ", "NY", "NY", "NJ", "CT", "FL", "MD", "NY", "NY", "NC", "NY", "NY", "NJ", "CT", "MD", "NY", "IL", "MA", "NC", "MA", "MA", "FL", "PA", "AZ", "PA", "AL", "FL", "MA", "NH", "NY", "CT", "FL", "NH", "FL", "GA", "AZ", "NJ", "MA", "FL", "SC", "NY", "MA", "CT", "NY", "PA", "FL", "DE", "NY", "FL", "NY", "NY", "CT", "CT", "NH", "CO", "SC", "NY", "NY", "ME", "NJ", "CT", "NY", "NJ", "MA", "NJ", "FL", "MA", "FL", "NY", "NJ", "PA", "FL", "NY", "AZ", "NH", "FL", "MA", "UT", "NC", "PA", "CT", "WI", "MA", "MD", "GA", "RI", "NY", "CT", "NY", "MO", "AZ", "MA", "FL", "WI", "NJ", "MA", "RI", "VA", "TX", "MA", "MA", "NJ", "KS", "MA", "NH", "FL", "NY", "TX", "NJ", "PA", "MA", "CT", "MA", "WI"], ["27", "24", "24", "23", "17", "19", "20", "16", "16", "21", "16", "20", "17", "16", "23", "21", "20", "22", "25", "19", "25", "15", "22", "21", "20", "19", "22", "27", "18", "30", "16", "15", "22", "18", "22", "14", "16", "17", "22", "23", "25", "24", "17", "11", "21", "16", "20", "26", "22", "22", "20", "19", "22", "19", "18", "24", "17", "21", "19", "14", "23", "19", "17", "19", "23", "19", "23", "27", "18", "22", "18", "21", "21", "20", "16", "26", "22", "23", "19", "19", "17", "21", "18", "22", "21", "22", "15", "26", "22", "18", "22", "22", "27", "21", "21", "12", "19", "23", "26", "14", "22", "18", "34", "16", "18", "21", "24", "32", "20", "25", "18", "26", "22", "17", "15", "25", "22", "17", "17", "21", "24", "21", "18", "17", "20", "21", "17", "22", "12", "17", "19", "19", "21", "18", "33", "18", "26", "23", "24", "17", "27", "26", "19", "23", "16", "20", "30", "19", "22", "17", "24", "21", "20", "20", "24", "24", "17", "19", "20", "15", "21", "21", "18", "27", "20", "16", "24", "17", "22", "21", "22", "19", "20", "15", "14", "20", "16", "19", "21", "29", "17", "23", "17", "27", "19", "19", "27", "19", "16", "25", "24", "19", "26", "12", "23", "21", "22", "17", "17", "16", "20", "20", "22", "26", "22", "16", "22", "19", "16", "24", "23", "19", "22", "23", "17", "21", "24", "14", "17", "26", "19", "17", "26", "25", "20", "23", "16", "21", "18", "17", "16", "24", "26", "20", "24", "23", "15", "20", "22", "19", "17", "22", "19", "21", "20", "17", "18", "25", "32", "26", "26", "24", "24", "17", "25", "20", "21", "17", "18", "22", "16", "23", "19", "14", "25", "21", "24", "17", "19", "19", "27", "22", "21", "29", "23", "23", "20", "28", "18", "22", "17", "20", "27", "21", "17", "13", "16", "17", "24", "21", "21", "18", "21", "20", "23", "19", "16", "15", "26", "25", "23", "10", "24", "18", "17", "19", "17", "27", "25", "24", "20", "17", "21", "22", "22", "22", "20", "14", "18", "15", "16", "23", "19", "37", "21", "24", "22", "19", "19", "20", "25", "19", "15", "24", "22", "21", "32", "21", "19", "20", "19", "17", "20", "20", "21", "20", "20", "16", "18", "21", "24", "21", "22", "19", "24", "21", "24", "18", "24", "15", "21", "22", "18", "28", "19", "18", "24", "29", "23", "21", "29", "24", "23", "26", "19", "19", "16", "25", "23", "22", "22", "21", "17", "10", "20", "24", "21", "22", "20", "23", "21", "16", "23", "18", "23", "18", "19", "18", "20", "17", "23", "17", "15", "19", "23", "29", "24", "21", "22", "21", "27", "20", "23", "22", "20", "22", "24", "21", "23", "22", "29", "23", "16", "18", "18", "26", "19", "16", "20", "23", "25", "16", "18", "27", "16", "21", "15", "19", "24", "21", "12", "21", "17", "16", "24", "32", "11", "18", "19", "20", "23", "32", "20", "29", "29", "17", "20", "27", "17", "19", "15", "26", "10", "24", "16", "21", "26", "27", "20", "20", "29", "16", "28", "20", "25", "10", "20", "19", "20", "21", "24", "25", "26", "24", "11", "18", "22", "18", "21", "24", "24", "13", "20", "15", "22", "20", "17", "22", "20", "23"], ["KL", "KA", "WB", "MM", "AP", "MP", "BR", "JK", "BR", "KL", "RJ", "UP", "RJ", "AP", "TN", "MZ", "UP", "TN", "AP", "MP", "MM", "KL", "UP", "DL", "MM", "KL", "MP", "KL", "MM", "HP", "GJ", "BR", "KL", "MP", "KL", "MM", "KL", "KL", "PB", "AP", "KA", "MM", "MM", "AR", "OR", "PB", "AP", "KL", "GA", "WB", "UP", "HR", "OR", "MM", "GJ", "AS", "HR", "TN", "MM", "MM", "OR", "HR", "AP", "MM", "KL", "UP", "KA", "KA", "KA", "AP", "RJ", "KL", "AS", "UP", "AP", "KL", "MM", "MM", "UP", "MM", "AP", "TN", "UP", "KL", "AP", "MM", "AP", "RJ", "MM", "KL", "UP", "WB", "RJ", "MM", "MM", "UP", "WB", "WB", "AP", "TN", "RJ", "TN", "KL", "KA", "TN", "UP", "TN", "TN", "CT", "MM", "MM", "GJ", "UP", "KL", "MP", "RJ", "DL", "WB", "KA", "AP", "KL", "DL", "AP", "BR", "UP", "WB", "UP", "KA", "OR", "AS", "AP", "WB", "MM", "MM", "AP", "PB", "AP", "MN", "MM", "UP", "AP", "TN", "AP", "DL", "TN", "KL", "BR", "AP", "JH", "UP", "HR", "RJ", "MM", "MM", "WB", "RJ", "KA", "KL", "GJ", "GJ", "GJ", "UP", "GJ", "AP", "AP", "KA", "KL", "WB", "KA", "PB", "AP", "HP", "MM", "KA", "KL", "AP", "TN", "MM", "KL", "KL", "BR", "JK", "RJ", "TN", "WB", "KL", "WB", "KA", "AP", "MM", "KL", "WB", "BR", "TN", "OR", "KA", "AP", "KL", "MM", "TN", "GJ", "KL", "MM", "OR", "TN", "WB", "MM", "GJ", "KA", "TN", "AP", "MP", "CT", "MM", "AP", "KL", "MM", "TN", "TN", "TN", "AP", "KL", "DL", "KL", "KA", "KA", "KL", "KL", "MM", "MM", "GJ", "UP", "KL", "AP", "BR", "RJ", "MP", "AP", "AP", "AP", "TN", "KA", "WB", "MM", "AP", "HR", "AP", "HR", "GJ", "PB", "AS", "OR", "HP", "AP", "HR", "AP", "TN", "AP", "TN", "GJ", "JH", "KA", "MM", "BR", "KL", "TN", "RJ", "GJ", "RJ", "RJ", "BR", "MP", "KL", "MP", "PB", "KL", "KL", "MM", "UP", "DL", "JH", "AP", "DL", "TN", "OR", "KL", "TR", "AP", "KA", "TN", "MM", "OR", "MM", "MM", "MM", "CT", "AP", "KL", "KL", "MM", "KA", "AP", "AS", "RJ", "BR", "KA", "TN", "WB", "UP", "MM", "AP", "TN", "KL", "KL", "RJ", "UP", "PB", "MM", "TN", "GJ", "KA", "WB", "TN", "KA", "MP", "KA", "TN", "JH", "KL", "TN", "MM", "GJ", "BR", "DL", "AP", "AS", "UP", "UP", "KA", "TN", "TN", "BR", "RJ", "KL", "KA", "OR", "TN", "RJ", "AP", "BR", "KL", "KL", "UP", "KL", "RJ", "HP", "KL", "KA", "MP", "UP", "KL", "MM", "UP", "HP", "AP", "TN", "WB", "PB", "KL", "OR", "MM", "OR", "AP", "MM", "MM", "UP", "KA", "GJ", "KA", "KA", "MM", "KL", "OR", "MM", "OR", "BR", "AP", "KA", "RJ", "KA", "BR", "AP", "TR", "MM", "OR", "UP", "MM", "AP", "MM", "JH", "AP", "MM", "MM", "MM", "UP", "WB", "MM", "KL", "AS", "UP", "MM", "MM", "TN", "WB", "UP", "BR", "UP", "UP", "KL", "KL", "KL", "WB", "MM", "AP", "KA", "KA", "TR", "KL", "SK", "GJ", "TN", "TN", "KL", "KL", "OR", "TN", "OR", "WB", "KA", "BR", "PB", "OR", "KA", "UP", "KL", "HP", "MM", "OR", "JK", "MM", "RJ", "WB", "TN", "BR", "TN", "KL", "KA", "AP", "MM", "OR", "BR", "KL", "UP", "OR", "TN", "KL", "KA", "AP", "KA", "GJ", "TN", "BR", "MP", "MM", "UP", "TN", "MM", "OR", "MM", "TN", "TN", "TN", "UP", "MM", "AP", "UL", "UP", "AS", "MM", "MP", "AP", "BR", "AP", "KL", "AP", "WB", "AP", "MM", "GJ", "KL"], ["64", "56", "66", "60", "70", "70", "58", "52", "58", "68", "66", "72", "90", "66", "68", "62", "60", "66", "66", "68", "72", "70", "76", "56", "68", "70", "66", "76", "66", "74", "66", "80", "76", "54", "68", "70", "54", "72", "64", "70", "54", "64", "68", "66", "62", "76", "80", "68", "64", "62", "64", "66", "64", "58", "66", "60", "68", "72", "96", "78", "60", "76", "48"], ["73", "71", "82", "74", "77", "76", "70", "74", "70", "81", "78", "73", "79", "72", "71", "81", "74", "74", "72", "72", "79", "77", "81", "76", "79", "81", "73", "81", "79", "81", "78", "82", "76", "74", "73", "79", "77", "75", "73", "77", "78", "73", "76", "82", "80", "76", "81", "70", "75", "80", "77", "80", "77", "81", "75", "76", "78", "70", "78", "81", "74", "74", "79", "74", "76", "82", "72", "82", "76", "78", "74", "78", "71", "79", "78", "81", "82", "78", "79", "80", "78", "82", "75", "80", "73", "79", "73", "78", "79", "76", "75", "74", "79", "70", "72", "81", "75", "76", "76", "73", "82", "82", "76", "78", "73", "76", "71", "73", "78", "71", "80", "71", "72", "82", "80", "81", "71", "76", "73", "82", "77", "70", "77", "80", "76", "81", "82", "76", "76", "75", "75", "73", "80", "71", "76", "77", "82", "73", "73", "77", "81", "82", "79", "75", "71", "73", "77", "78", "75", "70", "76", "78", "82", "82", "72", "81", "73", "79", "81", "81", "78", "71", "80", "72", "71", "77", "75", "71", "76", "72", "73", "74", "76", "79", "82", "72", "71", "78", "70", "71", "76", "74", "72", "74", "80", "77", "78", "72", "77", "76", "71", "70", "73", "80", "79", "74", "82", "81", "76", "80", "76", "77", "75", "70", "76", "80", "71", "70", "74", "78", "70", "71", "71", "80", "81", "70", "80", "80", "74", "73", "74", "78", "78", "82", "82", "77", "76", "79", "77", "70", "79", "78", "70", "72", "75", "73", "80", "77", "82", "80", "75", "79", "75", "70", "75", "76", "75", "77", "72", "78", "82", "76", "75", "79", "73", "73", "73", "74", "72", "73", "78", "76", "78", "79", "81", "75", "80", "70", "79", "71", "82", "72", "70", "75", "79", "73", "73", "75", "71", "79", "73", "82", "76", "80", "81", "76", "70", "82", "78", "72", "71", "71", "73", "70", "74", "80", "73", "72", "75", "75", "78", "80", "72", "79", "79", "77", "75", "79", "81", "73", "77", "79", "82", "72", "72", "80", "75", "81", "73", "78", "76", "75", "78", "73", "70", "70", "71", "74", "73", "70", "77", "71", "72", "78", "77", "74", "73", "77", "70", "70", "78", "73", "77", "77", "77", "78", "79", "81", "81", "81", "74", "70", "79", "78", "72", "73", "73", "77", "80", "72", "76", "81", "74", "80", "73", "74", "73", "82", "71", "75", "70", "74", "72", "82", "78", "78", "72", "71", "80", "82", "75", "75", "78", "72", "71", "82", "70", "70", "72", "75"], ["44", "69", "69", "34", "35", "30", "30", "0", "75", "53", "53", "45", "35", "0", "64", "0", "0", "0", "35", "53", "40", "44", "69", "30", "34", "35", "0", "69", "50", "64", "44", "69", "34", "20", "0", "35", "69", "60", "0", "0", "0", "0", "0", "0", "35", "69", "0", "53", "0", "0", "35", "0", "0", "20", "44", "0", "64", "44", "0", "44", "0", "53", "35", "53", "64", "5", "53", "53", "53", "0", "10", "35", "0", "44", "69", "30", "64", "0", "55", "53", "0", "53", "0", "64", "0", "64", "44", "69", "53", "45", "35", "0", "10", "0", "34", "64", "53", "64", "44", "64", "90", "64", "20", "0", "34", "64", "0", "0", "0", "0", "0", "53", "34", "25", "0", "34", "20", "2", "44", "53", "64", "0", "0", "35", "35", "53", "10", "53", "0", "44", "69", "44", "25", "69", "0", "35", "50", "35", "0", "35", "44", "0", "53", "53", "30", "15", "0", "30", "34", "44", "35", "44", "69", "34", "0", "5", "15", "30", "45", "69", "0", "69", "0", "34", "60", "35", "35", "34", "53", "64", "0", "30", "1", "35", "64", "30", "0", "0", "44", "34", "75", "44", "53", "15", "0", "0", "34", "35", "10", "0", "69", "5", "44", "44", "34", "40", "44", "0", "44", "0", "64", "0", "0", "30", "53", "64", "30", "44", "53", "69", "44", "69", "53", "53", "0", "0", "10", "34", "69", "34", "69", "69", "53", "35", "69", "44", "64", "45", "53", "34", "53", "34", "0", "85", "45", "0", "35", "34", "64", "53", "53", "0", "0", "0", "64", "30", "64", "64", "34", "35", "60", "44", "35", "0", "44", "34", "30", "35", "5", "0", "5", "53", "64", "35", "45", "0", "53", "45", "69", "10", "44", "69", "34", "69", "44", "44", "15", "34", "20", "64", "44", "64", "40", "53", "69", "35", "0", "69", "69", "0", "69", "45", "64", "44", "0", "0", "75", "5", "20", "20", "64", "35", "80", "60", "53", "53", "35", "50", "64", "0", "15", "0", "44", "44", "25", "40", "0", "0", "0", "69", "53", "0", "69", "53", "53", "0", "0", "0", "0", "69", "64", "44", "0", "0", "75", "0", "34", "35", "64", "0", "10", "53", "69", "99", "90", "53", "34", "0", "53", "34", "10", "64", "53", "53", "60", "15", "34", "64", "30", "35", "0", "44", "0", "45", "35", "34", "53", "64", "34", "0", "35", "35", "64", "69", "0", "69", "64", "69", "35", "0", "0", "0", "50", "45", "30", "53", "69", "90", "69", "0", "0", "35", "69", "30", "34", "53", "35", "34", "44", "0", "0", "69", "45", "53", "0", "64", "44", "44", "53", "15", "64", "40", "64", "35", "53", "53", "60", "34", "34", "0", "0", "34", "35", "53", "0", "0", "45", "53", "35", "0", "53", "15", "35", "10", "69", "0", "53", "64", "0", "0", "0", "45", "35", "0", "35", "90", "64", "0", "0", "53", "45", "0", "0", "44", "44", "0", "44", "34", "0", "34", "64", "35", "0", "0", "0", "0", "40", "0", "53", "69", "64", "25", "44", "69", "0", "0", "53", "53", "0", "69", "0", "69", "69", "53", "0", "34", "64", "69", "34", "35", "35", "64", "35", "0", "34", "64", "0", "64", "0", "64"], ["20", "25", "11", "11", "12", "14", "15", "15", "20", "9", "15", "12", "13", "23", "12", "12", "10", "20", "20", "14", "12", "12", "11", "11", "20", "19", "12", "20", "25", "13", "25", "12", "15", "14", "9", "12", "14", "19", "25", "3", "12", "7", "5", "25", "15", "20", "30", "15", "25", "15", "25", "2", "20", "15", "20", "30"], ["15", "23", "5", "23", "7", "8", "8", "15", "12", "3", "8", "8", "23", "16", "23", "8", "5", "8", "21", "23", "23", "23", "23", "14", "5", "3", "6", "5", "8", "13", "23", "15"], ["nn", "ak", "ci", "us", "ak", "nc", "us", "nn", "ak", "ak", "ci", "nn", "nm", "nn", "nc", "ci", "nn", "nc", "ak", "ak", "nn", "nc", "ak", "nc", "us", "hv", "ak", "nc", "ak", "hv", "ak", "ci", "ak", "nc", "ci", "ak", "ci", "us", "nc", "ci", "mb", "nn", "pr", "nc", "ci", "nc", "nc", "hv", "ak", "ci", "nc", "ci", "ak", "us", "us", "ci", "nn", "ak", "mb", "ci", "us", "nc", "nn", "ak", "ak", "ak", "nn", "nc", "ak", "hv", "uw", "nc", "us", "nc", "us", "nc", "us", "pr", "nn", "nc", "ci", "ak", "ci", "ci", "ak", "ak", "nn", "ak", "us", "ak", "ak", "nc", "nc", "nn", "nc", "ak", "ci", "ak", "nc", "us", "ak", "nc", "nc", "ak", "ci", "ci", "nn", "ci", "ak", "nc", "us", "ak", "nn", "uu", "nc", "nn", "nc", "ci", "nc", "uw", "ak", "nc", "ak", "nc", "nn", "nc", "hv", "nc", "nc", "nc", "us", "ci", "nn", "nc", "nn", "hv", "us", "ci", "nn", "ci", "mb", "nc", "nc", "ci", "hv", "us", "ci", "nc", "pr", "nc", "hv", "nc", "nn", "ak", "us", "pr", "nc", "nc", "nm", "ci", "ci", "nc", "nn", "ak", "nc", "uw", "us", "nc", "nc", "ci", "nc", "ci", "ci", "nc", "nn", "nn"], ["S2", "S1", "S8", "S4", "S8", "S8", "S1", "S8", "S0", "S4", "S0", "S4", "S1", "S1", "S1", "S2", "S2", "S4", "S4", "S0", "S4", "S8", "S2", "S4", "S4", "S1", "S0", "S2", "S0", "S8", "S1", "S2", "S4", "S0", "S4", "S0", "S0", "S1", "S2", "S4", "S2", "S8", "S8", "S0", "S0", "S4", "S0", "S0", "S2", "S8", "S8", "S4", "S1", "S8", "S2", "S2", "S8", "S8", "S0", "S1", "S0", "S8", "S0", "S0", "S2", "S8", "S1", "S2", "S2", "S4", "S1", "S4", "S2", "S0", "S4", "S4", "S0", "S8", "S8", "S4", "S1", "S2", "S1", "S1", "S1", "S8", "S1", "S4", "S4", "S2", "S2", "S8", "S4", "S1", "S1", "S8", "S8", "S8", "S8", "S0", "S0", "S0", "S2", "S4", "S8", "S2", "S1", "S2", "S2", "S1", "S1", "S4", "S0", "S2", "S0", "S1", "S0", "S2", "S1", "S4"], ["44", "23", "45", "45", "45", "23", "45", "43", "45", "44", "45", "43", "31", "45", "44", "23", "45", "1", "44", "45", "44", "45", "44", "45", "44", "45", "45", "23", "45", "31", "44", "1", "44", "45", "44", "44", "23", "23", "45", "23", "45", "44", "1", "44", "44", "23", "45", "1", "45", "45", "45", "44", "44", "23", "45", "45", "45", "23", "45", "1", "45", "23", "44", "1", "1", "43", "45", "31", "45", "1", "45", "45", "45", "44", "45", "1", "45"], ["18", "17", "20", "17", "16", "20", "19", "18", "17", "18", "17", "19", "17", "22", "18", "17", "17", "18", "17", "18", "17", "18", "17", "17", "17", "17", "18", "21", "17", "20", "17", "17", "17", "17", "20", "19", "18", "18", "18", "17", "18", "18", "20", "19", "18", "17", "18", "19", "17", "18", "16", "17", "17", "16", "17", "19", "17", "17", "17", "18", "17", "18", "18", "18", "19", "19", "18", "18", "18", "18", "20"], ["1", "12", "1", "1", "15", "1", "1", "12", "1", "15", "1", "1", "30", "1", "1", "30", "1", "15", "1", "1", "13", "13", "30", "1", "1", "1", "15", "1", "3", "13", "1", "1", "1", "1", "1", "1", "1", "1", "1", "15", "15", "15", "30", "1", "30", "1", "3", "1", "1", "15", "1", "30", "3", "1", "15", "1", "30", "13", "27", "13", "1", "1", "1", "12", "1", "15", "1", "1", "3", "13", "15", "1", "13", "1", "30", "1", "1", "1", "13", "13", "1", "30", "15", "1", "15", "3", "13", "30", "1", "1", "27", "30", "1", "1", "1", "1", "13", "3", "27", "1", "1", "27", "1", "1", "1", "1", "1", "15", "13", "1", "1", "15", "15", "1", "1", "15", "1", "1", "1", "30", "1", "1", "15", "1", "1", "1", "13", "13", "1", "1", "12", "1", "30", "1", "1", "15", "27", "1", "15", "13", "12", "30", "15", "1", "30", "1"], ["MC", "SC", "MC", "TC", "BC", "BC", "MC", "BC", "MC", "SC", "SC", "TC", "MC", "TC", "MC", "BC", "SC", "BC", "SC", "MC", "MC", "MC", "SC", "TC", "MC", "TC", "MC", "BC", "MC", "SC", "SC", "TC", "BC", "TC", "SC", "SC", "SC", "SC", "TC", "TC", "BC", "MC", "MC", "MC", "SC", "SC", "BC", "TC", "BC", "BC", "SC", "MC", "BC", "SC", "TC", "BC", "BC", "SC", "TC", "TC", "BC", "BC", "BC", "SC", "TC", "TC", "MC", "BC", "SC", "SC", "MC", "TC", "TC", "BC", "BC", "TC", "TC", "BC", "SC", "BC", "MC", "SC", "SC", "SC", "TC", "MC", "TC", "SC", "BC", "MC", "BC", "TC", "MC", "SC", "BC", "MC", "MC", "SC", "MC", "MC", "BC", "MC", "MC", "TC", "TC", "BC", "TC", "SC", "TC", "MC", "SC", "TC", "SC", "MC", "BC", "BC", "TC", "BC", "TC", "TC"], ["0", "0", "0", "0", "12", "0", "0", "10", "56", "0", "0", "0", "0", "3", "0", "0", "0", "0", "0", "0", "0", "8", "0", "0", "0", "0", "3", "1", "0", "0", "0", "46", "0", "2", "0", "0", "0", "0", "12", "0", "0", "28", "0", "14", "0", "3", "3", "31", "0", "0", "0", "12", "0", "0", "8", "0", "0", "0", "0", "0", "2", "0", "0", "0", "7", "0", "8", "0", "0", "1", "0", "0", "0", "0", "0", "2", "0", "0", "2", "23", "0", "3", "2", "20", "2", "0", "0", "0"], ["24", "22", "21", "23", "20", "23", "24", "21", "22", "24", "22", "24", "21", "23", "22", "24", "24", "22", "24", "23", "24", "22", "24", "21", "22", "22", "24", "22", "22", "23", "22", "24", "24", "24", "23", "24", "23", "23", "22", "23", "22", "24", "22", "21", "24", "23", "24", "21", "24", "24", "21", "22", "22", "22", "23", "23", "23", "24", "22", "22", "24", "22", "22", "22", "23", "24", "23", "21", "23", "22", "23", "23", "23", "24", "21", "24", "23", "24", "22", "24", "23", "22", "24", "21", "22", "22", "24", "24", "23", "23", "23", "21", "22", "23", "24", "23", "22", "22", "23", "24", "22", "23", "23", "24", "22", "22", "23", "23", "20", "22", "24", "24", "20", "24", "23", "24", "21", "22", "22", "22", "22", "22", "20", "22", "22", "22", "23", "22", "23", "23", "23", "23", "24", "23", "22", "23", "24", "23", "21", "23", "22", "22", "22", "24", "24", "20", "21", "24", "24", "24", "24", "23", "24", "24", "22", "24", "22", "23", "23", "24", "24", "23", "24", "24", "23", "24", "22", "23", "20", "23", "22", "24", "24", "22", "23", "22", "24", "24", "22", "24", "24", "22", "22", "22", "23", "24", "22", "24", "24", "21", "23", "24", "22", "24", "23", "22", "24", "24", "24", "23", "24", "23", "24", "24", "23", "24", "22", "22", "24", "23", "24", "24", "24", "22", "23", "24", "23"], ["25", "15", "20", "20", "10", "20", "20", "20", "15", "25", "15", "20", "20", "25", "25", "20", "20", "25", "20", "20", "25", "15", "10", "15", "25", "20", "20", "10", "25", "15", "15", "20", "15", "15", "20", "25", "15", "20", "15", "20", "15", "15", "15", "20", "20", "15", "20", "20", "25", "20", "20", "15", "20", "10", "25", "20", "20", "15", "10", "15", "10", "20", "15", "15", "15", "15", "15", "15", "10", "15", "20", "15", "15", "25", "10", "20", "15", "15", "20", "15", "15", "10", "20", "20", "15", "20", "10", "20", "25", "15", "15", "20", "25", "20", "25", "25", "20", "10", "15", "15", "15", "25", "20", "15", "20", "15", "20", "20", "15", "20", "25", "20", "20", "10", "10", "20", "20", "20", "20", "15", "10", "20", "10", "20", "10", "15", "15", "10", "20", "20", "15", "10", "20", "10", "20", "15", "15", "10", "20", "25", "20", "20", "15", "20", "20", "10", "20", "15", "20", "15", "20", "20", "20", "20", "15", "15", "20", "15", "20", "20", "10", "25", "10", "15", "15", "15", "10", "20", "20", "20", "20", "15", "10", "15", "15", "15", "25", "20", "20", "25", "20", "15", "10", "20", "15", "15", "20", "25", "10", "10", "20", "25", "20", "20", "20", "20", "20", "20", "10", "10", "20", "15", "20", "20", "15", "20", "10", "15", "25", "25", "20", "15", "20", "20", "15", "25", "15", "20", "10", "15", "20", "25", "20", "20", "20", "10", "20", "10", "20", "25", "15", "20", "15", "20", "15", "15", "20", "15", "25", "20", "15", "15", "25", "20", "25", "25", "10"], ["31", "30", "29", "29", "29", "30", "28", "29", "29", "29", "29", "28", "30", "29", "29", "29", "30", "29", "29", "29", "29", "29", "28", "29", "29", "30", "28", "29", "29", "28", "29", "29", "28", "29", "29", "29", "29", "29", "29", "29", "28", "30", "28", "29", "30", "29", "29", "29", "29", "29", "30", "29", "28", "30", "29", "29", "29", "29", "29", "28", "29", "28", "30", "29", "29", "29", "28", "28", "29", "28", "28", "29", "29", "29", "28", "29", "30", "29", "28", "30", "28", "31", "28", "30", "29", "29", "29", "29", "30", "28", "29", "30", "29", "30", "30", "33", "28", "28", "30", "29", "31", "28", "28", "29", "30", "28", "28", "30", "31", "30", "29", "28", "29", "30", "28", "29", "29", "28", "29", "29", "29", "30", "29", "30", "29", "29", "29", "30", "29", "31", "29", "29", "29", "29", "28", "29", "29", "28", "28", "29", "28", "28", "29", "29", "28", "29", "29", "29", "29", "29", "29", "28", "33", "29", "29", "29", "29", "30", "31", "28", "29", "29", "31", "29", "30", "30", "29", "29", "28", "28", "28", "29", "29", "28", "30", "29", "29", "29", "29", "29", "30", "29", "29", "29", "29", "28", "27", "31", "29", "29", "28", "29", "30", "28", "28", "28", "29", "29", "29", "29", "29", "29", "31", "30", "31", "28", "29", "28", "29", "28", "29", "29", "30", "30", "30", "29", "29", "29", "29", "29", "30", "30", "28", "31", "29", "29", "29", "32", "29", "31", "29", "30", "29", "28", "29", "30", "29", "28", "29", "28", "31", "28", "29", "30", "29", "28", "29", "29", "28", "30", "29", "29", "28", "28", "29", "28", "29", "31", "28", "29", "29", "29", "28", "29", "29", "28", "29", "30", "28", "29", "29", "29", "31", "29", "29", "30", "30", "27", "30", "30", "31", "28", "30", "31", "29", "29", "30", "30", "28", "29", "29", "29", "28", "29", "30", "29", "30", "28", "29", "28", "28", "30", "29", "29", "29", "29", "28", "29", "29", "27", "30", "28", "28", "28", "28", "29", "29", "30", "28", "29", "30", "28", "30", "30", "27", "29", "28", "28", "29", "28", "29", "28", "29", "30", "28", "30"], ["SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "EE", "MN", "SE", "EE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "NO", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "NO", "SE", "SE", "SE", "SE", "SE", "SE", "EE", "SE", "SE", "SE", "SE", "SE", "KZ", "SE", "SE", "SE", "SE", "CN", "SE", "EE", "SE", "SE", "SE", "SE", "PK", "SE", "IN", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "GE", "SE", "SE", "SE", "SE", "SE", "CN", "SE", "SE", "SE", "NO", "EE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "NP", "SE", "SE", "SE", "SE", "SE", "IN", "SE", "SE", "SE", "SE", "SE", "AE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "IN", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "IN", "RU", "SE", "RU", "NO", "SE", "SE", "SE", "SE", "GB", "SE", "NO", "SE", "DK", "SE", "SE", "NO", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "KG", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "IN", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "RU", "SE", "SE", "KZ", "SE", "SE", "SE", "SE", "RU", "KG", "SE", "SE", "SE", "SE", "SE", "CN", "SE", "SE", "SE", "SE", "RU", "SE", "DK", "SE", "SE", "SE", "SE", "SE", "SE", "RU", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "DE", "SE", "SE", "SE", "DK", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "CN", "SE", "RU", "IN", "SE", "SE", "GB", "IN", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "DK", "SE", "SE", "SE", "NO", "GB", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "DK", "SE", "SE", "IN", "SE", "DK", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "NO", "SE", "SE", "GE", "RU", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "IN", "SE", "SE", "KZ", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "MN", "FI", "SE", "SE", "SE", "SE", "SE", "KG", "SE", "IR", "MN", "SE", "SE", "SE", "SE", "KZ", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "RU", "SE", "SE", "SE", "SE", "SE", "NO", "SE", "SE", "SE", "SE", "SE", "SE", "KZ", "SE", "SE", "IN", "SE", "DK", "SE", "IR", "SE", "SE", "SE", "CN", "SE", "RU", "SE", "SE", "NO", "SE", "SE", "SE", "NO", "SE", "SE", "SE", "SE", "RU", "SE", "RU", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "KG", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "RU", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "IN", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "CN", "SE", "SE", "SE", "SE", "SE", "SE", "NO", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "FI", "SE", "DK", "SE", "SE", "FI", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "SE", "DK", "SE", "SE", "SE", "SE"], ["17", "17", "17", "17", "17", "17", "17", "19", "17", "17", "17", "17", "16", "17", "17", "17", "18", "18", "18", "17", "17", "16", "17", "17", "19", "17", "17", "17", "17", "17", "17", "17", "16", "17", "17", "18", "18", "18", "17", "17", "17", "17", "17", "18", "18", "17", "17", "17", "18", "17", "17", "17", "17", "17", "17", "17", "14", "17", "17", "17", "17", "17", "17", "17", "17", "17", "18", "17", "16", "18", "18", "17", "17", "17", "17", "17", "18", "18", "18", "17", "17", "16", "17", "18", "17", "17", "17", "17", "17", "17", "17", "17", "17", "17", "17", "17", "18", "17", "18", "16", "18", "17", "17", "16", "18", "17", "17", "16", "17", "17", "17", "18", "18", "17", "17", "17", "17", "18", "17", "17", "17", "17", "17", "17", "17", "16", "17", "17", "17", "17", "17", "17", "17", "18", "17", "18", "17", "17", "18", "16", "17", "17", "18", "17", "17", "17", "17", "17", "17", "17", "17", "18", "17", "17", "17", "17", "16", "17", "17", "18", "17", "17", "18", "17", "17", "17", "17", "17", "17", "17", "17", "17", "18", "18", "17", "19", "18", "18", "17", "17", "18", "17", "17", "17", "17", "17", "17", "17", "17", "17", "17", "18", "17", "17", "17", "18", "17", "17", "18", "17", "17", "18", "17", "17", "17", "17", "17", "17", "18", "17", "18", "17", "17", "17", "18", "17", "18", "17", "17", "17", "17", "16", "17", "17", "17", "16", "17", "17", "17", "17", "17", "18", "16", "17", "18", "17", "16", "18", "17", "17", "17", "18", "17", "16", "17", "17", "18", "17", "17", "17", "17", "17", "17", "15", "19", "16", "17", "17", "17", "17", "17", "18", "18", "17", "17", "17", "18", "17", "17", "17", "17", "15", "17", "17", "17", "17", "17", "16", "17", "17", "18", "17", "17", "17", "17", "17", "17", "17", "17", "18", "17", "17", "17", "18", "18", "17", "18", "17", "17", "16", "17", "17", "17", "17", "17", "17", "18", "17", "18", "17", "17", "17", "17", "17", "17", "17", "17", "16", "17", "17", "17", "16", "17", "17", "17", "17", "17", "17", "17", "17", "17", "17", "18", "16", "17", "17"], ["0", "6", "0", "0", "0", "69", "0", "0", "0", "0", "0", "3", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "1", "0", "5", "0", "0", "0", "12", "0", "0", "0", "0", "0", "0", "0", "0", "3", "15", "0", "2", "0", "0", "0", "1", "0", "0", "0", "0", "0", "0", "0", "0", "0", "2", "0", "0", "0", "0", "0", "0", "0", "1", "0", "0", "0", "0", "0", "10", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "2", "0", "0", "0", "0", "0", "0", "0", "0", "0", "5", "0"], ["UF", "UF", "UF", "UF", "BF", "BF", "UF", "UF", "UF", "BF", "BF", "UF", "BF", "BF", "BF", "UF", "UF", "BF", "BF", "BF", "BF", "BF", "BF", "UF", "UF", "BF", "UF", "UF", "UF", "BF", "BF", "BF", "UF", "BF", "UF", "UF", "BF", "BF", "UF", "BF", "BF", "UF", "UF", "UF", "UF", "UF", "BF", "UF", "UF", "UF", "BF", "BF", "UF", "UF", "UF", "UF", "UF", "UF", "BF", "BF", "BF", "UF", "UF", "BF", "BF", "UF", "UF", "BF", "BF", "UF", "BF", "UF", "UF", "UF", "UF", "UF", "UF", "BF", "UF", "UF", "UF", "BF", "BF", "UF", "UF", "UF", "BF", "BF", "BF", "UF", "UF", "UF", "BF", "BF", "UF", "BF", "BF", "BF", "BF", "BF", "UF", "BF", "UF", "BF", "UF", "BF", "BF", "BF", "BF", "UF", "UF", "BF", "UF", "BF", "BF", "UF", "UF", "BF", "UF", "UF", "UF", "UF", "BF", "BF", "BF", "UF", "BF", "UF", "BF", "UF", "BF", "UF", "UF", "UF", "UF", "BF", "UF", "BF", "UF", "UF", "UF", "BF", "BF", "UF", "BF", "BF"], ["1", "NA", "1", "1", "1", "1", "NA", "1", "1", "1", "1", "NA", "1", "NA", "1", "1", "NA", "1", "1", "NA", "1", "1", "1", "1", "NA", "1", "1", "1", "1", "1", "1", "1", "1", "NA", "1", "1", "1", "NA", "1", "1", "1", "NA", "1", "1", "1", "1", "1", "NA", "1", "1", "1", "NA", "1", "1", "NA", "1", "1", "1", "1", "NA", "1", "NA", "1", "1", "1", "1", "NA", "1", "1", "1", "1", "1", "1", "NA", "1", "NA", "1", "1", "1", "1"], ["US", "US", "US", "US", "US", "US", "US", "US", "AU", "US", "US", "US", "US", "US", "US", "US", "US", "US", "US", "US", "US", "US", "US", "US", "US", "US", "US", "US", "US", "US", "US", "US", "CZ", "US", "US", "US", "US", "US", "US", "US", "US", "US", "US", "US", "US", "US", "US", "US", "US", "US", "US", "AU", "US", "US", "US", "US", "US", "US", "CA", "US", "AE", "US", "US", "CA", "US", "CA"], ["10", "10", "9", "10", "9", "10", "10", "10", "10", "10", "10", "10", "10", "9", "10", "10", "10", "10", "10", "10", "10", "10", "10", "10", "10", "10", "10", "10", "10", "10", "9", "10", "10", "10", "10", "9", "10", "10", "10", "10", "10", "9", "10", "9", "10", "10", "10", "10", "10", "9", "10", "10", "10", "10", "10", "10", "10", "10", "10", "10", "9", "10", "9", "10", "9", "9", "10", "10", "9", "10", "10", "10", "10", "9", "9", "10", "10", "10", "10", "10", "9", "10", "9", "10", "10", "10", "10", "10", "10", "10", "10", "10", "10", "10", "9", "9", "10", "10", "10", "10", "10", "10", "10", "10", "10", "9", "9", "10", "10", "10", "9", "9", "10", "10", "10", "9", "10", "10", "10", "10", "10", "10", "10", "10", "10", "10", "10", "10", "10", "10", "10", "10", "10", "10", "10", "10", "10", "10", "10", "10", "10", "10", "10", "10", "10", "9", "10", "10", "10", "10", "9", "10", "10", "10", "10", "10", "10", "9", "10", "10", "10", "9", "10", "10", "10", "10", "10", "10", "10", "10", "10", "10", "10", "10", "10", "9", "10", "10", "10", "9", "10", "9", "10", "10", "10", "10", "10", "10", "10", "10", "10", "10", "10", "10", "10", "10", "10", "9", "10", "9", "10", "9", "9", "10", "10", "10", "10", "10", "9", "10", "10", "10", "10", "10", "9", "10", "10", "10", "10", "10", "10", "10", "10", "10", "10", "10", "10", "10", "10", "10", "9", "10", "10", "10", "10", "10", "10", "9", "9", "10", "10", "10", "10", "9", "10", "10", "10", "10", "10", "10", "10", "10", "11", "10", "10", "10", "9", "10", "10", "10", "9", "10", "10", "10", "10", "10", "9", "10", "10", "10", "10", "10", "10", "10", "9", "10", "10", "10", "9", "10", "10", "10", "10", "9", "10", "10", "10", "10", "10", "10", "10", "10", "10", "10", "10", "10", "10", "10", "9", "10", "10", "9", "10", "10", "10", "10", "10", "10", "10", "10", "9", "10", "10", "10", "10", "10", "10", "10", "10", "9", "9", "10", "10", "10", "10", "10", "10", "10", "10", "10", "10", "9", "10", "10", "10", "9"], ["12", "11", "11", "11", "12", "11", "12", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "12", "11", "11", "11", "11", "11", "11", "11", "12", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "12", "11", "12", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "12", "11", "11", "11", "11", "11", "12", "11", "11", "11", "11", "12", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "10", "11", "11", "11", "11", "10", "12", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "12", "11", "11", "11", "11", "11", "11", "12", "11", "11", "11", "11", "12", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "12", "11", "11", "10", "11", "11", "12", "10", "11", "13", "11", "11", "11", "11", "11", "12", "11", "11", "11", "11", "12", "11", "11", "11", "12", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "12", "11", "11", "11", "11", "11", "13", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "12", "11", "11", "11", "11", "12", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "12", "11", "11", "11", "11", "11", "12", "11", "11", "12", "11", "10", "11", "12", "11", "11", "11", "11", "11", "11", "11", "11", "13", "12", "12", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "12", "11", "12", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "12", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "12", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "11", "12", "11", "11", "11", "11", "11", "11", "11", "11"], ["0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "1", "0", "0", "0", "10", "0", "0", "0", "0", "1", "0", "1", "0", "0", "1", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "1", "0", "3", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "3", "0", "0"], ["NA", "NA", "NA", "NA", "NA"], ["4", "226", "546", "195", "148", "87", "71", "338", "209", "469", "530", "585", "505", "216", "264", "457", "403", "543", "285", "207", "297", "498", "412", "178", "157", "549", "197", "547", "372", "339", "192", "189", "557", "391", "10", "39", "60", "658", "257", "484", "336", "529", "619", "345", "296", "493", "52", "228", "380", "235", "165", "483", "79", "51", "522", "485", "193", "298", "72", "571", "265", "307", "278", "453", "335", "95", "310", "373", "50", "283", "538", "521", "429", "581", "295", "129", "401", "390", "101", "673", "267", "76", "629", "631", "652", "327", "627", "605", "91", "501", "53", "477", "48", "476", "579", "611", "149", "418", "475", "32", "322", "328", "1", "309", "11", "650", "250", "577", "305", "520", "122", "406", "567", "595", "93", "527", "98", "604", "343", "665", "656", "58", "651", "184", "458", "580", "407", "115", "261", "434", "159", "374", "503", "140", "218", "288", "24", "84", "352", "313", "361", "31", "75", "440", "489", "479", "351", "116", "15", "441", "240", "492", "118", "208", "107", "17", "85", "291", "292", "173", "545", "126", "370", "348", "301", "550", "422", "555", "29", "353", "154", "132", "553", "89", "467", "144", "635", "649", "526", "187", "70", "142", "63", "194", "698", "496", "181", "231", "531", "262", "558", "417", "255", "500", "199", "431", "155", "67", "677", "632", "556", "198", "409", "83", "330", "518", "69", "337", "308", "109", "473", "277", "576", "241", "238", "482", "504", "94", "27", "435", "59", "559", "152", "135", "639", "640", "367", "272", "974", "65", "2", "219", "583", "643", "437", "597", "293", "247", "200", "92", "287", "633", "163", "776", "263", "451", "229", "319", "196", "490", "82", "444", "270", "166", "369", "377", "333", "423", "384", "603", "565", "387", "455", "43", "251", "258", "634", "472", "271", "350", "436", "413", "104", "415", "188", "554", "183", "28", "523", "303", "419", "14", "203", "212", "110", "383", "452", "700", "591", "510", "702", "97", "274", "249", "582", "421", "13", "450", "317", "38", "540", "506", "464", "214", "771", "562", "470", "124", "741", "601", "254", "233", "486", "242", "237", "16", "46", "54", "519", "40", "443", "176", "99", "411", "74", "204", "316", "138", "454", "56", "622", "329", "77", "596", "324", "162", "276", "114", "660", "471", "205", "491", "420", "488", "86", "533", "354", "388", "127", "624", "164", "253", "325", "670", "598", "45", "602", "306", "507", "563", "225", "614", "610", "139", "273", "20", "128", "612", "564", "112", "447", "268", "532", "311", "480", "121", "394", "182", "175", "382", "143", "589", "280", "334", "47", "613", "661", "137", "570", "252", "289", "363", "586", "584", "462", "360", "379", "449", "344", "402", "294", "347", "108", "646", "499", "465", "395", "386", "96", "167", "158", "9", "136", "466", "494", "245", "202", "424", "515", "103", "49", "371", "393", "290", "671", "623", "606", "385", "179", "461", "433", "210", "535", "446", "590", "690", "657", "141", "376", "281", "432", "514", "609", "463", "44", "170", "224", "119", "487", "621", "478", "439", "630", "300", "244", "474", "81", "539", "460", "5", "669", "21", "364", "174", "332", "105", "414", "239", "497", "607", "186", "62", "389", "146", "8", "667", "706", "513", "552", "456", "594", "259", "57", "548", "160", "561", "511", "654", "230", "323", "260", "331", "66", "80", "68", "269", "448", "279", "217", "368"], ["563", "194", "364", "85", "462", "288", "157", "145", "696", "652", "224", "130", "150", "515", "662", "279", "340", "491", "319", "388", "642", "305", "360", "434", "29", "656", "76", "196", "408", "413", "514", "115", "283", "729", "269", "551", "176", "96", "110", "486", "352", "665", "247", "655", "600", "119", "97", "508", "489", "389", "332", "108", "738", "473", "361", "750", "89", "198", "365", "717", "344", "208", "32", "627", "507", "536", "539", "551", "734", "82", "206", "343", "704", "587", "523", "607", "240", "21", "664", "654", "671", "409", "472", "562", "342", "606", "146", "281", "460", "228", "634", "528", "201", "202", "682", "643", "567", "363", "685", "123", "684", "316", "426", "183", "238", "195", "274", "499", "447", "192", "565", "142", "118", "368", "294", "723", "276", "377", "149", "697", "189", "173", "280", "602", "371", "530", "167", "703", "412", "390", "133", "468", "529", "137", "640", "98", "372", "582", "700", "493", "347", "337", "282", "278", "555", "570", "328", "745", "147", "185", "114", "503", "265", "387", "182", "262", "735", "322", "353", "433", "346", "406", "707", "561", "79", "647", "709", "295", "601", "701", "393", "104", "125", "602", "683", "436", "699", "233", "566", "715", "637", "457", "107", "449", "459", "219", "339", "487", "218", "661", "608", "99", "524", "748", "396", "470", "453", "591", "474", "132", "506", "616", "568", "38", "538", "597", "308", "272", "653", "140", "419", "553", "651", "229", "106", "379", "706", "373", "93", "105", "638", "303", "646", "525", "526", "618", "477", "362", "402", "674", "168", "31", "159", "719", "253", "625", "547", "744", "590", "588", "592", "645", "77", "345", "227", "148", "220", "286", "476", "611", "122", "90", "92", "512", "663", "191", "658", "290", "80", "366", "495", "593", "94", "381", "635", "298", "741", "252", "221", "171", "383", "725", "336", "455", "321", "95", "517", "313", "414", "430", "256", "456", "511", "391", "91", "466", "120", "121", "631", "518", "335", "531", "708", "610", "235", "127", "33", "629", "126", "351", "350", "324", "284", "624", "318", "545", "369", "263", "425", "394", "571", "520", "712", "370", "496", "686", "438", "311", "333", "112", "549", "678", "532", "739", "34", "479", "485", "213", "23", "326", "398", "417", "415", "464", "416", "257", "207", "399", "573", "143", "677", "216", "180", "266", "164", "580", "226", "740", "116", "212", "289", "431", "737", "710", "187", "632", "727", "667", "161", "24", "199", "356", "113", "170", "179", "427", "407", "586", "428", "443", "554", "237", "494", "267", "575", "299", "42", "623", "498", "680", "165", "334", "423", "622", "504", "497", "385", "521", "197", "236", "411", "448", "482", "636", "698", "310", "217", "492", "241", "358", "359", "162", "418", "731", "596", "78", "166", "714", "641", "300", "357", "595", "188", "325", "174", "541", "301", "722", "439", "330", "181", "522", "422", "446", "309", "478", "384", "230", "483", "747", "261", "323", "400", "676", "746", "239", "193", "203", "296", "733", "101", "285", "100", "260", "604", "728", "378", "354", "249", "569", "154", "484", "243", "420", "160", "628", "626", "742", "392", "505", "156", "204", "395", "244", "255", "401", "163", "152", "291", "612", "270", "404", "576", "231", "469", "268", "670", "558", "277", "250", "732", "117", "672", "421", "691", "543", "639", "594", "615", "382", "564", "273", "451", "519", "730", "209", "297", "374", "245", "589"], ["30", "361", "229", "63", "402", "464", "346", "292", "482", "399", "342", "387", "8", "280", "396", "331", "99", "367", "484", "382", "382", "186", "269", "485", "381", "177", "348", "355", "197", "361", "163", "348", "361", "291", "59", "177", "44", "488", "86", "99", "289", "233", "374", "350", "377", "251", "348", "465", "225", "159", "178", "325", "490", "159", "401", "218", "173", "5", "47", "193", "343", "256", "332", "173", "284", "9", "6", "8", "310", "65", "153", "62", "251", "314", "452", "27", "372", "369", "161", "361", "10", "494", "234", "314", "342", "59", "347", "358", "192", "2", "317", "355", "348", "389", "91", "322", "174", "342", "183", "255", "348", "329", "12", "216", "233", "85", "360", "475", "321", "69", "178", "348", "222", "162", "271", "161", "475", "221", "260", "466", "231", "358", "78", "232", "164", "463", "19", "141", "167", "201", "179", "162", "67", "366", "206", "361", "358", "207", "64", "224", "384", "62", "145", "81", "103", "358", "361", "375", "295", "499", "260", "231", "257", "16", "307", "91", "43", "216", "269", "346", "195", "241", "306", "33", "15", "106", "495", "220", "149", "361", "393", "302", "11", "316", "88", "284", "168", "454", "461", "460", "73", "277", "348", "473", "344", "57", "28", "110", "471", "105", "354", "23", "46", "474", "359", "231", "451", "359", "498", "365", "95", "357", "364", "320", "340", "298", "86", "154", "300", "481", "99", "284", "355", "301", "91", "355", "388", "1", "79", "152", "84", "61", "35", "370", "181", "337", "64", "459", "255", "229", "500", "298", "4", "210", "74", "182", "252", "304", "239", "219", "43", "296", "75", "108", "93", "269", "63", "324", "459", "231", "361", "350", "326", "330", "285", "470", "494", "26", "151", "254", "222", "398", "258", "97", "472", "475", "58", "32", "92", "348", "321", "315", "240", "139", "82", "284", "15", "65", "297", "250", "242", "69", "16", "70", "222", "237", "71", "469", "205", "64", "95", "31", "100", "378", "348", "26", "375", "394", "178", "334", "60", "20", "170", "169", "158", "501", "198", "327", "43", "99", "143", "251", "224", "264", "25", "351", "486", "212", "215", "147", "339", "356", "348", "231", "361", "238", "288", "402", "64", "486", "224", "55", "479", "352", "68", "50", "80", "453", "458", "358", "401", "502", "7", "162", "395", "173", "59", "336", "389", "492", "368", "54", "22", "74", "235", "106", "253", "284", "324", "314", "483", "382", "259", "39", "396", "305", "351", "453", "323", "227", "211", "171", "480", "335", "359", "109", "230", "88", "464", "270", "348", "38", "257", "191", "348", "106", "223", "41", "360", "355", "90", "477", "168", "400", "361", "190", "328", "28", "144", "383", "188", "14", "177", "105", "162", "348", "296", "150", "91", "102", "49", "4", "401", "34", "203", "318", "342", "284", "278", "162", "359", "217", "495", "346", "184", "348", "268", "19", "231", "221", "348", "213", "80", "56", "104", "361", "52", "361", "299", "42", "396", "286", "356", "320", "152", "363", "68", "284", "502", "29", "244", "323", "307", "493", "284", "385", "181", "21", "275", "381", "62", "491", "163", "277", "497", "321", "359", "273", "80", "448", "46", "162", "303", "64", "17", "101", "361", "489", "495", "456", "53", "331", "83", "166", "234", "189", "98", "185", "177", "379", "165", "361", "195", "141", "43", "148", "4", "290", "487", "156"], ["JAX", "SJC", "SHV", "LEX", "GSP", "GRR", "LAS", "MLU", "ABE", "SRQ", "PHX", "MLB", "VLD", "RDU", "SGF", "CAK", "CMI", "JAC", "MRY", "HRL", "LWS", "SEA", "RNO", "SAF", "SMX", "PIA", "SFO", "FAT", "PIH", "DAB", "IND", "CDC", "BLI", "MLI", "RSW", "IDA", "SLC", "EVV", "TLH", "PWM", "FCA", "MSP", "LFT", "STL", "EWR", "SWF", "AUS", "BUF", "PIT", "MGM", "CSG", "COD", "SNA", "IAD", "PIE", "TUL", "OAK", "HSV", "PNS", "LGA", "OMA", "RDD", "PSP", "GCC", "OAJ", "TRI", "TYS", "GJT", "MSN", "DTW", "MKE", "SYR", "BOS", "ASE", "GFK", "TYR", "ORD", "MHT", "LMT", "BHM", "MHK", "ROC", "DBQ", "MAF", "MMH", "CAE", "AVL", "FAR", "TUS", "FLL", "EUG", "PVD", "SAV", "LBB", "MDT", "SBP", "HLN", "JAN", "BNA", "BIL", "ELP", "COS", "LIT", "BTV", "IYK", "BIS", "MCO", "AVP", "MEM", "ECP", "EAU", "DSM", "FNT", "GPT", "ACV", "RIC", "DFW", "BZN", "DCA", "ICT", "SPS", "ORF", "RKS", "CWA", "MSY", "MCI", "GEG", "BMI", "HPN", "OTH", "PHF", "JFK", "GSO", "BWI", "CHS", "YUM", "FAY", "FSD", "HOU", "MOT", "BOI", "AEX", "GUC", "MDW", "ISP", "SAN", "ABI", "LAX", "BUR", "BKG", "MOB", "BQK", "EGE", "BTR", "LNK", "PSC", "SDF", "TWF", "CRP", "CHA", "SPI", "CLE", "UTM", "GRK", "SMF", "HDN", "VPS", "FWA", "MYR", "TVC", "MFE", "MFR", "RDM", "ABQ", "ALB", "PAH", "ROA", "MEI", "CHO", "PHL", "CRW", "GTF", "PBI", "IAH", "ATL", "CVG", "DEN", "SAT", "EWN", "DAY", "RST", "ATW", "GRB", "MIA", "DAL", "CMH", "FSM", "ILM", "LWB", "DHN", "AGS", "CID", "LRD", "TEX", "SBN", "CPR", "LGB", "RAP", "BDL", "MTJ", "ONT", "OKC", "CYS", "PDX", "CLT", "SBA", "DLH", "TPA"], ["111", "27", "31", "146", "199", "71", "70", "22", "62", "142", "139", "148", "165", "161", "119", "98", "59", "140", "175", "116", "113", "181", "192", "77", "176", "32", "46", "188", "164", "67", "79", "76", "93", "195", "99", "11", "152", "97", "19", "51", "122", "74", "48", "45", "196", "83", "3", "149", "141", "155", "183", "9", "49", "92", "36", "80", "34", "60", "184", "112", "135", "53", "156", "189", "20", "197", "44", "39", "89", "177", "121", "13", "110", "150", "75", "145", "173", "132", "171", "69", "178", "86", "128", "124", "105", "182", "136", "12", "43", "94", "15", "147", "26", "170", "85", "24", "81", "168", "151", "33", "54", "157", "37", "174", "78", "96", "21", "84", "73", "104", "47", "68", "158", "172", "18", "117", "160", "193", "14", "169", "144", "87", "6", "138", "5", "115", "66", "125", "10", "143", "185", "1", "16", "108", "126", "63", "35", "57", "90", "114", "17", "191", "137", "65", "162", "101", "129", "30", "180", "42", "58", "41", "200", "82", "163", "107", "4", "130", "106", "95", "52", "7", "100", "25", "194", "88", "118", "40", "179", "38", "50", "166", "120", "153", "8", "2", "64", "72", "109", "123", "28", "167", "186", "131", "102", "190", "154", "198", "187", "133", "23", "134", "91", "61", "56", "55", "127", "29", "159", "103"], ["195", "35", "131", "29", "229", "187", "83", "409", "119", "9", "99", "25", "49", "225", "123", "15", "117", "73", "71", "93", "83", "33", "127", "155", "17", "73", "97", "65", "137", "75", "49", "79", "63", "19", "135", "11", "3", "133", "119", "103", "23", "830", "69", "85", "379", "43", "49", "307", "81", "111", "45", "129", "171", "51", "93", "73", "221", "21", "77", "67", "99", "37", "55", "83", "49", "35", "111", "186", "107", "27", "175", "133", "129", "59", "33", "13", "11", "81", "47", "17", "167", "43", "69", "23", "55", "273", "269", "49", "41", "23", "139", "11", "19", "29", "77", "65", "45", "199", "69", "139", "101", "75", "127", "15", "53", "109", "133", "21", "55", "5", "65", "149", "53", "169", "73", "309", "1", "119", "299", "47", "139", "65", "31", "31", "33", "79", "453", "117", "63", "37", "195", "347", "1", "3", "35", "233", "7", "77", "109", "35", "25", "69", "5", "137", "11", "145", "99", "15", "115", "79", "87", "130", "149", "163", "33", "17", "425", "31", "121", "11", "85", "1", "127", "123", "53", "61", "317", "71", "69", "119", "1", "305", "111", "45", "157", "7", "53", "75", "27", "171", "13", "5", "21", "39", "87", "163", "15", "15", "135", "61", "47", "169", "95", "37", "89", "35", "9", "45", "79", "151", "39", "9", "57", "93", "19", "295", "31", "97", "17", "16", "119", "89", "91", "5", "25", "25", "141", "7", "640", "3", "51", "1", "15", "89", "53", "51", "37", "63", "77", "63", "1", "141", "163", "209", "23", "59", "83", "407", "33", "257", "149", "100", "73", "125", "59", "19", "103", "29", "269", "21", "101", "164", "3", "45", "153", "113", "35", "137", "109", "13", "59", "820", "27", "111", "25", "65", "23", "95", "3", "59", "27", "163", "69", "39", "21", "17", "161", "39", "127", "23", "93", "29", "17", "47", "27", "27", "127", "193", "121", "495", "17", "35", "41", "143", "79", "261", "31", "49", "15", "169", "123", "71", "165", "3", "57", "31", "49", "101", "267", "115", "65", "79", "131", "135", "315", "17", "90", "49", "15", "141", "175", "165", "93", "17", "77", "33", "241", "81", "17", "317", "65", "1", "79", "121", "65", "660", "11", "57", "51", "241", "75", "179", "149", "43", "5", "25", "121", "73", "31", "1", "73", "37", "45", "121", "147", "51", "61", "209", "23", "245", "27", "97", "41", "5", "101", "145", "61", "47", "147", "23", "11", "60", "55", "145", "73", "81", "115", "79", "13", "65", "63", "25", "13", "89", "43", "41", "55", "175", "125", "51", "19", "45", "27", "3", "25", "183", "99", "3", "281", "83", "29", "185", "23", "133", "17", "139", "63", "137", "129", "11", "81", "49", "57", "27", "125", "45", "29", "143", "29", "141", "55", "19", "159", "261", "89", "57", "113", "57", "43", "95", "11", "157", "7", "105", "111", "135", "115", "189", "9", "131", "113", "247", "113", "199", "67", "55", "3", "237", "75", "103", "211", "53", "61", "15", "187", "25", "47", "105", "345", "37", "217", "59", "113", "3", "131", "75", "15", "21", "225", "137", "7", "185", "383", "115", "43", "23", "131", "21", "131", "37", "17", "3", "97", "101", "195", "63", "101", "37", "57", "143", "49", "151", "15", "7", "59", "463", "77", "87", "17", "51"], ["371", "330", "271", "312", "262", "318", "266", "248", "412", "425", "335", "280", "306", "262", "314", "366", "270", "517", "303", "250", "338", "250", "480", "240", "340", "352", "306", "268", "266", "276", "332", "402", "275", "426", "356", "386", "487", "421", "352", "249", "279", "315", "408", "819", "304", "350", "297", "382", "323", "313", "358", "391", "262", "310", "257", "372", "323", "347", "293", "280", "496", "393", "268", "407", "322", "353", "360", "274", "377", "251", "293", "438", "338", "243", "382", "650", "309", "303", "305", "320", "382", "308", "307", "284", "440", "338", "421", "375", "556", "302", "247", "368", "264", "335", "255", "303", "243", "366", "305"], ["96", "123", "134", "136", "146", "159", "125", "115", "118", "108", "113", "124", "133", "103", "113", "149", "162", "86", "119", "121", "119", "135", "145", "150", "104", "124", "124", "141", "108", "136", "175", "135", "125", "115", "134", "113", "88", "141", "139", "107", "115", "136", "150", "117", "107", "106", "117", "133", "116", "111", "123", "107", "130", "125", "95", "124", "131", "110", "140", "111", "121", "126", "107", "118", "143", "109", "134", "157", "132", "149", "148", "140", "106", "116", "111", "108", "139", "130", "135", "122", "129", "130", "116", "115", "108", "98", "148", "138", "131", "114", "124", "124", "139", "133", "134", "122", "115", "118", "149", "117", "132", "103", "121", "132", "121", "104", "131", "123", "98", "125", "130", "117", "146", "112", "137", "138", "135", "118", "150", "135", "122", "128", "125", "148", "124", "123", "131", "127", "153", "97", "93", "152", "121", "138", "141", "115", "138", "123", "130", "116", "102", "135", "122", "118", "128", "128", "127", "107", "128", "128", "124", "123", "131", "138", "123", "104", "120", "134", "100", "119", "132", "144", "134", "136", "130", "112", "121", "143", "142", "129", "137", "134", "137", "121", "113", "121", "109", "133", "144", "122", "111", "93", "124", "122", "98", "112", "100", "136", "135", "136", "119", "131", "122", "105", "140", "113", "131", "141", "128", "117", "132", "159", "120", "117", "113", "121", "116", "137", "134", "126", "121", "94", "129", "130", "121", "128", "130", "77", "115", "147", "151", "128", "131", "156", "125", "113", "161", "114", "140", "142", "130", "133", "100", "104", "138", "102", "107", "118", "133", "109", "126", "118", "118", "111", "118", "141", "132", "115", "98", "106", "121", "143", "109", "152", "106", "115", "110", "112", "147", "113", "116", "127", "98", "145", "117", "155", "147", "130", "124", "138", "115", "131", "89", "128", "85", "99", "115", "119", "139", "132", "153", "114", "134", "122", "139", "117", "108", "123", "147", "138", "106", "116", "144", "130", "137", "127", "131", "141", "137", "127", "111", "107", "129", "132", "146", "125", "122", "114", "142", "145", "120", "121", "107", "125", "143", "136", "115", "131", "127", "125", "134", "126", "131", "122", "116", "121", "107", "151", "132", "128", "130", "121", "154", "133", "112", "144", "126", "129", "132", "138", "111", "99", "110", "95", "148", "122", "133", "136", "123", "131", "149", "123", "116", "128", "121", "117", "157", "103", "98", "132", "125", "96", "133", "153", "123", "103", "89", "150", "133", "123", "135", "131", "125", "122", "118", "123", "119", "139", "111", "93", "122", "119", "145", "104", "139", "132", "146", "116", "116", "134", "108", "162", "142", "111", "109", "114", "137", "135", "120", "122"], ["135", "96", "78", "589", "106", "150", "163", "103", "87", "212", "108", "104", "214", "81", "83", "358", "108", "113", "90", "526", "166", "133", "167", "184", "80", "70", "202", "214", "264", "346", "113", "187", "101", "112", "120", "101", "168", "176", "271", "118", "76", "92", "330", "138", "126", "83", "165", "73", "113", "141", "102", "79", "58", "137", "148", "310", "139", "173", "88", "134", "171", "112", "142"], ["139", "211", "311", "206", "256", "150", "183", "211", "89", "250", "178", "267", "122", "250", "172", "72", "83", "22", "61", "94", "128", "189", "156", "111", "150", "233", "261", "250", "156", "50", "183", "133", "117", "128", "206", "94", "250", "100", "106", "111", "239", "133", "144", "78", "67", "289", "278", "133", "167", "294", "94", "39", "89", "139", "328", "61", "-11", "83", "111", "211", "67", "156", "150", "56", "228", "272", "178", "222", "111", "178", "133", "117", "178", "156", "233", "200", "250", "89", "72", "122", "250", "306", "128", "250", "283", "272", "289", "200", "78", "300", "183", "189", "100", "222", "133", "133", "239", "289", "172", "222", "117", "139", "139", "100", "122", "194", "144", "233", "111", "22", "50", "106", "106", "267", "172", "161", "83", "56", "228", "194", "256", "222", "178", "194", "278", "122", "83", "222", "222", "306", "89", "172", "94", "178", "61", "139", "228", "194", "272", "183", "183", "100", "67", "122", "172", "144", "228", "72", "256", "133", "183", "100", "239", "161", "333", "344", "117", "156", "228", "194", "283", "233", "122", "317", "67", "122", "111", "222", "139", "61", "122", "72", "128", "200", "100", "222", "328", "94", "250", "233", "133", "122", "17", "233", "217", "100", "161", "111", "78", "83", "306", "167", "200", "167", "289", "89", "183", "106", "278", "278", "83", "189", "189", "117", "128", "272", "144", "78", "278", "206", "139", "272", "156", "283", "128", "267", "94", "156", "267", "144", "117", "128", "128", "111", "106", "278", "72", "150", "200", "122", "139", "267", "128", "128", "111", "294", "89", "94", "78", "61", "100", "267", "144", "78", "83", "150", "228", "228", "56", "128", "89", "244", "94", "94", "67", "111", "106", "239", "228", "139", "11", "267", "311", "117", "111", "100", "117", "233", "311", "83", "283", "261", "94", "194", "128", "206", "100", "94", "222", "283", "167", "144", "150", "89", "239", "217", "44", "211", "100", "94", "267", "294", "261", "133", "117", "272", "211", "122", "89", "33", "94", "28", "356", "283", "211", "117", "200", "194", "122", "228", "306", "278", "172", "111", "189", "267", "61", "178", "83", "106", "33", "172", "139", "233", "111", "167", "311", "133", "250", "161", "111", "144", "183", "161", "111", "144", "94", "122", "100", "144", "217", "117", "250", "233", "83", "161", "161", "133", "289", "89", "111", "161", "250", "122", "183", "172", "56", "128", "239", "189", "222", "300", "89", "217", "256", "156", "156", "78", "144", "100", "306", "300", "261", "244", "344", "128", "261", "300", "172", "311", "161", "211", "183", "317", "128", "194", "144", "128", "211", "83", "256", "189", "300", "122", "294", "67", "83", "44", "172", "244", "211", "183", "144", "78", "306", "106", "111", "189", "150", "233", "161", "172", "111", "267", "128", "150", "244", "106", "128", "67", "133", "67", "111", "267", "39", "139", "211", "211", "67", "122", "89", "300", "206", "244", "228", "72", "194", "244", "311", "50", "261", "233", "233", "322", "94", "144", "239", "111", "233", "156", "128", "133", "117", "256", "50", "128", "122", "144", "78", "311", "211", "156", "244", "128", "139", "228", "72", "278", "128", "67", "239", "44", "150", "239", "111", "144", "83", "167", "144", "56", "311", "33", "178", "278", "244", "200", "278", "106", "261", "111", "72", "194", "178", "133", "333", "72", "133", "83", "289", "239"], ["60", "100", "61", "67", "73", "75", "75", "87", "109", "260", "87", "63", "105", "75", "77", "70", "75", "87", "254", "83", "76", "80", "98", "82", "75", "88", "81", "48", "77", "75", "109", "89", "71", "65", "48", "172", "72", "72", "85", "86", "91", "59", "98", "53", "245", "76", "73", "57", "43", "62", "82", "96", "245", "100", "71", "185", "104", "79", "74", "71", "42", "62", "72", "63", "75", "63", "69", "105", "75", "63", "82", "83", "65", "75", "77", "58", "71", "91", "69", "82", "84", "90", "76", "98", "80", "71", "75", "105", "79", "79", "81", "79", "79", "76", "78", "62", "84", "50", "58", "60", "109", "98", "90", "89", "91", "75", "98", "42", "75", "86", "84", "88", "80", "51", "91", "76", "59", "75", "75", "47", "91", "74", "119", "383", "94", "91", "126", "75", "47", "75", "77", "50", "75", "90", "72", "74", "90", "82", "80", "74", "58", "43", "105", "80", "82", "78", "66", "54", "89", "84", "71", "96", "76", "135", "66", "79", "100", "87", "105", "73", "91", "82", "65", "48", "98", "76", "76", "76", "119", "126", "72", "27", "74", "88", "74", "123", "71", "72", "66", "75", "62", "88", "79", "80", "74", "82", "77", "70", "84", "79", "75", "108", "48", "74", "72", "79", "80", "75", "70", "45", "59", "48", "77", "79", "73", "70", "42", "98", "79", "66", "63", "90", "80", "79", "51", "45", "87", "82", "62", "76", "98", "98", "66", "84", "98", "69", "60", "87", "59", "79", "185", "100", "86", "98", "74", "98", "98", "84", "76", "79", "75", "79", "51", "383", "76", "74", "47", "48", "98", "79", "98", "84", "87", "77", "48", "79", "62", "79", "100", "86", "69", "74", "74", "88", "76", "88", "48", "84", "77", "82", "87", "98", "74", "90", "47", "90", "63", "71", "71", "91", "105", "87", "68", "98", "105", "45", "68", "75", "145", "80", "79", "71", "96", "141", "48", "67", "86", "85", "75", "71", "100", "66", "86", "80", "73", "103", "86", "50", "96", "87", "75", "88", "260", "81", "109", "49", "72", "135", "76", "110", "100", "63", "98", "73", "87", "76", "62", "79", "99", "86", "42", "73", "73", "65", "70", "75", "52", "74", "71", "126", "94", "123", "98", "104", "89", "52", "245", "115", "108", "99", "84", "79", "86", "82", "246", "246", "71", "83", "70", "42", "383", "75", "81", "83", "98", "103", "71", "49", "60", "62", "60", "76", "74", "71", "56", "89", "81", "71", "62", "105", "83", "79", "105", "105", "75", "79", "108", "79", "79", "48", "383", "109", "68", "98", "60", "98", "133", "59", "62", "81", "84", "82", "98", "86", "70", "88", "87", "59", "115", "77", "71", "73", "86", "75", "42", "105", "42", "96", "109", "110", "70", "223", "74", "51", "98", "77", "48", "70", "98", "74", "145", "87", "72", "96", "77", "84"], ["25", "45", "69", "54", "61", "155", "47", "19", "24", "35", "97", "33", "34", "39", "38", "41", "84", "29", "55", "107", "35", "27", "48", "33", "40", "41", "101", "43", "43", "31", "82", "72", "29", "52", "65", "47", "47", "44", "36", "30", "48", "48", "35", "28", "53", "32", "34", "43", "23", "56", "26", "40", "39", "167", "35", "45", "74", "62", "113", "62", "27", "124", "33", "29", "30", "54", "35", "48", "44", "35", "107", "46", "53", "39", "69", "38", "58"], ["61", "83", "17", "117", "44", "94", "39", "183", "100", "-5", "56", "117", "11", "-11", "150", "150", "111", "122", "33", "106", "78", "94", "161", "150", "67", "56", "61", "56", "44", "100", "139", "83", "0", "22", "11", "111", "39", "0", "94", "83", "111", "72", "11", "50", "33", "83", "100", "161", "106", "-28", "139", "83", "44", "183", "150", "28", "94", "44", "17", "117", "94", "111", "128", "111", "128", "133", "78", "144", "50", "17", "156", "28", "100", "72", "-49", "111", "144", "122", "72", "-6", "150", "50", "44", "78", "39", "22", "100", "72", "83", "122", "100", "11", "50", "44", "111", "83", "100", "106", "78", "117", "139", "117", "83", "144", "161", "50", "33", "-5", "72", "44", "-11", "89", "61", "111", "61", "117", "39", "94", "100", "161", "89", "89", "72", "78", "61", "6", "128", "89", "-32", "117", "44", "150", "33", "-66", "156", "33", "150", "128", "50", "56", "56", "61", "61", "133", "89", "144", "167", "22", "50", "56", "11", "39", "117", "156", "78", "100", "139", "139", "61", "94", "67", "128", "117", "67", "178", "94", "122", "11", "78", "-33", "17", "128", "22", "83", "139", "33", "100", "89", "111", "78", "106", "17", "-5", "106", "39", "172", "28", "50", "156", "111", "28", "133", "139", "94", "61", "117", "44", "-39", "56", "61", "33", "167", "56", "100", "67", "128", "72", "111", "106", "128", "78", "128", "22", "78", "22", "67", "144", "78", "39", "144", "83", "56", "28", "78", "50", "100", "78", "111", "44", "106", "139", "89", "78", "78", "128", "133", "39", "39", "117", "89", "111", "144", "128", "-6", "56", "128", "11", "139", "22", "17", "28", "44", "139", "50", "67", "94", "128", "139", "100", "150", "-22", "33", "111", "50", "150", "33", "133", "150", "67", "61", "111", "0", "61", "28", "94", "144", "28", "-11", "161", "122", "117", "117", "111", "183", "72", "56", "144", "6", "161", "83", "61", "11", "-44", "150", "111", "-49", "117", "33", "44", "22", "167", "100", "150", "28", "106", "11", "111", "111", "11", "83", "39", "122", "111", "61", "11", "122", "28", "72", "-5", "17", "139", "161", "67", "17", "33", "72", "106", "100", "150", "56", "72", "94", "94", "50", "33", "6", "117", "150", "83", "33", "83", "22", "28", "50", "28", "144", "67", "139", "178", "133", "106", "178", "89", "50", "122", "128", "39", "156", "156", "94", "111", "150", "50", "28", "44", "56", "-21", "61", "11", "100", "50", "139", "117", "61", "-5", "17", "72", "122", "-43", "100", "56", "144", "83", "156", "39", "128", "117", "167", "6", "133", "89", "61", "44", "6", "56", "150", "117", "128", "150", "28", "11", "72", "100", "122", "11", "67", "106", "6", "133", "94", "11", "17", "111", "139", "172", "150", "94", "89", "133", "33", "178", "33", "67", "-6", "33", "128", "94", "33", "-28", "183", "56", "11", "39", "122", "100", "72", "133", "33", "67", "139", "-49", "133", "61", "44", "94", "6", "167", "100", "17", "111", "83", "133", "89", "139", "61", "178", "89", "72", "139", "117", "56", "83", "139", "67", "100", "156", "78", "56", "39", "83", "106", "44", "117", "56", "106", "139", "44", "44", "156", "39", "72", "111", "72", "39", "161", "39", "106", "94", "28", "-6", "122", "167", "50", "-17", "39", "89", "44", "128", "72", "72"], ["1", "11", "16", "5", "9", "4", "22", "104", "33", "178", "29", "7", "62", "1", "47", "43", "32", "3", "1", "6", "17", "37", "25", "29", "4", "1", "35", "3", "6", "1", "6", "2", "5", "29", "11", "8", "8", "1", "72", "34", "6", "8", "11", "269", "98", "5", "7", "1", "5", "27", "19", "38", "0", "120", "35", "2", "52", "65", "9", "49", "6", "31", "0", "43", "1", "23", "18", "11", "22", "16", "22", "6", "15", "6", "4", "0", "3", "11", "15", "0", "2", "29", "20", "8", "1", "3", "7", "14", "1", "3", "76", "24", "10", "20", "7", "4", "65", "2", "7", "82", "29", "5", "5", "1", "101", "5", "10", "NA", "0", "5", "4", "6", "28", "4", "4", "45", "2", "23", "3", "32"], ["46", "16", "3", "7", "11", "7", "12", "8", "8", "13", "11", "15", "3", "14", "9", "4", "6", "1", "61", "14", "6", "9", "36", "13", "6", "14", "1", "61", "8", "1", "15", "58", "5", "6", "5", "6", "3", "3", "6", "116", "2", "4", "15", "18", "2", "14", "4", "17", "21", "3", "14", "15", "1", "5", "3", "6", "36", "9", "8", "5", "8", "2", "13", "55", "10", "23", "1", "4", "1", "10", "19", "2", "3", "2", "1", "4", "13", "5", "23", "9", "3", "64", "5", "10", "1", "18", "1", "29", "3", "8", "16", "2", "54", "11", "2", "5", "6", "24", "2", "10", "206", "7", "4", "12", "79", "1", "7", "3", "1", "2", "1", "8", "10", "1", "5", "1", "6", "113", "80", "1", "23", "3", "9", "20", "2", "1", "3", "14", "2", "11", "18", "5", "11", "15", "6", "11", "2", "4", "3", "252", "2", "7", "5", "1", "1", "72", "51", "1", "9", "10", "9", "218", "2", "2", "3", "2", "5", "6", "6", "10", "60", "4", "5", "1", "60", "24", "4", "10", "6", "92", "4", "42", "3", "29", "8", "1", "4", "4", "33", "65", "2", "1", "17", "23", "49", "4", "1", "39", "6", "10", "4", "2", "69", "1", "32", "5", "8", "28", "29", "3", "1", "2", "9", "2", "319", "7", "25", "2", "3", "2", "17", "4", "2", "2", "136", "706", "5", "2", "6", "20", "3", "2", "6", "1", "7", "4", "3", "3", "69", "1", "73", "24", "595", "3", "5", "10", "14", "16", "8", "1", "8", "1", "6", "7", "2", "10", "23", "1", "3", "19", "2", "2", "4", "311", "36", "21", "5", "1", "1", "7", "4", "1", "1", "98", "5", "3", "10", "142", "4", "13", "2", "8", "44", "39", "2", "13", "7", "1", "5", "2", "22", "2", "8", "1", "35", "2", "2", "191", "2", "3", "2", "3", "345", "1", "11", "10", "2", "10", "94", "2", "128", "8", "6", "10", "5", "3", "9", "1", "13", "1", "4", "1", "16", "6", "5", "9", "4", "21", "19", "5", "1", "127", "8", "2", "63", "1", "25", "6", "35", "3", "3", "5", "3", "32", "7", "4", "1", "109", "1", "3", "26", "19", "47", "7", "11", "3", "3", "8", "7", "2", "1", "3", "7", "1", "27", "1", "1", "13", "6", "2", "1", "5", "27", "7", "5", "2", "6", "26", "12", "13", "8", "30", "1", "5", "4", "5", "12", "8", "2", "305", "7", "5", "17", "4", "4", "10", "2", "41", "4", "1", "306", "3", "7", "24", "36", "1", "4", "11", "18", "4", "15", "24", "2", "14", "4", "14", "7", "44", "8", "3", "4", "29", "1", "1", "11", "1", "1", "154", "86", "19", "121", "4", "2", "7", "309", "7", "2", "5", "3", "25", "3", "7", "28", "1", "158", "18", "2", "8", "5", "4", "9", "113", "8", "3", "2", "3", "6", "26", "15", "3", "25", "262", "3", "16", "15", "1", "14", "8", "16", "13", "52", "3", "21", "1", "7", "18", "1", "7", "5", "14", "51", "235", "6", "1", "8", "3", "68", "2", "1", "8", "6", "5", "4", "3", "5", "8", "5", "1", "7", "1", "5", "10", "4", "42", "2", "6", "55", "127", "14", "2"], ["Q52", "Q66", "Q50", "Q65", "Q50", "Q65", "Q56", "Q61", "Q48", "Q59", "Q59", "Q60", "Q69", "Q65", "Q55", "Q46", "Q54", "Q66", "Q66", "Q66", "Q60", "Q46", "Q47", "Q48", "Q52", "Q62", "Q67", "Q59", "Q68", "Q65", "Q60", "Q61", "Q46", "Q65", "Q53", "Q68", "Q70", "Q44", "Q44", "Q63", "Q48", "Q47", "Q44", "Q55", "Q46", "Q47", "Q68", "Q49", "Q48", "Q69", "Q50", "Q59", "Q63", "Q67", "Q51", "Q65", "Q64", "Q64", "Q52", "Q63", "Q63", "Q68", "Q54", "Q49", "Q60", "Q45", "Q54", "Q57", "Q57", "Q46", "Q49", "Q70", "Q54", "Q63", "Q49", "Q62", "Q63", "Q61", "Q59", "Q61", "Q50", "Q68", "Q64", "Q68", "Q51", "Q53", "Q46", "Q52", "Q63", "Q67", "Q46", "Q52", "Q58", "Q56", "Q60", "Q51", "Q48", "Q46", "Q63", "Q52", "Q60", "Q67", "Q61", "Q67", "Q63", "Q47", "Q59", "Q52", "Q46", "Q70", "Q54", "Q50", "Q66", "Q44", "Q56", "Q53", "Q63", "Q52", "Q70", "Q66", "Q68", "Q68", "Q59", "Q46", "Q68", "Q52", "Q70", "Q49", "Q62", "Q70", "Q49", "Q69", "Q65", "Q44", "Q70", "Q63", "Q53", "Q49", "Q44", "Q54", "Q56", "Q64", "Q52", "Q48", "Q65", "Q54", "Q49", "Q52", "Q69", "Q52", "Q69", "Q57", "Q47", "Q66", "Q56", "Q44", "Q49", "Q51", "Q49", "Q45", "Q46", "Q46", "Q61", "Q52", "Q65", "Q54", "Q69", "Q69", "Q70", "Q53", "Q58", "Q48", "Q68", "Q67", "Q48", "Q69", "Q56", "Q68", "Q60", "Q63", "Q70", "Q63", "Q51", "Q49", "Q54", "Q66", "Q52", "Q63", "Q47", "Q46", "Q63", "Q61", "Q68", "Q63", "Q61", "Q47", "Q70", "Q58", "Q46", "Q47", "Q59", "Q44", "Q70", "Q59", "Q61", "Q51", "Q56", "Q69", "Q62", "Q49", "Q46", "Q54", "Q66", "Q55", "Q57", "Q68", "Q65", "Q63", "Q54", "Q52", "Q68", "Q69", "Q52", "Q64", "Q60", "Q56", "Q55", "Q47", "Q44", "Q56", "Q62", "Q47", "Q44", "Q55", "Q51", "Q46", "Q59", "Q64", "Q55", "Q49", "Q68", "Q44", "Q52", "Q45", "Q57", "Q66", "Q47", "Q54", "Q49", "Q52", "Q69", "Q57", "Q46", "Q50", "Q51", "Q52", "Q69", "Q48", "Q68", "Q54", "Q56", "Q51", "Q54", "Q52", "Q46", "Q60", "Q67", "Q50", "Q46", "Q57", "Q67", "Q69", "Q70", "Q46", "Q70", "Q61", "Q52", "Q55", "Q57", "Q52", "Q46", "Q53", "Q45", "Q54", "Q44", "Q64", "Q44", "Q47", "Q50", "Q59", "Q65", "Q69", "Q68", "Q52", "Q61", "Q60", "Q70", "Q52", "Q54", "Q53", "Q51", "Q48", "Q53", "Q59", "Q51", "Q50", "Q56", "Q58", "Q66", "Q67", "Q45", "Q64", "Q52", "Q45", "Q55", "Q49", "Q59", "Q54", "Q50", "Q46", "Q50", "Q56", "Q63", "Q45", "Q52", "Q68", "Q52", "Q46", "Q66", "Q69", "Q69", "Q46", "Q44", "Q46", "Q64", "Q64", "Q58", "Q50", "Q68", "Q55", "Q68", "Q54", "Q58", "Q63", "Q48", "Q58", "Q61", "Q48", "Q50", "Q50", "Q68", "Q57", "Q50", "Q66", "Q65", "Q52", "Q44", "Q55", "Q70", "Q70", "Q68", "Q67", "Q56", "Q54", "Q56", "Q56", "Q62", "Q64", "Q66", "Q45", "Q53", "Q66", "Q68", "Q58", "Q46", "Q45", "Q70", "Q46", "Q64", "Q63", "Q56", "Q67", "Q70", "Q60", "Q63", "Q54", "Q60", "Q63", "Q55", "Q53", "Q61", "Q47", "Q70", "Q57", "Q54", "Q53", "Q67", "Q68", "Q66", "Q69", "Q63", "Q56", "Q54", "Q56", "Q61", "Q67", "Q70", "Q48", "Q63", "Q55", "Q58", "Q50", "Q66", "Q61", "Q60", "Q46", "Q44", "Q58", "Q46", "Q70", "Q48", "Q48", "Q69", "Q55", "Q59", "Q54", "Q56", "Q47", "Q69", "Q68", "Q45", "Q54", "Q57", "Q63", "Q51", "Q44", "Q49", "Q70", "Q44", "Q49", "Q55", "Q52", "Q49", "Q53", "Q46", "Q50", "Q63", "Q60", "Q54", "Q56", "Q55", "Q58", "Q52", "Q56", "Q51", "Q66", "Q48", "Q51", "Q58", "Q52", "Q57", "Q46", "Q66", "Q70", "Q46", "Q63", "Q70", "Q46", "Q55", "Q68", "Q58", "Q54", "Q68", "Q56", "Q69", "Q58", "Q64", "Q61", "Q46", "Q51", "Q70", "Q69", "Q57", "Q47", "Q56", "Q54", "Q49", "Q46", "Q49", "Q70", "Q63", "Q52", "Q44", "Q65", "Q58", "Q44", "Q48", "Q58", "Q55", "Q65"], ["33", "41", "38", "59", "28", "49", "34", "47", "34", "27", "25", "74", "36", "70", "54", "37", "38", "31", "37", "44", "32", "40", "33", "33", "35", "38", "54", "35", "unk", "unk", "29", "33", "48", "39", "53", "40", "31", "42", "51", "38", "32", "unk", "42", "86", "33", "36", "36", "46", "76", "unk", "31", "36", "79", "47", "36", "31", "35", "28", "unk", "28", "33", "37", "27"], ["5.7", "4.6", "4.5", "4.6", "6.1", "4.3", "6", "6.7", "4", "6.5", "4.2", "4", "4", "4", "4.1", "5.3", "3.8", "5.8", "4.5", "6.3", "4.5", "4.1", "5.7", "4.2", "4.2", "6.3", "4.6", "4.1", "4.6", "3.9", "5.3", "6.7", "6", "4.1", "4.6", "4.2", "5", "4.1", "5.1", "4", "4.2", "6.5", "4.2", "4", "6.3", "4.1", "4.5", "6.6", "4.7", "4.1", "4", "4.9", "5.5", "4.3", "4", "6.8", "5.9", "4.2", "6.1", "4.7", "6.5", "4.1", "6.9", "5.1", "6.2", "4.1", "3.9", "4.2", "4.9", "4.5", "5.4", "3.9", "4.7", "4.1", "4.1", "5.3", "4.3", "4.7"], ["67", "63", "58", "40", "63", "81", "76", "72", "116", "103", "72", "63", "58", "72", "112", "58", "63", "103", "63", "125", "161", "54", "103", "49", "67", "54", "58", "45", "81", "58", "72", "67", "58", "67", "72", "89", "63", "63", "58", "54", "72", "148", "76", "98", "58", "98", "76", "63", "54", "98", "116", "98", "89", "81", "36", "58", "76", "72", "76", "72", "45", "98", "67", "67", "45", "116", "165", "81", "45", "54", "112", "94", "81", "63", "54", "81", "58", "107", "67", "103", "58", "76", "72", "76", "125", "54", "58", "45", "139", "76", "112", "89", "67", "98", "76", "63", "58", "67", "45", "89", "63", "58", "58", "94", "76", "139", "72", "76", "89", "31", "54", "54", "125", "81", "54", "63", "76", "63", "81", "67", "107", "54", "89", "45", "72", "94", "143", "67", "89", "58", "54", "116", "40", "63", "54", "67", "72", "40", "72", "72", "58", "76", "40", "58", "76", "103", "98", "54", "89", "40", "67", "143", "58", "112", "103", "103", "76", "72", "134", "89", "40", "45", "67", "45", "89", "89", "67", "67", "40", "58", "76", "98", "45", "72", "157", "72", "40", "89", "72", "58", "67", "89", "72", "89", "67", "148", "36", "103", "72", "31", "76", "54", "183", "76", "58", "67", "89", "98", "107", "58", "107", "63", "40", "107", "72", "103", "40", "103", "67", "40", "67", "89", "58", "40", "40", "54", "94", "45", "58", "107", "76", "94", "81", "103", "94", "63", "94", "81", "94", "45", "54", "98", "45", "125", "130", "63", "89", "63", "98", "31", "63", "112", "107", "40", "63", "54", "134", "58", "72", "81", "58", "67", "72", "112", "45", "157", "58", "89", "161", "45", "67", "54", "72", "76", "72", "130", "40", "76", "98", "45", "125", "72", "67", "81", "76", "112", "54", "76", "45", "98", "76", "134", "49", "54", "67", "125", "72", "40", "58", "45", "40", "45", "103", "63", "81", "125", "45", "63", "54", "36", "98", "45", "54", "45", "45", "81", "81", "134", "81", "76", "103", "63", "54", "58", "76", "81", "54", "58", "94", "81", "76", "54", "45", "67", "54", "58", "40", "125", "103", "76", "89", "63", "63", "134", "94", "36", "45", "67", "67", "81", "103", "40", "67", "67", "63", "45", "94", "103", "103", "67", "54", "98", "112", "72", "45", "89", "58", "63", "54", "58", "49", "36", "76", "89", "67"], ["130", "266", "130", "120", "150", "140", "150", "120", "200", "140", "270", "264", "150", "235", "150", "150", "140", "140", "227", "320", "320", "260", "250", "260", "140", "250", "130", "170", "260", "250", "280", "140", "290", "150", "205", "170", "140", "260", "234"], ["CW", "CS", "LS", "CO", "LS7", "CL2", "CO", "LC1", "CH1", "CW", "CG2", "CS", "CO", "CR", "CH2", "CO", "CH1", "CO", "CS", "IF3", "CS", "CH1", "CO", "IF3", "IF3", "IF3", "CS5", "CS", "IF3", "EM1", "IF3", "CO", "CO", "CS", "CO", "CW1", "IF3", "CO", "CO", "LC3", "CW", "IF3", "LX", "CX", "CS", "CS", "CS", "LC3", "CH1", "CO", "CO", "CS", "CS", "CG2", "CO", "CS", "CX", "LX", "CH1", "CO", "CX", "CO", "CS", "CO", "MH", "CS", "CO", "EX", "CW", "CW3", "IF3", "CH1", "CG1", "CO", "CS", "IF3", "IF3", "CL", "LS", "CO", "CO", "CO", "IF3", "CH1", "CW", "CO", "CG2", "CX", "CW", "IF3", "CS", "CO", "CH2", "IF3", "CO", "CS", "CS", "CW3", "CO", "CS", "IF3", "IF3", "CS", "CW3", "CS5", "CS", "CH1", "LX", "CO", "CG1", "CS3", "CH1", "CH1", "EN1", "CS", "CG1", "CW3", "CH2", "CS", "CC1", "CG1", "CR1", "LX", "CS", "CS", "CS", "CO", "LS2", "CS", "CC", "CL", "IF", "CS", "CW", "CS", "LX", "CS3", "CW", "CO", "CS", "CO", "CS", "CO", "CO", "CO", "CO", "CO", "IF3", "CS", "MH", "CW3", "CH2", "CO", "CS", "CS6", "IF3", "CH1", "EL", "CW3", "CO", "LC3", "CW", "CS", "CO", "CS", "CO", "LS", "EL", "CH1", "CO", "CO", "CO", "CS", "CO", "CH1", "CS", "CW3", "CW", "CS", "CO", "CW3", "LS", "IF3", "CO", "CS", "LC3", "IF3", "CO", "CS", "IF3", "CW", "CR", "CW", "IF3", "LX", "CS3", "CG1", "CR", "CS", "CR", "LC3", "CS", "IF3", "CX", "CH2", "CO", "CO", "LC1", "CH1", "CW", "LS", "CW", "CW2", "CO", "CH1", "CO", "IF3", "CS", "CS3", "CO", "CW", "CH1", "CW", "CO", "CO", "CS", "CO", "CG1", "CO", "CW", "CO", "EN1", "CW", "CS", "CO", "CW3", "MH", "IF3", "CW3", "CS", "CO", "CH1", "CO", "CX", "CO", "CL", "CS", "CS", "CO", "CS", "CO", "CO", "LX", "CO", "CS", "CO", "CW", "CS", "CS", "LS", "IF3", "CL2", "CH1", "CM", "LC3", "LC3", "CO", "CH1", "CO", "IF3", "CR", "CS", "CS", "MC", "CO", "CH1", "CW3", "EL", "CO", "LC", "CO", "CG2", "CS", "CW3", "CG", "CW", "CO", "CO", "CH1", "IF", "IF", "CG", "CS", "CO", "CS", "IF3", "CH1", "CO", "CG2", "LX", "CH1", "CG1", "CS", "CS", "CC1", "IF3", "MR", "CG", "CS6", "CS5", "CS", "CO", "CW", "CX", "CS", "CO", "CW3", "CH1", "CH1", "CH1", "MH", "CO", "CL", "CO", "CH1", "CW", "CR1", "CS", "CS", "CX", "CX", "CW3", "CS3", "CO", "EL", "LX", "CH2", "CO", "IF3", "CO", "IF3", "CO", "CS", "EL", "CS", "CS", "IF3", "CO", "CO", "CO", "CS", "IF3", "CO", "CO", "LC3", "CO", "IF3", "CO", "EM1", "CO", "CS", "IF3", "CR1", "CW", "CW", "CS", "CS", "CW", "CW", "CS", "LC3", "IF", "CO", "CS", "CS", "CO", "CO", "LX", "CH1", "IF3", "CO", "CO", "IF3", "CW", "CO", "CS", "CO", "IF3", "LS", "CS", "CS", "CO", "CO", "CS", "CO", "CO", "CL", "CW", "CO", "CW", "CW", "CW", "IF3", "CS", "IF3", "CO", "CH1", "CC", "CS", "CS", "CO", "CO", "CW3", "CL", "CH2", "CO", "CS", "CC1", "CG1", "CO", "CS", "IX", "CO", "CS", "CS", "CS", "CO", "CH2", "CO", "LX", "IF3", "IF3", "CO", "CO", "CL", "IF3", "CW3", "CO", "MR1", "CO", "CS", "IF3", "IF3", "IF3", "CS", "CH1", "CO", "CL", "CX", "CS", "CS", "CS", "CO", "CS", "CH1", "IF3", "IF3", "CS", "CO", "CO", "CS", "CW", "CO", "IF3", "CG2", "LC3", "CO", "LX", "CH1", "CS", "CS", "LX", "IF3", "CS", "CS", "CS", "CS", "CX", "CR", "LC3", "IF3", "EL", "CO", "CO", "CO", "CO", "LC3", "IF3", "CX", "CH1", "LC1", "CO", "CO", "CO", "CS", "CO", "CS", "EN1", "CS", "CO"], ["120", "242", "240", "140", "150", "250", "240", "260", "130", "150", "140", "160", "270", "260", "130", "130", "150", "307", "240", "190", "240", "260", "160", "240", "234", "270", "140", "140", "140", "140", "130", "130", "140", "140", "194", "300", "120", "226", "222"], ["207", "196", "208", "201", "195", "207", "207", "198", "203", "205", "208", "205", "203", "200", "205", "202", "203", "200", "207", "200", "202", "206", "207", "198", "199", "206", "207", "204", "199", "198", "204", "206", "200", "205", "207", "205", "203", "204", "201", "202", "206", "204", "206", "201", "199", "204", "207", "202", "201", "198", "201", "200", "207", "203", "202", "204", "203", "197", "195", "204", "205", "196", "206", "205", "207", "208", "203", "206", "204", "200", "203", "201", "196", "205", "200", "207", "195", "196", "201", "202", "207", "207", "205", "195", "195", "207", "207", "200", "202", "202", "205", "207", "206", "204", "206", "201", "205", "201", "204", "199", "202", "197", "206", "203", "202", "200", "205", "197", "203", "200", "205", "202", "203", "207", "196", "201", "205", "207", "201", "201", "200", "204", "207", "204", "206", "202", "201", "204", "205", "199", "195", "204", "203", "200", "207", "199", "198", "196", "199", "204", "198", "200", "201", "201", "206", "203", "207", "199", "199", "207", "206", "203", "206", "203", "200", "197", "206", "208", "206", "207", "201", "201", "202", "201", "199", "206", "205", "200", "206", "200", "200", "204", "201", "198", "195", "200", "207", "200", "200", "198", "201", "203", "208", "203", "206", "201", "202", "204", "200", "196", "207", "207", "208", "204", "197", "197", "207", "203", "206", "207", "207", "196", "200", "204", "204", "207", "200", "205", "195", "199", "197", "206", "201", "205", "207", "204", "198", "205", "204", "204", "206", "201", "204", "205", "200", "203", "204", "206", "203", "198", "205", "206", "204", "200", "207", "201", "206", "202", "196", "199", "196", "203", "207", "206", "200", "206", "205", "206", "205", "198", "204", "205", "208", "202", "207", "201", "201", "204", "207", "207", "208", "207", "200", "202", "197", "206", "204", "206", "205", "203", "203", "206", "199", "197", "207", "198", "201", "198", "200", "196", "202", "196", "202", "195", "204", "196", "208", "205", "200", "206", "201", "206", "198", "204", "200", "204", "207", "196", "202", "200", "195", "200", "198", "207", "207", "201", "199", "204", "200", "200", "207", "199", "203", "202", "203", "201", "205", "207", "201", "207", "196", "200", "197", "205", "195", "202", "206", "199", "205", "206", "200", "204", "204", "201", "197", "203", "207", "207", "206", "203", "201", "203", "196", "205", "199", "196", "202", "200", "206", "198", "204", "195", "203", "196", "205", "200", "195", "196", "203", "200", "203", "202", "199", "200", "201", "208", "196", "202", "203", "207", "202", "204", "202", "196", "196", "202", "199", "207", "207", "208", "205", "207", "207", "205", "201", "201", "201", "203", "206", "199", "195", "201", "201", "199", "202", "199", "199", "202", "201", "205", "204", "205", "207", "203", "201", "199", "206", "201", "197", "207", "204", "203", "200", "204", "207", "207", "207", "202", "203", "204", "201", "202", "196", "203", "205", "201", "207", "207", "207", "207", "203", "201", "204", "205", "196", "207", "203", "203", "201", "199", "204", "203", "203", "201", "207", "203", "203", "205", "207", "207", "207", "206", "202", "200", "196", "206", "201", "206", "204", "207", "201", "206", "207", "206", "195", "205", "205", "205", "206", "205", "206", "199", "204", "204", "199", "202", "205", "207", "207", "203", "202", "206", "204", "196", "200", "206", "199", "204", "200", "197", "203", "203", "203", "199", "205", "206", "200", "207", "203", "200"], ["489", "589", "619", "889", "679", "289", "389", "389", "389", "289", "689", "889", "589", "389", "189", "289", "889", "689", "489", "489", "389", "189", "489", "889", "589", "289", "389", "489", "289", "189", "498", "289", "689", "889", "489", "89", "289", "689", "789", "489", "289", "289", "789", "289", "389", "289", "589", "889", "189", "289", "689", "289", "89", "689", "289", "389", "998", "389", "289", "889", "789", "89", "489", "289", "289", "589", "89", "889", "289", "389", "789", "789", "889", "689", "689", "798", "89", "289", "689", "289", "889", "389", "289", "389", "789", "289", "289", "389", "289", "289", "289", "289", "289", "789", "289", "289", "389", "889", "289", "189", "689", "489", "289", "289", "189", "689", "889", "289", "689", "689", "89", "89", "380", "689", "89", "389", "789", "889", "289", "389", "789", "789", "689", "689", "289", "489", "289", "889", "589", "889", "289", "489", "389", "589", "389", "389", "389", "589", "789", "289", "289", "889", "289", "389", "89", "289", "289", "289", "489", "89", "589", "289", "289", "289", "289", "889", "89", "789", "289", "689", "89", "289", "489", "689", "389", "389", "289"], ["495", "45", "380", "468", "406", "380", "406", "438", "380", "0", "468", "495", "495", "380", "406", "406", "495", "406", "468", "406", "345", "438", "0", "45", "468", "380", "345", "345", "468", "0", "495", "495", "345", "438", "468", "0", "438", "380", "345", "45", "438", "406", "406", "45", "406", "438", "345", "0", "406", "438", "0", "406", "468", "468", "468", "468", "380", "45", "468", "45", "438", "380", "45", "495", "0", "495", "345", "0", "345", "380", "45", "495", "0", "495", "406", "345", "468", "45", "45", "438", "406", "45", "495", "438", "0", "438", "0", "495", "438", "380", "495", "380", "45", "438", "406", "345", "345", "380", "345", "0", "438", "438", "468", "0", "495", "495", "380", "406", "468", "438", "438", "406", "468", "45", "0", "0", "380", "468", "380", "380", "45", "345", "380", "45", "0", "495", "0", "495", "406", "345", "495", "380", "345", "438", "45", "468", "468", "0", "468", "345", "45", "345", "468", "0", "380", "406", "380", "345", "406", "45", "438", "345", "495", "438", "45", "495", "380", "345", "0", "468", "45", "0", "406", "438", "406", "345", "438", "495", "468", "380", "345", "406", "495", "380", "45", "345", "406", "0", "495", "438", "45", "45", "380", "0", "495", "468", "45", "345", "0", "406", "438", "468"], ["KN2", "MP2", "KN3", "GP2", "GP1", "GP1", "MP3", "MP3", "MP1", "MP3", "GP2", "KN1", "GP1", "GP1", "KN3", "MP1", "GP2", "GP2", "MP3", "MP3", "GP1", "MP3", "KN1", "GP2", "KN3", "KN3", "GP1", "GP2", "GP2", "KN1", "KN2", "MP1", "MP1", "KN3", "KN1", "KN3", "KN2", "MP2", "MP3", "KN3", "GP1", "KN1", "KN3", "MP2", "MP1", "KN1", "KN2", "MP1", "KN3", "MP3", "MP2", "GP2", "MP2", "GP1", "KN2", "KN2", "MP1", "KN1", "GP2", "MP3", "KN3", "KN2", "MP1", "MP2", "MP2", "MP1", "KN2", "MP2", "MP1", "KN1", "MP2", "MP2", "GP1", "KN1", "KN1", "GP1", "GP2", "MP3"], ["184", "187", "184", "185", "186", "186", "185", "184", "186", "185", "185", "187", "182", "187", "185", "186", "186", "186", "182", "182", "184", "184", "182", "184", "186", "184", "183", "185", "185", "185", "182", "186", "181", "187", "182", "187", "185", "181", "183", "187", "186", "186", "182", "184", "182", "182", "182", "187", "182", "181", "187", "187", "184", "186", "184", "184", "186", "186", "183", "186", "187", "183", "185", "184", "184", "184", "187", "184", "182", "184", "184", "181", "185", "186", "182", "184", "186", "187", "181", "186", "187", "186", "186", "187", "185", "181", "186", "187", "187", "186", "187", "187", "184", "185", "187", "183", "185", "183", "184", "185", "187", "183", "185", "184", "186", "184", "186", "184", "186", "186", "187", "187", "185", "187", "182", "182", "182", "182", "186", "181", "186", "185", "187", "181", "182", "182", "186", "186", "182", "186", "182", "186", "184", "182", "181", "182", "186", "187", "182", "183", "182", "185", "186", "184", "185", "182", "182", "187", "186", "182", "186", "183", "181", "186", "186", "181", "182", "185", "183", "187", "184", "182", "184", "184", "182", "187", "181", "186", "182", "184", "186", "187", "185", "181", "186", "182", "185", "184", "183", "185", "186", "186", "183", "187", "187", "184", "185", "182", "185", "182", "184", "182", "187", "187", "185", "184", "184", "184", "182", "187", "182", "187", "182", "181", "187", "185", "182", "186", "181", "182", "184", "186", "185", "186", "182", "185", "186", "182", "185", "182", "185", "184", "187", "184", "186", "182", "184", "186", "182", "181", "187", "181", "182", "182", "182", "185", "185", "184", "184", "185", "185", "182", "185", "186", "185", "186", "186", "182", "182", "185", "187", "182", "187", "185", "183", "182", "185", "187", "182", "186", "181", "182", "187", "182", "182", "182", "182", "186", "184", "185", "184", "185", "187", "187", "185", "183", "184", "182", "186", "184", "184", "187", "187", "187", "186", "186", "185", "181", "185", "184", "185", "187", "182", "184", "187", "186", "187", "186", "187", "184", "185", "182", "182", "187", "181", "182", "181", "184", "183", "185", "186", "181", "186", "184", "186", "185", "187", "185", "186", "186", "185", "185", "186", "184", "186", "186", "185", "186", "185", "185", "186", "182", "187", "181", "182", "186", "185", "184", "187", "181", "186", "186", "186", "184", "181", "186", "185", "182", "187", "186", "184", "186", "182", "184", "182", "187", "182", "186", "183", "185", "185", "187", "187", "184", "185", "186", "187", "181", "182", "186", "186", "187", "185", "186", "185", "186", "182", "184", "182", "184", "187", "185", "186", "181", "185", "183", "182", "184", "185", "181", "187", "182", "185", "183", "186", "186", "187", "185", "187", "184", "185", "186", "186", "184", "187", "186", "182", "182", "187", "182", "184", "184", "186", "187", "186", "182", "185", "186", "185", "187", "187", "181", "182", "187", "184", "187", "182", "185", "185", "186", "184", "181", "183", "186", "184", "181", "182", "182", "185", "184", "187", "186", "185", "182", "187", "187", "186", "186", "186", "184", "183", "187", "182", "184", "181", "184", "184", "184", "181", "182", "186", "186", "187", "182", "182", "181", "184", "182", "186", "186", "186", "187", "184", "186", "186", "184", "187", "187", "186", "182", "182", "187", "186", "184", "184", "181", "182", "186", "187", "182", "186", "182", "181", "184", "186", "186", "186", "182", "187", "181"], ["32", "128", "32", "32", "32", "64", "16", "16", "8", "16", "32", "4", "4", "32", "32", "8", "8", "128", "128", "32", "64", "2", "64", "8", "2", "8", "16", "128", "8", "32", "4", "128", "64", "32", "32", "2"], ["FL", "FRM", "NL", "FL", "SL", "ML", "NL", "FRM", "FRI", "FL", "NL", "FL", "ML", "NL", "ML", "FRM", "SL", "NL", "ML", "FRM", "ML", "FL", "SL", "FRM", "ML", "FRM", "FRM", "FRM", "FRI", "NL", "ML", "ML", "FRI", "FRM", "SL", "SL", "ML", "NL", "SL", "ML", "ML", "ML", "FRM", "FRM", "ML", "FRM", "ML", "FRI", "FL", "FRM", "FRM", "ML", "FRM", "FL", "FL", "FRM", "FRI", "FRM", "ML", "ML", "SL", "FRM", "NL", "NL", "ML", "FRM", "SL", "ML", "ML", "SL", "SL", "FRI", "FL", "ML", "FRI", "SL", "NL", "ML", "FL", "ML", "FRI", "FRM", "FL", "FL", "SL", "FRM", "FRI", "FRI", "FL", "NL", "FRM", "FRM", "FRI", "FRM", "FRI", "FRI", "FRM", "ML", "FL", "FRI", "NL", "NL", "SL", "ML", "ML", "FRM", "SL", "FRM", "ML", "SL", "FRM", "NL", "FL", "NL", "ML", "FRM", "FRI", "FRI", "FRM", "ML", "FL", "SL", "FL", "FL", "NL", "FL", "FRM", "FRI", "NL", "FRI", "FRM", "FRI", "FRI", "NL", "SL", "FRI", "FRM", "ML", "FRM", "FRM", "FRM", "NL", "NL", "FL", "NL", "ML", "FL", "FRI", "ML", "FRI", "ML", "ML", "FRI", "FRI", "FL", "FRM", "FRI", "FRI", "FRI", "ML", "ML", "FL", "NL", "FRI", "ML", "SL", "SL", "NL", "SL", "ML", "SL", "NL", "ML", "SL", "FRM", "NL", "NL", "FRI", "FRM", "FRM", "FRM", "FRM", "ML", "FRM", "SL", "ML", "FRI", "FRI", "FRI", "FRI", "FRI", "SL", "FL", "ML", "SL", "FRM", "SL", "FL", "ML", "FRI", "FRI", "FRM", "NL", "FRI", "FRI", "FRI", "SL", "NL", "FL", "ML", "NL", "FL", "FL", "FL", "FL", "SL", "NL", "FL", "ML", "NL", "ML", "SL", "FRM", "FL", "FRM", "FRI", "FL", "NL", "ML", "SL", "NL", "FRI", "FRI", "FRM", "FL", "SL", "FRM", "FL", "FL", "NL", "FRM", "SL", "FL", "FL", "FL", "FRI", "NL", "SL", "FRI", "ML", "FRM", "FRM", "FRM", "NL", "SL", "ML", "SL", "ML", "ML", "FL", "ML", "ML", "FL", "FRM", "FL", "SL", "FRM", "FRI", "NL", "FRI", "ML", "ML", "NL", "FRI", "FRM", "FL", "NL", "SL", "SL", "FL", "SL", "FRM", "SL", "FRM", "FL", "SL", "ML", "ML", "FRI", "FL", "FL", "FRM", "FRM", "NL", "FRM", "FL", "ML", "FRM", "FRI", "FL", "FRI", "SL", "FRI", "NL", "FL", "FRM", "NL", "ML", "SL", "FRI", "FRI", "FRM", "FRM", "FRM", "ML", "SL", "NL", "SL", "FRM", "FRM", "SL", "ML", "SL", "FRI", "FRI", "SL", "FRM", "FRM", "FL", "NL", "NL", "SL", "FRI", "ML", "SL", "FRM", "FL", "ML", "FRI", "ML", "NL", "FL", "FRI", "SL", "SL", "ML", "FRM", "NL", "ML", "FRI", "FRI", "ML", "FL", "SL", "FL", "ML", "NL", "SL", "FRM", "ML", "ML", "NL", "NL", "FL", "FRM", "NL", "FL", "NL", "ML", "FL", "ML", "NL", "ML", "SL", "FRM", "SL", "FRI", "ML", "FRM", "SL", "FL", "FL", "ML", "SL", "FRI", "FRM", "SL", "FRM", "SL", "SL", "FRM", "FRI", "SL", "FL", "SL", "FRI", "NL", "ML", "NL", "ML", "NL", "FRI", "NL", "FRM", "FRM", "FL", "FRI", "SL", "FL", "FRM", "FL", "FRM", "ML", "FRI", "ML", "SL", "ML", "SL", "FL", "FRM", "ML", "FRM", "SL", "FRM", "FRM", "FL", "SL", "NL", "FRM", "NL", "FRM", "NL", "SL", "SL", "NL", "FRM", "NL", "FL", "FRM", "SL", "SL", "NL", "FRI", "SL", "NL", "FRI", "FL", "FRM", "ML", "NL", "SL", "ML", "ML", "FRI", "FRM", "FRI", "ML", "FL", "FRM", "NL", "FL", "ML", "SL", "FL", "NL", "NL", "ML", "NL", "FL", "NL", "NL", "ML", "ML", "FRI", "FRI", "ML", "FRI", "SL", "FRM", "ML", "NL", "NL", "ML", "SL", "SL", "SL", "ML", "ML", "ML", "FRM", "FRM", "NL", "SL", "FRM", "FRI", "FRM", "SL", "FRI", "SL", "FL"], ["0", "0", "0", "13", "0", "1", "155", "0", "15", "0", "50", "0", "13", "907", "0", "0", "0", "1", "0", "17", "0", "0", "0", "5", "19", "0", "0", "19", "0", "0", "2", "12", "0", "31", "0", "20", "0", "0", "0", "11", "19", "5", "0", "64", "0", "5", "0", "0", "105", "0", "0", "0", "6", "0", "0", "6", "0", "3", "0", "0", "0", "0", "0", "0", "3", "0", "0", "20", "0", "0", "0", "0", "126", "2", "0", "0", "0", "0", "0", "0", "0", "0", "62", "0", "0", "4", "0", "0", "0", "7", "0", "0", "0", "0", "0", "5", "0", "0", "31", "11"], ["B", "A", "ALL", "A", "A", "ALL", "A", "B", "A", "ALL", "ALL", "B", "A", "ALL", "ALL", "A", "ALL", "A", "ALL", "ALL", "A", "ALL", "B", "B", "ALL", "A", "A", "B", "A", "A", "B", "B", "A", "A", "A2", "B", "B", "ALL", "A", "A", "I", "B", "ALL", "A", "ALL", "A", "A", "ALL", "ALL", "ALL", "A", "ALL", "A", "A", "ALL", "B", "A", "A", "A", "A", "A", "ALL", "B", "A", "ALL", "A", "ALL", "A", "ALL", "D", "B", "B", "ALL", "ALL", "A", "ALL", "A", "C", "A", "A", "A", "ALL", "ALL", "A", "I", "A", "ALL", "A", "A", "A", "C", "B", "A", "ALL", "B", "ALL", "A", "ALL", "ALL", "A", "A", "B", "A", "B", "B", "B", "A", "B", "C", "D", "B", "A", "D", "B", "B", "A", "ALL", "A", "C", "ALL", "ALL", "A", "ALL", "A", "A", "A", "A", "ALL", "ALL", "A", "A", "A", "A", "A", "A", "A", "A", "ALL", "B", "E", "ALL", "ALL", "ALL", "A", "ALL", "ALL", "B", "A1", "B", "ALL", "B", "A", "C", "A", "A", "B", "A", "A", "B", "A", "B", "B", "D", "A", "B", "A", "A", "A2", "ALL", "A", "A", "ALL", "C", "ALL", "A1", "A", "B", "B", "A", "B", "A", "ALL", "ALL", "A", "A", "A", "ALL", "ALL", "ALL", "B", "ALL", "A", "ALL", "ALL", "ALL", "B", "ALL", "A", "A", "B", "A", "ALL", "A", "A", "ALL", "ALL", "A", "ALL", "B", "A", "ALL", "A", "A", "ALL", "A", "A", "ALL", "ALL", "ALL", "A", "A", "B", "A", "A", "A", "A", "B", "A", "A", "A", "B", "D", "A", "C", "B", "A", "B", "A", "A", "A", "A1", "ALL", "A2", "C", "A", "A", "ALL", "A", "A", "B", "ALL", "ALL", "A3", "ALL", "ALL", "D", "ALL", "A", "A", "C", "A", "A", "ALL", "B", "A", "A", "A", "A", "B", "B", "A", "A", "C", "ALL", "B", "ALL", "C", "C", "A", "A", "C", "A", "B", "A", "C", "A", "A", "A", "ALL", "ALL", "A", "ALL", "B", "A", "ALL", "A", "B", "A", "A", "ALL", "ALL", "A", "B", "ALL", "A", "A", "A", "C", "A", "A", "A", "A", "ALL", "B", "ALL", "ALL", "A", "B", "A", "C", "A", "A", "ALL", "B", "ALL", "C", "B", "A", "A", "ALL", "A", "ALL", "A", "A1", "A", "A", "ALL", "A", "ALL", "B", "ALL", "A1", "A", "A", "A", "A", "ALL", "A", "A", "A", "A", "A", "A", "A", "A", "ALL", "B", "B", "B", "ALL", "ALL", "B", "B", "E", "A", "A", "A", "A", "A", "B", "A", "A", "A", "ALL", "B", "A", "B", "B", "ALL", "B", "A", "A", "A", "ALL", "A", "ALL", "A", "B", "A", "B", "A", "ALL", "C", "ALL", "D", "A", "B", "C", "ALL", "A", "A", "C", "A", "A", "C", "C", "ALL", "B", "B", "A", "A", "B", "ALL", "B", "ALL", "B", "B", "A", "ALL", "D", "B", "ALL", "ALL", "A", "ALL", "ALL", "C", "B", "A", "A", "A1", "ALL", "B", "ALL", "C", "A", "A", "A", "A", "A", "A", "A", "B", "ALL", "C", "A", "A", "A", "A2", "A", "A2", "ALL", "A", "A", "ALL", "B", "ALL", "A", "B", "A", "B", "A", "A", "E", "A", "ALL", "A", "A", "ALL", "C", "A", "ALL", "ALL", "A", "A", "ALL", "A", "B", "A", "ALL", "A", "A", "A", "ALL", "ALL", "B", "B", "ALL", "ALL", "A", "A", "ALL", "A", "A", "ALL", "ALL", "E", "B", "ALL"], ["ui2", "ui3", "ui3", "ui1", "ui2", "ui4", "ui1", "ui4", "ui3", "ui3", "ui3", "ui1", "ui2", "ui2", "ui1", "ui2", "ui4", "ui2", "ui1", "ui3", "ui3", "ui3", "ui2", "ui4", "ui2", "ui4", "ui4", "ui2", "ui4", "ui1", "ui2", "ui1", "ui2", "ui1", "ui4", "ui2", "ui3", "ui1", "ui2", "ui3", "ui3", "ui1", "ui4", "ui2", "ui1", "ui2", "ui4", "ui1", "ui2", "ui3", "ui4", "ui4", "ui3", "ui3", "ui3", "ui3", "ui4", "ui2", "ui1", "ui4", "ui4", "ui4", "ui1", "ui4", "ui4", "ui2", "ui2", "ui1", "ui3", "ui1", "ui1", "ui3", "ui1", "ui4", "ui1", "ui3"], ["k'e", "k'e", "k'i", "q'e", "q'e", "q'e", "q'i", "k'i", "q'e", "q'i", "q'i", "k'e", "q'e", "k'e", "q'e", "q'e", "q'i", "k'i", "q'e", "q'e", "k'i", "k'e", "k'e", "q'i", "q'i", "q'i", "q'i", "k'e", "q'e", "k'e", "q'e", "k'i", "k'i", "k'i", "k'e", "q'e", "q'e", "k'i", "q'e", "k'i", "q'i", "k'e", "k'e", "q'i", "q'i", "k'e", "k'i", "k'i", "q'i", "k'i", "q'e", "k'i", "k'i", "k'e", "k'i", "q'e", "k'i", "k'i", "q'e", "k'e", "k'i", "q'e", "q'i", "q'e", "q'e", "k'i", "k'i", "q'i", "q'e", "k'i", "q'i", "k'e", "q'i", "k'e", "q'e", "q'e", "k'e", "k'e", "k'e", "k'e", "q'e", "q'e", "k'e", "q'e", "q'e", "q'i", "k'e", "q'i", "k'i", "q'i", "q'e", "k'e", "k'e", "k'i", "k'i", "q'e", "k'e", "q'i", "k'e", "k'i", "k'e", "k'i", "k'i", "q'e", "k'e", "k'i", "q'e", "q'i", "k'e", "q'e", "q'e", "q'i", "q'e", "k'i", "q'e", "q'i", "q'i", "q'e", "k'i", "k'i", "k'e", "q'i", "q'e", "k'i", "k'e", "k'i", "q'e", "q'e", "k'i", "k'i", "q'i", "q'e", "k'i", "k'e", "q'i", "k'e", "k'e", "q'i", "q'e", "k'e", "q'e", "k'e", "q'i", "q'i", "k'e", "k'i", "q'e", "k'e", "q'i", "k'e", "q'e", "q'i", "k'e", "q'e", "q'i", "k'i", "q'e", "k'i", "k'e", "q'e", "q'e", "k'e", "q'i", "q'e", "q'e", "q'e", "q'e", "q'e", "q'i", "q'i", "q'i", "k'i", "q'i", "k'i", "k'i", "k'i", "k'i", "k'e", "k'e", "q'i", "q'e", "q'i", "q'e", "k'e", "k'i", "k'e", "q'e", "k'i", "q'i", "q'e", "k'e", "q'i", "q'e", "q'e", "q'i", "k'e", "k'i", "q'e", "q'e", "k'i", "k'i", "q'e", "q'i", "k'e", "k'i", "q'e", "k'i", "k'i", "k'e", "k'e", "k'e", "k'i", "q'i", "k'e", "q'e", "q'i", "q'e", "q'i", "q'i", "q'i", "q'e", "k'i", "k'e", "k'e", "k'e", "q'e", "k'e", "q'i", "k'i", "q'e", "k'e", "k'e", "q'i", "q'e", "q'i", "q'e", "k'i", "k'e", "q'i", "q'i", "q'i", "q'e", "k'e", "q'e", "k'e", "q'e", "k'e", "q'i", "k'e", "k'i", "q'e", "q'i", "q'e", "k'e", "q'i", "q'e", "k'i", "k'e", "k'i", "k'e", "q'e", "k'e", "q'i", "q'e", "q'e", "q'e", "k'i", "q'i", "k'i", "q'e", "k'i", "q'i", "k'i", "k'i", "k'e", "k'i", "q'i", "q'e", "q'e", "k'i", "k'e", "k'e", "k'e", "q'e", "k'e", "q'e", "q'i", "q'i", "q'i", "q'i", "q'e", "k'e", "k'e", "k'e", "k'i", "k'i", "q'i", "k'i", "k'e", "k'e", "k'i", "k'e", "q'i", "k'i", "k'e", "k'e", "k'e", "q'e", "q'i", "q'i", "q'e", "q'i", "k'i", "q'i", "q'e", "q'i", "k'e", "k'e", "q'e", "k'i", "k'i", "q'e", "k'i", "q'e", "k'e", "k'e", "k'e", "q'e", "k'i", "q'i", "k'e", "q'i", "q'e", "k'i", "k'i", "k'e", "k'i", "q'e", "k'e", "q'i", "k'i", "k'i", "q'e", "k'i", "k'e", "q'i", "k'e", "k'e", "k'e", "q'i", "q'e", "k'e", "q'e", "q'e", "q'e", "k'e", "q'e", "q'i", "q'e", "q'e", "q'i", "k'e", "k'i", "k'e", "k'i", "k'i", "q'e", "k'e", "k'i", "q'e", "k'i", "q'e", "k'i", "k'i", "q'e", "k'i", "q'e", "q'i", "k'i", "k'e", "q'i", "k'e", "q'e", "k'i", "q'i", "q'e", "q'e", "q'i", "k'e", "k'i", "k'e", "q'i", "k'i", "k'i", "k'e", "k'e", "k'e", "k'i", "q'i", "q'e", "q'e", "q'i", "k'i", "k'e", "q'e", "k'e", "k'e", "q'e", "q'i", "q'i", "q'i", "q'e", "k'e", "q'e", "k'i", "q'e", "k'e", "k'i", "k'e", "k'i", "q'e", "q'e", "q'e", "k'i", "q'e", "k'i", "q'i", "k'e", "k'e", "k'i", "k'i", "q'e", "k'e", "q'i", "k'e", "k'e", "q'e", "q'e", "q'i", "k'i", "k'i", "q'i", "k'e", "k'e", "q'e", "k'e", "k'e", "k'e", "q'i", "q'i", "k'i", "q'i", "q'i", "q'e", "q'i", "q'i", "q'e", "k'e", "q'e", "q'e", "k'i", "k'i", "k'e", "q'i", "q'i", "k'e", "k'e", "k'e", "q'e", "q'i", "k'e", "k'e", "q'e", "k'e", "q'e", "k'e", "k'i", "k'i", "q'i", "q'e", "q'e", "k'e", "k'e", "q'i", "k'i", "k'i", "k'e", "k'i", "q'i", "q'i", "q'e", "k'e", "k'e", "k'e", "q'i", "k'i", "q'i", "q'e", "q'e", "k'e"], ["YES", "YES", "yes", "no", "no", "yes", "no", "yes", "YES", "no", "no", "YES", "YES", "no", "NO", "YES", "no", "yes", "NO", "yes", "yes", "no", "NO", "yes", "YES", "yes", "no", "yes", "yes", "yes", "no", "no", "yes", "yes", "YES", "no", "no", "no", "YES", "yes", "no", "yes", "yes", "yes", "yes", "NO", "no", "no", "yes", "YES", "yes", "YES", "yes", "no", "no", "no", "YES", "YES", "no", "yes", "yes", "no", "no", "no", "no", "YES", "YES", "yes", "yes", "no", "yes", "YES", "YES", "no", "yes", "yes", "yes", "YES", "no", "no", "yes", "no", "no", "no", "NO", "no", "yes", "yes", "YES", "no", "yes", "yes", "yes", "no", "yes", "no", "yes", "no", "NO", "YES", "YES", "no", "YES", "YES", "NO", "NO", "YES", "YES", "YES", "YES", "yes", "YES", "no", "no", "no", "YES", "yes", "no", "yes", "no", "YES", "yes", "YES", "no", "yes", "YES", "yes", "yes", "NO", "yes", "no", "no", "yes", "yes", "YES", "yes", "yes", "YES", "YES", "YES", "yes", "yes", "yes", "YES", "no", "yes", "YES", "yes", "no", "yes", "no", "yes", "NO", "no", "yes", "yes", "no", "YES", "yes", "YES", "no", "YES", "yes", "no", "yes", "yes", "no", "YES", "yes", "YES", "no", "yes", "yes", "no", "no", "YES", "no", "YES", "no", "yes", "no", "no", "no", "no", "no", "YES", "yes", "yes", "NO", "yes", "yes", "yes", "yes", "no", "yes", "no", "yes", "no", "yes", "NO", "yes", "YES", "YES", "yes", "yes", "yes", "yes", "no", "yes", "no", "no", "yes", "YES", "no", "yes", "YES", "no", "no", "yes", "YES", "yes", "yes", "no", "yes", "no", "no", "no", "yes", "yes", "YES", "yes", "no", "no", "no", "no", "no", "no", "NO", "yes", "yes", "no", "yes", "no", "yes", "yes", "yes", "yes", "yes", "no", "YES", "yes", "yes", "yes", "yes", "yes", "yes", "yes", "no", "no", "no", "yes", "yes", "no", "yes", "no", "yes", "yes", "yes", "yes", "YES", "YES", "YES", "no", "yes", "yes", "no", "yes", "no", "YES", "yes", "YES", "yes", "yes", "yes", "no", "yes", "NO", "YES", "YES", "no", "no", "no", "no", "no", "yes", "no", "YES", "NO", "yes", "yes", "no", "YES", "no", "no", "yes", "yes", "yes", "no", "yes", "yes", "no", "no", "yes", "yes", "yes", "no", "no", "yes", "yes", "no", "NO", "no", "YES", "yes", "no", "no", "yes", "no", "YES", "yes", "yes", "yes", "no", "no", "no", "yes", "no", "yes", "yes", "no", "YES", "yes", "no", "yes", "YES", "yes", "no", "no", "no", "yes", "yes", "YES", "yes", "yes", "no", "YES", "yes", "yes", "yes", "yes", "YES", "yes", "YES", "yes", "YES", "yes", "YES", "no", "no", "yes", "yes", "no", "YES", "no", "YES", "no", "no", "yes", "NO", "YES", "no", "YES", "yes", "yes", "no", "no", "yes", "YES", "no", "yes", "no", "no", "yes", "no", "yes", "YES", "yes", "no", "yes", "no", "no", "no", "YES", "yes", "no", "yes", "no", "no", "no", "yes", "yes", "yes", "yes", "yes", "no", "yes", "no", "yes", "no", "yes", "no", "yes", "yes", "no", "no", "yes", "yes", "no", "YES", "no", "yes", "yes", "no", "YES", "no", "yes", "YES", "no", "YES", "yes", "yes", "no", "yes", "no", "yes", "yes", "no", "no", "yes", "no", "no", "no", "yes", "no", "yes", "no", "yes", "yes", "YES", "no", "no", "no", "YES", "no", "yes", "YES", "no", "no", "no", "YES", "yes", "no", "YES", "yes", "no", "yes", "no", "yes", "yes", "yes", "yes", "no", "yes", "no", "YES", "no", "YES", "no", "yes", "no", "yes", "yes", "yes", "no", "YES", "yes", "no", "YES", "yes", "yes"], ["0.5", "1", "0", "0", "0", "0", "0", "0.5", "0", "0", "0.5", "0", "0.5", "0.5", "0", "0.5", "0", "0", "0", "0.5", "1", "0", "0.5", "0", "0", "0.5", "0", "1", "0", "0", "0.5", "0", "0", "0", "0.5", "1", "0", "0", "0", "0.5", "1", "0", "0", "0", "0", "0", "0", "1", "0", "0.5", "0", "0", "0", "0.5", "0.5", "0.5", "1", "0", "0", "0.5", "0.5", "0", "0", "0", "0.5", "0", "0.5", "0", "0", "0", "0", "1", "0", "0.5", "0.5", "0", "0", "0", "0", "0", "0", "0.5", "0", "0", "1", "0", "0", "0.5", "0.5", "0", "1", "0", "0", "0", "0.5", "0", "0.5", "0.5", "0", "1", "0.5", "0", "0.5", "0.5", "0.5", "1", "0", "0", "0", "1", "0.5", "0.5", "0.5", "0", "0.5", "0.5", "0.5", "0", "0.5", "0.5", "0.5", "0", "0", "0", "0.5", "0", "0", "1", "0", "0.5", "0", "0", "0.5", "0", "0.5", "0", "0", "0.5", "0", "0", "0", "0", "0.5", "0.5", "0", "0.5", "0", "0", "0", "0", "0", "0", "0.5", "0.5", "0", "0", "0", "0", "0", "0", "0.5", "0", "0", "0", "0.5", "0", "0", "0", "0", "0", "0", "0", "0", "0.5", "0.5", "0.5", "0.5", "0", "0", "0.5", "0", "0.5", "0", "0", "0.5", "0", "0", "1", "0", "0", "0", "0", "0.5", "0", "0", "0", "0", "0.5", "1", "0", "0", "0.5", "0", "0", "0", "0", "0.5", "0", "0.5", "0", "0", "0.5", "0.5", "1", "0", "0.5", "0.5", "0.5", "0", "0.5", "0", "0", "0", "0", "1", "0.5", "0.5", "0", "0", "0.5", "0.5", "1", "0", "0", "0", "1", "0", "0", "0.5", "0", "0", "0", "0", "0", "0", "0", "1", "0.5", "0", "0", "0.5", "1", "0", "1", "0", "0", "0", "0.5", "0.5", "0", "0.5", "0.5", "0", "0", "1", "1", "0.5", "2", "0", "0.5", "0.5", "0", "0", "2", "1", "0.5", "0", "0", "0.5", "1", "0.5", "0", "0", "0", "2", "1", "0.5", "0.5", "0", "0", "1", "0", "0", "0.5", "0", "1", "0.5", "0", "0", "0", "0", "1", "0", "0.5", "0", "0", "0", "0.5", "0.5", "0.5", "0", "0.5", "0", "0", "0.5", "0", "0", "0.5", "0.5", "0", "0", "0", "0.5", "0.5", "0.5", "0", "1", "0", "1", "0", "0", "0", "0", "0.5", "0.5", "0", "0.5", "0", "0", "0", "0", "0.5", "0", "0", "1", "0", "1", "0", "0", "0.5", "0.5", "0", "0.5", "0"], ["N/A", "N/A", "N/A", "N/A", "N/A", "N/A", "N/A", "Yes", "No", "N/A", "No", "No", "No", "N/A", "N/A", "N/A", "N/A", "No", "N/A", "N/A", "Yes", "N/A", "No", "N/A", "N/A", "N/A", "No", "N/A", "N/A", "N/A", "No", "N/A", "N/A", "N/A", "No", "N/A", "N/A", "N/A", "No", "N/A", "No", "No", "Yes", "No", "Yes", "N/A", "N/A", "N/A", "N/A", "N/A", "N/A", "N/A", "N/A", "N/A", "No", "N/A", "N/A", "N/A", "N/A", "N/A", "N/A", "N/A", "N/A"], ["No", "Yes", "No", "No", "No", "Yes", "No", "No", "No", "Yes", "Yes", "Yes", "Yes", "No", "No", "Yes", "Yes", "Yes", "Yes", "Yes", "Yes", "No", "Yes", "No", "No", "Yes", "No", "Yes", "Yes", "No", "No", "Yes", "No", "No", "Yes", "Yes", "No", "Yes", "Yes", "Yes", "Yes", "Yes", "No", "Yes", "Yes", "Yes", "NA", "Yes", "Yes", "Yes", "No", "Yes", "No", "Yes", "No", "Yes", "Yes", "Yes", "Yes", "No"], ["DDB", "DDB", "Res", "DDB", "DDB", "Res", "Res", "DDB", "Res", "DDB", "Res", "DDB", "DDB", "DDB", "DDB", "Res", "DDB", "Res", "DDB", "DDB", "Res", "DDB", "Res", "Res", "Res", "DDB", "Res", "Res", "Res", "DDB", "Res", "DDB", "DDB", "Res", "Res", "DDB", "Res", "Res", "DDB", "DDB", "DDB", "DDB", "Res", "DDB", "Res", "Res", "Res"], ["tcp", "tcp", "tcp", "tcp", "tcp", "tcp", "tcp", "tcp", "tcp", "tcp", "tcp", "tcp", "tcp", "tcp", "tcp", "tcp", "tcp", "tcp", "tcp", "tcp", "tcp", "tcp", "tcp", "tcp", "tcp", "tcp", "tcp", "tcp", "tcp", "tcp", "tcp", "tcp", "tcp", "tcp", "tcp", "tcp", "tcp", "tcp", "tcp", "tcp", "tcp", "tcp", "tcp", "tcp", "tcp", "tcp", "udp", "tcp", "tcp", "tcp", "tcp", "tcp", "tcp", "tcp", "tcp", "tcp", "tcp", "tcp", "tcp", "tcp", "tcp", "tcp", "tcp", "tcp", "tcp", "tcp", "tcp", "udp", "tcp", "tcp", "tcp", "tcp", "tcp", "tcp", "tcp", "tcp", "tcp", "tcp", "tcp", "tcp", "tcp", "tcp", "tcp", "tcp", "tcp"], ["102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "104", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "101", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "104", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "104", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "101", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "101", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "101", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102", "102"], ["1669", "230", "233", "988", "684", "2803", "2694", "1634", "2263", "2751", "2525", "2351", "475", "1782", "259", "2468", "853", "1386", "163", "1433", "64", "816", "2784", "122", "2459", "2243", "2742", "473", "397", "2381", "667", "2273", "1354", "2847", "981", "2894", "2579", "643", "837", "2221", "1934", "1902", "2355", "1719", "785", "2172", "1849", "1547", "1769", "788", "1898", "222", "144", "2735", "1092", "844", "246", "2595", "1925", "2182", "1486", "298", "2884", "2594", "1342", "322", "501", "2853", "1651", "1815", "1831", "1088", "735", "1228", "1007", "2214", "1958", "1704", "2194", "1373", "2481", "1403", "603", "933", "1852", "2485", "2571", "2940", "1208", "11", "1070", "2026", "1859", "2255", "1202", "31", "1572", "1672", "827", "2322", "587", "2100", "455", "2140", "1266", "1666", "57", "2619", "2737", "862", "2673", "352", "1106", "2872", "2022", "2768", "1050", "1137", "1850", "661", "283", "2578", "1844", "139", "168", "2406", "2023", "2676", "310", "1677", "1605", "549", "1520", "662", "1400", "1710", "252", "1452", "1445", "24", "1594", "2146", "2583", "1470", "1112", "2840", "2111", "2251", "720", "2669", "1059", "287", "236", "307", "546", "5", "2210", "50", "1023", "1211", "1376", "2338", "787", "2352", "610", "207", "2347", "345", "1936", "2687", "2019", "836", "90", "178", "1041", "459", "2056", "116", "1181", "1567", "865", "616", "1125", "956", "331", "2097", "540", "654", "474", "923", "400", "1413", "2998", "2832", "710", "1026", "1249", "1345", "2248", "2521", "316", "893", "1591", "2384", "1608", "1", "480", "1363", "2562", "1650", "241", "363", "1887", "362", "1783", "68", "482", "1502", "1115", "434", "1037", "277", "770", "2139", "1742", "1956", "716", "1490", "2353", "1469", "2476", "1335", "1893", "2297", "664", "2177", "708", "55", "604", "1579", "2638", "2350", "1569", "2375", "1781", "1343", "2290", "2641", "2945", "100", "1722", "773", "685", "2765", "1770", "1917", "335", "881", "1606", "2212", "2762", "2659", "2811", "2429", "225", "1523", "2359", "129", "891", "2943", "1966", "2176", "2602", "271", "113", "2800", "107", "906", "783", "825", "2542", "2007", "496", "191", "1771", "2413", "2017", "2490", "198", "1533", "1628", "1652", "293", "2588", "2670", "1551", "1558", "51", "143", "472", "2960", "1554", "92", "1734", "1926", "1407", "548", "1746", "2175", "669", "2814", "1332", "892", "391", "2460", "2354", "1402", "119", "216", "2107", "765", "738", "2745", "2224", "2292", "2457", "2886", "2211", "522", "2543", "2599", "2584", "1513", "660", "2989", "2091", "355", "239", "1153", "1200", "1737", "1889", "2241", "1974", "1682", "1918", "156", "2197", "2890", "1585", "1163", "2202", "1219", "2626", "1963", "503", "1676", "2552", "336", "2576", "2244", "249", "2441", "1437", "1303", "533", "1612", "1097", "2341", "577", "1514", "2227", "1136", "286", "1256", "1667", "687", "1673", "2035", "1664", "2554", "821", "858", "62", "520", "753", "2454", "1525", "2114", "2330", "2925", "343", "2005", "526", "176", "33", "56", "254", "1996", "2154", "2946", "2213", "2801", "1289", "1047", "2345", "1953", "188", "727", "46", "209", "760", "690", "206", "1134", "813", "757", "1496", "1944", "2379", "1488", "2231", "123", "2010", "2425", "2149", "1903", "1257", "2209", "2280", "2123", "1655", "2318", "1409", "1443", "766", "2252", "2544", "1535", "2617", "2857", "2298", "1212", "2729", "450", "427", "608", "2326", "464", "1374", "1221", "952", "2306", "1736", "1697", "2718", "2875", "1653", "518", "1805", "568", "2275", "1927", "1611", "2545", "784", "696", "1355", "578", "332", "854", "2483", "2152", "1821", "1538", "2909", "1529", "1191", "1892", "491", "958", "1987", "1853", "29", "869", "1625", "2743", "1563", "2461", "1796", "842", "1997", "2063", "2242", "2144", "2143", "2828", "268", "860", "620"], ["5602", "102", "2651", "1625", "4247", "1520", "3985", "2299", "2366", "5664", "4072", "5612", "772", "2995", "2597", "2262", "3497", "5752", "2010", "2663", "3768", "2566", "4172", "5104", "1173", "5034", "1967", "4605", "554", "1507", "3330", "4643", "4987", "407", "4864", "5471", "4399", "5118", "3764", "2352", "1616", "533", "3916", "5443", "990", "3747", "1020", "5654", "1591", "5830", "3530", "3937", "4114", "4775", "1583", "2522", "1161", "2267", "1924", "1543", "2501", "1802", "874", "2515", "136", "1609", "4386", "2288", "4531", "655", "1045", "608", "5514", "5418", "4224", "1462", "4870", "883", "1729", "4820", "1083", "896", "1066", "1912", "2224", "3328", "2081", "1434", "3925", "2826", "4487", "3521", "5627", "525", "441", "403", "3114", "458", "4920", "771", "1036", "2876", "1285", "905", "3258", "2134", "3956", "1247", "5434", "4796", "1824", "4264", "5027", "4081", "1860", "1576", "2608", "1073", "2543", "2545", "917", "1862", "4664", "928", "48", "797", "4308", "3194", "3031", "336", "2217", "170", "3345", "1475", "5498", "1837", "551", "2154", "628", "4774", "1169", "1992", "2194", "4205", "5146", "3490", "2114", "4938", "3964", "5380", "3872", "2950", "4830", "294", "3399", "4606", "981", "5764", "4039", "129", "524", "5278", "3266", "965", "1291", "2541", "5849", "1111", "4162", "1856", "5582", "855", "3568", "4705", "2112", "2677", "1774", "169", "1198", "4228", "5470", "1893", "1678", "312", "4631", "4183", "4806", "3324", "2786", "1386", "3185", "2985", "4082", "2916", "5601", "1716", "1344", "3197", "188", "3626", "2875", "1197", "2246", "5334", "3807", "3360", "3032", "316", "3622", "1958", "576", "2732", "3962", "2661", "2443", "5474", "337", "122", "2812", "1226", "605", "3500", "1843", "5176", "3374", "625", "4555", "4250", "1023", "4603", "4508", "339", "836", "2002", "2113", "3531", "1863", "2667", "500", "215", "3285", "3888", "3561", "1009", "4522", "325", "4009", "5832", "2996", "5843", "2723", "4425", "3089", "3889", "3152", "5423", "1676", "4837", "1559", "877", "3526", "3284", "272", "3471", "5820", "5360", "3788", "3111", "3225", "1530", "1068", "3590", "811", "4055", "4667", "4956", "5139", "3887", "731", "2781", "531", "3439", "5712", "3647", "487", "5564", "1659", "4504", "4423", "3244", "1925", "2582", "750", "952", "1186", "412", "962", "3529", "3039", "671", "2745", "1135", "64", "1896", "4640", "677", "2874", "3388", "3633", "2495", "1358", "4331", "4748", "1028", "2318", "507", "4042", "651", "4136", "1597", "2397", "2961", "5798", "4485", "2094", "2057", "1213", "724", "5254", "2601", "1944", "2972", "4182", "954", "3476", "1133", "5759", "13", "2101", "5536", "593", "4158", "1312", "1701", "2686", "1514", "933", "5667", "2039", "2135", "3319", "2538", "3574", "1006", "867", "5638", "5567", "3144", "4581", "2742", "2703", "5731", "1046", "116", "3094", "5639", "5017", "718", "963", "4063", "4541", "3256", "5488", "2258", "5347", "4471", "2503", "5060", "309", "4444", "3863", "2832", "1804", "971", "2343", "2464", "3646", "3005", "5408", "2393", "3507", "3893", "322", "1430", "925", "5182", "1139", "46", "4686", "2883", "1586", "802", "2378", "1132", "2048", "1441", "5169", "742", "3702", "4306", "2955", "1512", "2284", "727", "1599", "922", "281", "225", "644", "2073", "3865", "1728", "237", "1087", "5845", "3968", "2172", "5788", "3009", "2156", "3959", "603", "473", "5473", "5500", "101", "1752", "1846", "3750", "4429", "3049", "1993", "1093", "1983", "4677", "1460", "1917", "1604", "592", "953", "4739", "2512", "5209", "5444", "506", "2417", "5705", "5135", "5821", "4573", "1542", "2419", "1205", "202", "5873", "3120", "4867", "2014", "1913", "4194", "4472", "737", "4122", "2753", "1177", "2407", "304", "3172", "3722", "4265", "4116", "1329", "624", "4810", "4143", "977", "2516", "5225", "4823", "3650", "5810", "2588", "5622", "5191", "1019", "384", "2499", "4439", "471", "2746"], ["1753", "2700", "3208", "625", "2149", "1372", "83", "213", "2184", "3391", "1676", "3500", "105", "2606", "1843", "1065", "1609", "2022", "1277", "5157", "2705", "366", "1615", "703", "1693", "34", "1920", "1480", "5126", "371", "5494", "3561", "894", "1118", "2255", "1934", "5116", "719", "2263", "1256", "2912", "5091", "1703", "1374", "2599", "2120", "2897", "3389", "1905", "618", "5253", "2758", "379", "284", "556", "1958", "753", "847", "699", "554", "3481", "102", "1494", "1642", "833", "1169", "1588", "1333", "1910", "744", "129", "2953", "5115", "2493", "693", "1980", "1675", "35", "1150", "5329", "1124", "5166", "1112", "2031", "1300", "5485", "174", "1776", "403", "2931", "1039", "168", "2325", "1887", "2154", "5203", "3534", "144", "941", "1755", "791", "1605", "2100", "1606", "1318", "3228", "782", "32", "2552", "2812", "3220", "3531", "1044", "1198", "5104", "31", "2604", "2933", "1587", "2434", "626", "1148", "314", "865", "3221", "2509", "1031", "1820", "1058", "216", "2908", "1207", "1931", "2503", "434", "2315", "2865", "1286", "619", "1959", "956", "2967", "2866", "456", "2796", "1288", "348", "1040", "2093", "481", "2980", "290", "2913", "2274", "3838", "3522", "1701", "2445", "518", "786", "2537", "2341", "299", "1617", "2183", "2089", "1526", "521", "1590", "1804", "1310", "303", "1915", "3608", "1791", "2101", "1464", "1319", "1122", "3328", "203", "1539", "1681", "2417", "2532", "1716", "1469", "5419", "5495", "3231", "1189", "2831", "2783", "3486", "1501", "1956", "1284", "5051", "1070", "1845", "2209", "3734", "712", "1327", "319", "1427", "2543", "2666", "3229", "533", "5065", "1697", "801", "2441", "5087", "1067", "892", "2719", "1123", "1015", "1154", "1422", "1274", "1208", "1089", "1341", "569", "2280", "864", "1087", "5355", "2612", "89", "1160", "2706", "163", "232", "424", "418", "48", "2749", "2510", "1020", "1708", "888", "312", "87", "1653", "2653", "2642", "2295", "486", "2138", "1687", "535", "210", "298", "1348", "228", "73", "1335", "1730", "1795", "449", "469", "526", "1447", "1326", "3270", "1235", "2078", "2514", "3473", "768", "542", "5140", "3273", "1276", "1519", "937", "605", "2660", "1738", "648", "2190", "2874", "2925", "1851", "294", "2111", "2659", "342", "5498", "123", "2658", "5045", "638", "2023", "22", "1213", "2362", "916", "516", "5293", "2401", "671", "494", "2608", "2249", "2317", "1204", "2163", "2629", "125", "883", "309", "929", "1573", "1473", "67", "1895", "1334", "5162", "538", "1490", "2740", "265", "1359", "859", "51", "887", "5392", "1564", "529", "1397", "204", "264", "1349", "402", "2691", "304", "97", "356", "2788", "803", "1892", "2718", "1742", "1744", "5397", "1570", "2818", "2929", "861", "1111", "1554", "448", "1209", "944", "85", "14", "1240", "2021", "5234", "2772", "3207", "1949", "1700", "1741", "2151", "3529", "1977", "411", "1336", "1236", "1363", "3476", "965", "3459", "695", "96", "2155", "480", "926", "1184", "1658", "2674", "5082", "1446", "1433", "46", "2137", "1715", "2724", "2205", "217", "748", "2007", "661", "5340", "2114", "5199", "2081", "2180", "1027", "1578", "2522", "1524", "2735", "1792", "794", "3225", "2032", "1705", "1559", "101", "1094", "1079", "2507", "1187", "1505", "137", "3565", "562", "36", "992", "2200", "1316", "775", "1481", "1997", "1695", "1913", "500", "29", "336", "1797", "2357", "978", "563", "1722", "1926", "1095", "2336", "388", "5028", "1283", "687", "1953", "5175", "666", "2201", "1182", "5037", "468", "1409", "430", "953", "1097", "3477", "383", "394", "2901", "1030", "3590", "1194", "1460", "1385", "71", "214", "2857", "1361", "1382", "931", "918", "698", "3624", "5191", "2540", "1723", "688", "1628", "2821", "2823", "3491", "5331", "3535", "5492", "818", "1768", "451", "632", "772", "1897", "1406", "5319", "2723", "2359", "842", "2242"], ["1861", "1531", "171", "1855", "9153", "1217", "612", "5816", "6910", "7850", "5774", "1835", "798", "506", "5420", "7042", "6170", "402", "7024", "5766", "4913", "7666", "7366", "9315", "4742", "7451", "2681", "167", "7659", "1849", "7517", "9110", "5225", "9321", "964", "2816", "7162", "3727", "4832", "5461", "9312", "6376", "3172", "2198", "9189", "2519", "1615", "9221", "6798", "4567", "531", "3586", "5548", "1553", "815", "7808", "4206", "3154", "5322", "6167", "2880", "2872", "8195", "5907", "1942", "6801", "4627", "1607", "4256", "1017", "1522", "3062", "6758", "903", "6401", "8666", "3656", "2052", "5389", "90", "8493", "6280", "441", "5384", "4366", "6221", "545", "3018", "4643", "4238", "5355", "6255", "946", "5872", "5331", "3229", "1528", "5830", "8834", "5539", "8179", "6690", "5325", "2062", "1320", "9036", "6865", "3077", "9075", "4373", "4597", "804", "9338", "7751", "6035", "3089", "1025", "3741", "5248", "3952", "3691", "4889", "1015", "7583", "4732", "2921", "2319", "7553", "4589", "5869", "1418", "8579", "1623", "7714", "6788", "3713", "7621", "8297", "3608", "7687", "1698", "7179", "1378", "7167", "700", "4427", "283", "4080", "399", "8899", "8274", "1931", "6470", "4780", "8265", "5917", "7511", "6", "2738", "4500", "1457", "8426", "8373", "1760", "1134", "2849", "4601", "7955", "9217", "7051", "5525", "8092", "5018", "5710", "3183", "1165", "8629", "6468", "6691", "3139", "499", "560", "6108", "9085", "8322", "5791", "5363", "7151", "9011", "173", "4562", "6964", "3409", "6618", "3896", "4036", "8594", "8165", "7241", "1004", "5942", "8070", "8983", "6810", "1750", "1742", "4019", "4908", "5456", "1213", "8581", "156", "6370", "7005", "5357", "2562", "4174", "3510", "376", "2726", "6815", "3327", "6435", "9348", "7446", "6004", "8132", "7397", "5087", "2954", "2261", "5037", "3575", "6279", "8136", "8760", "4886", "792", "3315", "5263", "2563", "2733", "1327", "9344", "2854", "8203", "172", "3134", "8842", "1674", "4125", "8831", "4746", "502", "8078", "4086", "1957", "1764", "5732", "4498", "195", "743", "6528", "5444", "503", "4209", "4928", "6087", "6091", "4750", "6790", "1844", "6581", "5748", "3295", "2626", "7784", "212", "1794", "7412", "3884", "5731", "5719", "6985", "8888", "634", "1008", "5471", "304", "896", "5956", "3461", "6513", "6110", "2132", "8802", "559", "2624", "1639", "4289", "695", "5016", "6635", "5868", "229", "3651", "6819", "8502", "534", "8603", "3878", "2494", "9071", "5681", "7925", "4894", "5818", "917", "1666", "2610", "2952", "7833", "1600", "7756", "3439", "589", "6211", "2215", "7011", "2272", "8010", "7734", "2493", "4182", "372", "6732", "3860", "1601", "381", "6660", "2520", "3186", "8695", "6610", "4108", "4747", "8433", "8710", "2123", "2431", "7271", "8267", "3700", "2394", "3515", "4704", "9111", "4402", "8712", "1211", "7864", "4236", "8722", "2862", "2421", "6568", "2310", "7046", "4733", "8200", "9335", "4837", "5721", "6736", "8115", "3670", "7065", "6422", "2365", "6611", "2363", "2882", "6928", "9195", "5518", "2450", "2864", "7476", "7260", "5467", "7387", "6854", "6182", "5294", "7914", "1348", "7400", "2157", "7671", "7893", "6215", "5175", "6943", "8584", "8501", "6868", "1323", "1636", "8278", "2440", "2605", "8290", "766", "8323", "4433", "4943", "4255", "3083", "1574", "4518", "1113", "1506", "7628", "5179", "2201", "4335", "1266", "9034", "1066", "3749", "7716", "8648", "6231", "1915", "6208", "1897", "7806", "5145", "5109", "3660", "5472", "8254", "6288", "451", "2909", "6301", "8184", "4612", "6371", "2635", "7435", "6283", "5563", "1049", "2015", "8347", "115", "8776", "5062", "1243", "1082", "3810", "2375", "487", "603", "2131", "4082", "5222", "7507", "1255", "272", "4730", "5512", "3754", "5129", "8748", "7500", "7579", "8844", "7004", "1267", "4634", "3527", "2328", "7838", "4296", "7858", "36", "4317", "4925", "9140", "7084", "7209", "1537", "5568", "1934", "4606", "7171", "2337", "5056"], ["3121", "2620", "4335", "2110", "4140", "3102", "4456", "1795", "3574", "2220", "2126", "2245", "2545", "4654", "2144", "2108", "3264", "3433", "3785", "1970", "4190", "3900", "3781", "2868", "2408", "2434", "2740", "2070", "2100", "4257", "3613", "2155", "2230", "2575", "2125", "5140", "2385", "2565", "2979", "3021", "2720", "2670", "2711", "4215", "2648", "2807", "2984", "2865", "4129", "3278", "3850", "3820", "2900", "3504", "1968", "3892", "1940", "3190", "2833", "2795", "3139", "2375", "2950", "2615", "1845", "2220", "2472", "2164", "3735", "2525", "2025", "1915", "2300", "2155", "3410", "2075", "4732", "2219", "1950", "1965", "1990", "2965", "3632", "2585", "2255", "4464", "3530", "4498", "2223", "3664", "2945", "2164", "2542", "3449", "1795", "2265", "2500", "2000", "2671", "2506", "2288", "3158", "4615", "2050", "2264", "2125", "3353", "2904", "2190", "3410", "4360", "2950", "2572", "3436", "3381", "1925", "2635", "2395", "4055", "2815", "2045", "2278", "3563", "1835", "2265", "3085", "1760", "3415", "1955", "3193", "2790", "3605", "3430", "2189", "3150", "2160", "4699", "2171", "4382", "1963", "1825", "2124", "3761", "3840", "2350", "2702", "2464", "3725", "2205", "2735", "2511", "3282", "2489", "3230", "3425", "2910", "2451", "2210", "3830", "2130", "1985", "3940", "2962", "3365", "4060", "2300", "1980", "1800", "4657", "3962", "1990", "2678", "4746", "2587", "2592", "3955", "1975", "2125", "4354", "2045", "2279", "3086", "2370", "3060", "2420", "2640", "3265", "2957", "2914", "3012", "1836", "4457", "4499", "2855", "1945", "2542", "3245", "3459", "4237", "2515", "4215", "4077", "4422", "1995", "1773", "4100", "4294", "2234", "2020", "3988", "4295", "1985", "3399", "3465", "2372", "2595", "1834", "2295", "2605", "1613", "4638", "3940", "2694", "2408", "2228", "2130", "2755", "3380", "3445", "2930", "4096", "3520", "4312", "2830", "3897", "2379", "4385", "3015", "2835", "1985", "3425", "3288", "4209", "2254", "4325", "2158", "2945", "2625", "2700", "4341", "4274", "1850", "3870", "2600", "2635", "1875", "3302", "4425", "2330", "2430", "1649", "4165", "1937", "3821", "3630", "4098", "2335", "2745", "3420", "2725", "2395", "4082", "2190", "4440", "2051", "3160", "1937", "2215", "3140", "4997", "2870", "3270", "2226", "1867", "3651", "2120", "2720", "2582", "2110", "2720", "3730", "2660", "3570", "4951", "2933", "2990", "3725", "2945", "4502", "1825", "2019", "1755", "3329", "4154", "2890", "2123", "3755", "2150", "2380", "4668", "2556", "2300", "2065", "4220", "4464", "2085", "4633", "4141", "3672", "2145", "2200", "4054", "3439", "2310", "4080", "1965", "2670", "3210", "3672", "4278", "3620", "1800", "2930", "2202", "3169", "3432", "3693", "4135", "2135", "3777", "3039", "3250", "2130", "2265", "2074", "2672", "3003", "4952", "1985", "2003", "4955", "4042", "2560", "3880", "2246", "2188", "2155", "1975", "3155", "2130", "2035", "4376", "2634", "3907", "3221", "2665", "2901", "3233", "3525", "2290", "4363", "3336", "3609", "2774", "3070", "2789", "2639", "2490", "3211", "4380", "4735", "2401", "3535", "3360", "1950", "3205", "4906", "2800", "3645", "2405"], ["1874", "5164", "4611", "4434", "5164", "5068", "2011", "5427", "4732", "1588", "1685", "1879", "5175", "1743", "5677", "5427", "3654", "2225", "3833", "2475", "3858", "5427", "5494", "5221", "3676", "5486", "2180", "3553", "3279", "5624", "2435", "5164", "2364", "2136", "5711", "1806", "3843", "2085", "2017", "5448", "3490", "2427", "2344", "4859", "5554", "4729", "5692", "1796", "2475", "4613", "4677", "1761", "5242", "3594", "3459", "3113", "4929", "3497", "5508", "2391", "5514", "3676", "4844", "5675", "2136", "3676", "4853", "4437", "5446", "4250", "3626", "1675", "2295", "2236", "5683", "2186", "5658", "5436", "3735", "4677", "1743", "5051", "1562", "1798", "2344", "3626", "4933", "3708", "5543", "3211", "2141", "5620", "4244", "2132", "2153", "4859", "1691", "4707", "2085", "3454", "5304", "2171", "5124", "3833", "3118", "2171", "2090", "4756", "3676", "4938", "2364", "5508", "3746", "3843", "5597", "2425", "2059", "5400", "2152", "2136", "4286", "3555", "5221", "3497", "4616", "5556", "3548", "4481", "5498", "4218", "5285", "4873", "2173", "2193", "3244", "4576", "5523", "5221", "5518", "4641", "4485", "1827", "4154", "3444", "4970", "2676", "4231", "5629", "5444", "3003", "2333", "5732", "1691", "1808", "4707", "5558", "5411", "4974", "1519", "5262", "2475", "1719", "1892", "3290", "5578", "4946", "5146", "2017", "2344", "2427", "2276", "5060", "2120", "5654", "1965", "5543", "5491", "5482", "2847", "5357", "5434", "4685", "5580", "2079", "4178", "1709", "5087", "3676", "3791", "5480", "4664", "4154", "2136", "3592", "2034", "5100", "4286", "4231", "4853", "2034", "5531", "3854", "2169", "5520", "1806", "5415", "5658", "4853", "2165", "5427", "5177", "4246", "2344", "4995", "4277", "1661", "5692", "4873", "2475", "4905", "5111", "2191", "2088", "1969", "1783", "1532", "5593", "1874", "4209", "2186", "2676", "5423", "4758", "4286", "1787", "5543", "3599", "5203", "1743", "1928", "4481", "2333", "4637", "4976", "5073", "4605", "1906", "3676", "3497", "3611", "3162", "3463", "3667", "4859", "3760", "4922", "5092", "1563", "2178", "4522", "3676", "2006", "3947", "1524", "1916", "5547", "5460", "4479", "2136", "5595", "5127", "3721", "2136", "4964", "3290", "4980", "5497", "2475", "3317", "4878", "5539", "2389", "5448", "4624", "3626", "2136", "3854", "3676", "4897", "1993", "5583", "5599", "5432", "2306", "3673", "3852", "2128", "1709", "2059", "4729", "5607", "5181", "2034", "3592", "3892", "2136", "4661", "5177", "4180", "3697", "3676", "5743", "4628", "2028", "4873", "3626", "1867", "5622", "5622", "4707", "2149", "5103", "1811", "5580", "4646", "3843", "2208", "1769", "2475", "4452", "4609", "5242", "2358", "3676", "4895", "4620", "3560", "4511", "3626", "2038", "2358", "2145", "3659", "5030", "5285", "4760", "2483", "4465", "3654", "4920", "2066", "3730", "4240", "2350", "5460", "2165", "4756", "5508", "5354", "4477", "5536", "5599", "5758", "4978", "2083", "4868", "1675", "1691", "3548", "5663", "2238", "5649", "5148", "2238", "4873", "2028", "1671", "5679", "5221", "5392", "2847", "4707", "5526", "2186", "4991", "2306", "5439", "5681", "5199", "1838", "5508", "3711", "4683", "3746", "5427", "2673", "5421", "5427", "3290", "2152", "3581", "4489", "4696", "3849", "4474", "3733", "2186", "1979", "5647", "5661", "2970", "5081", "5400", "2892", "4972", "1743", "5419", "2136", "2425", "4256", "1571", "3764", "3849", "3497", "1515", "3384", "5517", "1871", "3665", "4872", "5255", "5164", "4742", "4696", "5310", "3118", "3721", "4605", "5426", "1719", "2358", "3676", "3459", "2136", "1871", "1879", "3531", "1867", "1673", "5152", "4905", "1781", "2171", "3540", "5062", "5137", "2366", "5255", "5044", "2136", "1798", "3382", "5533", "1709", "3661", "3244", "1724", "5129", "5671", "4909", "5427", "4474", "3725", "4498", "2136", "4961", "2059", "5437", "3833", "5502", "5408", "3667", "2676", "3746", "5258", "2186", "4873", "4897", "4707", "4680", "3737", "2225", "4814", "1515", "2085", "5758", "3833", "1793", "3313", "4474"], ["0", "30", "1281", "536", "0", "0", "35", "275", "5", "0", "369", "0", "382", "51", "176", "122", "42", "78", "2", "39", "20", "179", "29", "1086", "128", "1", "93", "4", "1361", "1154", "794", "34", "1037", "46", "91", "14", "14", "36", "72", "393", "7", "1372", "81", "49", "23", "0", "18", "51", "4", "193", "88", "38", "103", "422", "67", "52", "117", "111", "107", "457", "59", "48", "349", "846", "760", "339", "66", "1244", "467", "158", "54", "64", "47", "52", "977", "13", "11", "84", "61", "713", "27", "0", "468", "46", "36", "7", "65", "72", "0", "34", "630", "0", "76", "29", "58", "1258", "1002", "89", "106", "0", "210", "5", "1159", "98", "675", "120", "24", "102", "68", "460", "558", "40", "15", "34", "735", "489", "202", "207", "67", "375", "59", "42", "85", "888", "361", "616", "29", "443", "718", "13", "54", "51", "17", "7", "170", "1", "10", "0", "2", "0", "78", "202", "111", "2", "62", "508", "581", "3", "237", "57", "68", "135", "0", "48", "853", "17", "75", "641", "84", "0", "276", "46", "435", "43", "0", "1043", "1069", "1255", "124", "204", "74", "0", "402", "140", "584", "43", "611", "27", "28", "0", "30", "0", "6", "102", "112", "988", "279", "144", "0", "2", "65", "317", "353", "61", "24", "0", "472", "520", "14", "27", "11", "71", "1069", "0", "145", "20", "98", "13", "1056", "88", "81", "45", "824", "849", "11", "24", "329", "921", "88", "1192", "156", "428", "927", "95", "0", "80", "214", "97", "57", "19", "377", "0", "0", "392", "66", "127", "42", "51", "65", "75", "288", "0", "314", "0", "96", "175", "61", "724", "41", "493", "5", "182", "77", "25", "410", "58", "0", "1156", "104", "423", "43", "20", "167", "751", "273", "99", "17", "524", "246", "122", "1131", "41", "20", "46", "0", "893", "43", "18", "14", "54", "712", "21", "52", "0", "36", "46", "77", "0", "33", "25", "69", "148", "112", "95", "52", "0", "369", "602", "15", "67", "98", "0", "304", "17", "63", "15", "209", "545", "36", "71", "876", "0", "18", "61", "109", "52", "1027", "2", "24", "284", "233", "776", "150", "28", "16", "1346", "22", "0", "113", "74", "100", "32", "0", "587", "401", "985", "1286", "1197", "1045", "17", "26", "27", "426", "35", "15", "1", "0", "765", "338", "48", "223", "62", "0", "375", "39", "53", "68", "154", "0", "35", "857", "113", "452", "76", "28", "367", "48", "438", "11", "69", "58", "10", "346", "9", "862", "554", "44", "72", "59", "81", "93", "24", "308", "44", "36", "348", "599", "1", "297", "1225", "11", "3", "392", "551", "19", "1339", "51", "0", "29", "1173", "91", "171", "288", "976", "28", "226", "391", "180", "118", "285", "748", "141", "1052", "0", "27", "2", "46", "36", "151", "204", "64", "1341", "49", "94", "1084", "49", "32", "100", "541", "110", "451", "123", "0", "0", "230", "228", "4", "0", "0", "0", "22", "31", "0", "33", "0", "511", "530", "0", "534", "782", "85", "0", "639", "1378", "372", "8", "119", "53", "0", "164", "931", "81", "0", "13", "1312", "0", "70", "17", "36", "839", "151", "497", "0", "1", "23", "0", "0", "195", "257", "864", "900", "298", "249", "516", "30", "116", "0", "245", "21", "215", "717", "199", "37", "0", "60", "37", "41", "18", "1", "44"], ["0.6", "2.4", "0.9", "1.8", "0.78", "0.79", "0.27", "2.5", "2.1", "0.78", "1.79", "1.32", "1.79", "0.49", "4.2", "1.9", "0.88", "0.6", "0.53", "2.3", "1.2", "0", "1", "1.1", "1.28", "0.78", "1.87", "2.57", "0.77", "0.83", "0.54", "1.2", "0.33", "0.6", "0.81", "1.08", "1.24", "2.8", "1.04", "0.68", "0.95", "1.19", "0.52", "1.86", "2", "1.89", "1.44", "1.9", "1.6", "4.6", "5.1", "3.3", "3.3", "1.4", "0.79", "2", "0.2", "1.1", "0.45", "2.21", "2.04", "5.4", "0.65", "1.4", "2", "1.97", "1", "1.04", "2.22", "0.46", "5.9", "1.37", "4.9", "1.69", "0.8", "2.33", "1.96", "1", "4.7", "1.2", "4.9", "0.5", "1.1", "2.7", "1.4", "1.31", "0.4", "2.2", "1.5", "3.2", "0.1", "4.9", "1", "0.6", "1.26", "1.5", "4.5", "0.55", "0.5", "1.33", "0.13", "1.63", "0.46", "1.6", "1.17", "2.4", "2.7", "0.5", "1.67", "1.26", "0.99", "1.7", "1.38", "0.58", "1.37", "0.59", "1.1", "1.51", "2.45", "1.54", "1.21", "0.3", "0.69", "1.61", "1.36", "2.5", "5", "2.2", "4.3", "1.22", "1.53", "2.7", "2", "2", "-0.1", "1.59", "2", "1.5", "2", "0.4", "1.24", "-0.2", "1.26", "2.6", "0.46", "4.2", "0.1", "2", "1.97", "0.89", "4.9", "1.48", "1.6", "1.87", "2", "1.55", "0.18", "1.7", "1.9", "1.7", "2.3", "1.68", "1.89", "1.19", "0.88", "1.5", "1.14", "4.7", "2.64", "1.63", "1.4", "2.3", "0.63", "1.9", "2", "0.99"], ["11.7", "11.8", "NA", "28.4", "2.8", "43.1", "12.9", "4.5", "2", "25.5", "NA", "NA", "41.3", "2.5", "30.2", "NA", "16.5", "NA", "40.7", "33.1", "32.6", "3.9", "NA", "NA", "30.2", "10.7", "2", "9.4", "6.1", "14.6", "NA", "46.6", "9.5", "20.2", "27.9", "6.1", "NA", "3.5", "44", "11", "15.7", "NA", "NA", "11.4", "2.3", "3.8", "17.7", "17.6", "11", "14.1", "7.8", "33.5", "30.9", "13.2", "6.4", "37.3", "13", "2", "2", "29.1", "43.1", "NA", "13.1", "3", "15.1", "2", "20.6", "2.3", "12.6", "11.2", "13.3", "NA", "2", "35.8", "1.5", "44.4", "3.5", "13.5", "7", "2.8", "27.1", "NA", "14.2", "37.6", "3", "12.2", "3", "13.3", "17", "3.3", "11.9", "15.7", "11.6", "1.5", "31.8", "4", "1.8", "NA", "2.7", "NA", "3.1", "20.9", "12.7", "4.6", "38.1", "1.1", "37.1", "3.4", "7", "0.4", "5.5", "11.9", "3.5", "5.6", "9.2", "8.6", "NA", "23.3", "7.5", "4.9", "1.5", "42.1", "8", "36.5", "NA", "15.5", "14.1", "9.2", "4.5", "7.9", "NA", "5.3", "30.1", "NA", "10", "11.4", "11.4", "6.6", "16.7", "29.3", "2.8", "7.4", "15.1", "NA", "13.5", "17.2", "3.5", "25", "6.3", "NA", "39.3", "35.2", "33.5", "16.3", "NA", "7.3", "2.6", "11.6", "5.3", "2.3", "40.8", "36.9", "36.9", "1.4", "5.1", "NA", "3.3", "0.3", "11.4", "1.8", "3.5", "NA", "8.9", "0.4", "1.8", "36.4", "19.3", "1.1", "7.5", "NA", "1", "33.5", "11.8", "9.8", "4.3", "21.1", "2.9", "4", "10.9", "NA", "25.1", "28.9"], ["9493", "9523", "9487", "9486", "9516", "9525", "9499", "9531", "9512", "9537", "9535", "9496", "9491", "9489", "9570", "9522", "9561", "9497", "9520", "9565", "9532", "9490", "9533", "9515", "9483", "9540", "9529", "9569", "9482", "9503", "9485", "9494", "9571", "9498", "9518", "9566", "9568", "9488", "9538", "9513", "9526", "9528", "9510", "9514", "9542", "9560", "9521", "9567", "9506", "9527", "9519", "9539", "9504", "9481", "9564", "9508", "9501", "9505", "9509", "9536", "9502", "9484", "9507", "9543", "9572", "9541", "9524", "9495", "9559", "9530", "9534", "9492", "9562", "9517", "9563", "9511"], ["29", "25", "26", "15", "32.9", "33.5", "43.4", "10", "19.2", "13", "12", "36.4", "17.5", "26", "20.6", "23.7", "18", "13", "25.1", "38.1", "15", "25", "29.8", "36", "23", "22", "14", "15.5", "16", "39", "17", "18", "32.4", "18.2", "12", "34.4", "17.6", "33", "30", "21", "33.8", "16.5", "18", "32", "22", "14", "17", "26", "31", "18.1", "28", "21.5", "18.6", "27", "18", "20.5", "26", "24", "14", "15.5", "37", "27.2", "11", "25", "19", "19", "19", "20.5", "9", "16", "19.2", "31.9", "18", "25", "30", "20", "29.9", "33", "15", "15.5", "30.5", "24.2", "25", "25", "16.9", "36.1", "19", "36", "15", "24", "14.5", "14", "13", "22", "26", "15.5", "25", "31", "18", "20.2", "15", "41.5", "15", "18", "25", "31.6", "29", "14", "13", "14", "37.7", "30.7", "26", "21", "17", "21", "24", "19", "25.8", "20", "27", "13", "13", "32.4", "30", "18", "21", "25.4", "29.5", "27", "23", "37", "16.5", "16", "31.8", "12", "24", "29", "28", "19", "24", "23.5", "20.3", "22.4", "36", "21.5", "18", "18", "21.5", "18.5", "11", "19", "12", "33.5", "31", "43.1", "15", "24", "34.7", "14", "23.8", "22", "27.9", "30", "40.8", "26", "19.9", "13", "15", "15.5", "20", "35", "28", "36.1", "21.6", "27", "14", "17.5", "35", "23", "28.4", "28.1", "19", "25.4", "20.8", "25", "44", "27", "33.5", "19.8", "13", "28", "19", "28", "22", "16", "21.1", "27", "26", "30", "23", "21", "14", "32", "18", "24.5", "16", "16", "18.5", "44.3", "19", "24.3", "28", "23", "14", "18.1", "28", "19.4", "16", "19", "31", "13", "35.7", "34.5", "15", "24", "16", "35.1", "37", "23", "26", "31", "17", "28", "34.2", "23.9", "26", "19", "26", "27.5", "18", "31", "17", "26.5", "27.4", "15", "23.2", "30.9", "27.2", "24", "24", "25.5", "22", "36", "14", "20", "22.3", "13", "14", "34.1", "32", "20", "30.5", "38", "13", "29", "13", "31.3", "33.7", "21", "27", "24.5", "30", "27.2", "20.6", "13", "16.5", "34", "32.7", "15", "14", "16", "13", "34", "13", "36", "36", "27", "26", "16", "21", "22", "14", "22.5", "16", "11", "20.2", "13", "32.8", "29.8", "34.1", "14", "19.2", "26", "20", "32", "17.5", "25.5", "10", "29", "20", "19.1", "11", "39.4", "29.5", "37.2", "15", "14", "17.5", "23", "27", "38", "31.5", "31.5", "18", "38", "18", "28", "15", "26.6", "26.4", "13", "14", "18.5", "32.1", "17", "17", "24", "20.5", "20.2", "30", "20.2", "16.2", "13", "13", "14", "29", "46.6", "16", "37.3", "24", "29", "23", "19.4", "17.5", "39.1", "28.8", "34.3", "20", "26.8", "13", "22", "15", "38", "22", "12", "23.9", "18", "15", "17.7", "15", "17.6", "44.6", "14", "32", "22", "16", "23", "12", "32", "18", "32.2", "29", "31", "20", "18", "26.6", "28", "25", "33"], ["6.7", "3", "4", "3.48", "4.73", "1.5", "2", "3.18", "2.5", "4.34", "2", "1.58", "3.31", "1.1", "1.5", "2.03", "5", "1.98", "2", "2.5", "3.51", "4.06", "2", "5.17", "1.25", "2.31", "2.54", "3.25", "3.5", "2.74", "1.5", "1.66", "2", "4", "2", "1", "3", "2", "2.64", "4.08", "1.96", "2.75", "2", "3", "4", "2.5", "1.8", "2.5", "3", "3", "3.41", "2.31", "3.16", "9", "3", "2.09", "2.5", "1.48", "4.19", "3.5", "2", "3", "3.4", "3.5", "3", "3.76", "5.6", "2", "3.25", "2.47", "2", "1.97", "5", "2", "5", "4.67", "2.01", "4.3", "3.14", "2.05", "3.75", "3.21", "1.5", "2", "2.18", "4", "1.47", "2", "3.48", "2.88", "2", "2.72", "3.55", "2", "1.01", "1.57", "2", "5", "3", "1.67", "2", "6.5", "3.5", "1.83", "3.92", "2.56", "5.14", "1.5", "3.23", "4", "1.44", "3.5", "2", "7.58", "2.92", "1.56", "2", "2.03", "1.5", "1.5", "4", "3.15", "2.71", "2.02", "5.2", "3.11", "2", "4", "5", "1.36", "4.29", "2", "3", "3.71", "4", "3.08", "5", "2.55", "5.16", "2.2", "1.76", "4", "5.65", "2.5", "2.5", "1.25", "3", "1.92", "3.39", "2.23", "5", "2", "3.02", "3", "2", "1", "5.15", "1.61", "3", "3.61", "1.5", "3", "3.12", "1.25", "6.5", "1", "3.07", "1.5", "2.52", "3.23", "1.63", "1.45", "2.5", "3", "5.92", "6.73", "3", "2.5", "4.2", "2.34", "2.3", "3.06", "3", "3.35", "2.75", "2.2", "3.68", "2.23", "1.71", "2.61", "2", "1", "2", "1.64", "2.24", "1.73", "3.5", "3.6", "10", "4", "2.45", "1.75", "2.6", "2", "3", "2", "5", "5.07", "3", "5", "2", "3.5", "2", "4.5", "3.48", "2", "2.24", "6", "2.01", "3", "3", "2", "4.3", "3.5", "1.32", "3", "4.08", "4", "4", "2", "3.18", "5", "3.76", "3.5", "2.5", "1.17", "1.68", "1.44", "5.85", "2.83", "4.71", "3.09", "3", "3.27"], ["2224", "2234", "2244", "2246", "2258", "2251", "2242", "2214", "2240", "2235", "2254", "2237", "2248", "2256", "2205", "2223", "2202", "2228", "2213", "2203", "2230", "2215", "2212", "2247", "2245", "2206", "2217", "2220", "2208", "2243", "2211", "2250", "2216", "2231", "2201", "2209", "2233", "2229", "2238", "2207", "2232", "2210", "2239", "2225", "2227", "2260", "2241", "2221", "2255", "2226", "2252", "2218", "2253", "2257", "2204", "2259", "2219"], ["2010", "1997", "1997", "1987", "1957", "1985", "1981", "2007", "2010", "1991", "1983", "1994", "2003", "2001", "1999", "2006", "2009", "1994", "2000", "2003", "1980", "1991", "1991", "1988", "1989", "1947", "1980", "1994", "1999", "1992", "1939", "1986", "2000", "2006", "1992", "1991", "1994", "1990", "2008", "1988", "2009", "1987", "1981", "2002", "1963", "1951", "1995", "1960", "1984", "2010", "2000", "2003", "2004", "1991", "1996", "1961", "1962", "2006", "2009", "1990", "1995", "2006", "1993", "2003", "1993", "1997", "2001", "2002", "1999", "1968", "1981", "1997", "1992", "1975", "2006", "1976", "2002", "2003", "2009", "1987", "2003", "1994", "1982", "1990", "1994", "1996", "1957", "1940", "1990", "2010", "2010", "1962", "1947", "1968", "1984", "2008", "1950", "1998", "1980", "1993", "1988", "1981", "1942", "1961", "1985", "1984", "2008", "2008", "1996", "1988", "2005", "1992", "2003", "1981", "1992", "2009", "1976", "1999", "2008", "1988", "2010", "2008", "2006", "1991", "1999", "2009", "1977", "1990", "1995", "1994", "1961", "1988", "1998", "2007", "2008", "1978", "2010", "2008", "1987", "1998", "2007", "1948", "1997", "1981", "2010", "2007", "1997", "2010", "2009", "2002", "1942", "1960", "2010", "1997", "2003", "1968", "1990", "2010", "1984", "1959", "1993", "1993", "1968", "1987", "1962", "1942", "1992", "2000", "1992", "2006", "1993", "2000", "1985", "1988", "1997", "1970", "1992", "1996", "2007", "2006", "1983", "2008", "1996", "2000", "1997", "1993", "1981", "2000", "1980", "2006", "2007", "1982", "2002", "1956", "1976", "1992", "2011", "1998", "1993", "1994", "1987", "1996", "1991", "1944", "1940", "1989", "2010", "2001", "1992", "1968", "1942", "1995", "1993", "1974", "2010", "1989", "2010", "1963", "1986", "1970", "1991", "1998", "1982", "1991", "2001", "1994", "1990", "2010", "1978", "1994", "2006", "2011", "1995", "1975", "1940", "1973", "2010", "2007", "1990", "1982", "1988", "1989", "1984", "1997", "2004", "1967", "1994", "2005", "2004", "2007", "1996", "1996", "1990", "2007", "2005", "1993", "1995", "2008", "1986", "1995", "2008", "1988", "1983", "2007", "2000", "1960", "1992", "1989", "2004", "2006", "1983", "1979", "2009", "1988", "2001", "1987", "1989", "2009", "2011", "1954", "2003", "1982", "1992", "2006", "1958", "1993", "1986", "1984", "1996", "1961", "1985", "1989", "1960", "2008", "1999", "1994", "1983", "1945", "1988", "1992", "1960", "2010", "1981", "1983", "1992", "1994", "2006", "1962", "1995", "2004", "1943", "1984", "1942", "1940", "2006", "2010", "1997", "1972", "1987", "1983", "1988", "2004", "1997", "2011", "1979", "2005", "1994", "1977", "2009", "1983", "1997", "1992", "1995", "2001", "1982", "1966", "2007", "1991", "2002", "1995", "1942", "1986", "1984", "1963", "2010", "1996", "2001", "1987", "2003", "2001", "1989", "2000", "1968", "1981", "1988", "2010", "1990", "1987", "1996", "2008", "1978", "1963", "1959", "1990", "1978", "1990", "1980", "1971", "1942", "1986", "1979", "1961", "1983", "1977", "1964", "1993", "1988", "1940", "1996", "1987", "1993", "2010", "2005", "1994", "1979", "1991", "2000", "1982", "2010", "1940", "2005", "1955", "1990", "1986", "1968", "2006", "1981", "1971", "1942", "1987", "2011", "1996", "1995", "1989", "1993", "2008", "1960", "1962", "1996", "2009", "1993", "1983", "1961", "2006", "1991", "1987", "2009", "2009", "1978", "1999", "1966", "1992", "1963", "2009", "2007", "1988", "2009", "1990", "1998", "2007", "2009", "1994", "1988", "2006", "2011", "2001", "1989", "1997", "2007", "2000", "1942", "1995", "1961", "1989", "1988", "1997", "1942", "1981", "1990", "2008", "1996", "1960", "1986", "1989", "1999", "1966", "1972", "1988", "1994", "2010", "1998", "1961", "2010", "1968", "1976", "1988", "1996", "2008", "1959", "1988", "1989", "1998", "1961", "1988", "2008", "1994", "1969", "2001", "1991", "1966", "2002", "1993", "1983", "1967", "1962", "1995", "2003", "1946", "1998", "1997", "1998", "1981", "1941", "1977", "1981", "2006", "2006", "2004", "2010", "1997"], ["0.2", "0.58", "1.17", "0.21", "0.23", "0.25", "0.34", "0.23", "0.43", "0.38", "0.32", "0.22", "0.25", "0.24", "0.27", "0.32", "0.36", "0.57", "0.27", "0.58", "0.25", "0.31", "0.47", "0.28", "0.54", "0.23", "0.26", "0.23", "0.3", "0.23", "1.36", "0.34", "1.76", "0.58", "1.16", "0.26", "0.19", "0.21", "0.33", "0.23", "0.23", "0.28", "2.3", "0.23", "0.34", "0.28", "0.9", "0.28", "1.44", "0.26", "0.37", "0.21", "0.42", "0.33", "0.24", "1.62", "0.21", "0.3", "0.25", "0.38", "1.69", "0.31", "0.93", "1.62", "0.3", "0.19", "0.24", "0.26", "1.12", "0.26", "1.23", "0.36", "0.5", "0.29", "0.75", "0.23", "1.06", "0.38", "0.27", "0.95", "0.24", "0.37", "0.41", "0.2", "0.34", "0.24", "0.33", "0.25", "0.29", "0.42", "0.17", "0.38", "0.3", "0.22", "0.42", "0.43", "0.33", "0.31", "0.38", "0.18", "0.33", "0.33", "0.42", "0.91", "0.31", "0.23", "0.27", "0.24", "0.31", "0.33", "0.31", "0.28", "0.64", "0.5", "0.23", "0.25", "0.25", "0.2", "0.33", "0.83", "0.2", "0.34", "0.35", "0.18", "0.29", "0.21", "0.31", "0.21", "0.21", "0.33", "0.22", "0.46", "0.24", "0.41", "0.35", "0.29", "0.36", "0.24", "0.25", "0.48", "0.37", "0.19", "0.44", "0.33", "0.2", "1.39", "1.4", "0.28", "0.2", "0.25", "0.47", "0.19", "0.32", "0.32", "0.39", "0.41", "0.27", "0.23", "0.17", "0.79", "0.32", "0.21", "0.32", "0.33", "0.29", "2.46", "0.36", "0.37", "1.66", "0.49", "0.4", "0.37", "0.45", "0.19", "0.92", "0.42", "0.24", "0.18", "0.39", "0.17", "0.38", "0.26", "1.41", "0.22", "0.2", "2.19", "1.21", "0.2", "0.34", "0.31", "0.3", "0.65", "0.26", "0.3", "0.25", "0.59", "0.29", "0.28", "0.58", "0.34", "0.34", "0.34", "0.39", "1.89", "0.33", "0.31", "0.43", "0.4", "0.31", "0.23", "0.25", "0.45", "0.38", "0.47", "0.28", "0.33", "0.38", "0.3", "0.26"], ["27", "72", "0", "4", "17", "1", "33", "113", "12", "7", "0", "245", "1", "6", "88", "481", "5", "43", "62", "2", "6", "1", "180", "1", "5", "3", "61", "55", "3", "89", "11", "131", "3", "4", "1", "31", "2", "182", "0", "2", "1", "36", "36", "0", "0", "55", "0", "120", "0", "62", "0", "3", "85", "214", "5", "2", "135", "2", "1", "49", "279", "14", "0", "5", "4", "4", "6", "28", "2", "8", "9", "1", "179", "0", "1", "32", "0", "1", "3", "1", "263", "3", "1", "7", "87", "87", "2", "7", "7", "1", "3", "10", "70", "5", "1", "1", "73", "30", "5", "5", "29", "1", "61", "6", "21", "13", "14", "1", "1167", "3", "26", "0", "147", "0", "4", "113", "4", "0", "1", "80", "54", "270", "1", "0", "75", "0", "8", "11", "9", "1", "0", "68", "12", "15", "3", "1", "7", "5", "60", "3", "10", "174", "7", "7", "59", "30", "3", "13", "17", "9", "73", "2", "0", "5", "4", "0", "40", "42", "60", "8", "50", "49", "2", "254", "6", "0", "10", "68", "0", "651", "40", "124", "55", "7", "79", "11", "11", "31", "5", "1", "471", "5", "3", "64", "13", "111", "55", "80", "2", "59", "3", "5", "107", "0", "43", "0", "10", "14", "366", "3", "161", "179", "2", "0", "105", "85", "3", "4", "258", "11"], ["0.61", "0.89", "0.62", "0.52", "0.75", "0.72", "0.28", "0.54", "0.66", "0.73", "0.74", "0.61", "nd", "0.83", "nd", "0.74", "0.71", "0.24", "0.74", "0.65", "0.61", "0.60", "0.65", "0.59", "nd", "0.60", "0.46", "0.64", "0.60", "0.35", "nd", "nd", "0.78", "0.80", "0.81", "0.71", "0.63", "0.69", "0.53", "0.64", "0.67", "0.40", "0.52", "0.56", "0.48", "0.81", "0.57", "0.58", "0.41", "0.56", "0.71", "0.72", "0.64", "0.66", "0.70", "0.58", "0.70", "0.67", "0.68", "0.79", "0.51", "0.42", "0.72", "0.61", "0.94", "0.71", "0.54", "nd", "nd", "0.71", "0.80", "0.60", "0.70", "0.59", "0.78", "nd", "0.53", "0.59", "0.58", "0.61", "0.62", "0.74", "0.58", "0.80", "0.74", "0.68", "nd", "0.64", "0.62", "0.53", "0.70", "0.49", "0.64", "0.27", "0.68", "0.67", "0.68", "0.67", "0.67", "0.71", "0.65", "0.61", "0.72", "nd", "0.71", "0.56", "0.64", "nd", "0.66", "0.76", "0.69", "nd", "0.52", "0.71", "0.50", "0.75", "0.65", "0.71", "nd", "nd", "0.60", "0.70", "0.59", "0.71", "0.74", "0.53", "0.64", "0.66", "0.71", "0.70", "0.02", "0.62", "0.31", "nd", "0.72", "0.50", "0.79", "0.66", "0.84", "0.47", "0.56", "0.66", "0.62", "0.54", "0.54", "0.50", "0.65", "0.48", "0.75", "nd", "0.60", "0.65", "0.64", "nd", "0.69", "0.71", "0.66", "0.73", "0.66", "0.64", "0.62", "0.70", "0.67", "0.52", "0.68", "0.51", "0.84", "0.53", "0.62", "nd", "0.86", "0.54", "0.44", "nd", "0.49", "0.90", "0.48", "0.64", "0.61", "0.63", "nd", "0.53", "0.53", "0.34", "0.71", "nd", "0.68", "0.70", "0.65", "0.45", "nd", "0.68", "0.52", "0.68", "0.56", "0.69", "0.67", "0.69", "0.58", "0.59", "0.65", "0.71", "0.59", "0.66", "0.70", "0.57", "0.51", "0.56", "0.58", "0.64", "0.70", "0.62", "0.66", "0.55", "0.68", "0.63", "0.65", "nd", "0.62", "0.61", "0.55", "0.54", "nd", "0.70", "0.70", "0.52", "0.77", "0.67", "0.71", "0.40", "0.55", "0.34", "0.73", "0.63", "0.64", "0.69", "0.64", "0.69", "0.56", "0.39", "nd", "0.67", "0.63", "0.49", "0.56", "0.79", "0.66"], ["10.4", "5.9", "6.1", "7.4", "12.1", "10.5", "9.9", "6.1", "9.6", "12.3", "8.5", "10.4", "14.9", "10.2", "8.1", "5.8", "6.4", "10.4", "8.2", "8.0", "4.9", "2.8", "17.8", "4.1", "12.5", "5.9", "9.0", "1980", "19.5", "14.0", "3.3", "1.1", "9.5", ".", "13.5", "10.5", "5.8", "14.7", "6.7", "7.0", "3.7", "6.4", "5.4", "3.3", "10.9", "12.3", "2.9", "11.6", "3.3"], ["81", "1829", "46", "41", "370", "48", "420", "44", "353", "47", "45", "55", "358", "1787", "64", "351", "46", "44", "61", "972", "1", "353", "356", "34", "44", "372", "357", "34", "852", "358", "32", "39", "358", "41", "370", "30", "32", "46", "52", "503", "34", "31", "1", "43", "371", "421", "43", "61", "40", "52", "852", "27", "51", "359", "44", "372", "48", "1", "32", "352", "973", "33", "1"], ["0.45", "0.42", "0.43", "0.23", "0.36", "0.27", "0.43", "0.29", "0.41", "0.43", "0.34", "0.39", "0.49", "0.37", "0.41", "0.63", "0.35", "0.49", "0.42", "0.44", "0.42", "0.29", "0.7", "0.37", "0.51", "0.34", "0.32", "0.29", "0.25", "0.31", "0.32", "0.51", "0.3", "0.41", "0.35", "0.57", "0.26", "0.34", "0.39", "0.54", "0.38", "0.4", "0.35", "0.45", "0.5", "0.35", "0.49", "0.59", "0.15", "0.32", "0.52", "0.6", "0.45", "0.43", "0.41", "0.47", "0.38", "0.32", "0.48", "0.37", "0.31", "0.61", "0.47", "0.37", "0.41", "0.51", "0.49", "0.57", "0.4", "0.44", "0.38", "0.37", "0.52", "0.24", "0.25", "0.53", "0.41", "0.44", "0.47", "0.37", "0.46", "0.38", "0.44", "0.55", "0.45", "0.51", "0.57", "0.43", "0.43", "0.38", "0.39", "0.4", "0.39", "0.54", "0.4", "0.33", "0.35", "0.29", "0.52", "0.34", "0.3", "0.48", "0.46", "0.44", "0.32", "0.45", "0.39", "0.52", "0.51", "0.49", "0.35", "0.45", "0.45", "0.48", "0.47", "0.37", "0.29", "0.35", "0.37", "0.45", "0.35", "0.43", "0.48", "0.48", "0.42", "0.49", "0.5", "0.41", "0.46", "0.21", "0.44", "0.19", "0.39", "0.41", "0.4", "0.49", "0.52", "0.4", "0.32", "0.35", "0.45", "0.33", "0.5", "0.46", "0.31", "0.53", "0.5", "0.46", "0.46", "0.31", "0.41", "0.39", "0.37", "0.46", "0.3", "0.47", "0.34", "0.61", "0.28", "0.39", "0.51", "0.41", "0.42", "0.4", "0.36", "0.49", "0.28", "0.3", "0.63", "0.32", "0.24", "0.46", "0.56", "0.34", "0.49", "0.45", "0.5", "0.38", "0.28", "0.44", "0.64", "0.26", "0.31", "0.38", "0.2", "0.41", "0.46", "0.44", "0.47", "0.46", "0.44", "0.32", "0.45", "0.42", "0.49", "0.5", "0.34", "0.42", "0.68", "0.34", "0.56", "0.36", "0.45", "0.35", "0.4", "0.37", "0.25", "0.33", "0.52", "0.4", "0.51", "0.48", "0.47", "0.44", "0.46", "0.25", "0.19", "0.52", "0.32"], ["26.7", "26.1", "28.8", "26.6", "27.3", ".", "28.4", "30.0", "27.7", "24.5", "28.3", "25.1", "29.4", "30.4", "25.1", "27.7", "29.0", "25.2", "28.5", "24.3", "28.7", "29.2", ".", "30.6", "24.5", "29.1", "28.1", "2013", "28.9", "29.9", "26.7", "29.4", "25.8", "24.2", "28.5", "24.1", "26.7", ".", "25.7", "29.0", "28.6", "27.4", "26.5", "26.4", "28.0", "28.4", "30.4", "28.5", "28.8"], ["6610", "5306", "5365", "5310", "9905", "6610", "5305", "1680", "3120", "5310", "5306", "6220", "5310", "5826", "5120", "2925", "1680", "5330", "5365", "5305", "9999", "1680", "5365", "9905", "5340", "6610", "5310", "5306", "1680", "5360", "6240", "5940", "5305", "2995", "6150", "1560", "1680", "5305", "5365", "1680", "5305", "5999", "6610", "1560", "1680", "5310", "1680", "2995", "1680", "5330", "5306", "1680", "6610", "1560", "5940", "1680", "5306", "5305", "7610", "1680", "2895", "3120", "5305", "6610", "8040", "3120", "5950", "5330", "5310", "6610", "2925", "2995", "5305", "5305", "5305", "5306", "5310", "1680", "5310", "5305", "5965", "9905", "1680", "5305", "2620", "5310", "5307", "5306", "6150", "5310", "5365", "3120", "1680", "5305", "5310", "7510", "5315", "3120", "3120", "5360", "5315", "5310", "1680", "5365", "2995", "5940", "5331", "2540", "7510", "1680", "1680", "5365", "1680", "5310", "1680", "3590", "6730", "5995", "1560", "5940", "6610", "9999", "5365", "5365", "6145", "5365", "5930", "5365", "1680", "2995", "5985", "5365", "1680", "5310", "5310", "5961", "9905", "2995", "3120", "5365", "5306", "5310", "5930", "5310", "1680", "2995", "5306", "5895", "6610", "5306", "1680", "1680", "5365", "5940", "5365", "5310", "3120", "5985", "6610", "5930", "2995", "1560", "6610", "5306", "2925", "5930", "1680", "5365", "5305", "2945", "7510", "5330", "5340", "5325", "1680", "4820", "5365", "5306", "5305", "5935", "5305", "5995", "1680", "3120", "5940", "1560", "2995", "5365", "6220", "5365", "5310", "5331", "1680", "1680", "1680", "5360", "9999", "5340", "1680", "1680", "5305", "5365", "5120", "6605", "5306", "5365", "5306", "5985", "5306", "2995", "5310", "5306", "5310", "6605", "2620", "6910", "5310", "5340", "5306", "5310", "1680", "5310", "5305", "5306", "2995", "5315", "1680", "5306", "9995", "6605", "5305", "9905", "5310", "5355", "1680", "2995", "5306", "1560", "5310", "5365", "5315", "4720", "3615", "5330", "1680", "2995", "5306", "1630", "5305", "5306", "1680", "5305", "1630", "1680", "6240", "5305", "5130", "6610", "5365", "5330", "1680", "5306", "5340", "3120", "1680", "1680", "5826", "5930", "1560", "5306", "2995", "5305", "6910", "5365", "6910", "2895", "5930", "5120", "5365", "1680", "5310", "2995", "5305", "7510", "2995", "5310", "6220", "5330", "8345", "5306", "5310", "7435", "5305", "1640", "6220", "2995", "5340", "6220", "5340", "6110", "1680", "2590", "6910", "5305", "6610", "3030", "5306", "5310", "5310", "5310", "1680", "5310", "6220", "5310", "9999", "6220", "5306", "5310", "5306", "6250", "5305", "5360", "5940", "2995", "5306", "2995", "5925", "1680", "1560", "5306", "5310", "5920", "5365", "1680", "1680", "7510", "6220", "5310", "1560", "5935", "5305", "5306", "5310", "2540", "1680", "6610", "5365", "6220", "2915", "5306", "5305", "2620", "5930", "5950", "5330", "5360", "5940", "1680", "5306", "5310", "7510", "3120", "5310", "6240", "7420", "5340", "3120", "5365", "5306", "5306", "3120", "5306", "9905", "1620", "1680", "5306", "1650", "1680", "5310", "4720", "5315", "5830", "5310", "5310", "1630", "5365", "2995", "7690", "5305", "1630", "9995", "1680", "5306", "1630", "5331", "5305", "5310", "5310", "5310", "5330", "5306", "6910", "5305", "5310", "1680", "5120", "1680", "5305", "1680", "5306", "5985", "1630", "1680", "6610", "5306", "9905", "5360", "5365", "5930", "5306", "5306", "5365", "1630", "5331", "5310", "5995", "1680", "9905", "1680", "5310", "5310", "2945", "2995", "2995", "1680", "5306", "5310", "9999", "2915", "6610", "5365", "1680", "5310", "5310", "5340", "1680", "2995", "5365", "5310", "5330", "5306", "5305", "5330", "1680", "6610", "5365", "5325", "5306", "5310", "5985", "1680", "9510", "1680", "5930", "5310", "1680", "2925", "7690", "2995", "5306", "6680", "7420", "3120", "5355", "9905", "1680", "6110", "1680", "5305", "5305", "5365", "6605", "1680", "1680", "5360", "5360", "1615", "2925", "5365", "5930", "5340", "5306", "1680", "1560", "1680", "5805", "1630", "6730", "5310", "5365"], ["1.53", "1.72", "1.79", "1.72", "1.83", "1.86", "1.62", "1.76", "1.94", "1.78", "1.89", "1.77", "1.65", "1.70", "1.65", "1.88", "1.63", "1.74", "1.83", "1.58", "1.54", "1.58", "1.70", "1.77", "1.69", "1.70", "1.95", "1.82", "1.82", ".", "1.82", "1.85", "1.86", "2050", "1.84", "1.77", "1.75", "1.96", "1.74", "1.93", "1.76", "1.73", "1.65", "1.83", "1.87", "1.62", "1.54", "1.75", "1.92"], ["71.1", "70", "69.6", "71.6", "71.3", "69.8", "71", "71", "69.6", "70.2", "69.8", "70.2", "69.8", "71", "69.8", "70.7", "70.3", "70.6", "71.1", "71.7", "70.4", "70.9", "69.9", "70.8", "70.7", "69.2", "70.6", "69.7", "69.9", "70.6", "69.8", "69.6", "70.5", "72.4", "70.8", "71", "70.3", "70.9", "70.6", "70.4", "70.4", "69.6", "69.6", "71.1", "70.3", "70.7", "69.3", "69.6", "70.2", "69.7", "69.9", "71.7", "70.1", "69.6", "71", "70", "69.9", "68.5", "70.3", "71.2", "72.8", "68.7", "69.4", "70.4", "70.5", "69.1", "69.1", "70.5", "70.8", "70.4", "70.8", "71.2", "70.1", "71.4", "71", "70", "70.2", "68.8", "70.8", "70.4", "70.4", "70.5", "70.8", "69.7", "70.6", "71.3", "71.3", "70.3", "70.7", "71.2", "70.1", "71", "71.6", "70.3", "71", "70.4", "69.7", "70", "69.8", "70.1", "70.3", "70.4", "70.4", "70.8", "70", "70.4", "69.8", "69.6", "70.4", "70.5", "69.4", "71.3", "69.8", "69.2", "69.6", "69.1", "71", "70.1", "70.7", "70.7", "70.6", "70.9", "71.7", "71.1", "71.5", "69.8", "69.8", "70.1", "71.1", "69.4", "70.1", "70.5", "69.9", "70.1", "71.7", "71", "71.7", "69.8", "71", "70.5", "69.4", "72.9", "69.7", "69.8", "70.8", "71.1"], ["16.6", "13.8", "9.7", "7.4", "4.6", "14.9", "14.9", "12", "9.2", "8", "7.4", "6.3", "8.6", "2.3", "11.5", "11.5", "11.5", "9.2", "10.3", "8.6", "16.6", "6.9", "10.3", "5.1", "14.9", "6.9", "9.2", "8", "12.6", "7.4", "11.5", "10.9", "12", "10.3", "11.5", "9.7", "14.3", "12.6", "6.3", "8", "10.9", "7.4", "13.8", "6.3", "4.1", "6.9", "9.7", "6.9", "10.3", "8", "12", "10.9", "10.9", "9.7", "14.9", "6.3", "10.3", "2.8", "20.7", "11.5", "6.3", "10.3", "8.6", "8", "10.9", "14.9", "4", "14.3", "9.2", "5.7", "10.3", "14.9", "8.6", "6.9", "8", "6.3", "16.1", "5.1", "13.8", "14.3", "8.6", "10.3", "10.3", "10.3", "8.6", "11.5", "10.9", "6.3", "6.9", "6.3", "11.5", "14.3", "1.7", "10.3", "8.6", "8", "9.7", "18.4", "9.2", "6.9", "3.4", "9.7", "7.4", "6.9", "4.6", "5.7", "11.5", "13.2", "7.4", "6.9", "13.8", "9.7", "13.2", "11.5", "11.5", "15.5", "10.9", "14.9", "8", "7.4", "16.6", "14.9", "9.2", "9.7", "7.4", "4.6", "10.9", "14.3", "11.5", "8", "7.4", "14.3", "12", "9.7", "15.5", "9.7", "8", "12.6", "5.1", "8.6", "4.6", "7.4", "9.7", "9.2", "5.7", "8", "13.8", "20.1", "9.2", "11.5", "15.5", "11.5", "11.5"], ["0.07", "0.03", "0.64", "0.04", "0.56", "0.64", "0.61", "0.38", "0.02", "0.17", "0.59", "0.00", "0.65", "0.02", "0.55", "0.50", "0.61", "0.22", "0.61", "0.63", "0.01", "0.60", "0.01", "0.60", "0.34", "0.02", "0.00", "0.61", "0.10", "0.51", "0.00", "0.62", "0.01", "0.00", "0.60", "0.50", "0.64", "0.02", "0.63", "0.56", "0.60", "0.00", "0.01", "0.42", "0.66", "0.00", "0.04", "0.61", "0.04", "0.00", "0.28", "0.04", "0.00", "0.30", "0.01", "0.62", "0.00", "0.14", "0.00", "0.65", "0.05"], ["0.81", "0.71", "0.62", "0.75", "0.00", "0.69", "0.80", "0.02", "0.12", "0.80", "0.01", "0.81", "0.00", "0.00", "0.21", "0.04", "0.02", "0.77", "0.83", "0.80", "0.85", "0.00", "0.03", "0.00", "0.83", "0.83", "0.00", "0.02", "0.79", "0.00", "0.84", "0.52", "0.82", "0.82", "0.04", "0.86", "0.84", "0.04", "0.82", "0.02", "0.04", "0.75", "0.01", "0.00", "0.41", "0.00", "0.00", "0.01", "0.05", "0.36", "0.00", "0.81", "0.28", "0.06", "0.71", "0.81", "0.00", "0.83", "0.81", "0.18", "0.47"], ["0.59", "0.02", "0.00", "0.62", "0.03", "0.48", "0.41", "0.61", "0.63", "0.01", "0.20", "0.01", "0.00", "0.59", "0.04", "0.59", "0.00", "0.63", "0.00", "0.60", "0.32", "0.60", "0.04", "0.63", "0.26", "0.54", "0.01", "0.00", "0.00", "0.00", "0.03", "0.60", "0.58", "0.55", "0.00", "0.00", "0.55", "0.13", "0.01", "0.03", "0.57", "0.60", "0.62", "0.48", "0.00", "0.29", "0.05", "0.08", "0.64", "0.00", "0.00", "0.01", "0.59", "0.64", "0.00", "0.36", "0.01", "0.63", "0.59", "0.16", "0.49"], ["9564", "9484", "9516", "9484", "9560", "9568", "9571", "9563", "9484", "9484", "9562", "9562", "9484", "9539", "9539", "9565", "9562", "9484", "9560", "9503", "9571", "9539", "9503", "9561", "9511", "9539", "9569", "9568", "9484", "9562", "9568", "9569", "9513", "9539", "9568", "9539", "9571", "9539", "9562", "9486", "9489", "9484", "9562", "9569", "9562", "9569", "9539", "9484", "9562", "9515", "9562", "9489", "9508", "9569", "9569", "9513", "9505", "9484", "9515", "9484", "9568", "9562", "9571", "9571", "9503", "9562", "9571", "9568", "9569", "9562", "9563", "9562", "9562", "9484", "9562", "9509", "9560", "9489", "9562", "9524", "9515", "9562", "9572", "9563", "9494", "9562", "9569", "9568", "9562", "9562", "9568", "9563", "9484", "9563", "9560", "9484", "9562", "9562", "9571", "9564", "9535", "9539", "9569", "9569", "9570", "9484", "9563", "9563", "9539", "9484", "9484", "9562", "9569", "9484", "9484", "9539", "9562", "9563", "9560", "9484", "9562", "9569", "9484", "9568", "9562", "9568", "9562", "9568", "9484", "9486", "9503", "9571", "9562", "9484", "9484", "9539", "9505", "9499", "9561", "9565", "9568", "9562", "9539", "9568", "9513", "9484", "9539", "9569", "9539", "9562", "9571", "9571", "9506", "9539", "9560", "9571", "9508", "9505", "9563", "9563", "9539", "9562", "9515", "9486", "9562", "9539", "9568", "9563", "9535", "9562", "9562", "9539", "9562", "9503", "9562", "9569", "9568", "9565", "9562", "9562", "9568", "9489", "9568", "9515", "9503", "9484", "9539", "9569", "9562", "9571", "9484", "9572", "9571", "9539", "9562", "9509", "9563", "9484", "9565", "9484", "9539", "9484", "9539", "9508", "9505", "9491", "9508", "9563", "9562", "9489", "9493", "9539", "9572", "9489", "9484", "9562", "9492", "9569", "9562", "9539", "9484", "9562", "9562", "9562", "9569", "9568", "9505", "9505", "9516", "9563", "9560", "9563", "9493", "9563", "9562", "9484", "9571", "9560", "9562", "9562", "9484", "9568", "9562", "9568", "9539", "9562", "9562", "9569", "9539", "9505", "9568", "9569", "9564", "9484", "9562", "9484", "9571", "9563", "9569", "9523", "9508", "9535", "9560", "9571", "9562", "9562", "9562", "9484", "9562", "9565", "9489", "9562", "9539", "9484", "9562", "9562", "9539", "9539", "9484", "9489", "9562", "9571", "9562", "9560", "9569", "9511", "9539", "9563", "9562", "9568", "9503", "9484", "9484", "9491", "9539", "9568", "9570", "9568", "9568", "9484", "9569", "9563", "9503", "9562", "9562", "9539", "9562", "9562", "9569", "9571", "9562", "9562", "9508", "9484", "9569", "9568", "9571", "9565", "9508", "9539", "9571", "9562", "9563", "9503", "9539", "9562", "9563", "9529", "9503", "9535", "9511", "9564", "9562", "9568", "9484", "9565", "9565", "9565", "9564", "9535", "9562", "9568", "9562", "9562", "9562", "9484", "9514", "9571", "9484", "9527", "9484", "9491", "9570", "9562", "9515", "9563", "9570", "9571", "9484", "9562", "9562", "9568", "9571", "9562", "9562", "9516", "9513", "9569", "9563", "9560", "9569", "9484", "9568", "9484", "9562", "9539", "9486", "9560", "9568", "9503", "9513", "9503", "9562", "9562", "9562", "9493", "9539", "9562", "9506", "9568", "9484", "9563", "9572", "9489", "9565", "9523", "9571", "9568", "9508", "9562", "9539", "9539", "9489", "9569", "9562", "9484", "9562", "9508", "9562", "9568", "9569", "9539", "9572", "9565", "9562", "9564", "9562", "9569", "9484", "9484", "9527", "9562", "9484", "9491", "9511", "9568", "9491", "9569", "9562", "9506", "9484", "9562", "9571", "9562", "9506", "9493", "9564", "9539", "9493", "9562", "9560", "9569", "9568", "9562", "9571", "9503", "9539", "9539", "9484", "9562", "9562", "9563", "9562", "9505", "9568", "9562", "9570", "9505", "9563", "9571", "9565", "9539", "9570", "9486", "9491", "9562", "9514", "9562", "9562", "9539", "9562", "9562", "9539", "9572", "9484", "9515", "9493", "9562", "9569", "9569", "9562", "9562", "9562", "9563", "9484", "9560", "9489", "9571", "9524", "9568", "9494", "9513", "9568", "9562", "9484", "9572", "9570", "9571", "9563", "9570"], ["0.08", "0.07", "0.1", "0.12", "0.08", "0.28", "0.05", "0.06", "0.05", "0.07", "0.17", "0.07", "0.07", "0.15", "0.11", "0.14", "0.06", "0.13", "0.18", "0.08", "0.11", "0.04", "0.07", "0.23", "0.07", "0.07", "0.07", "0.25", "0.1", "0.08", "0.09", "0.14", "0.14", "0.06", "0.06", "0.2", "0.07", "0.07", "0.08", "0.08", "0.15", "0.08", "0.17", "0.06", "0.08", "0.08", "0.07", "0.18", "0.14", "0.12", "0.09", "0.07", "0.08", "0.07", "0.06", "0.11", "0.07", "0.05", "0.19", "0.06", "0.05", "0.07", "0.19", "0.08", "0.06", "0.21", "0.04", "0.12", "0.06", "0.18", "0.18", "0.06", "0.18", "0.07", "0.19", "0.06", "0.05", "0.07", "0.36", "0.08", "0.05", "0.09", "0.08", "0.07", "0.25", "0.08", "0.08", "0.09", "0.07", "0.16", "0.06", "0.07", "0.1", "0.17", "0.17", "0.1", "0.06", "0.07", "0.08", "0.09", "0.07", "0.07", "0.1", "0.15", "0.07", "0.07", "0.09", "0.05", "0.08", "0.17", "0.08", "0.2", "0.18", "0.08", "0.12", "0.2", "0.19", "0.08", "0.09", "0.36", "0.14", "0.24", "0.07", "0.07", "0.12", "0.06", "0.17", "0.07", "0.06", "0.12", "0.14", "0.16", "0.08", "0.16", "0.18", "0.13", "0.69", "0.11", "0.07", "0.16", "0.06", "0.06", "0.16", "0.11", "0.08", "0.07", "0.15", "0.08", "0.07", "0.06", "0.09", "0.07", "0.13", "0.09", "0.07", "0.17", "0.05", "0.17", "0.11", "0.06", "0.09", "0.18", "0.16", "0.15", "0.16", "0.09", "0.06", "0.16", "0.07", "0.05", "0.08", "0.05", "0.11", "0.14", "0.08", "0.06", "0.19", "0.08", "0.07", "0.06", "0.07", "0.13", "0.08", "0.28", "0.17", "0.06", "0.1", "0.13", "0.08", "0.11", "0.07", "0.09", "0.13", "0.06", "0.07", "0.07", "0.06", "0.17", "0.12", "0.09", "0.19", "0.08", "0.07", "0.28", "0.18", "0.27", "0.07", "0.13", "0.07", "0.08", "0.25", "0.09", "0.09", "0.09", "0.19", "0.06", "0.05", "0.09", "0.07"], ["8", "21", "8", "19", "17", "8", "19", "18", "12.8", "8", "8", "16", "14", "13", "12", "14.4", "17", "6", "16.2", "16", "7", "13", "8", "14.3", "9", "6", "6", "8", "6", "12", "5", "7", "9", "8", "10", "7", "7", "5", "15"], ["1.60", "1.95", "1.85", "1.71", "1.86", ".", "2.17", ".", "2.93", ".", "1.54", ".", "1.46", ".", "1.97", ".", ".", "2.34", ".", "1.53", "1.70", "1.67", "2.21", ".", ".", "1.93", "2.29", ".", "1.17", "1.26", ".", "1.93", ".", ".", "1.67", "2013", "1.15", "2.12", "1.81", ".", ".", "1.68", "1.67", "1.49", ".", ".", "1.80", "1.81", "."], ["2012", "2015", "2014", "2014", "2014", "2016", "2014", "2014", "2015", "2011", "2015", "2013", "2012", "2009", "2012", "2015", "2014", "2014", "2011", "2015", "2013", "2016", "2014", "2013", "2010", "2012", "2014", "2015", "2015", "2013", "2014", "2014", "2012", "2010", "2014", "2015", "2015", "2010", "2016", "2013", "2012", "2014", "2014", "2015", "2013", "2015", "2014", "2014", "2013", "2011", "2016", "2014", "2014", "2015", "2014", "2014", "2013", "2013", "2015", "2013", "2016", "2014", "2015", "2015", "2014", "2014", "2010", "2016", "2012", "2016", "2014", "2011", "2016", "2014", "2013", "2015", "2010", "2016", "2013", "2012", "2014", "2016", "2015", "2014", "2012", "2015", "2015", "2013", "2010", "2014", "2015", "2015", "2015", "2015", "2015", "2013", "2014", "2012", "2010", "2015", "2016", "2012", "2015", "2014", "2014", "2012", "2015", "2014", "2013", "2016", "2013", "2016", "2012", "2014", "2014", "2013", "2012", "2015", "2015", "2013", "2014", "2008", "2013", "2010", "2015", "2012", "2015", "2014", "2014", "2014", "2015", "2016", "2013", "2015", "2014", "2015", "2016", "2016", "2015", "2015", "2016", "2015", "2015", "2014", "2013", "2016", "2015", "2015", "2015", "2014", "2011", "2016", "2013", "2013", "2016", "2011", "2015", "2015", "2015", "2015", "2014", "2015", "2011", "2011", "2016", "2013", "2013", "2014", "2014", "2014", "2011", "2015", "2015", "2013", "2013", "2014", "2014", "2011", "2014", "2015", "2015", "2013", "2014", "2014", "2013", "2012", "2014", "2013", "2013", "2012", "2010", "2015", "2014", "2014", "2014", "2015", "2013", "2015", "2015", "2012", "2015", "2013", "2015", "2014", "2014", "2014", "2014", "2014", "2011", "2014", "2015", "2013", "2013", "2014", "2014", "2013", "2014", "2014", "2013", "2014", "2014", "2015", "2013", "2015", "2013", "2016", "2014", "2013", "2015", "2015", "2013", "2014", "2012", "2013", "2015", "2012", "2014", "2014", "2013", "2011", "2014", "2014", "2015", "2014", "2015", "2013", "2013", "2015", "2015", "2014", "2014", "2014", "2013", "2014", "2014", "2011", "2014", "2015", "2014", "2012", "2012", "2016", "2015", "2014", "2015", "2015", "2014", "2008", "2014", "2013", "2013", "2014", "2014", "2015", "2015", "2014", "2013", "2013", "2014", "2015", "2013", "2014", "2013", "2014", "2014", "2013", "2014", "2015", "2015", "2011", "2014", "2014", "2013", "2014", "2013", "2014", "2014", "2013", "2014", "2016", "2015", "2016", "2015", "2014", "2014", "2014", "2015", "2014", "2012", "2014", "2014", "2013", "2013", "2016", "2011", "2009", "2014"], ["6.2", "5.2", "5.2", "4.1", "7.2", "5.2", "5.2", "4.1", "5.2", "11.4", "4.1", "4.1", "5.2", "6.2", "4.1", "4.1", "4.1", "5.2", "3", "6.2", "5.2", "6.2", "4.1", "4.1", "5.2", "5.2", "5.2", "5.2", "5.2", "6.2", "4.1", "4.1", "5.2", "5.2", "5.2", "5.2", "5.2", "4.1", "5.2", "5.2", "5.2", "4.1", "4.1", "4.1", "5.2", "5.2", "6.2", "5.2", "5.2", "4.1", "6.2", "6.2", "4.1", "5.2", "5.2", "5.2", "6.2"], ["-", "-", "-", "6.45", "6.45", "-", "-", "6.45", "-", "-", "6.4", "-", "6.45", "-", "6.45", "-", "-", "6.45", "-", "-", "6.45", "6.45", "-", "-", "6.45", "-", "-", "6.45", "6.54", "-", "-", "-", "6.45", "6.45", "6.45", "-", "6.45", "6.45", "-", "-", "-", "-", "-", "-", "-", "6.47", "6.53", "6.45", "-", "-", "6.5", "6.45", "6.45", "6.45", "-", "-", "6.45", "-", "6.65", "6.45", "-", "-", "6.45", "-", "-", "-", "-", "6.45", "6.45", "-", "-", "-", "-", "-", "-", "-", "-", "6.45", "6.82", "6.45", "6.45", "6.23", "-", "-", "6.45", "-", "-", "-", "-", "-", "6.49", "6.45", "6.45", "-", "-", "6.45", "-", "-", "-", "6.45", "-", "6.68", "6.45", "6.45", "-", "6.45", "-", "-", "-", "-", "6.89", "-", "-", "-", "-", "-", "-", "-", "6.45", "-", "-", "6.45", "-", "-", "6.45", "-", "-", "-", "-", "-", "-", "6.5", "-", "6.54", "6.45", "-", "-", "-", "6.45", "6.45", "-", "-", "-", "6.45", "6.87", "-", "-", "-", "6.45", "6.45", "-", "-", "-", "-", "-", "-", "-", "-", "-", "6.45", "6.45", "3.75", "-", "-", "6.45", "6.5", "-", "-", "6.54", "6.45", "6.51", "-", "-", "6.45", "-", "6.51", "6.45", "6.45", "6.5", "6.45", "6.45", "-", "-", "6.45", "-", "-", "6.45", "6.45", "6.45", "6.49", "6.55", "-", "-", "6.45", "-", "6.45", "-", "-", "-", "6.45", "6.45", "6.75", "6.54", "-", "6.5", "6.45", "-", "6.45", "-", "6.45", "6.54", "6.45", "-", "-", "6.45", "-", "-", "-", "-", "-", "6.5", "-", "-", "6.45", "-", "-", "6.45", "-", "-", "-", "6.45", "-", "-", "6.45", "-", "-", "-", "-", "6.45", "-", "-", "-", "6.5", "-", "6.45", "-", "-", "6.4", "-", "6.45", "6.45", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "6.45", "-", "6.51", "-", "-", "-", "-", "-", "-", "-", "-", "6.45", "6.45", "-", "-", "-", "-", "-", "6.45", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "6.45", "-", "-", "-", "6.45", "-", "-", "-", "6.56", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "6.45", "6.81", "-", "-", "-", "6.45", "6.45", "6.54", "6.45", "-", "-", "-", "6.45", "-", "6.45", "-", "-", "6.45", "-", "-", "-", "-"], ["5.0", "1.0", "1.0", "1.0", "1.0", "1.0", "1.0", "1.0", "1.8", "1.0", "1.0", "1.0", "1.0", "1.0", "1.0", "1.5", "1.8", "2.0", "1.0", "1.0", "1.0", "1.0", "1.0", "1.0", "1.0", "6.0", "1.0", "1.0", "1.0", "4.0", "1.0", "3.0", "1.5", "1.0", "5.0", "6.0", "1.0", "1.8", "1.0", "1.0", "1.0", "1.0", "1.0", "1.0", "1.0", "5.0", "1.0", "1.0", "1.0", "1.0", "1.0", "1.0", "1.0", "1.0", "1.0", "1.0", "1.0", "1.0", "1.0", "1.0", "1.0", "1.0", "1.0", "1.8", "2.0", "1.0", "2.0", "1.0", "12.0", "1.0", "1.0", "2.0", "1.0", "1.0", "1.0", "1.5", "4.0", "1.0", "1.0", "1.0", "1.0", "1.0", "1.0", "1.0", "1.0", "1.0", "1.0", "1.0", "1.4", "1.0", "1.0", "1.0", "2.0", "1.0", "1.0", "1.4", "1.0", "4.0", "3.6", "1.0", "1.0", "1.0", "1.0", "1.0", "1.0", "1.0", "1.0", "1.0", "1.0", "1.0", "1.0", "1.0", "1.0", "1.0", "1.0", "1.0", "1.0", "1.0", "1.0", "1.0", "40.0", "1.0", "1.0", "1.0", "1.0", "1.0", "1.0", "1.0", "2.0", "1.0", "1.0", "1.0", "2.0", "5.0", "1.0", "1.0", "1.0", "5.0", "10.0", "1.0", "5.0", "1.0", "1.0", "1.0", "1.0", "3.0", "2.0", "1.0", "1.0", "1.0", "3.0", "1.0", "1.0", "1.0", "2.0", "1.0", "1.0", "1.0", "1.0", "1.0", "1.0", "1.0", "4.0", "1.0", "3.0", "2.0", "1.0", "1.0", "1.0", "5.0", "1.0", "1.0", "10.0", "1.0", "2.0", "1.0", "1.0", "1.0", "1.0", "6.0", "1.0", "4.0", "1.0", "4.0", "2.0", "4.0", "1.0", "1.0", "1.0", "1.0", "1.0", "1.0", "1.0", "1.0", "1.0", "1.0", "1.0", "2.0", "2.5", "1.0", "1.0", "1.0", "1.0", "1.0", "1.0", "1.0", "1.0", "2.0", "1.0", "2.9", "4.0", "1.0", "1.0", "2.0", "1.0", "6.0", "1.0", "1.0", "1.0", "1.0", "1.0", "1.0", "1.0", "1.0", "1.0", "1.0", "2.0", "1.0", "1.0", "1.0", "1.0", "1.0", "5.0", "1.0", "1.0", "1.0", "2.0", "1.0", "2.0", "1.0", "1.0", "5.0", "1.0", "5.0", "5.0", "6.0", "1.0"], ["2014", "2013", "2014", "2014", "2013", "2013", "2014", "2014", "2014", "2014", "2014", "2014", "2013", "2014", "2013", "2014", "2013", "2013", "2013", "2014", "2013", "2014", "2013", "2013", "2014", "2014", "2014", "2014", "2013", "2013", "2014", "2014", "2013", "2013", "2014", "2013", "2014", "2014", "2014", "2013", "2014", "2013", "2014", "2014", "2014", "2014", "2013", "2014", "2013", "2014", "2014", "2014", "2013", "2014", "2014", "2014", "2013", "2013", "2013", "2013", "2014", "2013", "2014", "2014", "2013", "2013", "2013", "2013", "2013", "2013", "2013", "2013", "2014", "2014", "2013", "2014", "2014", "2013", "2014", "2013", "2013", "2013", "2013", "2013", "2013", "2013", "2013", "2014", "2013", "2013", "2013", "2014", "2013", "2013", "2014", "2014", "2013", "2013", "2013", "2014", "2014", "2013", "2014", "2013", "2014", "2013", "2013", "2013", "2013", "2014", "2013", "2013", "2014", "2013", "2014", "2013", "2013", "2013", "2014", "2014", "2013", "2014", "2014", "2013", "2014", "2014", "2013", "2013", "2014", "2013", "2014", "2014", "2013", "2013", "2013", "2014", "2013", "2013", "2013", "2013", "2014", "2013", "2013", "2014", "2013", "2013", "2013", "2013", "2014", "2014", "2013", "2013", "2013", "2014", "2013", "2014", "2014", "2014", "2014", "2014", "2013", "2013", "2014", "2014", "2014", "2013", "2014", "2013", "2014", "2013", "2013", "2013", "2013", "2014", "2014", "2013", "2014", "2013", "2013", "2014", "2014", "2013", "2014", "2014", "2013", "2013", "2013", "2013", "2013", "2013", "2014", "2013", "2014", "2014", "2013", "2013", "2014", "2013", "2014", "2013", "2013", "2014", "2014", "2014", "2014", "2013", "2014", "2014", "2014", "2014", "2013", "2013", "2014", "2013", "2014", "2014", "2014", "2014", "2013", "2013", "2014", "2013", "2013", "2013", "2014", "2013", "2013", "2013", "2013", "2014", "2013", "2013", "2013", "2013", "2014", "2014", "2014", "2014", "2013", "2014", "2014", "2013", "2014", "2014", "2013", "2014", "2013", "2014", "2014", "2014", "2013", "2013", "2013", "2014", "2013", "2013", "2013", "2014", "2013", "2014", "2014", "2013", "2013", "2014", "2013", "2013", "2014", "2014", "2013", "2014", "2014", "2014", "2013", "2014", "2013", "2013", "2014", "2014", "2014", "2013", "2014", "2013", "2014", "2013", "2013", "2013", "2013", "2013", "2013", "2014", "2013", "2013", "2013", "2013", "2013", "2013", "2014", "2013", "2013", "2014", "2013", "2013", "2013", "2014", "2013", "2013", "2014", "2013", "2014", "2013", "2014", "2013", "2013", "2013", "2014", "2014", "2014", "2014", "2014", "2014", "2014", "2014", "2014", "2013", "2013", "2014", "2014", "2013", "2013", "2014", "2014", "2014", "2013", "2013", "2013", "2013", "2013", "2013", "2014", "2014", "2014", "2014", "2013", "2013", "2013", "2013", "2014", "2013", "2014", "2014", "2014", "2014", "2014", "2014", "2014", "2014", "2013", "2014", "2014", "2013", "2013", "2014", "2013", "2013", "2014", "2014", "2013", "2014", "2013", "2014", "2013", "2014", "2014", "2014", "2013", "2014", "2013", "2013", "2014", "2014", "2014", "2014", "2014", "2013", "2014", "2013", "2013", "2013", "2013", "2013", "2014", "2014", "2013", "2013", "2014", "2013", "2014", "2014", "2014", "2014", "2013", "2013", "2013", "2013", "2013", "2014", "2013", "2014", "2014", "2013", "2013", "2013", "2014", "2014", "2013", "2013", "2014", "2014", "2014", "2013", "2014", "2013", "2013", "2013", "2014", "2013", "2013", "2013", "2014", "2013", "2014", "2013", "2014", "2014", "2013", "2013", "2013", "2013", "2014", "2013", "2014", "2014", "2013", "2014", "2014", "2013", "2013", "2014", "2013", "2013", "2013", "2013", "2013", "2013", "2013", "2013", "2013", "2014", "2014", "2014", "2014", "2014", "2013", "2013", "2014", "2014", "2013", "2013", "2013", "2014", "2014", "2013", "2013", "2013", "2014", "2013", "2014", "2014", "2013", "2013", "2013", "2013", "2013", "2013", "2014", "2014", "2013", "2014", "2013", "2013", "2014", "2014", "2014", "2013", "2014", "2014", "2014", "2013", "2014", "2013"], ["BERM", "BERM", "EURO", "BERM", "BERM", "EURO", "BERM", "EURO", "BERM", "EURO", "BERM", "EURO", "BERM", "BERM", "BERM", "BERM", "BERM", "BERM", "BERM", "BERM", "BERM", "BERM", "BERM", "EURO", "BERM", "EURO", "BERM", "EURO", "EURO", "EURO", "EURO", "BERM", "EURO", "BERM", "BERM", "BERM", "BERM", "BERM", "EURO", "EURO", "BERM", "BERM", "BERM", "BERM", "BERM", "EURO", "BERM", "BERM", "EURO", "BERM", "BERM", "BERM", "EURO", "BERM", "BERM", "BERM", "BERM", "BERM", "BERM", "EURO", "EURO", "BERM", "BERM", "BERM", "BERM", "EURO", "EURO", "BERM", "EURO", "EURO", "EURO", "BERM", "BERM", "BERM", "EURO", "BERM", "EURO", "EURO", "EURO", "EURO", "BERM", "EURO", "BERM", "BERM", "BERM", "BERM", "EURO", "BERM", "BERM", "EURO", "BERM", "EURO", "BERM", "BERM", "BERM", "EURO", "EURO", "BERM", "BERM", "EURO", "BERM", "EURO", "EURO", "EURO", "BERM", "BERM", "EURO", "EURO", "BERM", "BERM", "BERM", "BERM", "BERM", "BERM", "BERM", "EURO", "BERM", "BERM", "EURO", "BERM", "EURO", "BERM", "BERM", "BERM", "BERM", "BERM", "EURO", "EURO", "BERM", "BERM", "EURO", "BERM", "BERM", "EURO", "BERM", "BERM", "EURO", "BERM", "BERM", "BERM", "EURO", "EURO", "BERM", "EURO", "BERM", "EURO", "BERM", "BERM", "BERM", "BERM", "BERM", "EURO", "BERM", "EURO", "EURO", "BERM", "BERM", "BERM", "BERM", "BERM", "BERM", "EURO", "EURO", "BERM", "EURO", "BERM", "EURO", "BERM", "EURO", "EURO", "BERM", "EURO", "BERM", "BERM", "BERM", "BERM", "EURO", "EURO", "EURO", "BERM", "BERM", "EURO", "BERM", "BERM", "BERM", "BERM", "EURO", "BERM", "EURO", "BERM", "EURO", "BERM", "EURO", "BERM", "EURO", "EURO", "EURO", "EURO", "EURO", "EURO", "BERM", "BERM", "BERM", "BERM", "BERM", "BERM", "BERM", "EURO", "BERM", "EURO", "BERM", "BERM", "BERM", "BERM", "EURO", "BERM", "BERM", "EURO", "BERM", "EURO", "BERM", "BERM", "BERM", "BERM", "BERM", "EURO", "BERM", "EURO", "EURO", "BERM", "BERM", "EURO", "BERM", "BERM", "BERM", "BERM", "EURO", "BERM", "EURO", "EURO", "BERM", "BERM", "BERM", "BERM", "BERM", "BERM", "EURO", "BERM", "BERM", "AMER", "EURO", "BERM", "BERM", "EURO", "BERM", "EURO", "BERM", "EURO", "BERM", "EURO", "BERM", "EURO", "BERM", "BERM", "BERM", "EURO", "EURO", "BERM", "BERM", "BERM", "BERM", "BERM", "BERM", "BERM", "BERM", "BERM", "EURO", "EURO", "BERM", "BERM", "BERM", "EURO", "EURO", "BERM", "EURO", "BERM", "BERM", "BERM", "BERM", "BERM", "BERM", "EURO", "EURO", "BERM", "EURO", "BERM", "EURO", "BERM", "BERM", "EURO", "EURO", "BERM", "BERM", "BERM", "BERM", "BERM", "BERM", "BERM", "EURO", "EURO", "EURO", "BERM", "BERM", "BERM", "BERM", "BERM", "BERM", "BERM", "EURO", "BERM", "EURO", "EURO", "BERM", "BERM", "EURO", "AMER", "EURO", "BERM", "EURO", "EURO", "BERM", "BERM", "EURO", "BERM", "BERM", "EURO", "BERM", "BERM", "EURO", "EURO", "EURO", "BERM", "BERM", "BERM", "BERM", "EURO", "EURO", "EURO", "BERM", "EURO", "EURO", "BERM", "BERM", "BERM", "BERM", "EURO", "BERM", "EURO", "EURO", "BERM", "EURO", "BERM", "BERM", "EURO", "BERM", "BERM", "EURO", "EURO", "BERM", "EURO", "BERM", "EURO", "BERM", "EURO", "AMER", "EURO", "BERM", "EURO", "BERM", "BERM", "BERM", "BERM", "BERM", "BERM", "BERM", "EURO", "EURO", "EURO", "BERM", "BERM", "BERM", "EURO", "EURO", "EURO", "BERM", "EURO", "EURO", "BERM", "BERM", "BERM", "BERM", "BERM", "BERM", "BERM", "EURO", "BERM", "BERM", "EURO", "BERM", "EURO", "EURO", "BERM", "EURO", "EURO", "EURO", "EURO", "EURO", "EURO", "EURO", "BERM", "BERM", "BERM", "EURO", "BERM", "BERM", "EURO", "BERM", "BERM", "BERM", "BERM", "BERM", "BERM", "BERM", "EURO", "BERM", "BERM", "EURO", "EURO", "BERM", "BERM", "BERM", "EURO", "EURO", "BERM", "BERM", "BERM", "BERM", "BERM", "BERM", "BERM", "EURO", "BERM", "BERM", "BERM", "BERM", "EURO", "BERM", "BERM", "BERM", "BERM", "BERM", "BERM", "BERM", "EURO", "BERM", "BERM", "BERM", "BERM", "BERM", "EURO", "EURO", "BERM", "BERM", "BERM", "BERM", "EURO", "BERM", "BERM", "BERM", "BERM", "EURO", "BERM", "EURO", "BERM", "BERM", "EURO", "EURO", "BERM", "BERM", "BERM", "BERM", "EURO", "BERM", "BERM", "EURO", "EURO", "BERM", "BERM", "BERM", "EURO"], ["BERM", "BERM", "EURO", "EURO", "BERM", "BERM", "EURO", "BERM", "BERM", "BERM", "EURO", "BERM", "BERM", "BERM", "BERM", "BERM", "BERM", "BERM", "EURO", "BERM", "BERM", "BERM", "EURO", "BERM", "BERM", "BERM", "BERM", "BERM", "EURO", "BERM", "EURO", "BERM", "BERM", "EURO", "BERM", "BERM", "EURO", "EURO", "BERM", "BERM", "EURO", "EURO", "EURO", "BERM", "EURO", "EURO", "BERM", "EURO", "EURO", "BERM", "BERM", "EURO", "EURO", "BERM", "BERM", "BERM", "EURO", "BERM", "BERM", "BERM", "BERM", "BERM", "EURO", "EURO", "EURO", "BERM", "BERM", "BERM", "BERM", "EURO", "BERM", "BERM", "BERM", "EURO", "BERM", "BERM", "BERM", "BERM", "BERM", "BERM", "EURO", "BERM", "EURO", "EURO", "BERM", "EURO", "BERM", "EURO", "BERM", "EURO", "BERM", "BERM", "BERM", "BERM", "BERM"], ["13.8", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "8.2", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "4.5", "25.3", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "8.2", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "25.3", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "8.2", "NA", "NA", "NA", "NA", "13.8", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "4.5", "NA", "13.8", "8.2", "NA", "NA", "NA", "NA", "NA", "8.2", "NA", "8.2", "2", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "13.8", "NA", "25.3", "NA", "NA", "NA", "25.3", "NA", "NA", "25.3", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "8.2", "NA", "NA", "8.2", "NA", "NA", "NA", "8.2", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "8.2", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "8.2", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "4.5", "8.2", "8.2", "13.8", "25.3", "NA", "NA", "NA", "NA", "NA", "13.8", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "4.5", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "13.8", "13.8", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "2", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "2", "NA", "NA", "NA", "NA", "30.6", "NA", "NA", "NA", "NA", "NA", "2", "NA", "NA", "NA", "13.8", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "8.2", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "8.2", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "2", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "2", "25.3", "NA", "25.3", "NA", "NA", "NA", "NA", "NA", "NA", "2", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "25.3", "NA", "NA", "8.2", "NA", "NA", "NA", "13.8", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "13.8", "NA", "NA", "NA", "NA", "NA", "8.2", "NA", "NA", "NA", "22", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "30.6", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "8.2", "4.5", "13.8", "NA", "NA", "NA", "NA", "8.2", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "4.5", "NA", "NA", "NA", "8.2", "NA", "25.3", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "8.2", "NA", "NA"], ["3113", "5824", "3465", "3377", "9319", "6181", "8452", "3619", "7179", "2241", "3885", "8299", "5766", "10511", "1985", "6360", "670", "1572", "2943", "4068", "7496", "6002", "7466", "9575", "4322", "10369", "2684", "1025", "6685", "9559", "163", "11508", "8532", "111", "8892", "8157", "3097", "516", "474", "5103", "6366", "11752", "926", "138", "8758", "6473", "8371", "1543", "6542", "1629", "5941", "9340", "7426", "7573", "8958", "2630", "2044", "1976", "7242", "3128", "9933", "4428", "8618", "2152", "9268", "9342", "10754", "3771", "8792", "2889", "11299", "7065", "1292", "6501", "9660", "4331", "3248", "11439", "4239", "4628", "6645", "5020", "2322", "10290", "4175", "6888", "4132", "9654", "9828", "8965", "7721", "9785", "7638", "10537", "4150", "11688", "6710", "10210", "8696", "3598", "10371", "550", "11231", "6389", "8191", "3043", "7092", "6210", "5524", "6121", "9273", "4717", "11519", "5675", "11987", "1201", "2568", "9883", "9756", "11124", "5701", "1879", "3247", "9366", "6114", "11633", "10056", "8620", "311", "7220", "5437", "10253", "8643", "9083", "8478", "11460", "10871", "8132", "6611", "2822", "6840", "11484", "9458", "10671", "6326", "11939", "2667", "8509", "6158", "4457", "11554", "1857", "6376", "6783", "8588", "5852", "5662", "5263", "8051", "7341", "5467", "4658", "4571", "6538", "9047", "10473", "2729", "1418", "10903", "10607", "10765", "5272", "364", "8462", "6091", "11997", "9207", "580", "2775", "9344", "5617", "10980", "1920", "3934", "7488", "6439", "997", "6290", "370", "4506", "1865", "11381", "1581", "7952", "2231", "1246", "7320", "6999", "6297", "2212", "11069", "258", "10870", "3500", "662", "8663", "4869", "476", "6497", "11453", "6018", "7883", "9968", "6852", "6617", "3160", "10084", "7923", "10240", "5810", "1388", "7187", "2029", "179", "939", "3818", "112", "8613", "2010", "6208", "352", "9245", "11351", "7880", "8246", "4005", "11222", "7303", "1827", "10853", "4185", "11807", "2516", "10020", "9690", "11738", "1816", "5774", "5999", "2386", "9576", "7758", "5597", "432", "10447", "6638", "2880", "8847", "11716", "2989", "11657", "7984", "10812", "10017", "10654", "11674", "10443", "7490", "4815", "8660", "4498", "1734", "608", "11258", "8283", "5343", "8576", "5892", "4534", "10930", "7531", "339", "368", "11911", "1895", "11463", "6163", "4684", "717", "2550", "11875", "8895", "3348", "3854", "6203", "8320", "5751", "7375", "5335", "9771", "10123", "225", "8056", "248", "11433", "1967", "4116", "6866", "1207", "4112", "6355", "11757", "7911", "637", "409", "11454", "3052", "7457", "667", "10546", "10386", "4792", "11737", "2267", "8076", "1661", "11604", "3481", "7927", "1192", "11010", "6073", "1022", "6635", "594", "4725", "2898", "9475", "2237", "2470", "11923", "9926", "3868", "11966", "396", "8589", "8652", "7757", "1221", "5697", "10634", "7360", "10541", "3916", "514", "6644", "5556", "7492", "5138", "11574", "711", "4411", "6697", "11068", "1278", "11537", "9631", "4066", "1695", "11245", "11860", "7797", "1447", "7071", "3533", "11710", "5521", "2939", "1088", "8876", "5165", "2089", "7971", "1105", "10840", "632", "9746", "1611", "10612", "6605", "7773", "2564", "7279", "3797", "6331", "10153", "321", "306", "7332", "2752", "10244", "7540", "244", "2844", "1178", "989", "4129", "10723", "560", "1992", "2014", "6784", "3689", "10366", "1523", "6739", "10695", "4478", "6978", "8518", "5601", "11839", "5193", "11788", "2551", "7635", "8525", "3138", "4136", "3010", "7079", "399", "2476", "10947", "5117", "8778", "1755", "1744", "6340", "5347", "4026", "10019", "11578", "342", "5267", "11464", "3941", "9031", "1918", "7222", "2888", "10610", "6688", "11915", "10879", "7577", "5994", "6387", "6749", "7107", "8369", "3026", "5017", "9882", "6220", "9768", "7705", "5092", "5996", "3072", "8300", "10838", "9909", "4210", "7908", "11324", "7275", "8450", "3812", "11226", "5964", "2142", "2209", "11826", "7636", "2271", "8536", "8391", "126", "8038", "8561", "4278", "9408", "8096", "11474", "9201", "1452", "3208", "11628", "10335"], ["85255", "10802", "30901", "32763", "66112", "33614", "35058", "97845", "53715", "39345", "35957", "66211", "71301", "42064", "45177", "99574", "97754", "59011", "78028", "88401", "98624", "95521", "12801", "29801", "47978", "48060", "35582", "66935", "62274", "94954", "71052", "81657", "53538", "41653", "70748", "83605", "08360", "76104", "58072", "25661", "35233", "24801", "45428", "49913", "38851", "14810", "78758", "52052", "98201", "30401", "58368", "40359", "96161", "04011", "36323", "19464", "99301", "27577", "24219", "11772", "76086", "30033", "19046", "97383", "97477", "72632", "64067", "55902", "00910", "54923", "62565", "68822", "23413", "66967", "31021", "55746", "86426", "59501", "66861", "77598", "96104", "63110", "70816", "40202", "55902", "30535", "39328", "73601", "32539", "47834", "08690", "75504", "33428", "80220", "35021", "59937", "85724", "96813", "78945", "85602", "74361", "57028", "47006", "60608", "84341", "97720", "30533", "95355", "75088", "07065", "71483", "13820", "49935", "92705", "67068", "50662", "30132", "78336", "19001", "28092", "20707", "68114", "30673", "15701", "69210", "47201", "95661", "67861", "04619", "60504", "93240", "47240", "79512", "78801", "99210", "80751", "93710", "55009", "43920", "50158", "89503", "82801", "15301", "03909", "83686", "83404", "28646", "48235", "39653", "12901", "19107", "87901", "37211", "75951", "80033", "39069", "13045", "25550", "28601", "60435", "42539", "77054", "02494", "57533", "13815", "37074", "97420", "62930", "55337", "80027", "79501", "87505", "82501", "56013", "59601", "72503", "49085", "68701", "59425", "87420", "71295", "85006", "70586", "70070", "56085", "04330", "29512", "67572", "53143", "54311", "62656", "40503", "64014", "29414", "06511", "48755", "80218", "15963", "28462", "61747", "19401", "81501", "69001", "04609", "28078", "90706", "66839", "73015", "19102", "00613", "23901", "84759", "38671", "65613", "68359", "63044", "92882", "95966", "00921", "76132", "89148", "80517", "52591", "95688", "27893", "35609", "98022", "92118", "21921", "95370", "07018", "33609", "10003", "55041", "20186", "29379", "95204", "11235", "64057", "33563", "32177", "98586", "19963", "54241", "78701", "75563", "68788", "68920", "37879", "68450", "39120", "28540", "55369", "39193", "56671", "04743", "77479", "94010", "83706", "70806", "73550", "25601", "98133", "83213", "59711", "59427", "92868", "33881", "97411", "37317", "33414", "60612", "75034", "40336", "52641", "47150", "34202", "50659", "44820", "90026", "30912", "44119", "45239", "18105", "30281", "21201", "38119", "59749", "67058", "93930", "17105", "98499", "00733", "95608", "36608", "29464", "10029", "82443", "63017", "34285", "37404", "75686", "23320", "56359", "83440", "54904", "05701", "68506", "98902", "67880", "79007", "29577", "30501", "61270", "55720", "63090", "30308", "54552", "60657", "65616", "77479", "95630", "73858", "28110", "15224", "07834", "57601", "54701", "89109", "07461", "68333", "27704", "75701", "23116", "56728", "39759", "46256", "18431", "36925", "37167", "84720", "60123", "99603", "55101", "19104", "78704", "02138", "15317", "33701", "07042", "07652", "25401", "70548", "74056", "10550", "67220", "89451", "15537", "92120", "33407", "13669", "73523", "30434", "87109", "55102", "32605", "49455", "44501", "18104", "97030", "46250", "99508", "37166", "51555", "19603", "96706", "94520", "94040", "60202", "54773", "70121", "70433", "60406", "30058", "80461", "50461", "24060", "52761", "12208", "48801", "06117", "19958", "51201", "82240", "37203", "41097", "25309", "79553", "36420", "11777", "78611", "64850", "12078", "46601", "28150", "43054", "46158", "52537", "36604", "67467", "37772", "39090", "29150", "62454", "70508", "73554", "64085", "60901", "74525", "58784", "79902", "46060", "52060", "75237", "31539", "27534", "17837", "83101", "48135", "25801", "57078", "23666", "97367", "75032", "93637", "36442", "95361", "75551", "90036", "69336", "77521", "39216", "32204", "46545", "91402", "07444", "33484", "00725", "35209", "81082", "10037", "87701", "36340", "79567", "29102", "83301", "44310", "75093", "95382", "21204", "36608", "47025", "39404", "49417", "57066", "22205", "16601", "19107", "33146", "59901", "50702", "61032", "53142", "84790", "08046", "47421", "06050", "68787", "48658", "12983", "60194", "59301", "74432", "92691", "93301", "06076", "72205", "23502", "17042", "07207", "62864", "79316", "74960", "16602", "33440", "93514", "67665", "57702", "36116", "63131"], ["56573", "97148", "74401", "29801", "60605", "98837", "71351", "29210", "19088", "30901", "27612", "90248", "61101", "90706", "33050", "44115", "48858", "30303", "98119", "76039", "70501", "71457", "39120", "77581", "6103", "66413", "39201", "60505", "58203", "75248", "82003", "97204", "30309", "20005", "93304", "84058", "75202", "84530", "53718", "42301", "95959", "58802", "32810", "95815", "37919", "33301", "65802", "42431", "90017", "95202", "47374", "10013", "33912", "80302", "48150", "33487", "49503", "30309", "98110", "60104", "18701", "32066", "6757", "5401", "30501", "35802", "36092", "93301", "93607", "92503", "77026", "15044", "36330", "60411", "63101", "10004", "28801", "39364", "32064", "63108", "35203", "30303", "79414", "92801", "30328", "89109", "15222", "62960", "60106", "21201", "77471", "29360", "18949", "33436", "44307", "75202", "10016", "65401", "30286", "33012", "15122", "11101", "95204", "32601", "7927", "63141", "30071", "80221", "37921", "33025", "30901", "52650", "35802", "60148", "6810", "50322", "95977", "75212", "39440", "48331", "2360", "67002", "53207", "92262", "98109", "54701", "78202", "17538", "33401", "60506", "42041", "96722", "90603", "94612", "49509", "83350", "97626", "94592", "17101", "85233", "32312", "50309", "76637", "78744", "49093", "8753", "44304", "53045", "30308", "58501", "53188", "94118", "61315", "83702", "7112", "66743", "37403", "72450", "79401", "20027", "15203", "64658", "76102", "20705", "15931", "44111", "61771", "80903", "92032", "30329", "60191", "76301", "34236", "33401", "40202", "17552", "55427", "70806", "85701", "46202", "85032", "82003", "89501", "59601", "60457", "33179", "89101", "77901", "36107", "98161", "53188", "21117", "39648", "61701", "70112", "85710", "29464", "98671", "46323", "74119", "95401", "66510", "14621", "22973", "78418", "72201", "44125", "10541", "84058", "74119", "33401", "19108", "49503", "26462", "95113", "67575", "75088", "92714", "44307", "75751", "33025", "16803", "58203", "63435", "55379", "85701", "38110", "90670", "58368", "58571", "64093", "14202", "71701", "65806", "15010", "11717", "77515", "16801", "46953", "99504", "90405", "64726", "44305", "37207", "2401", "48075", "14608", "72201", "40223", "83311", "21045", "29615", "71101", "94539", "85034", "61032", "89014", "58621", "33566", "30093", "47374", "44646", "97401", "99686", "77032", "23502", "19406", "77002", "59261", "30901", "98119", "10016", "44907", "93003", "60631", "76063", "48607", "63801", "78476", "21076", "37403", "17116", "45710", "94107", "84307", "37829", "46256", "95202", "53225", "7728", "8901", "15012", "85233", "2914", "91505", "73546", "92704", "48226", "79701", "39530", "23061", "27101", "20031", "90040", "77701", "62901", "92103", "60527", "48420", "92121", "56029", "19145", "60653", "46902", "98101", "24592", "75644", "27252", "75041", "84119", "48219", "32256", "67519", "56673", "21061", "38852", "11731", "57321", "22070", "60466", "21221", "56283", "43215", "73162", "40828", "61021", "74119", "38134", "97223", "77487", "80107", "44857", "77351", "96734", "66032", "43081", "98040", "61602", "26003", "4101", "33901", "33060", "18503", "92501", "33487", "10011", "48335", "98109", "76028", "28025", "6902", "70723", "30080", "19382", "13612", "44308", "88001", "60300", "49855", "25301", "52101", "64833", "30523", "27601", "19123", "90017", "92103", "16509", "2141", "10016", "11542", "22070", "30071", "67138", "15017", "28209", "21045", "78209", "78501", "77063", "60601", "85034", "59401", "46625", "61101", "59417", "29407", "40069", "20014", "45402", "78747", "60106", "96819", "10007", "64075", "53705", "30741", "28139", "94086", "2141", "94568", "33963", "27703", "32216", "73102", "7728", "95113", "11714", "84307", "64767", "33830", "32810", "75234", "94108", "63043", "35222", "48302", "75115", "30303", "78704", "91505", "80112", "53005", "2038", "2132", "60457", "69032", "49503", "92335", "23235", "72211", "47137", "84321", "33602", "39301", "16803", "18640", "95432", "97044", "23603", "37057", "63011", "91941", "93401", "48706", "53066", "95817", "67074", "16701", "50309", "33607", "22448", "10007", "29403", "47591", "7087", "45820", "71101", "94010", "72002", "37210", "48611", "59635", "72301", "1752", "40299", "21770", "46214", "45249", "24012", "15683", "15212", "98501", "40202", "95826", "39401", "46225", "14604", "44125", "60408", "49503", "52338", "93458", "12601", "76943", "2110", "48302", "48034", "60605", "21045"], ["-0.22", "4.14", "0.74", "...", "0.37", "-1.38", "-0.33", "0.09", "1.03", "1.26", "10.65", "-0.56", "0.37", "0.64", "0.15", "-0.04", "-0.08", "0.82", "1.05", "1.16", "1.26", "-0.26", "-0.20", "-0.28", "-0.82", "-0.57", "0.67", "-0.23", "1.39", "-2.65", "-1.00", "0.63", "-0.12", "-0.12", "0.35", "0.11", "0.23", "-1.32", "-0.15", "-0.50", "-0.37", "0.30", "...", "...", "-1.08", "-1.15", "0.38", "-1.45", "0.29", "-0.42", "-2.52", "-1.08", "0.30", "1.56", "-0.16", "2.12", "0.91", "1.03", "-0.14", "0.09", "-0.59", "-0.52", "2.30", "-0.56", "-0.13", "-1.72", "0.49", "0.88", "-0.26", "-0.07", "...", "-0.24", "0.27", "-0.59", "-1.14", "0.04", "-1.63", "0.93", "-0.75", "-1.43", "-1.20", "0.09", "-0.56", "1.50", "0.36", "-0.68", "-0.16", "0.64", "1.00", "0.52", "-0.37", "0.40", "-0.53", "-2.45", "-1.41", "0.50", "-1.66", "-0.89", "-1.06", "-0.53", "-0.43", "-2.35", "-0.92", "-0.03", "-0.53", "0.16", "-1.11", "-0.12", "-0.80", "1.61", "0.23", "-0.91", "0.62", "-0.64", "-0.91", "0.26", "-0.25", "0.46", "0.17", "-0.21", "0.88", "-2.40", "0.35", "2.18", "3.73", "...", "-0.96", "0.54", "-1.10", "-0.31", "-0.12", "0.24", "0.25", "-0.53", "0.40", "-1.23", "...", "-1.33", "1.62", "-0.74", "-0.14", "-0.77", "-0.65", "-0.82", "-0.92", "1.08", "-0.46", "-1.23", "-0.78", "2.60", "-0.59", "-0.68", "1.22", "0.73", "...", "0.70", "...", "1.19", "-0.03", "-1.39", "0.07", "1.62", "1.40", "-0.17", "-0.03", "-0.38", "1.64", "-0.57", "0.09", "0.67", "-0.03", "0.33", "-1.01", "-1.49", "2.94", "-0.92", "-0.13", "0.22", "-0.86", "-2.22", "0.48", "0.21", "-0.18", "-2.76", "...", "0.82", "0.48", "0.64", "3.01", "0.65", "0.18", "-1.39", "0.29", "-0.16", "0.29", "-0.85", "-6.00", "-0.35", "-0.56", "-0.65", "-0.17", "-0.03", "-0.47", "-0.95", "1.28", "0.61", "0.16", "-2.36", "2.31", "-0.17", "-1.11", "-0.49", "...", "-0.37", "0.46", "-1.59", "0.26", "0.50", "-0.25", "3.79", "-1.50", "0.71", "0.37", "4.96", "0.09", "-1.03", "-5.08", "-2.64", "-0.29", "2.03", "...", "-0.56", "0.24", "0.23", "2.07", "2.75", "-0.17", "-0.14", "-0.51", "0.13", "-0.32", "5.32", "-1.69", "0.45", "3.23", "0.23", "-0.27", "...", "-3.45", "-2.12", "-1.12", "-0.53", "-0.72", "0.34", "0.51", "-3.08", "-1.94", "1.16", "-0.08", "0.19", "1.13", "0.86", "0.87", "-4.63", "-0.19", "0.44", "1.30", "-0.03", "-1.07", "-0.33", "1.69", "1.10", "0.50", "2.86", "0.14", "2.36", "11.58", "0.46", "0.82", "...", "-0.45", "-1.74", "-2.13", "0.01", "-0.13", "-0.71", "-4.53", "1.23", "0.10", "-0.43", "-1.09", "0.59", "0.47", "0.23", "...", "-0.19", "-0.90", "1.01", "-0.78", "-0.49", "-2.05", "-0.79", "-0.97", "0.47", "0.19", "-0.13", "-0.96", "...", "0.10", "-0.52", "-2.17", "1.03", "-1.42", "-2.27", "1.98", "-0.02", "-0.46", "0.16", "-1.88", "-0.50", "...", "-2.95", "-0.33", "-1.02", "-0.44", "1.90", "-0.34", "-1.72", "...", "-0.06", "1.05", "-0.60", "-0.14", "-5.26", "...", "0.58", "...", "3.25", "0.34", "0.57", "0.58", "-0.42", "1.75", "-0.09", "-0.29", "0.34", "1.10", "0.58", "0.48", "-0.28", "-0.83", "0.64", "-0.73", "0.86", "0.02", "-0.23", "-6.22", "-1.32", "-1.96", "-1.15", "0.61", "1.51", "-0.25", "0.36", "2.01", "-0.42", "-3.18", "-0.86", "-0.43", "0.28", "-0.29", "0.55", "-0.25", "-0.73", "0.43", "-0.63", "3.90", "2.04", "0.02", "0.53", "-0.95", "1.35", "0.03", "1.89", "0.62", "0.18", "0.56", "0.85", "0.53", "...", "0.58", "0.93", "0.14", "-0.84", "2.11", "2.88", "-0.20", "0.64", "-1.33", "-0.67", "1.32", "-0.33", "-0.56", "0.16", "0.47", "0.50", "1.44", "1.64", "1.39", "-1.14", "0.27", "0.90", "-1.48", "-2.71", "-0.54", "-0.08", "-3.49", "0.78", "-2.27", "0.30", "-0.64", "0.06", "-0.22", "0.30", "1.29", "-2.22", "0.39", "0.85", "-0.62", "0.40", "2.27", "-0.22", "-0.30", "2.65", "-0.90", "0.71", "0.30", "-0.47", "1.47", "0.78", "0.40", "0.15", "1.07", "0.31", "-0.26", "-0.15", "2.72", "-1.71", "3.46", "-0.70", "-3.13", "-0.58", "2.72", "-0.16", "-1.08", "-1.14", "2.10", "3.02", "0.11", "1.30", "-0.52", "-1.01", "-0.09", "0.01", "2.45", "-0.12", "0.59", "0.98", "0.47", "0.66", "0.41", "2.92", "0.18", "0.25", "-2.00", "1.53", "-0.20", "-2.90", "...", "3.31", "-0.14", "-0.21", "...", "0.20", "-4.74", "2.02", "-0.46", "-0.09", "-0.66", "0.02", "3.88", "-1.03", "...", "-0.52", "1.66", "-0.61", "-1.06", "-0.54", "-0.17", "1.13"], ["13", "26.88", "32.68", "11.24", "17.89", "16.21", "7.25", "24.55", "18.29", "15.77", "16.82", "17.81", "20.23", "13.42", "12.02", "17.47", "13.42", "28.15", "15.98", "10.59", "9.68", "16.49", "10.63", "15.04", "15.38", "23.17", "12.69", "24.59", "13.94", "10.33", "48.27", "25.29", "10.34", "22.12", "18.71", "13.81", "15.98", "16.04", "24.71", "19.44", "45.35", "23.95", "16.43", "28.55", "22.82", "14.78", "20.45", "30.4", "14.48", "23.33", "25.21", "13.39", "12.48", "17.31", "11.38", "5.75", "18.15", "11.69", "8.52", "21.01", "41.19", "15.69", "32.83", "34.65", "30.06", "24.52", "17.92", "22.49", "26.86", "14.07", "16.97", "16.4", "34.83", "12.6", "11.61", "10.65", "18.43", "12.66", "38.73", "10.77", "17.29", "16.27", "14", "15.53", "16.47", "13.28", "8.77", "21.58", "9.6", "10.07", "12.03", "21.7", "17.46", "18.64", "27.2", "27.18", "35.83", "17.51", "23.68", "11.87", "40.17", "25.71", "23.1", "16.31", "30.14", "26.41", "32.4", "13.27", "25", "16.58", "22.42", "10.33", "20.92", "13.16", "12.16", "29.03", "18.29", "34.63", "7.25", "20.29", "8.51", "7.74", "22.75", "7.56", "31.85", "43.11", "20.49", "7.51", "14.26", "20.08", "22.76", "29.8", "28.97", "44.3", "19.08", "21.16", "11.02", "17.26", "3.07", "9.55", "12.26", "13.81", "15.42", "21.01", "39.42", "16.45", "20.9", "31.71", "18.26", "17.92", "26.59", "20.53", "20.27", "29.85", "15.01", "12.54", "16.32", "16.99", "13", "19.65", "27.05", "20.65", "15.36", "12.43", "28.17", "29.93", "18.69", "34.81", "18.78", "15.06", "9.78", "25.28", "13.13", "48.17", "18.24", "24.08", "30.46", "32.9", "11.17", "15.95", "10.34", "15.69", "9.94", "8.35", "10.07", "17.78", "14.31", "16.29", "19.82", "17.82", "22.23", "10.27", "20.29", "8.58", "20.69", "28.44", "11.59", "13.42", "31.27", "19.81", "15.48", "13.03", "13.37", "48.33", "17.59", "16.93", "50.81", "16", "12.46", "20.76", "38.07", "27.28", "24.06", "21.5", "25.89", "17.07", "18.35", "14.52", "10.29", "13.51", "38.01", "12.76", "22.67", "24.01", "40.55", "20.69", "12.74", "14.15", "10.51", "18.04", "14.73", "19.77", "35.26", "16.66", "19.49", "15.81", "12.9", "18.28", "10.09", "11.35", "14.83", "34.3", "24.27", "25.56"], ["3.19", "3.245", "3.377", "2.795", "3.67", "3.683", "2.836", "3.074", "3.438", "2.81", "3.155", "3.212", "3.484", "3.042", "3.769", "3.786", "3.114", "2.641", "2.85", "3.785", "3.693", "3.312", "2.763", "3.991", "3.69", "2.687", "2.717", "2.695", "3.026", "2.879", "3.801", "3.379", "2.821", "3.135", "2.975", "3.769", "3.155", "2.719", "3.962", "3.065", "3.81", "3.091", "2.974", "2.936", "2.715", "3.396", "3.472", "3.737", "2.847", "2.804", "3.15", "2.994", "3.485", "2.941", "3.333", "3.258", "3.566", "2.776", "2.81", "2.716", "2.675", "2.849", "3.328", "3.466", "3.333", "3.93", "3.772", "3.377", "3.07", "2.648", "3.434", "3.268", "3.857", "2.821", "3.687", "3.403", "3.552", "3.806", "2.693", "3.199", "3.465", "3.054", "3.113", "3.298", "3.755", "3.755", "3.232", "2.893", "3.771", "3.156", "2.911", "3.242", "3.288", "2.845", "2.642", "3.158", "3.791", "2.85", "3.462", "3.719", "2.975", "2.701", "2.837", "3.049", "3.419", "3.825", "3.512", "2.989", "2.775", "3.582", "3.026", "3.902", "4.032", "3.201", "3.507", "3.525", "3.574", "2.763", "2.909", "3.017", "3.126", "3.199", "3.156", "3.464", "2.683", "2.879", "3.561", "4.033", "3.763", "3.684", "3.651", "3.594", "2.911", "3.86", "3.026", "3.393", "3.387", "2.967", "3.128", "3.412", "3.272", "3.168", "3.639", "3.815", "3.773", "2.833", "3.113", "2.967", "3.158", "3.857", "3.153", "3.032", "3.674", "2.956", "2.63", "2.953", "3.467", "3.563", "2.777", "3.869", "3.486", "3.201", "3.291", "3.259", "2.794", "3.514", "3.465", "3.119", "3.221", "3.814", "3.681", "2.96", "2.968", "3.897", "2.755", "3.573", "2.882", "2.745", "3.395", "2.981", "3.286", "3.371", "3.302", "2.71", "3.129", "2.668", "3.594", "3.408", "2.897", "3.421", "3.694", "3.186", "2.675", "3.337", "3.796", "3.485", "3.562", "3.764", "3.864", "2.84", "2.787", "3.073", "3.312", "3.892", "3.505", "3.463", "2.758", "3.383", "3.231", "2.678"], ["13.27", "16.49", "15.33", "12.63", "13.45", "15.15", "12.79", "13.94", "16.99", "13.85", "16.26", "16.45", "16.29", "13.15", "14.28", "13.52", "15.38", "13.41", "14.77", "13.75", "13.83", "16.61", "13.23", "14.28", "13.12", "13.13", "13.95", "14.85", "14.16", "16.52", "16.66", "16.89", "13.33", "16.2", "15.66", "14.52", "13.67", "16.22", "13.38", "14.9", "13.05", "14.29", "12.87", "13.53", "16.57", "16.26", "15.18", "15.55", "15.89", "15.86", "13.4", "14.02", "14.39", "13.23", "15.62", "14.17", "16.74", "13.36", "14.89", "14.91", "16.09", "15.98", "15.67", "13.45", "16.41", "13.78", "16.23", "15.73", "13.34", "14.41", "15.34", "13.94", "16.59", "14.75", "16.18", "13.47", "15.51", "15.38", "15.27", "14.66", "13.13", "17.21", "14.94", "14.49", "14.06", "15.97", "13.19", "14.02", "13.31", "14.35", "15.16", "16.17", "14.67", "13.32", "13.55", "12.57", "14.84", "13.92", "12.86", "16.45", "14.54", "12.73", "12.83", "16.42", "16.26", "13.73", "13.71", "14.21", "13.57", "15.25", "16.91", "13.82", "13.67", "13.05", "14.37", "13.47", "16.32", "14.86", "12.72", "12.95", "14.99", "13.05", "14.4", "14.52", "16.92", "16.19", "12.8", "13.44", "13.46", "16.12", "16.2", "14.05", "14.89", "12.96", "16.9", "13.85", "12.8", "14.18", "13.32", "13.67", "14.04", "17.05", "15", "14.4", "14.26", "15.25", "13.41", "14.68", "13.02", "13.52", "15.85", "13.6", "13", "14.17", "13.01", "15.91", "14.6", "16.63", "13.57", "14.77", "16.34", "14.1", "15.86", "13.22", "16.05", "13.66", "13.5", "13.1", "13.47", "14.76", "15.46", "15.11", "14.21", "16.29", "13.2", "16.31", "14.09", "12.88", "13.41", "13.76", "16.5", "15.65", "16.71", "13.08", "13.77", "13.57", "14.76", "17.03", "17.23", "12.41", "17.25", "12.93", "13.84", "13.04", "15.76", "16.72", "16.12", "13.07", "13.59", "14.56", "14.61", "14.43", "12.86", "14.57", "13.21", "13.47", "12.97", "13", "12.82", "14.9"], ["5.012", "5.219", "5.307", "5.092", "5.307", "5.894", "5.163", "4.961", "5.144", "4.649", "5.144", "5.491", "5.307", "5.841", "4.805", "5.962", "5.847", "5.837", "5.36", "4.745", "4.781", "6.448", "5.3", "5.27", "4.825", "6.229", "5", "5.18", "6.053", "6.148", "6.06", "5.484", "5.001", "5.487", "5.794", "6.097", "6.321", "5.088", "6.079", "5.533", "5.22", "6.316", "6.102", "5.046", "4.738", "5.001", "5.618", "5.791", "4.825", "6.197", "6.185", "5", "6.109", "5.316", "5.929", "4.828", "5.175", "5.178", "4.872", "5.088", "4.963", "5.795", "5.36", "6.449", "5.097", "5.221", "5.338", "5.877", "5.879", "4.87", "6.498", "5.194", "6.273", "6.362", "5.308", "6.185", "4.703", "5.056", "5.879", "4.956", "6.238", "5.231", "5.002", "5.088", "5.176", "5.056", "5.31", "5.795", "5.038", "5.132", "5.045", "4.961", "5.949", "4.956", "5.924", "5.443", "5.132", "5.132", "6.231", "5.31", "5.905", "6.163", "5.219", "5.219", "5.136", "5.396", "6.185", "5.012", "6.453", "4.914", "4.781", "4.825", "6.451", "6.053", "5.309", "5.132", "5.795", "5.966", "5.352", "5.185", "4.956", "5.224", "5.877", "5.314", "5.067", "5.063", "5.049", "5.046", "5.002", "5.178", "5.299", "5.703", "6.188", "5.001", "5.222", "6.55", "5.15", "6.32", "5.263", "4.782", "5.089", "5.527", "5.001", "5.922", "5.275", "5", "4.607", "5.089", "5.919", "5.528", "5.045", "5.351", "5.111", "4.957", "5.27", "5.88", "4.914", "5.439", "5.063", "5.992", "6.187", "4.825", "5.22", "4.869", "5.967", "4.607", "6.053", "5.879", "5.044", "5.003", "6.009", "5.661", "5.003", "5.228", "5.316", "5.135", "6.011", "6.273", "5.147", "5.439", "4.605", "5.965", "4.783", "5.044", "5.091", "5.158", "5.971", "5.176", "5.182", "5.922", "4.956", "5.175", "5.75", "4.83", "4.519", "5.44", "5.395", "5.056", "5.176", "4.794", "5.746", "5.001", "5.752", "5.178", "5.091", "4.958", "5.132", "6.2", "5.001", "5.877"], ["13.74", "18.07", "14.74", "23.03", "13.02", "14.84", "16.87", "22.13", "21.15", "14.18", "15.43", "7.27", "7.27", "25.46", "14.39", "14.48", "23.03", "7.27", "15.26", "8.51", "18.89", "23.87", "15.43", "11.79", "19.65", "20.95", "12.83", "17.7", "13.27", "20.95", "16.87", "12.95", "13.02", "21.58", "24.65", "19.11", "12.83", "16.87", "23.88", "12.95", "23.08", "22.56", "11.32", "18.53", "17.42", "14.48", "23.88", "23.27", "12.31", "15.1", "13.02", "23.65", "12.49", "11.29", "17.42", "18.07", "22.1", "13.14", "22.74", "23.29", "18.23", "12.95", "13.27", "24.63", "10.7", "11.79", "13.35", "11.78", "13.68", "16.1", "19.11", "13.07", "9.02", "13.38", "12.87", "12.91", "23.25", "12.31", "18.85", "22.87", "17.42", "12.96", "13.33", "12.31", "10.51", "19.11", "12.13", "23.18", "22.82", "12.91", "16.87", "11.14", "16.34", "15.43", "13.56", "17.42", "13.02", "23.31", "14.93", "13.02", "16.46", "13.02", "14.18", "23.25", "14.22", "13.33", "16.05", "14.18", "13.34", "8.51", "14.48", "13.07", "11.79", "24.55", "17.29", "11.78", "15.43", "18.23", "18.05", "12.95", "14.63", "14.06", "15.29", "22.74", "13.07", "23.24", "11.84", "13.14", "23.88", "10.23", "15.1", "14.93", "23.07", "18.07", "13.88", "17.4", "23.31", "20.9", "13.69", "8.51", "24.11", "10.23", "16.1", "13.56", "16.12", "23.31", "16.27", "22.87", "18.23", "23.8", "22.13", "12.95", "17.72", "18.38", "23.88", "13.34", "18.53", "10.53", "17.58", "23.31", "23.08", "13.27", "13.02", "13.34", "22.65", "15.26", "12.92", "13.34", "20.96", "25.51", "23.21", "13.69", "14.06", "13.88", "23.31", "23.29", "11.78", "22.39", "22.87", "8.5", "12.49", "11.32", "11.65", "23.3", "16.39", "18.23", "22.31", "14.93", "15.48", "13.27", "13.02", "16.05", "23.24", "12.49", "11.14", "17.31", "11.27", "8.51", "17.66", "9.21", "22.62", "23.2", "11.84", "12.83", "22.85", "11.79", "18.07", "13.02", "17.42", "20.51", "15.49", "13.27", "12.31", "16.1", "16.87", "15.28", "28.58", "13.74", "23.88", "14.48", "20.59", "14.45", "23.18", "25.45", "8.65", "12.49", "15.48", "23.09", "23.85", "11.78", "14.99", "9.6", "13.35", "20.33", "25.51", "20.48", "14.84", "16.46", "27.08", "16.1", "14.84", "19.65", "17.31", "23.24", "13.56", "11.32", "23.4", "14.3", "23", "20.81", "21.61", "12.31", "13.56", "23.8", "8.51", "20.96", "17.66", "10.23", "28.65", "23.3", "15.43", "20.56", "14.3", "14.93", "17.42", "12.83", "11.27", "14.48", "12.4", "14.84", "8.51", "13.35", "18.97", "14.39", "10.51", "14.18", "23.11", "17.58", "16.27", "10.95", "23.44", "11.29", "21.15", "23.56", "22.74", "16.1", "13.56", "22.13", "18.5", "20.96", "18.23", "16.87", "13.34", "19.11", "17.42", "13.56", "14.45", "10.23", "11.29", "21.15", "13.35", "17.3", "25.51", "12.53", "11.65", "11.6", "14.99", "16.1", "13.68", "12.92", "16.87", "12.95", "18.53", "12.96", "11.79", "16.39", "10.23", "14.48", "12.95", "18.07", "16.34", "13.02", "8.2", "17.31", "24.36", "11.29", "13.1", "12.83", "15.28", "16.12", "19.65", "19.16", "24.24", "12.83"], ["90.9", "117.5", "230", "87.8", "94.6", "54.6", "59.9", "0", "44.1", "81.2", "26", "93.9", "354.3", "100.8", "56.9", "71.7", "141.2", "113.2", "27.2", "48.2", "60.4", "0", "159.8", "107", "158.5", "31.7", "71.4", "207", "80.6", "20.3", "19.6", "117.3", "106.6", "39.3", "330", "0", "22.2", "8.6", "0", "103.5", "75", "9.3", "234.9", "118.9", "101.9", "8.3", "112.2", "113.3", "176.9", "35.9", "113.3", "37", "142.8", "53.8", "19", "0", "65.8", "91.3", "95.3", "84.8", "40.9", "80.6", "172.5", "75.9", "30.8", "250.5", "60", "48.8", "0", "124.4", "8.4", "133.3", "173.1", "133.3", "0", "128.9", "106.2", "34.2", "85.2", "100", "62.1", "141.9", "110.5", "135.7", "217.2", "53.1", "0", "23", "72.2", "133.3", "100", "33.3", "11.2", "101.9", "101.5", "107.6", "101.2", "0", "48.7", "95", "121.7", "NAN", "136.4", "0", "103.7", "0", "200", "110", "5.4", "99.5", "19.6", "554.8", "93.3", "11.3", "0", "79.7", "35.7", "50", "168.7", "1170", "230.2", "90", "250", "80.4", "111.8", "72.4", "29.1", "51.2", "263.6", "43.5", "63.5", "111.8", "106.1", "143.5", "103", "49.5", "82.3", "88.7", "112.9", "108.6"], ["...", "-0.49", "-0.54", "0.01", "0.05", "0.01", "0.10", "-0.16", "0.02", "-0.05", "-0.19", "0.70", "0.30", "0.50", "0.03", "-0.07", "0.79", "0.11", "-0.17", "-0.33", "-0.30", "0.50", "0.80", "-0.05", "0.01", "-0.01", "-0.09", "1.09", "0.19", "-0.14", "-0.03", "-0.10", "-0.11", "-0.75", "0.01", "-0.06", "0.26", "0.79", "...", "-0.98", "0.16", "-0.56", "0.05", "0.17", "0.26", "0.04", "-0.10", "-0.20", "-0.05", "-0.11", "-1.10", "0.47", "-0.09", "-0.06", "-0.35", "-0.06", "-0.50", "-0.32", "-0.27", "0.20", "-0.04", "0.08", "0.08", "-1.10", "-0.41", "-0.04", "-0.10", "0.05", "0.17", "0.55", "-0.23", "-0.14", "0.65", "0.04", "0.15", "-0.08", "0.45", "-0.20", "-0.03", "-0.02", "0.07", "1.40", "0.14", "0.03", "-0.31", "-2.20", "-1.85", "0.58", "0.75", "-0.75", "-0.09", "-0.05", "-0.20", "-0.12", "-0.20", "-0.17", "0.48", "0.11", "-0.07", "0.25", "-0.70", "-0.12", "0.08", "-0.06", "0.03", "0.18", "-0.09", "-0.43", "-0.01", "0.19", "-0.53", "-0.30", "...", "-0.04", "0.02", "0.06", "0.09", "-0.05", "-0.05", "...", "0.15", "-0.15", "0.15", "-0.08", "0.25", "0.10", "...", "-0.29", "-0.05", "-0.10", "-0.17", "-0.15", "...", "-0.45", "-0.13", "0.07", "0.55", "1.86", "-0.53", "0.23", "-0.05", "-0.40", "-0.15", "...", "0.15", "-0.66", "-0.25", "-0.50", "0.08", "...", "0.17", "0.10", "0.72", "3.87", "-1.11", "-0.21", "-0.02", "...", "0.09", "-0.04", "0.87", "-0.90", "0.11", "-0.23", "0.18", "-0.19", "-0.27", "-0.10", "-0.09", "-0.56", "-0.01", "0.01", "-0.01", "0.86", "-0.03", "0.22", "0.22", "-0.03", "0.13", "-0.48", "-0.17", "-0.09", "0.01", "-0.29", "0.37", "1.27", "-0.28", "0.50", "2.75", "-0.95", "0.01", "0.59", "-0.03", "-0.17", "0.15", "...", "1.03", "-0.05", "-0.04", "-1.90", "-0.43", "-0.25", "-0.42", "0.13", "-0.46", "0.06", "0.01", "0.14", "-0.05", "0.38", "-0.05", "0.01", "-0.13", "-0.05", "0.71", "0.30", "0.10", "-0.03", "...", "-0.23", "0.70", "0.02", "0.07", "-0.47", "...", "0.04", "0.79", "0.25", "-0.06", "0.16", "...", "-0.10", "-0.06", "0.41", "-0.19", "-0.23", "0.55", "-0.62", "0.37", "-0.86", "0.14", "...", "-0.15", "...", "0.69", "0.43", "0.45", "-0.13", "-0.04", "-0.19", "-0.13", "0.09", "0.05", "0.29", "-0.08", "...", "-0.01", "0.17", "-0.55", "0.94", "-0.08", "-0.21", "-0.35", "0.44", "0.20", "...", "-0.22", "-0.10", "0.11", "-0.16", "-0.29", "0.03", "-0.13", "-0.02", "...", "0.78", "-1.20", "0.19", "0.06", "-0.28", "-5.78", "-0.06", "-0.10", "0.24", "-0.88", "-0.05", "-0.20", "-1.28", "-0.02", "0.32", "-0.20", "-0.07", "0.80", "0.21", "-0.76", "-0.31", "-0.16", "0.18", "0.36", "-0.04", "-0.21", "-0.15", "0.30", "0.09", "-0.43", "1.45", "-0.13", "0.01", "-0.05", "-0.22", "-1.07", "0.28", "-0.16", "0.11", "-0.08", "-0.15", "0.03", "-0.27", "-0.50", "0.15", "0.45", "-0.11", "1.60", "0.05", "0.21", "-0.05", "0.14", "...", "1.44", "-1.03", "-0.02", "0.22", "-0.03", "-0.07", "-0.40", "-0.02", "-0.12", "-0.17", "0.09", "-0.35", "0.03", "0.04", "0.40", "-1.01", "-0.15", "-0.04", "-0.03", "0.19", "-0.16", "-0.05", "0.09", "-0.06", "0.32", "-0.04", "0.10", "-0.20", "-0.02", "-0.29", "0.39", "-0.02", "-0.05", "0.57", "0.04", "0.03", "0.25", "0.05", "0.02", "...", "-0.05", "0.07", "-0.05", "0.41", "0.45", "-0.06", "-0.16", "0.29", "-0.08", "-0.21", "0.06", "-0.54", "0.40", "0.34", "-0.53", "...", "-0.45", "0.01", "-0.01", "-0.66", "-0.60", "-0.11", "-0.44", "-0.72", "-0.10", "0.42", "0.20", "0.23", "0.36", "-0.71", "...", "-0.22", "-0.11", "0.20", "0.25", "0.91", "-0.07", "0.19", "0.20", "...", "0.22", "0.25", "-0.18", "0.70", "-0.45", "-0.06", "0.40", "0.58", "-1.65", "-0.26", "0.11", "-0.30", "0.45", "-0.03", "-0.11", "0.30", "0.08", "...", "-0.36", "0.36", "0.04", "-0.46", "0.26", "-0.16", "-1.36", "0.05", "-0.20", "-0.58", "-0.14", "-0.11", "-0.07", "0.56", "-0.67", "-0.12", "-0.10", "0.05", "0.10", "0.10", "-0.33", "-0.05", "0.13", "-0.10", "0.28", "-0.29", "-0.30", "-0.02", "-0.16", "-0.46", "-0.02", "0.02", "0.23", "-0.04", "-0.10", "0.21", "...", "-0.04", "0.53", "-0.80", "0.25", "0.01", "-0.11", "-0.21", "0.20", "0.14", "2.46", "0.01", "...", "0.05", "0.04", "...", "0.80", "0.30", "0.90", "-0.39", "-0.22", "0.89", "0.02", "0.30", "-0.02", "0.09", "-0.91", "-0.43", "...", "-0.46", "-0.02", "0.44", "0.04", "3.00", "-0.04", "0.15", "-0.41", "-0.03"], ["0.3", "0.42", "1.03", "1.98", "1", "0.37", "1.8", "0.29", "6.3", "0.52", "0.87", "0.28", "0.59", "0.42", "0.35", "0.22", "0.2", "0.3", "0.36", "0.29", "0.2", "1.36", "2.3", "1", "0.5", "0.47", "14.3", "8", "5.1", "0.34", "1.6", "0.26", "1.2", "4.5", "6.5", "0.76", "1.02", "0.88", "0.3", "0.57", "1.36", "0.53", "25.6", "0.39", "1.3", "0.98", "0.79", "1.18", "4.05", "0.6", "0", "2.25", "0.64", "31.61", "0.83", "0.44", "0.77", "0.95", "0.91", "0.52", "31.61", "0.7", "21.6", "0.88", "6.8", "1.33", "0.65", "0.74", "3.7", "0.91", "0.32", "2", "2.7", "0.48", "0.7", "0.53", "0.45", "1.69", "1.3", "0.86", "5.1", "0.3", "31.61", "6", "1", "0.57", "0.39", "0.6", "0.84", "1.12", "0.3", "8.4", "0.48", "0.6", "1.16", "2", "0", "1.06", "0.67", "1.1", "1.2", "0.3", "12.4", "0.6", "0.6", "0.77", "1.39", "0.86", "0.69", "2.93", "0.51", "0.89", "5.1", "0.63", "1.2", "4.5", "1", "0.25", "1.3", "3.9", "0.2", "7.3", "0.39", "2.1", "0.48", "0.5", "1.05", "1.2", "0.7", "31.4", "4", "0.2", "1.1", "0.6", "0.5", "0.4", "7.28", "2.84", "0.75", "0.86", "0.71", "2", "0.8", "0.2", "2.5", "5.8", "1.9", "8.6", "2.1", "0", "0.98", "0.36", "0.5", "1.9", "7.9", "0.88", "1", "0.41", "4.3", "0.5", "3.4", "5.2", "6.5", "0.75", "1.15", "0.66", "6.6", "0.8", "0.47", "3.04", "7.3", "0.1", "2.5", "1", "0.2", "0.44"], ["25000", "2000", "7500", "35800", "NA", "2000", "NA", "33500", "NA", "17000", "NA", "9200", "11000", "9400", "3500", "2500", "4000", "12200", "36400", "15100", "3000", "7900", "2250", "13200", "27900", "7000", "7500", "8000", "30100", "9200", "3500", "NA", "40800", "3000", "6125", "12900", "NA", "30200", "40700", "2000", "11700", "2700", "30200", "5300", "9500", "NA", "14200", "11800", "37100", "7300", "4500", "46600", "2800", "15500", "1500", "NA", "11600", "11900", "37600", "28400", "7400", "15100", "1400", "400", "33100", "13000", "14600", "NA", "11400", "11400", "23300", "2300", "NA", "3875", "9800", "1100", "29100", "33500", "35200", "6400", "NA", "3250", "3000", "NA", "1000", "5100", "17700", "38100", "3100", "20900", "NA", "11400", "27100", "2900", "NA", "20200", "1125", "2750", "15700", "4500", "3250", "3800", "11900", "7800", "11200", "10000", "17600", "16500", "6300", "29300", "11400", "11800", "13500", "4900", "8900", "44400", "19300", "1800", "4600", "6100", "4300", "25100", "42100", "43100", "12700", "13300", "5300", "NA", "25500", "36500", "20600", "1750", "NA", "32600", "16700", "31800", "17200", "3500", "30900", "1500", "NA", "16300", "400", "NA", "28900", "33500", "2300", "2000", "3400", "41300", "NA", "2625", "36900", "37300", "43100", "11000", "44000", "NA", "6625", "13100", "13300", "8600", "4000", "3500", "15700", "7000", "NA", "NA", "10900", "12600", "11600", "3500", "2000", "36900", "NA", "10700", "NA", "NA", "13500", "1500", "2750", "5500", "NA", "2000", "300", "21100", "14100", "5625", "NA", "39300", "1800", "14100"], ["33", "38.8", "40.4", "47.5", "40", "35", "44.75", "52.5", "36", "43.52", "43.2", "41.8", "37.95", "40", "35", "39.27", "40", "40", "32.5", "35.2", "51", "41", "39.7", "40", "47.5", "38", "38", "45", "33.95", "37.2", "36", "38", "35", "35.8", "37.4", "57.5", "35.8", "42", "39.84", "49.35", "42.5", "35", "40", "40.05", "44", "33", "40.95", "38", "40.18", "52", "38", "33", "39", "42.7", "35", "37", "50", "33", "35", "30.64", "37.5", "44.45", "35", "34", "38", "33.8", "47.1", "37.5", "40.05", "41", "41", "34.4", "38", "32.6", "35", "34.4", "44", "37.95", "40", "33.8", "53.6", "38.7", "48.6", "48", "54", "41.92", "46", "42", "53.6", "34", "36", "34", "34.4", "34.35", "36.9", "54", "39.7", "34", "46.5", "36", "35.2", "32.5", "37", "35.4", "33.9", "46.7", "33.4", "36", "36", "36.5", "36", "38.8", "42", "33.7", "40", "46.8", "34.9", "33.4", "35", "52", "37.5", "48", "35.9", "47.1", "32.5", "35", "32.5", "38", "36.2", "35.7", "43.52", "32.6", "42", "38", "46.15", "35", "38.4", "32.05", "55", "39.2", "38.8", "42", "37.9", "37.4", "48", "35", "65", "36", "33.95", "41", "42", "35.7", "39.25", "36", "49.35", "37.9", "34.5", "37.5", "51", "35", "35.8", "46.2", "34.4", "40", "37.5", "36", "44", "30.96", "40", "40.47", "37.87", "45", "44", "39.55", "48", "34.44", "53.47", "47.2", "43.5", "35", "41.2", "31.4", "35", "42", "37", "36.9", "39", "36", "46", "38", "48.6", "44.35", "37.2", "45.5", "40.47", "42", "33.9", "34", "35.9", "35.55", "36.7", "42", "36.55", "31.09", "46.33", "40", "41.85", "46", "36.2", "40", "46.5", "40.95", "39.5", "35", "52.5", "38.75", "45", "36", "30.7", "47.5", "36", "43.2", "33.8", "43", "52.5", "46", "46.05", "38", "38.8", "46.05", "60", "46.5", "40", "32.5", "36", "45.5", "37.95", "44", "35", "35.4", "34", "34", "37", "46.7", "36.4", "41.85", "36", "44", "44.3", "40", "32.05", "35", "48.6", "47.95", "48", "35", "39.5", "35.2", "35.94", "45.6", "45", "44.3", "52.5", "36", "48.6", "44.5", "46.5", "36.5", "33.7", "50.45", "38", "34", "37.95", "57.5", "46", "31.09", "42", "33.95", "32", "48", "29.5", "36.5", "65", "38.75", "36", "46.15", "39.7", "39", "48", "50", "35.7", "35", "39", "40.4", "36", "45.5", "35.55", "34", "40.05", "41.39", "36", "43", "36", "45", "34.9", "32.1", "46.2", "46.8", "46", "50.3", "35", "35.9", "40.05", "50", "40", "39.5", "40.18", "45", "29.5", "50.3", "42", "34", "39.5", "33.1", "52.5", "35", "38", "41", "46", "40", "42", "35", "37", "45.5"], ["7:01", "6:22", "7:01", "5:09", "4:17", "7:05", "4:28", "8:16", "6:12", "4:40", "5:56", "5:38", "4:39", "6:31", "5:20", "4:03", "5:12", "5:02", "5:04", "5:06", "5:58", "6:17", "4:11", "5:53", "4:22", "5:50", "4:15", "4:22", "5:22", "5:14", "4:31", "5:07", "6:11", "6:48", "5:32", "6:06", "6:06", "6:22", "5:38", "4:57", "5:03", "4:44", "5:05", "4:22", "13:39", "6:15", "5:30", "4:28", "5:08", "4:09", "7:18", "7:06", "4:24", "4:40", "5:06", "5:23", "6:22", "4:03", "8:37", "5:47", "8:07", "5:40", "6:00", "4:30", "4:08", "4:53", "6:26", "6:47", "10:50", "4:10", "5:18", "4:00", "5:10", "6:52", "5:52", "5:15", "4:26", "5:05", "5:23", "5:13", "5:03", "4:34", "5:03", "5:35", "4:36", "4:53", "9:16", "6:42", "4:26", "6:33", "6:08", "4:35", "4:10", "4:07", "5:38", "5:35", "5:52", "7:20", "8:00"], ["10641", "11086", "10729", "10341", "11955", "11162", "11277", "11992", "10779", "10341", "11702", "11274", "11277", "10448", "11848", "11658", "10509", "10040", "11013", "10029", "10029", "10232", "11687", "10017", "11248", "10288", "11149", "11408", "10232", "11248", "10867", "11737", "11932", "10360", "11274", "10300", "10742", "11848", "11507", "10341", "10288", "11403", "11737", "11507", "11027", "10411", "10382", "11883", "10509", "10509", "10488", "11277", "11955", "10341", "10507", "11354", "11602", "11992", "11687", "11255", "11149", "10509", "10232", "10908", "11013", "11658", "11955", "11883", "10491", "10729", "10972", "11992", "11711", "11507", "10200", "11687", "10491", "10171", "11507", "11992", "11507", "11984", "11806", "10232", "10341", "11995", "11992", "11086", "11255", "10341", "10040", "11826", "10029", "11507", "10300", "10523", "10641", "10972", "11658", "11248", "10683", "11955", "11879", "11277", "11507", "10867", "11992", "11277", "11248", "10232", "10145", "10867", "10341", "10225", "10653", "11569", "10411", "10989", "11995", "10341", "11640", "11277", "11255", "10555", "11995", "10908", "11879", "11592", "10779", "10683", "10867", "11354", "10491", "10232", "11277", "11086", "11879", "10411", "11992", "11737", "11984", "10232", "11658", "11507", "11277", "11010", "11507", "10300", "11272", "10867", "10555", "10972", "10311", "10341", "11992", "10383", "11870", "10232", "11955", "10377", "10360", "10488", "11507", "11743", "11408", "11403", "11507", "11687", "10200", "11992", "11687", "11984", "11992", "10867", "10341", "10509", "10512", "11277", "10627", "10507", "11277", "11826", "10341", "10509", "11859", "11408", "10987", "11984", "11992", "10247", "11992", "11992", "10867", "11507", "11932", "10779", "10300", "11951", "11687", "10867", "11255", "10232", "10383", "10641", "11955", "11010", "10040", "10509", "11870", "11879", "11658", "10341", "11658", "11687", "11753", "10311", "11507", "10989", "11883", "11086", "10914", "11507", "11879", "11687", "11255", "11592", "11992", "10232", "11592", "10288", "11592", "11984", "11922", "10729", "10491", "11456", "11507", "10867", "11711", "11248", "11234", "11879", "10300", "11507", "11737", "11531", "10814", "11992", "10683", "10360", "10360", "10908", "10683", "11992", "10311", "10641", "11248", "10509", "10641", "11753", "11955", "10341", "10341", "11248", "11992", "10998", "11507", "11456", "11992", "11307", "11598", "11687", "11932", "11086", "10341", "11992", "11992", "10232", "10509", "11687", "11932", "10341", "10718", "11135", "11277", "10729", "10397", "11932", "10972", "11806", "11658", "11992", "11149", "10341", "11426", "11932", "10232", "10480", "10200", "11086", "11403", "11973", "11955", "11507", "10480", "10311", "11658", "10928", "11883", "10507", "11955", "10683", "11932", "11307", "10382", "11870", "11992", "11507", "11658", "11086", "10017", "11354", "10405", "10342", "11870", "11300", "11602", "11456", "11753", "11687", "11507", "11687", "10288", "11602", "11687", "11456", "11101", "10867", "11162", "10383", "10729", "10742", "11922", "11687", "11992", "10382", "11507", "10225", "10742", "10742", "11507", "11932", "11086", "11992", "10029", "10411", "10341", "10232", "11569", "10383", "11277", "11277", "11658", "11940", "11687", "11687", "10300", "11354", "11984", "10491", "10779", "11277", "10341", "11992", "11507", "11408", "10029", "10200", "11013", "11992", "11234", "11135", "11277", "10341", "10448", "11024", "10341", "11149", "11248", "11932", "11507", "10071", "10561", "11753", "11248", "11992", "10341", "11992", "10867", "10090", "10029", "10509", "11984", "11806", "11248", "11507", "11725", "10729", "10972", "11702", "10040", "10300", "11507", "10341", "11129", "10742", "11932", "11879", "11992", "11437", "11602", "10439", "11883", "11456", "10596", "11531", "11658", "11806", "11507", "11162", "11149", "11507", "11826", "11737", "10311", "11932", "11027", "11658", "10507", "10300", "10448", "11086", "11879", "11255", "10383", "11408", "11992", "11277", "10972", "11507", "11995", "11277", "10627", "11992", "11507", "11788", "10641", "11658", "10729", "11507", "11992", "10653", "10360", "10641", "11658", "11737", "11086", "11135", "11507", "10729", "11992", "11602", "11922", "10225", "11248", "11932", "11737", "11277", "11992", "10729", "11870", "10341", "11277", "11010", "11456", "10040", "11135", "11992", "11788", "10555", "11992", "11277", "11658", "11507", "10341", "10341", "11932", "10523", "10341", "10090"], ["44.63", "33.63", "9.43", "45.43", "47.42", "43.42", "26.42", "24.44", "53.42", "40.47", "33.44", "46.44", "91.87", "53.68", "45.52", "63.87", "76.87", "31.42", "39.42", "39.50", "54.63", "85.53", "46.47", "30.43", "47.47", "60.47", "53.43", "39.44", "32.43", "58.53", "63.00", "22.42", "53.43", "40.47", "16.49", "19.52", "78.87", "61.00", "23.50", "44.43", "44.47", "53.43", "33.47", "37.43", "32.49", "53.44", "88.53", "51.43", "37.42", "51.43", "28.02", "43.42", "53.52", "57.47", "32.49", "53.47", "54.42", "43.44", "28.47", "47.42", "53.49", "19.49", "29.47", "30.42", "17.50"], ["7.93", "2.95", "13.6", "2.18", "5.47", "3.77", "4.12", "unk", "2.5", "3.41", "2.02", "1.62", "3.42", "4.58", "2.06", "unk", "unk", "4.09", "3.06", "6.65", "0.87", "8.64", "4.03", "1.83", "5.43", "1.77", "unk", "3.42", "0.94", "2.84", "11.68", "unk", "5.2", "2.14", "2.37", "12.39", "1.76", "unk", "1.01", "2.92", "10.66", "2.65", "3.54", "3.19", "5.85", "2.59", "5.39", "6.7", "7.72", "2.63", "3.16", "23.34", "5.31", "1.48", "22.52", "1.79", "1.15", "5.26", "5.03", "2.16", "5.16", "4.32", "1.22"], ["1.2", "1.69", "2.69", "0.99", "1.89", "1.19", "1.49", "0.69", "1.49", "0.69", "0.59", "2.19", "5.79", "4.49", "1.09", "0.59", "0.3", "1.69", "4.29", "6.59", "4.29", "0.59", "0.99", "2.99", "1.79", "1.09", "0.5", "0.69", "1.99", "3.79", "6.59", "3.5", "5.89", "6.99", "1.69", "1.99", "4.29", "5.89", "0.59", "4.99", "1.09", "1.79", "9.59", "4.39", "0.69", "0.99", "3.29", "1.29", "2.09", "2.69", "0.99", "0.15", "1.49", "1.49", "0.99", "2.89", "6.69", "1.09", "1.99", "8.49", "0.89", "0.99", "0.99", "0.89", "1.79", "1.19", "0.79", "2.59", "4.09", "1.39", "1.39", "1.49", "2.99", "1.79", "0.79", "3.69", "1.29", "1.29", "0.59", "1.79", "0.99", "0.99", "3.19", "7.69", "0.99", "1.59", "2.59", "2.09", "1.49", "6.08", "0.99", "6.25", "2.49", "2.99", "0.37", "9.39", "0.89", "1.49", "1.49", "0.59", "0.99", "2.09", "0.89", "3.09", "0.69", "0.95", "1.49", "1.49", "1.29", "14.79", "1.39", "8.49", "1.19", "2.09", "1.09", "0.59", "7.29", "5.39", "1.79", "1.09", "1.69", "5.69", "1.59", "1.96", "2.99", "0.99", "0.99", "0.99", "0.39", "2.39", "1.79", "0.99", "1.09", "2.59", "1.69", "0.99", "5.99", "2.99", "1.09", "1.59", "0.4", "5.79", "3.59", "1.09", "3.89", "1.69", "1.59", "1.29", "1.49", "1.49", "9.99", "0.69", "2.89", "1.59", "0.39", "0.59", "0.59", "1.69", "1.79", "0.99", "0.4", "3.99", "2.59", "46.79", "1.99", "0.99", "1.09", "2.39", "5.99", "4.89", "1.99", "2.39", "4.99", "1.09", "1.19", "1.49", "1.69", "1.12", "5.99", "1.59", "1.49", "5.79", "2.09", "3.19", "2.39", "0.99", "1.49", "0.3", "0.5", "1.79", "6.59", "12.76", "2.09", "2.25", "1.69", "6.59", "1.09", "1.49", "0.59", "1.59", "0.89", "1.79", "0.5", "1.69", "1.79", "1.69", "0.79", "0.39", "1.49", "1.79", "2.99", "3.95", "0.99", "0.99", "1.09", "0.99", "2.09", "2.49", "1.09", "6.69", "1.49", "4.99", "4.09", "0.5", "1.39", "0.69", "2.39", "4.4", "2.09", "1.49", "2.59", "1.89", "2.09", "1.79", "2.59", "2.49", "1.19", "1.89", "0.99", "0.99", "1.49", "1.99", "1.99", "5.19", "1.19", "1.99", "0.99", "0.59", "1.96", "0.59", "0.99", "0.59", "0.39", "1.19", "1.29", "0.99", "23.99", "0.99", "1.49", "0.4", "1.59", "2.49", "6.25", "0.99", "3.59", "7.19", "2.09", "0.69", "4.89", "6.29", "0.99", "1.49", "0.99", "0.5", "2.89", "0.59", "2.79", "2.99", "1.49", "3.19", "3.29", "0.59", "1.59", "1.79", "2.39", "0.59", "0.79", "0.59", "2.19", "1.49", "1.59", "2", "4.89", "7.99", "6.29", "7.89", "0.99", "2.19", "4.09", "1.79", "0.99", "5.39", "1.79", "1.89", "4.49", "2.49", "1.49", "0.99", "1.79", "5.99", "1.59", "1.49", "0.79", "1.89", "1.79", "5.89", "2.39", "7.99", "1.09", "60", "1.99", "1.09", "0.99", "6.29", "4.98", "0.69", "0.79", "0.5", "6.25", "3.29", "6.08", "2.09", "1.78", "1.99", "44", "1.99", "0.59", "0.5", "0.79", "4.99", "2.99", "0.59", "3.99", "2.39", "1.69", "1.09", "0.99", "1.69", "2.89", "0.89", "1.39", "1.29", "1.19", "1.49", "0.49", "0.99", "1.18", "2.69", "2.29", "0.39", "1.29", "0.59", "1.29", "2.99", "1.49", "1.79", "2.39", "0.5", "4.99", "1.49", "3.49", "2.09", "1.09", "2.79", "3.89", "0.59", "0.99", "2.99", "1.29", "1.09", "1.89", "0.59", "2.49", "1.09", "6.29", "6.08", "0.69", "7.19", "2.89", "2.09", "0.99", "5.49", "0.59", "1.99", "0.59", "39", "1.79", "3.99", "1.49", "1.49", "1.29", "1.99", "2.09", "1.09", "0.79", "1.39", "1.09", "2.09", "0.59", "6.89", "1.09", "0.99", "6.08", "4.29", "2.09", "0.99", "6.19", "1.09", "0.59", "0.5", "0.59", "1.49", "3.69", "1.99", "0.99", "2.19", "1.99", "0.59", "2.59", "5.7", "2.39", "6.89", "2.69", "2.89", "60", "2.79", "1.29", "1.49", "0.99", "1.59", "1.79", "0.99", "1.09", "3.95", "1.29", "1.89", "1.69", "7.99", "2.59", "0.99", "1.39", "1.09", "4.89", "1.49", "1.09", "1.69", "0.95", "0.79", "0.5", "1.49", "2.79", "1.29", "2.89", "1.09", "4.29", "9.79", "1.79", "1.59", "1.99", "1.09", "60", "5.89", "5.69", "1.59", "0.59", "3.29", "0.99", "0.99", "6.39", "2.19", "1.78", "6.79", "1.69", "0.59", "1.69", "1.79", "1.99", "55.9", "2.09", "1.89", "1.99", "1.99", "3.99", "4.99", "1.09", "3.29", "0.59", "2.39", "1.29", "6.08"], ["5", "14", "61", "12", "1", "8", "17", "14", "7", "3", "40", "3", "2", "8", "13", "14", "9", "8", "9", "8", "49", "4", "20", "22", "3", "18", "21", "5", "32", "110", "11", "6", "7", "206", "20", "42", "20", "15", "7", "7", "10", "104", "13", "15", "9", "41", "27", "5", "10", "13", "5", "16", "3", "29", "34", "13", "8", "7", "3", "14", "8", "4", "64", "3", "3", "4", "6", "11", "4", "7", "7", "32", "6", "12", "1,967", "19", "42", "5", "60", "2", "3", "6", "9", "6", "11", "7", "13", "13", "9", "25", "45", "2", "5", "139", "6", "17", "11", "0", "2", "5"], ["5", "10", "4", "10", "2", "9", "38", "10", "24", "12", "17", "4", "9", "10", "4", "7", "41", "16", "4", "17", "8", "9", "3", "5", "79", "9", "23", "7", "10", "10", "5", "6", "24", "8", "6", "6", "268", "29", "7", "6", "10", "71", "70", "48", "4", "7", "9", "9", "2,037", "16", "46", "34", "13", "157", "10", "8", "17", "5", "13", "7", "8", "34", "6", "5", "5", "16", "5", "18", "31", "6", "10", "0", "7", "15", "15", "11", "22", "4", "13", "11", "21", "20", "2", "38", "12", "2", "8", "26", "2", "12", "2", "108", "6", "15", "4", "4", "9", "47", "6", "40"], ["4.02", "0", "0", "0.22", "NA", "0.29", "5.02", "1.54", "2.88", "NA", "NA", "5.66", "25.04", "0.09", "0", "0.49", "1.49", "NA", "2.45", "1.91", "0.26", "0.14", "2.86", "NA", "0.35", "0", "0.17", "NA", "17.48", "0.13", "9.57", "0", "0.99", "2.13", "2.41", "3.2", "0", "0", "1.55", "3.29", "NA", "NA", "NA", "3.55", "3.25", "0.25", "0", "NA", "NA", "0", "4.31", "NA", "1.7", "0.05", "0", "2.95", "7.15", "3.59", "0.2", "0.03", "0.18", "0.18", "2.05", "3.39", "NA", "0.25", "NA", "0.1", "3.83", "0"], ["2.00", "6.00", "6.00", "9.00", "22.00", "3.00", "14.00", "4.00", "4.00", "17.00", "3.00", "26.00", "11.00", "5.00", "3.00", "15.00", "26.00", "9.00", "9.00", "13.00", "6.00", "17.00", "13.00", "29.00", "3.00", "30.00", "11.00", "19.00", "13.00", "8.00", "14.00", "22.00", "0.00", "35.00", "42.00", "20.00", "26.00", "35.00", "2.00", "7.00", "10.00", "4.00", "2.00", "2.00", "10.00", "19.00", "27.00", "none", "35.00", "8.00", "27.00", "1.00", "19.00", "43.00", "12.00", "10.00", "6.00", "13.00", "4.00", "42.00", "15.00", "16.00", "40.00", "15.00", "21.00"], ["27", "8", "5", "18", "9", "19", "4", "30", "7", "10", "9", "4", "1,813", "3", "4", "93", "9", "5", "7", "5", "3", "42", "241", "9", "60", "11", "2", "3", "4", "6", "8", "37", "56", "26", "5", "7", "10", "45", "12", "6", "5", "2", "16", "3", "4", "9", "3", "5", "8", "46", "5", "7", "69", "22", "42", "14", "5", "14", "7", "29", "8", "16", "17", "2", "6", "147", "11", "30", "11", "4", "4", "19", "13", "14", "2", "10", "8", "4", "5", "20", "22", "10", "10", "38", "14", "11", "9", "17", "16", "7", "2", "3", "0", "7", "1", "8", "2", "9", "7", "5"], ["7", "6", "6", "13", "4", "9", "8", "5", "111", "7", "16", "8", "5", "6", "30", "8", "5", "11", "32", "13", "11", "2", "5", "5", "5", "34", "12", "10", "15", "0", "7", "29", "19", "23", "9", "5", "1,718", "4", "17", "8", "30", "9", "6", "16", "3", "49", "5", "37", "4", "6", "8", "9", "75", "8", "8", "8", "12", "6", "18", "37", "4", "4", "8", "7", "4", "2", "112", "4", "12", "36", "6", "37", "10", "6", "6", "233", "8", "8", "5", "4", "5", "2", "9", "22", "3", "6", "13", "9", "6", "23", "18", "2", "6", "12", "72", "5", "26", "14", "23", "5"], ["7", "14", "5", "16", "20", "5", "17", "96", "1", "27", "8", "28", "9", "17", "3", "25", "25", "4", "3", "8", "4", "7", "11", "6", "5", "5", "7", "15", "6", "5", "5", "4", "14", "4", "2", "8", "4", "12", "8", "6", "5", "3", "5", "5", "210", "1,499", "4", "99", "5", "33", "10", "21", "0", "9", "5", "6", "36", "0", "16", "6", "4", "6", "3", "6", "5", "10", "7", "5", "5", "2", "6", "21", "2", "69", "9", "6", "3", "42", "4", "11", "7", "2", "6", "11", "11", "11", "5", "21", "5", "23", "9", "10", "5", "5", "3", "33", "4", "11", "6", "67"], ["76", "3840", "313", "260", "0", "0", "450", "0", "0", "0", "2443", "22", "4476", "0", "0", "2389", "0", "3426", "10555", "0", "0", "140", "0", "56", "275", "0", "10555", "0", "37120", "14447", "236", "0", "0", "1442", "140", "7824", "14411", "7824", "4", "0", "0", "66", "13", "58", "11115", "0", "5350", "0", "3734", "2389", "0", "160", "0", "18", "0", "266", "0", "913", "3634", "0", "0", "0", "0", "0", "76", "0", "106", "0", "4925", "2196", "5736", "0", "1995", "300", "711", "0", "4244", "7311", "0", "15", "210", "0", "0", "0", "22", "304", "76", "3", "33026", "0", "0", "0", "680", "211", "0", "76", "0", "3977", "0", "3634", "0", "4338", "0", "1859", "0", "2752", "0", "0", "0", "160", "2443", "0", "0", "71", "0", "0", "0", "508", "0", "275", "0", "14", "0", "0", "0", "0", "1995", "1859", "0", "0", "0", "0", "3", "0", "8", "0", "0", "66", "16", "0", "0", "0", "432", "0", "0", "0", "0", "167", "10555", "15468", "1995", "0", "0", "0", "182", "0", "0", "3846", "0", "0", "1743", "0", "807", "0", "254", "0", "3432", "62", "11795", "0", "0", "0", "753", "0", "0", "0", "0", "0", "300", "190", "0", "3", "0", "0", "0", "842", "0", "0", "0", "0", "18", "23", "0", "0", "0", "4", "7130", "20", "0", "0", "0", "0", "0", "357", "6", "0", "0", "0", "1700", "0", "0", "0", "0", "0", "357", "0", "0", "210", "0", "0", "0", "236", "0", "2244", "210", "0", "0", "140", "76", "1286", "7507", "0", "2752", "0", "160", "0", "0", "2699", "109", "0", "23", "0", "0", "0", "1122", "0", "0", "76", "544", "0", "8", "210", "0", "0", "275", "13644", "0", "0", "6926", "0", "0", "842", "0", "21318", "0", "450", "0", "2443", "10260", "4925", "0", "0", "0", "11085", "0", "0", "0", "14447", "0", "0", "2899", "0", "0", "0", "0", "3583", "0", "15", "0", "4134", "0", "217", "0", "0", "76", "15719", "0", "0", "14", "0", "0", "11115", "0", "139", "2284", "0", "0", "1067", "547", "140", "2938", "13891", "0", "0", "75", "0", "0", "687", "0", "2938", "0", "1995", "0", "5243", "8288", "0", "0", "76", "0", "0"], ["$0.00", "$3.00", "$2.00", "$1.50", "$4.75", "$3.00", "$2.75", "$3.00", "$3.00", "$0.40", "$3.00", "$0.50", "$4.50", "$0.20", "$3.00", "$0.50", "$3.75", "$3.00", "$3.00", "$0.40", "$0.35", "$2.00", "$0.40", "$0.30", "$3.00", "$3.50", "$0.30", "$6.25", "$0.30", "$0.40", "$3.00", "$0.35", "$3.00", "$3.00", "$0.35", "$3.00", "$0.50", "$0.40", "$0.35", "$0.30", "$2.25", "$0.70", "$0.30", "$2.00", "$2.25", "$3.00", "$4.25", "$3.00", "$0.00", "$1.75", "$0.45", "$0.00", "$0.30", "$3.00", "$3.00", "$2.00", "$0.45", "$1.75", "$2.00", "$0.40", "$0.65", "$0.00", "$3.00", "$2.00", "$5.25", "$0.40", "$2.50", "$0.45", "$1.00", "$2.00", "$0.35", "$3.00", "$2.75", "$3.00", "$0.00", "$0.40", "$0.30", "$0.65", "$0.30", "$3.00", "$3.00", "$0.30", "$2.00", "$0.30", "$3.00", "$2.00", "$0.50", "$4.75", "$1.25", "$0.30", "$3.00", "$2.25", "$0.40", "$0.30", "$1.00", "$0.40", "$5.75", "$3.00", "$3.00", "$3.00", "$0.30", "$0.55", "$1.50", "$1.25", "$0.40", "$0.40", "$3.00", "$3.00", "$1.25", "$0.50", "$0.65", "$0.35", "$2.00", "$2.00", "$0.65", "$0.30", "$0.40", "$3.00", "$3.00", "$1.00", "$0.50", "$0.50", "$0.35", "$0.50", "$2.00", "$3.50", "$0.30", "$3.00", "$3.00", "$3.50", "$3.00", "$1.50", "$0.40", "$0.00", "$3.25", "$3.00", "$3.00", "$0.30", "$3.00", "$4.25", "$4.50", "$0.45", "$2.25", "$3.00", "$1.00", "$2.00", "$3.00", "$1.00", "$4.25", "$0.55", "$0.75", "$3.00", "$0.75", "$3.00", "$0.30", "$4.75", "$1.25", "$3.75", "$3.75", "$2.25", "$3.00", "$0.40", "$3.00", "$2.00", "$0.30", "$0.00", "$3.00", "$0.35", "$3.00", "$0.35", "$3.00", "$2.50", "$3.00", "$0.40", "$3.00", "$3.00", "$0.40", "$0.40", "$3.00", "$0.30", "$0.30", "$7.50", "$3.00", "$4.00", "$3.00", "$3.00", "$3.00", "$0.35", "$0.50", "$0.50", "$3.00", "$4.75", "$3.00", "$2.00", "$0.40", "$3.00", "$3.00", "$0.50", "$3.75", "$1.50", "$3.50", "$0.30", "$0.35", "$3.00", "$3.00", "$0.30", "$3.75", "$0.35", "$1.50", "$3.00", "$1.25", "$0.30", "$2.00", "$1.00", "$3.00", "$1.00", "$0.40", "$5.25", "$0.40", "$0.30", "$3.00", "$3.00", "$0.75", "$3.00", "$0.75", "$0.30", "$0.55", "$3.00", "$3.00", "$5.25", "$0.40", "$1.75", "$1.25", "$0.35", "$3.00", "$2.25", "$0.40", "$3.00", "$0.40", "$3.00", "$2.75", "$2.25", "$3.00", "$2.25", "$3.75", "$1.00", "$3.00", "$0.45", "$3.75", "$3.00", "$0.40", "$0.40", "$0.40", "$0.40", "$0.55", "$1.75", "$3.00", "$3.00", "$3.00", "$3.00", "$5.00", "$0.50", "$1.00", "$2.00", "$0.30", "$3.00", "$3.00", "$4.00", "$3.00", "$0.55", "$3.00", "$2.00", "$1.25", "$1.00", "$4.25", "$0.30", "$3.00", "$0.00", "$3.00", "$0.45", "$0.35", "$0.75", "$3.00", "$0.45", "$0.40", "$3.00", "$3.00", "$4.25", "$0.30", "$4.75", "$3.00", "$0.40", "$2.25", "$3.75", "$3.75", "$0.35", "$1.00", "$3.00", "$0.30", "$3.00", "$3.00", "$0.40", "$1.00", "$4.25", "$2.00", "$3.75", "$0.50", "$1.00", "$3.25", "$3.00", "$0.55", "$0.50", "$3.00", "$2.50", "$1.00", "$0.40", "$0.35", "$0.60", "$0.30", "$1.00", "$2.00", "$3.00", "$0.50", "$4.00", "$0.55", "$0.75", "$2.00", "$1.00", "$3.00", "$3.00", "$3.00", "$3.00", "$0.40", "$2.50", "$3.00", "$3.00", "$0.50", "$0.75", "$3.00", "$0.30", "$3.25", "$3.00", "$3.00", "$0.00", "$0.50", "$0.45", "$9.25", "$2.75", "$1.50", "$5.25", "$0.30", "$3.00", "$3.00", "$0.40", "$3.00", "$3.00", "$2.00", "$3.00", "$3.00", "$0.40", "$0.30", "$3.00", "$3.00", "$3.00", "$3.00", "$2.00", "$0.00", "$4.25", "$0.50", "$0.30", "$0.40", "$3.00", "$3.25", "$2.25", "$3.00", "$0.30", "$3.75", "$3.00", "$3.00", "$0.45", "$0.35", "$1.50", "$6.00", "$1.75", "$0.20", "$3.00", "$0.55", "$3.75", "$3.00", "$3.00", "$0.50", "$0.40", "$3.00", "$0.55", "$0.55", "$3.00", "$0.50", "$3.00", "$3.00", "$0.30", "$1.25", "$4.25", "$0.45", "$0.45", "$0.30", "$3.00", "$4.25", "$0.30", "$3.75", "$3.00", "$3.00", "$2.00", "$0.30", "$3.25", "$3.00", "$0.30", "$1.75", "$2.75", "$3.00", "$3.00", "$3.00", "$1.75", "$2.00", "$3.00", "$0.00", "$3.00", "$0.40", "$3.00", "$3.00", "$0.55", "$2.00", "$0.30", "$0.40", "$0.50", "$3.00", "$0.35"], ["0.26", "0.24", "0.277", "0.25", "-", "-", "-", "0.235", "-", "-", "0.249", "0.24", "0.262", "-", "0.249", "0.241", "0.266", "-", "-", "0.25", "-", "-", "-", "-", "0.24", "-", "0.25", "-", "0.249", "-", "0.26", "0.26", "0.25", "0.253", "-", "0.25", "0.248", "0.262", "-", "0.25", "0.265", "-", "-", "-", "0.26", "0.245", "0.262", "0.27", "-", "0.249", "-", "0.258", "0.262", "0.3", "0.266", "-", "0.287", "0.264", "0.259", "0.261", "0.24", "-", "0.25", "0.258", "0.253", "-", "0.245", "0.25", "0.253", "0.258", "0.25", "-", "0.245", "0.289", "0.258", "0.303", "-", "0.256", "0.26", "-", "0.266", "0.248", "0.277", "0.28", "-", "-", "0.253", "-", "0.248", "0.28", "-", "0.266", "-", "-", "0.262", "0.289", "0.245", "-", "0.25", "0.287", "-", "0.244", "0.24", "0.245", "-", "0.262", "0.266", "0.311", "-", "-", "-", "-", "0.25", "0.24", "0.261", "0.24", "0.26", "-", "-", "-", "0.277", "-", "-", "0.287", "0.23", "0.245", "0.265", "-", "-", "0.28", "0.28", "0.249", "-", "-", "-", "-", "-", "0.262", "0.26", "0.25", "0.28", "-", "0.253", "-", "0.26", "-", "0.25", "0.249", "0.258", "0.248", "0.244", "0.28", "-", "0.256", "0.25", "0.266", "0.254", "-", "0.249", "-", "0.26", "0.26", "-", "-", "0.24", "-", "0.25", "0.261", "-", "0.258", "-", "-", "0.249", "0.259", "0.249", "0.303", "0.269", "0.262", "0.244", "-", "0.287", "0.26", "-", "0.253", "0.262", "0.26", "-", "-", "0.29", "-", "-", "0.26", "0.253", "0.247", "-", "-", "0.243", "-", "0.262", "-", "0.26", "-", "0.25", "0.26", "-", "-", "-", "0.245", "-", "0.26", "-", "-", "-", "0.258", "0.269", "0.253", "-", "-", "-", "-", "-", "0.26", "0.266", "0.25", "0.256", "0.247", "-", "0.248", "-", "0.261", "-", "0.262", "0.25", "0.253", "0.262", "-", "0.25", "0.255", "0.253", "-", "-", "0.277", "0.26", "0.26", "0.25", "0.23", "0.267", "-", "0.265", "-", "-", "-", "-", "-", "0.24", "-", "0.231", "0.271", "-", "0.245", "0.24", "0.262", "-", "-", "0.247", "0.26", "0.247", "-", "0.25", "-", "0.265", "0.262", "-", "0.25", "0.268", "-", "0.253", "0.268", "0.271", "0.279", "0.311", "0.26", "-", "0.262", "0.245", "0.248", "-", "0.25", "-", "0.25", "0.25", "0.28", "0.253", "-", "0.258", "-", "0.284", "0.287", "0.261", "-", "0.25", "0.284", "0.261", "0.25", "0.253", "0.24", "0.245", "0.256", "-", "0.279", "0.245", "-", "-", "0.245", "-", "0.241", "0.25", "-", "0.258", "0.28", "-", "-", "0.277", "0.26", "0.258", "-", "-", "-", "-", "-", "0.245", "0.28", "0.25", "-"], ["TT", "AA", "AG", "CC", "TT", "AA", "CC", "CC", "TT", "AG", "GT", "TT", "GT", "GG", "GA", "GA", "AG+AA", "AA", "AA", "AA", "TT", "AG", "AG", "AG", "GG", "TT", "CT", "GA+GG", "GA", "TT", "AG", "CA", "GG", "TC", "CT+CC", "TT", "CC", "TG", "TT", "AA", "TC", "CT+CC", "GT", "GG", "TT", "CC", "TT", "TC", "GA+GG", "TG", "AA", "CT+CC", "AG", "GT", "GA", "CC", "AG", "AA", "AG", "TC", "TT", "TT", "TT", "GA", "TC", "TC", "GA", "TC", "TC", "GG", "GA+GG", "AA", "AA", "CT", "CA", "AG", "AC", "AG+AA", "CT", "AA", "GT+GG", "CT", "AG", "TC", "AA", "GA", "CC", "AA", "CA+CC", "TC+TT", "AG+AA", "GT", "TC", "GG", "AG", "GA", "AG", "GA", "AA", "CT+CC", "TT", "AA", "CT", "CC", "GA", "TC", "AA", "GA+GG", "CA", "GA", "CC", "CC", "CC", "TC", "TC", "CA+CC", "TC", "TC", "GT", "TC", "CT", "GG", "GG", "AG", "GG", "AA", "TC+TT", "TC", "TT", "GG", "TT", "GG", "AC", "AA", "TT", "AG", "TC+TT", "AG", "GT", "GG", "AG", "TG", "TG", "CT+CC", "CC", "GT", "GG", "TT", "TT", "TT", "GG", "GG", "CC", "CA+CC", "GT"], ["C1 T1", "C3 T3", "C3 T1", "C5 T2", "C1 T3", "C2 T2", "C5 T3", "C2 T3", "C3 T1", "C1 T1", "C3 T1", "C2 T1", "C5 T1", "C2 T3", "C1 T2", "C3 T1", "C5 T2", "C1 T3", "C2 T3", "C1 T1", "C5 T2", "C3 T1", "C3 T2", "C5 T2", "C1 T1", "C1 T1", "C3 T3", "C2 T1", "C3 T2", "C3 T2", "C3 T3", "C2 T2", "C2 T3", "C5 T1", "C5 T3", "C2 T1", "C5 T3", "C3 T2", "C1 T3", "C1 T2", "C5 T1", "C1 T2", "C2 T2", "C3 T3", "C5 T1", "C2 T3", "C1 T2", "C5 T1", "C5 T1", "C2 T1", "C2 T1", "C1 T1", "C3 T2", "C5 T3", "C5 T1", "C1 T2", "C1 T1", "C1 T3", "C3 T2", "C3 T1", "C5 T3", "C1 T2", "C5 T3", "C1 T3", "C2 T1", "C3 T3", "C1 T2", "C5 T1", "C3 T3", "C5 T2", "C2 T2"], ["0.01", "-0.01", ".", "0.04", "0.04", ".", "-0.15", "0.04", "2013", ".", "-0.01", "0.01", "0.10", ".", "-0.03", ".", "0.05", ".", ".", "0.07", "-0.03", ".", "0.23", ".", "-0.01", ".", "0.08", ".", "0.10", ".", ".", ".", "0.12", "0.06", ".", "-0.06", "0.14", "0.00", "0.02", "0.04", ".", "0.00", "0.04", "0.01", ".", ".", ".", "0.10", "0.04"], ["2", "2,410", "22", "0", "0", "0", "1", "4", "0", "2", "0", "80", "27", "0", "19", "0", "109", "98", "0", "3", "43", "0", "0", "0", "0", "0", "0", "111", "24", "29", "0", "0", "2", "52", "0", "6", "0", "0", "0", "94", "0", "141", "0", "0", "0", "0", "0", "0", "5", "3", "25", "91", "0", "112", "1", "8", "1", "0", "0", "275", "0", "30", "0", "0", "54", "1", "0", "6", "42", "0", "4", "0", "0", "0", "0", "0", "30", "28", "0", "0", "0", "0", "330", "0", "0", "0", "0", "0", "56", "2", "10", "0", "295", "0", "0", "0", "0", "0", "0", "1"], ["16", "16", ">=128", "16", "32", "<=4", "8", "8", "32", ">=128", ">=128", "32", "<=4", "<=4", "32", "16", ">=128", "16", ">=128", "8", ">=128", ">=128", "16", "32", "16", "<=4", "16", "<=4", "<=4", "<=4", "16", "<=4", "32", "<=4", "16", ">=128", "16", ">=128", ">=128", ">=128", "16", "16", "<=4", "16", "16", "<=4", ">=128", ">=128", ">=128", "64", ">=128", ">=128", "16", ">=128", "<=4", "<=4", "16", "16", "8", "16", "<=4", ">=128", ">=128", ">=128", ">=128", ">=128", "16", ">=128", "8", "32", ">=128", "32", "<=4", "16", ">=128", "16", "<=4"], ["96", "76.8", "96", "76.8", "115.2", "115.2", "96", "96", "96", "76.8", "115.2", "96", "211.2", "115.2", "76.8", "76.8", "96", "134.4", "115.2", "96", "76.8", "96", "96", "96", "96", "96", "76.8", "115.2", "96", "76.8", "57.6", "76.8", "96", "76.8", "115.2", "96", "96", "76.8", "76.8", "96", "76.8", "96", "115.2", "96", "96", "96", "96", "96", "96", "96", "76.8", "76.8", "76.8", "115.2", "96", "76.8", "96"], ["nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "17601", "32028", "nd", "nd", "43280", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "35036", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "2778", "14537", "40383", "13368", "29855", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "38712", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "42556", "2222", "nd", "31304", "nd", "nd", "nd", "nd", "21222", "66340", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "45508", "15986", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "44951", "nd", "8689", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "69070", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "16487", "43057", "nd", "32084", "nd", "nd", "40717", "nd", "nd", "nd", "nd", "32529", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "39770", "nd", "16877", "nd", "nd", "nd", "nd", "57372", "13201", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "14036", "nd", "46510", "nd", "33977", "nd", "41481", "nd", "nd", "nd", "nd", "22559", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "nd", "37778", "nd", "nd", "nd", "nd", "nd"], ["https", "http", "http", "https", "http", "https", "https", "http", "https", "https", "https", "http", "http", "https", "http", "https", "http", "http", "http", "http", "http", "http", "https", "http", "https", "llmnr", "http", "http", "https", "https", "ntp", "http", "https", "http", "http", "https", "http", "https", "https", "https", "http", "http", "https", "https", "http", "http", "http", "http", "https", "http", "http", "http", "https", "http", "http", "https", "http", "https", "http", "https", "https", "https", "http", "https", "https", "http", "http", "https", "http", "https", "https", "http", "https", "https", "http", "https", "http", "http", "http", "http", "https", "https", "https", "http", "https"], ["1", "1", "-9999", "-9999", "1", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "1", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "1", "-9999", "-9999", "1", "-9999", "-9999", "-9999", "1", "1", "-9999", "-9999", "-9999", "1", "-9999", "-9999", "1", "-9999", "-9999", "-9999", "1", "-9999", "-9999", "1", "-9999", "-9999", "-9999", "1", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "1", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "1", "-9999", "-9999", "1", "-9999", "-9999", "-9999", "1", "-9999", "-9999", "-9999", "1", "1", "-9999", "-9999", "1", "1", "-9999", "-9999", "-9999", "-9999", "1", "1", "-9999", "-9999", "-9999", "-9999", "-9999", "1", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "1", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "1", "-9999", "-9999", "1", "-9999", "-9999", "-9999", "-9999", "1", "1", "-9999", "-9999", "1", "-9999", "-9999", "-9999", "1", "1", "-9999", "-9999", "-9999", "1", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "1", "-9999", "-9999", "-9999", "-9999", "1", "-9999", "1", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "1", "-9999", "-9999", "-9999", "-9999", "1", "1", "-9999", "-9999", "-9999", "1", "-9999", "1", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "1", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "1", "1", "-9999", "-9999", "-9999", "-9999", "1", "1", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "1", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "1", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "1", "-9999", "-9999", "-9999", "1", "-9999", "-9999", "-9999", "-9999", "-9999", "1", "-9999", "-9999", "-9999", "1", "-9999", "1", "1", "-9999", "-9999", "-9999", "1", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "1", "1", "-9999", "-9999", "1", "-9999", "-9999", "1", "-9999", "1", "-9999", "-9999", "-9999", "1", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "1", "-9999", "-9999", "-9999", "1", "-9999", "1", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "1", "1", "1", "-9999", "-9999", "-9999", "-9999", "1", "-9999", "-9999", "-9999", "-9999", "-9999", "1", "1", "-9999", "1", "-9999", "-9999", "-9999", "1", "-9999", "1", "-9999", "-9999", "-9999", "1", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "1", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "1", "-9999", "1", "1", "1", "1", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "1", "-9999", "-9999", "-9999", "-9999", "1", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "1", "-9999", "-9999", "-9999", "-9999", "-9999", "1", "-9999", "-9999", "-9999", "-9999", "1", "-9999", "-9999", "-9999", "-9999", "-9999", "1", "-9999", "1", "-9999", "1", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "1", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "1", "-9999", "-9999", "-9999", "-9999", "1", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "1", "-9999", "-9999", "1", "1", "-9999", "1", "-9999", "-9999", "-9999", "-9999", "-9999", "-9999", "1", "-9999", "-9999", "-9999", "-9999"], ["true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "false", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "false", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "false", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "false", "true", "true", "false", "true", "true", "true", "true", "true", "true", "true", "false", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "false", "false", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "false", "true", "true", "true", "true", "true", "true", "true", "false", "true", "true", "true", "true", "true", "true", "false", "true", "false", "true", "true", "true", "true", "true", "false", "true", "true", "true", "true", "true", "true", "false", "true", "true", "true", "true", "false", "true", "true", "true", "true", "true", "true", "true", "false", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "false", "true", "true", "false", "true", "true", "true", "true", "true", "true", "false", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "false", "true", "true", "false", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "false", "true", "true", "true", "true", "false", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "false", "true", "true", "true", "true", "false", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "false", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "false", "true", "true", "true", "true", "true", "true", "true", "false", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "false", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "false", "true", "true", "true", "true", "true", "true", "true", "false", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "false", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "false", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "false", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "false", "false", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "true", "false", "true", "true", "false"], ["0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "20", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "74", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "-9999", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "-9999", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0"], ["198590", "334432", "139015", "1975", "112926", "294689", "129412", "139003", "41825", "375524", "156764", "4874", "14620", "282798", "49230", "142613", "126309", "11609", "145071", "23810", "186186", "14759", "117535", "216803", "231679", "273607", "310618", "128020", "135996", "225645", "8818", "4250", "115790", "110531", "12713", "261590", "18703", "40916", "115786", "2785", "261290", "127813", "189302", "237286", "97028", "282749", "173206", "196831", "1668", "142374", "121902", "83558", "25332", "371816", "344310", "138664", "6557", "128484", "18835", "20219", "7751", "286003", "145133", "308341", "209845", "285089", "1704", "119448", "286357", "5276", "132915", "249017", "65217", "144579", "213189", "119925", "164790", "131508", "84994", "84103", "86243", "112342", "159960", "249505", "315976", "284086", "14335", "1976", "294804", "127294", "263581", "127943", "80035", "179988", "17704", "129390", "153358", "281046", "60205", "4819", "296511", "328807", "1996", "112479", "155814", "217061", "138448", "1610", "144150", "18705", "162311", "260750", "31568", "14914", "332391", "63389", "15232", "30185", "184276", "120089", "85092", "88731", "112659", "137483", "190782", "83666", "345634", "156896", "53022", "2624", "139013", "161133", "341694", "376664", "7694", "2715", "10358", "172436", "301307", "228588", "152937", "357645", "47920", "15261", "213799", "134775", "10574", "147247", "45880", "11842", "90166", "138027", "238455", "251722", "1569", "120044", "14237", "2778", "283552", "194046", "191847", "13339", "326403", "314016", "4823", "64824", "41293", "314936", "135954", "282708", "156525", "211957", "295517", "342274", "144724", "10594", "278835", "207528", "128792", "158725", "332416", "49241", "116678", "344104", "288162", "1558", "283075", "295046", "124409", "257588", "165907", "59761", "138106", "25724", "380005", "239379", "134375", "371814", "259963", "175256", "127393", "1703", "157497", "181372", "169684", "153915", "1830", "214534", "315832", "137290", "159698", "140700", "80673", "69005", "99957", "127940", "214709", "3606", "52641", "181844", "327940", "2610", "57834", "338033", "86529", "115179", "264300", "151606", "150140", "17944", "1924", "183805", "141756", "190411", "4863", "17292", "18907", "216067", "11333", "81003", "278924", "142064", "173437", "5048", "147849", "131109", "387028", "128587", "34558", "137474", "31787", "138389", "143883", "11833", "234715", "118775", "344286", "149425", "170015", "257265", "21653", "286022", "5442", "117844", "160978", "47101", "1451", "212191", "80031", "194087", "284638", "64866", "27834", "192788", "44890", "219113", "147303", "95744", "263718", "191805", "314236", "67213", "344898", "125236", "5275", "173417", "153892", "181737", "6749", "112409", "139259", "1998", "40593", "188539", "4885", "314572", "2004", "344307", "368757", "194109", "185830", "183683", "246763", "171054", "92263", "14006", "19057", "16303", "131475", "69577", "130915", "345458", "145146", "65483", "191013", "18760", "282723", "253428", "149930", "41758", "2701", "130348", "177269", "275054", "249498", "171224", "345773", "285878", "194611", "4805", "365439", "137780", "96662", "140662", "129405", "337166", "151857", "6917", "129332", "1791", "181461", "4873", "112328", "264973", "29043", "19800", "178590", "180904", "336900", "1523", "20424", "28168", "49419", "198918", "153267", "4910", "110584", "183103", "178623", "127808", "61503", "204532", "72146", "157498", "222348", "285087", "289283", "380109", "352113", "202706", "2758", "172438", "155600", "127852", "119892", "13698", "222260", "126632", "1946", "239032", "333120", "81811", "101320", "202702", "68694", "225579", "1578", "114951", "79139", "19788", "110536", "231150", "17610", "383066", "142057", "14917", "10423", "39459", "2756", "4868", "211720", "177265", "113318", "228380", "206458", "183485", "294806", "65749", "47151", "7592", "1835", "50858", "11651", "308835", "14425", "265058", "81134", "128820", "15967", "204657", "265508", "3068", "161131", "4831", "172220", "154955", "110514", "18743", "158992", "115792", "209454", "303322", "1475", "249496", "130105", "213451", "16297", "145422", "147107", "204058", "113514", "4799", "336942", "83095", "196828", "341534", "186178", "230109", "68516", "117815", "179541", "345462", "268645", "14913", "245634", "194628", "237600", "131185", "300231", "11189", "92586", "68795", "2716", "1850", "228299", "176453", "295115", "58368", "86563", "158904", "84964", "238832", "338285", "134785", "59516", "56232", "18271", "180006", "345114", "4317", "357508", "344302", "3553", "14610", "66544", "188990", "31647", "4637", "1584", "289937", "183126", "39352", "62266", "132250", "282228", "26921", "125190", "86863", "182041", "182792"], ["342492", "302632", "349335", "347922", "304817", "336897", "340032", "349677", "310404", "336486", "330307", "349908", "345330", "304936", "345494", "339010", "337278", "300591", "346059", "304374", "334706", "347583", "347595", "339396", "349892", "350010", "350344", "347494", "336551", "350822", "347546", "310096", "310456", "347854", "302611", "300658", "347581", "331332", "346954", "304560", "353074", "336943", "301018", "337568", "349292", "348094", "341251", "331844", "351367", "301255", "335439", "347652", "349756", "343292", "301941", "347768", "336134", "336211", "340362", "331904", "339455", "342381", "337339", "346772", "341627", "336573", "338583", "302124", "332495", "347408", "339437", "340112", "350437", "307633", "330374", "351374", "331246", "302996", "347783", "350935", "346692", "300263", "348194", "350297", "300241", "345768", "340686", "351483", "338749", "302395", "338047", "308492", "350372", "307230", "300462", "300398", "341152", "342896", "348748", "340117", "303740", "332991", "347797", "345295", "307286", "330704", "307156", "308876", "340083", "343569", "348237", "351164", "308101", "349262", "335577", "310097", "336762", "350992", "338935", "300849", "301485", "343456", "340344", "300700", "334687", "301355", "344367", "336651", "330039", "339497", "307683", "300807", "330445", "340476", "330650", "331770", "306424", "336445", "351578", "349459", "341562", "347022", "347476", "351078", "349206", "339427", "304911", "340034", "346606", "341401", "340970", "350027", "302642", "351841", "352038", "310189", "350669", "300789", "301288", "345674", "351093", "332121", "342321", "338660", "330561", "300374", "300400", "343749", "350179", "310280", "332893", "310448", "352375", "348016", "344458", "330038", "350536", "348176", "334726", "346671", "339290", "346605", "346041", "339524", "304340", "343461", "301361", "340417", "348555", "351137", "342291", "341569", "301216", "341924", "306482", "339646", "337106", "338592", "349009", "304465", "345986", "330087", "343741", "306032", "346162", "351358", "300924", "351440", "349290", "302869", "348052", "347884", "348029", "343857", "300940", "345567", "338569", "341156", "351881", "302227", "343364", "345643", "332922", "350237", "346076", "310138", "338227", "345771", "310156", "343699", "350050", "337999", "347555", "330411", "331517", "302955", "344207", "350996", "302723", "341678", "348789", "337853", "331383", "332776", "344410", "306074", "349801", "307889", "347189", "342232", "347564", "341488", "343771", "331773", "304658", "350077", "344080", "347432", "300305", "300236", "350788", "339350", "343920", "350220", "352248", "307850", "340157", "306146", "350423", "342157", "343833", "352164", "310062", "304195", "332140", "303464", "341877", "336742", "330997", "348383", "331381", "347026", "339747", "339885", "303396", "347688", "300420", "341430", "308145", "340537", "304397", "341908", "351934", "343695", "347817", "350859", "343178", "349184", "351953", "343582", "302813", "348661", "349627", "345553", "349311", "346481", "308442", "349374", "338902", "306079", "350784", "302972", "347414", "352877", "344283", "349267", "338668", "350624", "342317", "339574", "344597", "350141", "336743", "351088", "330342", "347323", "350176", "349090", "345923", "342883", "349839", "341943", "307807", "351384", "342295", "342843", "341523", "303490", "340022", "306057", "303439", "307104", "349865", "338256", "351264", "347060", "347506", "342731", "344101", "347788", "338782", "347667", "331708", "345339", "301108", "330235", "338007", "346774", "343902", "342001", "303474", "300277", "347092", "343896", "338694", "335717", "342289", "346018", "340789", "346591", "331280", "338972", "300866", "300673", "345054", "342111", "339195", "302456", "307301", "341064", "346822", "308805", "350284", "349701", "346332", "336844", "341478", "308139", "347120", "340870", "306055", "344364", "341663", "337499", "331544", "343754", "338579", "345798", "341421", "346810", "342362", "350016", "347078", "307559", "337766", "332266", "336909", "345418", "345017", "351662", "348317", "337080", "340570", "342511", "350532", "344446", "331425", "346918", "337349", "300580", "338175", "349020", "349872", "301730", "349047", "308377", "304500", "347080", "338969", "341732", "302968", "300562", "346027", "331260", "343832", "342993", "337327", "307138", "350142", "347930", "350662", "310457", "342029", "345119", "346360", "304401", "336047", "344863", "353303", "342105", "304832", "347835", "353265", "337049", "349730", "349201", "340682", "332002", "346566", "338926", "352422", "350171", "352901", "335862", "347086", "304133", "310297", "308305", "338638", "350953", "344103", "351859", "335547", "348541", "330261", "342423", "342033", "304459", "303365", "343469", "308632", "341836", "333013", "336660", "346953", "346008", "351103", "304976", "343716", "330145", "335015", "349214", "337718", "347089", "335039", "330706", "344529", "301799", "349291", "342999"], ["RPM", "RPG", "ENSV", "CACI", "HGT", "PYT", "GNAT", "CNI", "JJA", "DGZ", "MGM", "JYN", "MMS", "VNO$I", "MER$K", "VZA", "PEI", "CDR$B", "NNI", "MS$E", "TCO", "NNN", "RSO$B", "RYH", "MODN", "NM", "TGB", "XSOE", "BSCG", "WIL", "ISG", "GLDX", "JNUG", "URR", "DHX", "PGM", "IEMG", "CAK", "MDY", "AWK", "IHDG", "BLT", "SXL", "PFF", "UAM", "ERO", "GRX$B", "PRGO", "FWDD", "ALLY$A", "FGM", "DLR$E", "KIQ", "SMEZ", "PIP", "HMY", "BND", "PTR", "CLM", "MHF", "AA", "STK", "NRF$D", "DEM", "IHD", "EOX", "RRC", "IXC", "DANG", "COBO", "PMC", "NCR", "VLY.W", "HQL", "RICE", "ELLO", "FCH$C", "BKH", "FOE", "RYL", "AUY", "ELX", "EEMS", "JJC", "BCS$D", "DRQ", "SDA", "WHX", "GDO", "S", "ESR", "JMI", "TNP$C", "LPG", "DDE", "DHF", "ADX", "RWV", "ECNS", "SMH", "RIC", "CMRE", "TER", "QDEF", "BGG", "GDV", "NKE", "ETX", "LXK", "GZT", "RWK", "WRI", "SSWN", "AF", "NPD", "DIM", "DTZ", "FNDB", "WY", "UQM", "RBS$P", "TNK", "TFI", "GNR", "TIPX", "CMO$E", "IAF", "EV", "ACP", "MVF", "FJP", "ADK", "XOVR", "SCG", "ATU", "PFS", "FXR", "EPD", "ESS$H", "RIGP", "WNS", "FPI", "WLKP", "WBC", "PMR", "PHDG", "ENY", "EGI", "IBIO", "DLR$H", "ARL", "FCAN", "G", "BIO", "VSLR", "PSX", "SCHV", "GGP", "EUDG", "IVOV", "GLDE", "ENJ", "PIZ", "HRTG", "OEF", "APT", "PF", "SHI", "APP", "DIVC", "STT$D", "EDF", "PRH", "RCD", "MTZ", "DAG", "WIA", "MFT", "ASB", "DGX", "PHF", "DFT$B", "FLY", "PUI", "PSB$T", "UWTI", "ONEF", "PXH", "AM", "BWP", "JMT", "MUC", "HOG", "PRE$E", "NCT$C", "EXP", "MYI", "NFG", "UBP$F", "PUK$", "LMT", "IEUR", "EVY", "COP", "LVLT", "BAX", "IAG", "CHSP", "C.B", "H", "VRP", "NXP", "ANH$B", "LND", "FRS", "LB", "DBV", "ZX", "CALX", "KF", "CMF", "FGP", "WHZ", "PBR", "GJO", "AQQ", "IWB", "GLTR", "IRT", "GDF", "KNOW", "EMSH", "BCV", "MOAT", "HHS", "EXAR", "AKP", "HCN$J", "CVM.W", "EWZS", "TISI", "RNR$C", "CSH", "ABG", "IXG", "NRF$E", "VLO", "GIMO", "TIME", "NGLS", "TCCA", "BSJJ", "ITR", "BXMT", "EFF", "GEQ", "RLGT$A", "ZAYO", "VMEM", "SNP", "ERJ", "FXC", "FIBG", "FSL", "FYC", "STOR", "BSCL", "IRF", "KSS", "ENB", "GYB", "DAKP", "EXD", "TCK", "CCX", "EURL", "MCRO", "IHI", "FRC$E", "JJM", "RNP", "VKI", "CPL", "TPI", "IJT", "TSLX", "WWE", "AFSI$C", "AYT", "HUM", "SBNB", "LITB", "GLOW", "ITOT", "BR", "EFNL", "MMD", "DST", "PAYC", "MTR", "ALSN", "UTI", "OCR$B", "TCO$J", "SCHE", "CVA", "BCS$", "PXI", "GES", "PCG$B", "SLY", "PSR", "TRMR", "RPT$D", "BSBR", "FUTY", "VLU", "CVO", "WBK", "XLG", "CSJ", "CUBE$A", "DBU", "PBH", "CMP", "UMDD", "GBR", "GTU", "WPT", "ROG", "RFP", "M", "AMH$B", "ZA", "TCRX", "DFJ", "SIR", "FMLP", "CRS", "COF", "IPS", "DGAZ", "ITLT", "SALT", "SVT", "GPM", "ERA", "DOL", "KMM", "CRVP", "SPXL", "HME", "UMC", "IWX", "TNA", "HAO", "PERM", "XLI", "VIG", "C$C", "SHY", "JPM$E", "PLG", "RYAM", "HTM", "SUI$A", "CSCR", "CBG", "TX", "JNK", "CXH", "BK", "EFFE", "DYN", "EMSA", "VMW", "NNN$D", "DAR", "MHR", "UGA", "NJ", "FEM", "SD", "XRA", "HT$B", "GB", "DRL", "PXMC", "BNY", "FTA", "SAQ", "IWV", "ACT", "PNX", "SYN", "ESRT", "URTY", "PNI", "FCN", "BDR", "RBS$L", "SIJ", "FEU", "API", "AMH$A", "HDLV", "HRL", "RODI", "GLOB", "ETG", "HSEA", "MPW", "EWS", "JGV", "BSJL", "VTRB", "MSD", "CBD", "GST$B", "SFN", "TAN", "VAW", "PSB$R", "BCX", "DM", "DEJ", "INCO", "RWW", "HPY", "ICF", "SGM", "BAA", "HSC", "CTX", "NTX$C", "ITA", "LWC", "DE", "BPK", "BFS", "BGB", "MOH", "WBIA", "MCD", "CSLT", "FINU", "GGZ", "HDY", "NVRO", "RGC", "DBMX", "AXP", "USD", "WTS", "PSA$X", "CCU", "BAC.B", "NI", "IVAL", "TDTF", "CCK", "DIRT", "DIVI", "TRNO", "JRN", "CPG", "BRAZ", "CEMB", "RWJ", "AOI", "MUI", "JLS", "MATX", "MTDR", "LCM", "AXX", "SYLD", "UNF", "PRLB", "AVB", "TDJ", "IPD", "NCT$B", "MAB", "KNM", "EMBB", "KRG$A", "SRF", "EFO", "TK", "UWM", "EFZ", "CR", "SEMG", "COF$P", "A", "MCY", "SNLN", "IEI", "DMB"], ["56281", "345165", "145811", "215331", "235019", "255265", "165361", "105551", "175502", "185263", "345306", "505466", "525265", "345148", "465075", "106041", "375422", "455637", "185360", "355086", "465083", "146125", "395481", "465174", "105737", "335676", "165323", "195382", "455513", "355039", "365389", "366250", "15150", "175233", "395539", "675394", "525409", "145737", "366045", "35183", "235621", "255125", "105210", "265245", "185187", "365940", "145324", "205139", "335436", "75235", "155808", "396090", "366149", "165391", "265665", "195477", "265474", "525701", "65187", "555792", "425302", "105472", "425096", "265583", "365489", "455908", "155516", "115409", "225648", "105431", "145853", "335495", "455954", "245434", "335863", "555746", "225179", "165245", "455486", "345513", "555770", "505126", "395990", "75362", "145922", "45381", "285115", "265627", "435037", "225758", "525660", "366004", "165373", "395876", "675681", "125047", "105904", "345566", "335697", "275065", "255292", "395662", "175539", "55367", "335592", "285149", "235640", "55283", "396125", "55597", "175540", "365362", "65246", "375554", "15223", "375409", "335140", "245320", "245012", "255277", "235405", "65077", "455475", "366375", "115387", "495294", "45267", "335604", "525685", "505270", "75270", "235429", "225486", "675866", "396117", "305097", "415044", "145965", "675169", "146106", "225655", "165214", "265739", "165411", "185334", "315469", "55388", "15012", "105523", "675440", "175242", "145989", "155342", "15400", "555067", "106048", "125058", "335765", "365006", "395901", "315308", "365329", "285243", "105837", "55708", "146003", "56158", "365998", "525598", "235375", "155669", "55247", "195149", "445419", "335239", "225201", "265559", "366237", "65294", "105854", "15371", "45343", "145652", "105408", "455494", "105820", "345556", "165193", "105791", "146096", "305074", "675113", "676275", "345097", "505452", "395742", "146054", "255138", "676002", "525677", "265751", "335687", "146020", "395316", "165081", "366364", "555016", "45376", "145087", "335225", "505389", "55070", "495248", "445381", "305040", "335280", "145122", "395713", "265831", "445463", "175450", "65361", "145614", "265110", "365618", "146070", "175383", "365627", "515021", "555115", "385024", "676216", "155353", "195506", "335274", "675272", "365621", "65331", "505522", "235591", "125026", "555342", "75230", "275082", "225272", "555613", "235257", "155659", "555659", "235373", "215207", "215273", "55497", "335476", "255160", "265417", "165424", "165609", "245200", "345164", "366152", "365566", "455703", "155809", "335606", "145860", "55664", "175201", "315453", "345191", "555764", "396129", "35287", "525565", "555093", "375439", "285286", "255127", "145312", "425318", "175169", "55799", "275071", "395951", "365560", "366298", "335849", "525655", "225337", "145151", "396102", "45221", "185420", "265803", "105562", "155157", "245228", "335763", "445480", "245342", "415056", "195590", "265579", "215126", "676023", "505399", "175376", "215270", "675668", "275030", "135007", "525611", "245532", "75414", "105564", "195275", "315394", "75334", "396021", "25028", "215221", "35253", "185260", "676020", "315431", "205075", "335296", "675546", "345514", "295043", "285268", "145358", "145697", "35121", "65394", "85037", "366214", "225476", "366118", "335726", "245491", "105650", "105452", "315471", "525343", "195405", "295050", "535021", "285279", "175184", "55119", "676246", "385259", "225767", "675821", "205131", "375480", "56364", "75251", "155236", "395459", "525453", "675175", "56125", "185395", "195568", "366347", "145875", "135090", "535044", "245372", "265418", "106017", "265247", "56201", "555030", "225622", "105429", "475036", "225394", "235459", "115353", "285292", "315416", "175526", "525706", "675817", "105593", "245362", "35070", "525441", "145819", "165577", "555328", "35087", "15388", "366183", "155370", "365974", "265820", "395432", "365470", "165311", "366120", "115106", "555343", "345277", "495365", "345236", "525580", "265725", "105437", "125059", "265707", "555527", "15163", "225432", "95031", "335679", "345560", "375353", "15210", "265765", "555813", "315233", "145732", "365739", "55001", "315441", "155759", "445260", "445513", "335320", "675206", "465069", "395568", "335513", "106091", "505524", "555757", "285130", "365296", "365980", "145580", "525669", "505474", "395496", "155658", "395950", "146094", "365725", "105859", "235644", "155823", "146015", "355104", "45437", "415054", "435045", "675536", "195539", "235454", "385239", "425035", "335844", "335464", "55562", "675086", "45197", "165420", "275075", "675579", "555536", "75221", "56190", "285209", "455638", "285083", "425004", "385144", "265705", "435042", "65183", "345102", "185150", "395864", "555461", "105986", "55523", "445254", "555231", "265651", "325047", "495386", "145729", "505326", "105701", "675751", "345228", "395735"], ["221443", "193292", "69717", "191188", "198982", "28250", "27845", "47598", "103572", "78313", "75339", "89989", "20061", "53538", "67825", "66768", "48733", "31441", "133814", "57221", "39891", "66891", "115347", "80720", "71722", "199057", "153244", "29716", "124890", "125514", "30296", "106980", "158386", "127563", "71224", "77410", "49048", "96278", "44845", "90780", "111501", "30559", "32244", "26625", "66800", "190839", "142313", "130515", "106828", "104170", "195752", "55520", "84884", "51017", "198542", "70554", "42422", "108297", "134698", "148351", "84509", "182699", "71448", "144698", "52615", "44253", "37998", "25026", "128482", "67953", "90033", "131468", "32966", "131520", "66774", "77470", "83342", "113236", "208737", "47096", "88603", "106604", "172794", "132833", "130963", "39541", "88378", "52991", "62066", "130532", "103477", "79452", "37252", "225297", "129554", "88180", "54427", "161248", "129872", "188747", "140545", "118794", "158298", "287586", "24544", "48109", "244671", "112467", "29008", "114255", "80989", "24342", "54698", "34328", "98832", "153549", "181467", "199663", "165714", "41369", "57499", "140514", "132274", "69774", "67801", "108330", "83468", "84573", "32154", "103501", "104330", "196149", "134850", "59608", "108891", "150364", "41915", "150035", "52239", "127854", "161016", "197074", "145172", "65660", "86911", "121450", "175144", "99161", "68185", "155053", "21875", "47778", "87532", "87663", "92568", "183709", "136467", "42067", "82916", "171479", "28420", "27498", "48731", "80339", "115751", "50444", "116331", "175229", "58827", "52707", "183128", "140498", "19694", "129109", "143494", "47299", "97906", "68657", "183286", "127135", "148248", "82645", "43016", "152296", "71352", "125696", "165036", "127145", "144272", "117489", "66670", "93922", "133666", "76431", "29566", "130992", "40536", "115431", "75218", "140841", "174409", "64587", "109359", "132942", "46291", "145362", "104662", "106083", "84610", "146941", "77209", "92469", "48806", "131280", "88106", "200159", "124894", "66631", "44967", "85650", "86176", "28608", "61991", "82460", "168694", "28673", "71887", "118750", "26685", "139604", "155395", "39756", "87037", "38297", "81379", "36745", "43868", "55925", "26373", "35724", "93520", "179941", "189571", "66480", "27716", "143647", "90714", "47498", "41235", "51087", "143497", "63336", "111296", "63888", "153124", "50402", "191417", "169843", "98703", "72839", "22958", "75103", "67484", "102042", "25604", "32909", "36969", "102920", "76650", "69823", "44037", "75751", "186643", "153432", "33624", "100436", "114811", "39201", "27739", "242345", "138365", "48445", "74105", "24384", "62122", "51532", "39212", "105670", "144457", "47340", "87609", "108567", "93522", "108342", "92525", "184768", "68830", "91107", "147643", "68885", "41952", "75141", "70940", "116962", "130818", "59211", "107562", "152021", "37715", "45684", "73232", "116776", "116712", "141412", "108604", "198033", "90318", "226598", "54595", "78683", "33829", "121152", "46774", "83388", "70510", "101875", "73239", "101843", "80323", "76328", "186272", "90994", "161056", "190956", "193777", "208078", "146811", "88464", "165456", "74287", "28274", "55907", "126328", "123418", "147923", "200266", "162745", "89366", "24149", "31853", "119415", "71728", "28938", "86506", "47292", "114382", "196371", "225500", "171764", "61820", "68451", "51018", "142124", "155609", "159906", "65835", "89112", "184290", "81711", "63445", "196176", "122336", "171441", "125422", "67600", "74618", "37202", "38600", "156288", "82451", "36435", "90223", "23959", "136674", "93547", "162551", "178410", "89222", "78122", "137396", "56067", "80362", "81894", "79984", "107481", "67094", "34399", "100984", "110486", "108588", "89330", "183988", "54335", "90074", "49807", "218820", "57242", "89874", "42958", "103811", "149626", "96930", "230393", "64188", "177139", "94949", "31305", "22885", "125949", "35174", "104223", "80376", "176610", "33344", "56495", "45355", "151234", "30573", "169827", "45146", "38725", "81468", "239702", "48239", "59700", "61749", "45733", "71881", "23370", "87160", "59996", "152311", "51262", "85296", "85374", "145309", "69569", "52980", "131656", "186463", "84861", "84854", "77973", "50745", "178670", "70916", "128211", "132224", "134240", "76604", "47719", "39018", "215236", "38763", "116614", "156912", "59389", "96179", "76842", "72580", "42731", "118934", "174007", "147149", "129284", "154025", "48891", "82704", "92806", "82241", "125486", "145849", "73800", "141368", "95147", "92782", "130334", "23119", "75847", "40356", "55028", "25291", "95777", "35900", "102562", "186768", "253340", "74893", "63705", "29344"], ["260048", "340186", "150154", "241326", "350011", "521352", "100077", "521323", "190259", "030068", "131305", "050590", "490033", "431326", "231330", "041327", "360085", "450669", "110215", "050126", "450711", "050276", "181321", "100275", "090006", "201307", "100008", "281315", "521329", "050624", "400005", "420066", "110130", "500007", "501314", "230146", "290032", "240076", "320003", "010138", "170109", "340091", "330240", "360090", "330160", "360032", "531307", "521316", "241308", "341318", "061313", "16003F", "170120", "670059", "150150", "190218", "180002", "131317", "100110", "251311", "050534", "140067", "42011F", "340055", "330265", "210030", "233300", "100180", "250136", "450617", "281303", "061310", "051302", "340099", "271339", "440057", "450193", "130014", "320011", "150003", "280060", "140258", "110089", "420015", "100018", "140135", "110086", "521337", "141346", "521355", "251313", "100088", "360010", "340032", "440020", "670019", "330226", "23012F", "151300", "431330", "260034", "450132", "390046", "390090", "241315", "330085", "040134", "501302", "420002", "450447", "050724", "520097", "380050", "050057", "230058", "180043", "281354", "420043", "111328", "390233", "161345", "370011", "161365", "381306", "450688", "500141", "450306", "010040", "360210", "340097", "010110", "511308", "370007", "100030", "510013", "230029", "440159", "070035", "670018", "390185", "110083", "140217", "140143", "380089", "230072", "510072", "150008", "490109", "131324", "270023", "341322", "390070", "441312", "370030", "461306", "381301", "450853", "260062", "450643", "050242", "490048", "370233", "251332", "040001", "450591", "050277", "420104", "190176", "490027", "100052", "030062", "140286", "420053", "100249", "240053", "500050", "511314", "341325", "460044", "210019", "330107", "050597", "280020", "190205", "450221", "360152", "151320", "440018", "161351", "450755", "450661", "041304", "260147", "140187", "531304", "520096", "250122", "230054", "230269", "100107", "140052", "241313", "191326", "171353", "360019", "180020", "110027", "490021", "110135", "230070", "241335", "360070", "431335", "100002", "330205", "141348", "150153", "210039", "030110", "050084", "160029", "440181", "050007", "380051", "241319", "190050", "131303", "510082", "151308", "250117", "330404", "440227", "141330", "351335", "201303", "191302", "420049", "050342", "041316", "510071", "450271", "270086", "11031F", "150038", "050132", "150017", "050441", "450651", "120026", "050238", "010137", "400087", "11030F", "140224", "390139", "450008", "330125", "330088", "050254", "520041", "340008", "52003F", "360276", "261314", "110092", "360044", "451377", "361316", "050732", "490002", "440035", "511306", "330332", "280111", "241362", "050543", "141341", "330080", "420009", "140209", "191324", "100246", "050726", "460057", "140290", "360059", "670041", "451305", "210002", "171320", "310110", "521359", "371335", "370232", "330014", "161362", "050689", "370149", "180130", "100044", "500033", "030123", "290008", "521332", "471302", "450855", "261304", "390156", "150165", "100142", "290039", "450099", "050357", "140148", "110006", "390220", "400026", "510055", "100029", "050196", "241351", "330208", "490130", "110015", "240010", "140185", "320016", "450042", "351331", "110203", "53005F", "051306", "341308", "060001", "050131", "040080", "161379", "450742", "370057", "030094", "110184", "400004", "230133", "260190", "140186", "050096", "15003F", "241374", "351330", "450090", "670064", "150162", "110122", "100081", "310047", "100157", "060015", "450801", "150042", "520177", "161360", "360087", "281346", "391306", "310058", "100296", "041330", "440008", "350006", "450213", "36001F", "350063", "161366", "050224", "370211", "150064", "431318", "280129", "330264", "260160", "260207", "031301", "230222", "360051", "220088", "190039", "450082", "281364", "241337", "670068", "231326", "050435", "180056", "430015", "290047", "271317", "100057", "040017", "171322", "050030", "230130", "110007", "300012", "26007F", "450210", "370169", "010033", "670006", "340010", "370029", "521320", "110079", "330094", "390113", "120001", "330162", "140288", "250038", "050697", "380009", "281309", "431325", "241363", "250048", "150001", "251319", "030130", "051315", "501305", "420038", "450148", "450431", "360174", "450779", "171380", "241377", "070006", "511310", "301300", "390058", "250100", "461303", "050380", "140011", "33017F", "231331", "110205", "150177", "251325", "010036", "290009", "251329", "370225", "521315", "050552", "400102", "121300", "20003F", "010056", "150112", "471305", "390217", "190245", "050002", "360351", "171356", "391307", "310017", "020027", "440120", "371324", "161375", "390097", "360134", "100135", "251308", "100288", "520100", "341303", "370199", "161312", "241379", "390223", "240061", "450770", "100167", "450211", "531309", "390150", "281326", "030085", "250134", "040029", "190002", "450647", "220010", "450133", "330386", "460052", "241369"], ["121056", "286134", "25536", "200475", "64759", "274492", "230570", "113278", "60600", "183390", "4839", "41655", "203677", "232106", "250161", "159067", "271448", "46381", "153428", "151820", "3152", "157364", "11851", "33141", "229134", "214526", "30164", "250704", "44328", "110020", "83872", "19174", "277812", "259448", "268775", "26299", "90550", "234574", "137671", "61263", "168236", "119319", "110020", "294588", "207588", "134871", "56323", "293767", "50348", "159715", "7400", "235755", "284056", "7666", "190420", "210879", "9122", "257133", "128687", "221803", "211930", "234804", "41778", "31083", "205139", "40312", "233296", "147217", "204310", "270794", "169764", "180334", "28329", "204546", "204117", "11626", "1207", "41289", "67504", "239795", "259694", "155980", "61262", "231738", "69694", "200225", "171511", "85043", "140792", "51700", "232214", "63587", "256459", "224343", "284974", "31605", "204620", "192659", "245108", "12334", "42603", "197346", "109690", "87542", "29551", "19441", "37073", "106902", "164220", "71510", "134613", "124512", "161873", "267368", "73348", "66945", "102040", "120188", "286760", "517448", "270668", "229231", "206051", "220816", "55140", "48428", "22783", "212418", "115464", "6695", "106642", "121028", "48627", "279254", "61579", "264537", "83667", "74243", "192840", "76143", "14495", "23010", "75113", "299641", "68123", "162487", "170435", "109714", "237699", "81970", "79090", "237712", "158416", "161263", "154260", "223647", "83186", "823426", "144766", "155492", "776716", "170751", "100856", "236665", "280511", "76857", "240997", "239807", "265490", "183028", "80580", "16989", "257574", "195983", "274618", "148211", "279465", "7322", "241039", "176319", "279582", "236181", "141839", "120572", "170597", "20664", "238824", "154300", "52278", "113739", "65293", "200728", "276380", "273745", "138372", "40301", "270558", "116536", "121303", "95248", "8564", "224552", "154052", "140742", "127370", "276863", "196869", "231294", "278957", "109860", "13861", "144090", "17774", "2832", "53288", "218256", "144609", "39975", "157787", "148805", "148311", "242699", "202564", "238710", "79692", "73376", "6619", "237689", "51122", "166245", "235030", "2181", "237621", "26890", "129530", "16087", "221978", "131055", "160335", "163355", "56847", "33455", "31206", "126623", "44768", "164005", "13059", "230546", "16776", "226403", "69593", "221566", "184125", "253670", "275645", "236228", "270479", "67714", "236330", "169223", "42679", "215046", "106655", "48159", "174230", "2796", "121637", "59018", "28864", "19918", "176420", "34132", "203352", "184080", "18185", "97283", "19083", "150866", "117316", "287721", "104701", "238722", "54105", "188617", "101712", "55137", "21377", "180903", "278192", "232430", "81324", "248403", "137486", "74318", "17361", "1388", "200735", "188111", "2741", "19989", "2282", "247487", "165596", "170814", "58068", "194836", "9826", "153560", "130992", "123579", "162919", "285531", "208433", "89719", "26736", "222280", "27083", "120047", "55225", "109864", "15357", "61957", "273771", "237522", "214080", "104254", "29050", "86139", "187172", "31524", "272424", "75033", "283229", "249391", "251907", "243365", "212319", "32774", "275474", "235890", "99447", "66496", "71124", "5936", "207803", "100417", "86081", "358185", "244251", "174459", "30444", "51590", "257029", "230136", "113418", "84821", "85841", "250075", "102706", "241143", "45725", "59144", "247235", "111854", "132157", "95689", "73993", "41623", "82122", "175257", "106970", "223404", "286656", "51185", "231969", "149579", "284313", "261257", "52777", "51020", "126069", "225554", "244001", "112109", "218367", "138179", "59339", "286012", "213026", "277509", "137104", "62801", "280722", "268203", "243809", "253514", "57722", "389097", "281973", "38605", "19336", "59274", "85430", "231697", "113011", "92873", "170863", "198945", "228387", "81870", "196752", "37842", "124384", "67389", "47847", "40405", "50858", "224755", "172935", "246730", "135925", "115849", "78049", "135134", "130349", "190198", "155937", "80160", "76909", "56718", "290277", "54640", "184304", "160186", "30782", "809907", "179780", "293506", "158176", "62160", "222530", "59840", "277145", "217841", "27495", "242667", "119548", "85339", "262464", "7211", "72419", "233803", "139483", "26322", "97007", "175515", "149397", "56280", "272999", "161665", "178478", "240950", "114354", "128825", "219511", "98909", "102513", "937828", "189349", "250940", "297255", "133884", "239328", "64558", "248890", "35275", "215328", "181513", "28518", "97558", "207037", "153680", "134930", "126717", "66061", "107999", "218478", "296616", "202552", "260042", "252382", "99283", "187342", "278382", "133966", "279719", "117151", "209476", "3832", "185700"], ["398659", "401853", "388445", "388779", "389425", "400009", "398086", "389908", "402135", "393797", "396851", "396935", "400177", "403854", "389316", "399012", "396641", "398390", "400696", "393149", "391259", "402216", "398383", "389174", "387115", "396520", "394643", "395898", "398517", "388331", "399612", "393261", "387456", "387920", "387791", "399066", "388577", "387074", "394857", "397189", "387775", "402855", "394883", "398682", "398396", "401708", "396603", "394353", "401349", "387952", "396889", "393739", "397352", "404159", "389069", "391986", "400052", "401920", "393037", "398292", "401200", "392454", "388216", "395072", "395002", "395564", "403451", "387193", "393438", "388952", "397949", "387176", "397339", "401051", "396902", "390967", "398456", "391590", "385965", "392073", "388907", "404176", "392254", "394520", "398207", "398230", "403607", "398297", "386688", "399482", "398622", "401604", "399362", "393429", "401333", "398453", "399701", "400701", "386031", "399748", "400504", "390251", "397740", "402289", "397963", "397521", "395576", "394950", "399704", "387253", "392031", "389244", "400130", "393377", "398517", "400591", "388957", "389859", "393298", "388494", "397083", "396989", "393737", "397212", "388883", "396167", "403657", "398597", "397597", "396872", "400064", "398851", "399452", "401917", "386281", "398071", "389137", "388947", "387144", "397467", "401919", "389418", "396238", "389191", "410467", "397287", "397624", "401353", "388567", "399673", "389172", "403114", "397843", "398367", "392937", "395109", "391316", "391503", "389720", "388113", "400338", "389844", "397473", "402223", "395190", "393012", "393446", "390208", "389242", "395492", "383754", "393357", "401854", "399663", "400347", "394737", "391165", "403697", "387681", "389010", "387830", "394051", "398400", "400307", "389313", "403095", "401492", "401804", "385958", "399743", "403951", "401584", "398492", "397611", "398453", "397362", "391053", "398726", "394106", "388955", "400891", "396862", "402389", "392349", "397024", "398390", "399996", "391042", "400343", "398604", "397941", "397211", "397647", "401919", "404146", "397549", "406054", "404154", "397338", "402197", "396519", "390963", "397541", "385982", "397361", "401566", "392246", "397718", "399305", "396805", "395170", "395799", "396695", "398584", "397640", "389483", "404151", "406062", "396188", "394857", "397682", "384082", "395687", "390956", "398587", "393216", "388454", "388849", "399303", "385893", "389466", "389415", "396688", "403717", "400540", "399434", "401046", "394988", "398076", "403604", "397248", "387812", "398844", "388728", "403730", "395955", "398795", "388366", "393216", "400222", "400731", "397321", "400016", "401363", "392493", "395770", "398822", "388445", "398509", "395925", "397466", "396433", "404006", "403367", "399415", "394850", "396877", "399241", "397667", "402155", "399681", "395176", "395868", "392322", "390710", "398955", "395159", "394689", "401901", "393047", "403275", "388337", "397341", "386458", "387849", "390754", "395469", "396728", "395890", "398841", "391747", "396206", "393416", "394773", "398172", "397808", "394528", "398636", "397167", "401920", "385093", "403788", "400064", "398441", "395273", "392925", "385605", "388280", "399485", "392315", "399067", "388914", "394965", "400045", "399854", "398527", "389293", "405639", "402245", "397182", "400305", "402745", "396019", "398805", "396151", "395962", "404171", "396394", "397887", "395855", "403078", "398847", "387999", "402440", "398864", "392086", "389651", "399866", "394105", "392782", "385725", "397393", "388706", "396197", "398510", "400399", "392118", "403698", "397169", "396529", "386152", "387309", "395365", "397359", "403704", "388242", "389423", "390955", "398266", "402996", "396774", "396150", "399279", "389180", "396783", "400149", "394105", "390571", "403100", "401998", "404451", "393517", "397211", "398804", "397785", "392917", "396099", "400484", "393421", "396907", "386384", "388748", "388987", "388339", "402156", "393115", "399839", "385306", "389071", "399603", "385951", "387287", "402960", "389704", "397688", "393973", "389158", "398089", "390991", "396722", "397364", "389574", "404452", "400785", "397747", "402139", "398892", "390420", "385690", "404145", "397401", "387281", "388507", "396842", "399926", "389788", "389340", "395458", "389116", "397637", "386225", "388244", "389372", "399551", "399439", "395883", "399163", "402686", "401793", "397468", "385536", "404545", "385857", "404715", "391290", "401644", "383490", "390911", "400994", "404541", "389430", "398483", "388844", "386959", "399174", "402233", "387066", "397191", "396848", "395067", "396915", "389613", "394481", "389488", "401920", "394880", "389364", "396180", "395137", "396578", "404433", "403976", "397067", "388323", "398583", "388439", "401291", "397892", "387277", "397114", "400050", "389758", "397772", "396859", "397680", "394105", "400124", "390211", "396894", "385927"], ["38.423", "24.511", "36.575", "26.764", "20.212", "17.75", "21.865", "28.863", "26.103", "44.779", "24.121", "36.366", "15.195", "29.868", "23.407", "21.565", "41.667", "16.887", "26.056", "18.286", "24.464", "27.772", "19.883", "20.406", "22.981", "31.72", "24.818", "28.222", "39.481", "15.261", "20.211", "39.263", "38.148", "20.841", "38.423", "27.989", "36.059", "19.002", "16.258", "41.379", "21.978", "21.867", "15.054", "37.147", "20.547", "37.046", "24.2", "30.439", "16.141", "14.319", "19.83", "45.5", "20.639", "16.456", "24.89", "26.662", "30.452", "31.043", "36.727", "20.372", "25.195", "34.097", "38.143", "16.447", "45.282", "17.948", "40.449", "43.522", "18.816", "21.201", "15.841", "17.754", "38.385", "39.026", "32.526", "28.467", "21.817", "44.045", "42.967", "23.168", "40.742", "29.723", "24.189", "21.835", "18.973", "15.198", "28.279", "25.698", "22.651", "19.834", "21.576", "25.567", "18.946", "37.756", "19.467", "17.516", "28.606", "17.871", "28.917", "19.095", "18.804", "16.675", "39.47", "20.036", "15.521", "28.56", "23.176", "37.374", "44.292", "18.576", "16.371", "23.536", "21.972", "19.277", "23.455", "37.509", "38.339", "38.021", "21.325", "31.412", "19.83", "18.926", "20.049", "38.932", "24.05", "23.681", "26.807", "19.61", "25.295", "30.489", "21.412", "16.224", "31.951", "40.459", "38.426", "30.152", "23.017", "24.261", "22.818", "39.218", "19.492", "23.374", "22.335", "42.374", "18.818", "39.127", "20.253", "38.568", "21.733", "17.616", "23.082", "30.204", "26.226", "21.456", "20.742", "17.319", "20.866", "41.402", "36.68", "39.178", "23.511", "17.715", "17.017", "22.475", "38.333", "19.132", "30.289", "21.334", "20.08", "14.681", "15.559", "17.807", "42.501", "40.625", "20.782", "35.024", "22.424", "25.922", "19.081", "19.889", "23.289", "30.339", "22.449", "23.101", "37.861", "19.718", "27.358", "17.626", "20.035", "23.281", "24.509", "16.625", "15.016", "42.628", "20.671", "20.246", "15.118", "18.123", "28.929", "15.927", "14.451", "23.623", "43.632", "21.942", "45.105", "16.273", "21.928", "24.162", "18.538", "16.485", "24.411", "23.426", "42.003", "21.946", "15.517", "17.742", "35.064", "16.137", "34.09", "22.984", "27.799", "36.809", "18.946", "29.328", "20.679", "29.795", "40.021", "21.53", "41.701", "20.266", "29.744", "21.329", "20.676", "32.783", "42.275", "42.292", "35.78", "24.261", "16.529", "12.92", "16.138", "19.43", "24.311", "26.125", "21.869", "21.866", "20.788", "26.619", "21.087", "17.702", "22.455", "22.162", "15.418", "17.182", "15.502", "38.041", "22.661", "16.883", "15.513", "21.945", "17.395", "32.734", "22.22", "15.523", "21.288", "26.814", "18.346", "37.437", "24.458", "19.013", "25.635", "30.63", "24.502", "28.937", "18.959", "26.735", "21.69", "34.758", "20.77", "22.221", "37.779", "28.092", "16.93", "19.239", "19.241", "29.951", "27.987", "36.237", "23.89", "43.529", "17.786", "20.446", "15.739", "19.747", "22.954", "23.941", "34.633", "21.867", "24.718", "27.513", "37.736", "36.624", "17.965", "36.966", "16.635", "37.524", "20.208", "22.578", "20.437", "42.477", "18.902", "21.057", "19.517", "37.539", "23.024", "16.625", "21.804", "21.168", "29.058", "37.576", "28.449", "17.706", "18.963", "24.236", "32.346", "35.654", "16.241", "29.014", "21.935", "25.601", "23.672", "17.697", "37.703", "15.652", "26.154", "22.337", "38.037", "30.697", "22.138", "16.082", "19.782", "22.01", "18.802", "28.774", "24.626", "40.181", "23.757", "18.946", "15.955", "40.179", "17.629", "15.097", "20.134", "32.553", "13.997", "27.423", "31.758", "16.515", "24.02", "42.268", "25.328", "20.918", "18.994", "36.655", "34.606", "24.24", "36.754", "23.308", "15.358", "22.302", "18.819", "39.77", "16.675", "14.474", "16.231", "42.736", "19.604", "20.424", "30.448", "29.884", "23.405", "38.37", "21.184", "21.454", "14.579", "40.845", "34.07", "15.836", "28.783", "17.682", "38.508", "40.649", "28.362", "15.997", "20.055", "40.512", "17.682", "37.531", "21.001", "21.027", "22.947", "19.719", "37.492", "38.417", "30.398", "39.215", "19.488", "15.33", "19.025", "17.992", "40.254", "38.705", "23.404", "29.502", "34.677", "19.938", "15.552", "21.064", "32.834", "44.923", "33.223", "42.959", "37.536", "43.814", "33.488", "20.469", "15.833", "22.943", "17.741", "29.726", "37.128", "20.675", "38.396", "18.432", "31.836", "44.053", "19.578", "43.309", "29.309", "22.65", "23.084", "37.317", "32.669", "38.011", "38.524", "17.872", "19.563", "24.231", "32.723", "30.148", "30.733", "18.958", "42.768", "38.376", "40.503", "38.41", "17.759", "21.743", "42.893", "15.202", "28.308", "33.257", "39.918", "24.956", "18.513", "20.041", "8.8737", "20.757", "14.554", "24.185", "19.832", "18.923", "35.4", "21.197", "39.501", "20.696", "33.774", "32.528", "37.227", "20.329", "23.259", "16.193", "22.375", "18.852", "21.737", "25.303", "23.934", "42.98", "25.623", "22.459", "34.324", "17.729"], ["3711", "54050", "725", "7694", "3554", "1670", "1308", "1208", "1008", "368", "36293", "1462", "21828", "2446", "145501", "7831", "3518", "1687", "679", "251", "3725", "74844", "3551", "2849", "150", "1856", "8538", "2839", "5256", "3523", "39769", "2350", "410", "1293", "387", "1906", "424", "51", "24111", "7159", "567", "67274", "195", "3291", "1390", "37928", "66212", "857", "527202", "1120", "104262", "46916", "606", "559", "320", "245", "4520", "227", "7416", "960", "5306", "354", "1017", "67", "1528", "1476", "2807", "1057", "115977", "2361", "1487", "3232", "18930", "1078", "187891", "862", "1569", "545", "4182", "9244", "94672", "1090", "3194", "1943", "7701", "39002", "200", "13206", "7117", "1505", "4750", "1845", "2337", "18963", "1583", "1680", "52804", "2871", "2877", "10267", "40166", "1367", "1225", "137", "3341", "148", "9504", "465", "271", "693", "13814", "1544", "1119", "1896", "74", "426", "6046", "48184", "35", "13042", "1563", "650", "328", "373", "796", "5933", "3109", "256", "20165", "150024", "237", "568", "703", "31150", "1202", "2378", "751", "35980", "76", "1062", "527", "2167", "722", "37097", "55318", "170", "4746", "908", "2112", "1719", "2738", "489", "30364", "1408", "7613", "209", "1754", "847", "374", "1589", "47", "1249", "295", "712", "11564", "411", "38227", "5162", "564", "714", "1917", "5551", "738", "14424", "1756", "3870", "56463", "942", "1499", "297", "299", "59", "2133", "48077", "117389", "1083", "685", "41730", "66843", "2258", "596", "7833", "1115", "1603", "45589", "4062", "3426", "5205", "222614", "927", "193719", "837", "156923", "3067", "1145", "228", "1610", "192760", "4597", "326", "99467", "3748", "342", "304", "16726", "8144", "6295", "1712", "378", "524", "171", "398", "967", "5814", "86140", "24840", "76853", "581", "645", "450", "2105", "9059", "4676", "4826", "373", "4480", "6212", "17185", "9286", "260", "251", "12202", "1296", "15530", "3101", "1039", "978", "4022", "1131", "824", "7257", "434", "547", "4700", "755", "108777", "8794", "2848", "4004", "838", "30266", "2508", "2527", "56960", "8045", "4859", "10200", "128", "2207", "2835", "12071", "1077", "13720", "529", "1764", "548", "2487", "907", "600", "21971", "5313", "2936", "5662", "720", "1554", "2482", "74202", "628", "524", "272", "101", "980", "1251", "5161", "744", "4033", "4580", "413", "3424", "201", "2167", "2225", "2005", "5854", "95", "1704", "1105", "730", "1159", "42145", "29534", "2431", "2501", "130", "6928", "8701", "96089", "694", "4320", "21601", "768", "540", "5559", "1889", "349", "30465", "1051", "148794", "2129", "8000", "4880", "1933", "2990", "6329", "2097", "1363", "1297", "57145", "19", "2603", "945", "21597", "9405", "802", "45921", "925", "234456", "1474", "410", "348", "420", "4320", "29326", "14555", "3239", "8221", "1046", "120", "10617", "437", "413", "1136", "1179", "495", "912", "10204", "7201", "52842", "4489", "1979", "5485", "2892", "114", "614", "5141", "2410", "2815", "2972", "512", "84", "9953", "1688", "1742", "1186", "3230", "19995", "3603", "71", "10101", "3035", "177", "3456", "1933", "1893", "24725", "1262", "1887", "204", "5704", "1536", "2429", "137", "91700", "529", "342", "3266", "389", "596", "1012", "4021", "19141", "1026", "2079", "1234", "1328", "41582", "157", "2819", "1768", "1726", "600", "4307", "518", "455", "1428", "1669", "345", "19283", "559", "4305", "22560", "792", "11026", "3314", "4100", "1776", "1315", "12863", "18928", "602", "830", "3964", "31209", "3005", "40431", "906", "1161", "1096", "458", "1610", "510", "26830", "30801", "9923", "31647", "4648", "6698", "61056", "299", "1742", "11467", "883", "3572", "285", "530", "2098", "11826", "14099", "399", "182", "78", "4666", "2008", "356", "25146", "273", "810", "267", "175", "131888", "12083", "971", "855", "30292", "123315", "2656", "1866", "2626", "439", "5926", "104859", "3650", "91", "20515", "382", "91990", "1216", "1937", "2283", "9940"], ["384659", "389427", "383754", "385429", "385997", "384004", "389113", "387345", "385616", "386881", "384646", "384502", "388046", "381333", "385920", "383620", "385626", "387251", "380151", "385116", "385981", "382404", "379820", "384925", "386160", "387130", "387042", "381823", "383298", "386894", "384726", "384003", "380241", "384265", "385978", "387773", "382880", "381667", "388276", "389025", "384535", "388326", "382809", "386044", "383981", "385659", "386421", "386614", "386912", "385736", "384675", "385030", "382972", "386095", "386639", "388595", "382818", "382388", "383854", "380890", "388735", "389155", "382038", "386318", "385957", "386551", "382371", "383078", "380569", "386138", "385492", "385616", "386461", "383115", "383282", "383680", "382944", "385954", "382452", "381015", "384405", "386985", "387282", "383894", "384260", "380492", "387415", "386484", "384375", "385327", "385323", "384414", "380691", "383547", "387322", "385142", "383602", "382790", "385468", "387920", "385894", "384573", "384701", "384620", "382149", "383665", "384769", "385896", "383853", "382956", "384309", "380514", "387969", "382533", "384683", "382510", "383285", "387146", "385550", "384275", "383489", "384699", "385064", "381610", "389177", "387325", "385798", "388069", "385079", "385461", "385941", "385825", "381518", "387258", "387711", "382421", "385337", "384086", "385902", "384470", "387818", "386352", "381294", "385500", "385616", "389405", "385994", "383420", "387347", "384344", "388386", "387737", "383914", "385953", "388345", "384824", "380543", "388616", "379531", "388052", "386188", "385165", "383288", "384811", "385776", "386071", "384350", "387197", "383451", "386347", "388512", "386798", "386023", "388387", "388440", "383083", "384754", "380042", "384648", "387116", "387759", "384495", "384983", "385009", "385895", "385277", "385636", "388642", "382356", "383544", "388764", "388090", "381512", "384771", "384629", "383618", "382722", "385464", "384425", "383540", "379181", "384656", "388123", "383819", "383088", "383244", "380635", "387947", "387051", "385869", "383530", "384188", "385201", "383433", "383607", "388171", "380642", "383533", "386009", "387422", "388047", "385817", "384110", "385043", "387965", "383928", "381518", "384738", "384710", "383593", "387357", "386159", "387036", "385099", "383614", "389162", "384221", "388021", "381903", "383795", "388142", "388481", "386585", "380732", "384638", "380710", "382502", "385954", "383770", "384876", "384362", "381298", "383650", "386784", "387890", "381742", "384781", "387027", "380615", "383559", "386062", "383964", "384794", "383859", "381062", "385987", "384770", "383803", "386296", "383899", "384661", "382598", "387372", "383872", "382680", "383365", "384957", "385128", "385163", "380460", "384703", "385366", "382606", "384340", "385729", "383243", "383606", "386392", "388156", "385019", "383962", "386723", "386212", "385894", "387408", "383832", "383930", "383810", "385109", "382646", "386463", "384730", "386805", "388478", "383860", "385887", "383844", "381694", "380710", "386571", "386831", "384148", "384980", "388137", "385190", "380300", "387876", "384356", "384012", "389213", "382211", "381036", "384415", "383182", "385187", "383582", "382487", "384714", "384669", "388078", "386545", "386001", "389492", "387549", "385713", "384095", "384016", "381672", "388748", "386453", "383213", "381759", "388188", "382731", "381675", "385228", "383255", "390091", "386331", "386255", "382501", "388034", "389638", "384422", "384987", "382886", "384512", "382550", "387155", "387436", "388846", "383952", "384113", "384090", "384708", "384416", "386543", "384622", "386773", "380790", "385894", "385461", "386929", "388361", "383932", "389026", "380506", "388742", "383102", "381577", "380905", "383754", "385931", "384485", "385558", "388285", "387282", "388319", "383108", "383714", "381005", "384025", "386891", "382516", "382711", "380995", "383644", "380411", "388490", "382451", "388112", "386413", "385300", "384337", "382827", "382819", "382640", "384378", "380382", "383503", "389127", "382533", "380676", "385614", "384087", "383523", "383748", "387057", "386780", "385375", "385130", "383847", "386872", "387779", "387503", "389342", "380248", "384836", "386913", "382019", "384882", "380743", "385031", "382744", "386756", "385667", "387285", "382618", "387308", "386110", "383546", "382637", "382509", "385745", "382478", "384185", "386860", "387066", "385268", "387693", "385415", "385596", "386330", "382962", "388586", "379620", "385753", "384254", "386185", "380405", "384701", "384637", "381341", "385378", "387751", "385359", "380750", "384745", "385821", "387007", "382731", "386083", "388840", "386285", "383795", "384023", "382753", "386008", "384249", "386526", "383927", "381079", "388135", "384495", "380963", "384769", "387024", "383970", "382657", "380319", "384484", "385009", "385528", "380643", "382941", "382280", "385501", "383381", "387119", "384350"], ["2651", "441", "1270", "20323", "7891", "29149", "1239", "44", "23047", "1465", "251", "79", "285", "1198", "108", "190", "21", "155", "326", "6347", "11678", "840", "347", "446", "3510", "966", "190", "84", "11659", "903", "179", "461", "543", "272", "5627", "18704", "502", "76", "1474", "18502", "627", "2017", "29747", "1767", "241", "2052", "1155", "284", "194", "137", "1369", "1986", "483", "116", "1600", "1783", "970", "857", "1462", "538", "396", "129", "11279", "424", "5879", "18258", "112", "2520", "42709", "723", "13965", "22631", "27447", "321", "327", "336", "2347", "15793", "6290", "102", "109", "2100", "723", "3893", "58", "413", "166", "26367", "1539", "4689", "195", "3660", "26836", "1209", "1030", "3132", "15181", "46", "154", "30", "520", "178", "1461", "878", "7089", "579", "15987", "550", "944", "73", "82", "4570", "72", "150", "74", "349", "103", "4043", "530", "24672", "128", "2168", "1929", "73", "365", "360", "839", "277", "1044", "2232", "379", "95", "902", "3971", "83", "309", "584", "892", "168", "1737", "184", "651", "1759", "1406", "8847", "1321", "4388", "20438", "2848", "1691", "257", "88", "1811", "309", "680", "1872", "411", "608", "55", "7820", "257", "3129", "1313", "2323", "10596", "4594", "340", "596", "303", "791", "363", "215", "3564", "21458", "292", "135", "1267", "182", "2001", "5634", "102", "16", "421", "210", "1113", "31107", "295", "2324", "1821", "2585", "182", "190", "313", "63", "7395", "464", "231", "1387", "150", "76", "95", "342", "15459", "6850", "49188", "1195", "266", "53", "572", "272", "1050", "220", "325", "204", "1690", "6620", "113", "1027", "36", "193", "773", "1744", "392", "214", "264", "122", "10264", "293", "7805", "3250", "2706", "43774", "17007", "276", "208", "217", "9029", "88", "140", "2380", "129", "74", "985", "296", "1427", "3353", "4365", "3611", "42191", "847", "1182", "1070", "325", "470", "47553", "32418", "7578", "310", "526", "3488", "14348", "3567", "685", "426", "10640", "967", "160", "19116", "5973", "1305", "861", "680", "3540", "11451", "12143", "103", "249", "352", "123", "93", "34", "633", "184", "9956", "1439", "610", "36699", "2328", "332", "656", "575", "147", "59331", "3944", "1316", "210", "1343", "265", "209", "341", "206", "3600", "836", "1060", "771", "281", "1599", "6946", "3815", "216", "2120", "120", "158", "2664", "57905", "1618", "645", "1031", "4996", "541", "5714", "637", "35392", "470", "672", "148", "5359", "11094", "382", "466", "1914", "56", "49935", "521", "514", "523", "51661", "2608", "182", "148436", "51568", "674", "373", "469", "107787", "63", "2029", "1488", "95", "432", "1552", "38", "869", "3413", "2466", "682", "117", "5523", "8601", "112", "73", "696", "6387", "1104", "331", "91", "24585", "80", "36", "164", "92", "1837", "525", "628", "838", "110", "235", "15", "574", "544", "381", "241", "1042", "265444", "462", "399", "1450", "2340", "9086", "2059", "147", "54", "206", "1309", "69", "41", "508", "79517", "7100", "293", "506", "13412", "149", "1224", "1616", "7571", "5634", "106", "69", "87257", "30283", "587", "3951", "7150", "1615", "3232", "1095", "395", "93", "18629", "36779", "1856", "9996", "2807", "81", "547", "369", "6942", "3860", "2878", "38693", "111", "4574", "3135", "6805", "420", "4213", "7002", "84", "385", "1044", "3494", "370", "126", "34004", "2152", "635", "715", "1793", "28571", "219", "22989", "411", "915", "1119", "1840", "507", "8357", "198", "1815", "85", "624", "380", "34584", "50", "3396", "109", "399", "377", "45370", "15982", "2515", "2581", "32", "107", "25461", "1940", "1578", "151", "200301", "677", "192", "420", "5107", "168", "656", "16870", "67", "188", "32613", "81797", "225", "167", "104", "2243", "962", "271", "3247", "141", "5375"], ["339.5", "89.17", "156.22", "339.13", "352.18", "340.57", "161.97", "341.28", "345.77", "130.01", "19.48", "326.99", "43.58", "341.94", "349.26", "346.77", "249.45", "159.17", "77.58", "339.84", "331.78", "322.93", "50.31", "75.9", "332.94", "339.28", "143.96", "138.25", "315.32", "281.32", "314.46", "163.03", "7.582", "352.47", "337.24", "242.42", "321.16", "306.21", "167.91", "112.33", "347.18", "329.34", "315.52", "337.32", "352.19", "314.3", "5.3067", "345.1", "318.06", "160.8", "281.82", "342.25", "341.99", "277.93", "167.66", "13.28", "13.028", "338", "156.05", "333.27", "349.02", "339.79", "349.9", "342.05", "333.81", "96.07", "336.36", "253.82", "347.44", "280.62", "338.7", "316.67", "336.77", "249.48", "140.2", "343.34", "4.52", "343.79", "244.38", "190", "210.57", "75.2", "90.08", "279.87", "160.98", "339.46", "111.63", "337.97", "345.96", "313.53", "286.16", "11.75", "190", "11.433", "340.86", "336.5", "344.43", "339", "341.28", "349.83", "113.29", "330.75", "328", "340.07", "5.43", "284.58", "7.24", "338.97", "7.82", "316.33", "134.13", "91", "341.42", "339.43", "338", "177.17", "162.38", "13.99", "357.52", "337.94", "11.703", "341", "72.34", "349.25", "141.19", "250.53", "332.11", "326.52", "330.13", "341.42", "316.56", "330.43", "250.52", "314.12", "7.42", "340", "313.51", "160.98", "211.53", "276.26", "138.58", "341.43", "346.01", "130.26", "12.36", "150.43", "329.34", "112.75", "350.07", "298.76", "316.26", "345.3", "338.37", "339.06", "10", "12.377", "281.97", "168.1", "79.87", "167.99", "281.82", "338", "241.62", "150.34", "8.8", "341.69", "7.58", "73.19", "347.98", "15.311", "339.13", "5.03", "112.75", "342.34", "338.5", "339.03", "59.19", "348.15", "313.37", "76", "316.51", "94.09", "91.75", "11.307", "316.26", "89.97", "349.35", "150.43", "348.96", "341.94", "325.98", "320.1", "342.97", "313.81", "316.25", "342.14", "343.33", "190", "316.69", "167.98", "303.99", "283.7", "348.5", "287.1", "166.15", "350.56", "313.96", "345.42", "347.91", "343.65", "316.67", "318.38", "343.57", "338.29", "356.75", "316.62", "340.27", "341.27", "316.96", "343.15", "343.17", "357.3", "341.42", "245.9", "283.76", "341.04", "340", "3.4", "9.8", "144.67", "279.87", "350.14", "352.88", "328.01", "336.85", "127.55", "343.5", "161.6", "345.51", "341.82", "283.59", "327.15", "342.64", "90.03", "281.93", "140.18", "7.53", "306.42", "14.343", "338.29", "306.12", "95.03", "350.22", "174.93", "281.32", "338.88", "351.22", "164.65", "5.42", "5.57", "338.97", "335.83", "57.35", "51.19", "316.59", "313.37", "283.87", "6.0267", "7.5367", "317.11", "316.51", "162.7", "6.04", "0", "282.12", "330.34", "159.22", "1", "313.37", "331.77", "342.2", "18", "115.87", "282.31", "242.37", "345.3", "329.1", "8.9", "342.14", "283.87", "321.8", "313.49", "339.65", "347.23", "121.79", "9.1858", "318.38", "90", "344.67", "138.27", "313.5", "336.77", "338.87", "248.82", "93.1", "326.15", "321.57", "349.02", "335.89", "348.04", "341.42", "112.08", "285.2", "140.34", "339.71", "320.52", "283.88", "11.617", "340.25", "167.45", "339.84", "161.42", "11.033", "90.02", "338.1", "316.51", "329.35", "240.03", "177.99", "5.0317", "245.5", "339.99", "112.93", "241.82", "358.67", "341.99", "130.42", "128.03", "158.68", "149.07", "144.23", "51.56", "11.2", "342.14", "315.74", "342.93", "313.66", "347.25", "341.07", "338.28", "340.16", "7.1017", "117.38", "274.4", "52.92", "339.5", "341.01", "345.29", "144.59", "13.31", "321.95", "333.46", "338.95", "248.8", "339.14", "327.99", "286.6", "313.16", "129.02", "315.53", "269.18", "283.93", "285.19", "284.57", "12.022", "112.21", "317.29", "130.8", "342.25", "331.77", "351.69", "315.52", "338.23", "168.14", "349.57", "282.77", "11.75", "351.94", "13.56", "324.35", "335.76", "8.883", "244.92", "349.61", "341.43", "316.8", "322.28", "282.15", "283.71", "11.738", "314.31", "352.4", "113.54", "287.62", "302.38", "352.41", "281.19", "344.89", "288", "167.79", "60.41", "347.6", "159.23", "346.77", "336.98", "359.27", "314.32", "339.67", "155.87", "338.03", "333.24", "5.1", "8.58", "17.633", "306.34", "11.3", "157.3", "347.57", "350.5", "9.89", "323.92", "337.13", "340.57", "344.49", "347.29", "156.98", "167.95", "167.83", "336.98", "248.92", "276.48", "313.37", "236.9", "26", "282.33", "150.43", "352.42", "302.47", "225.69", "246.66", "314.47", "340", "167.9", "321.63", "13.085", "241.6", "344.15", "314.07", "17.543", "321.66", "11.31", "347.57", "263.9", "339.38", "167", "336.5", "349.65", "315.8", "316.56", "316.3", "340.89", "330.4", "13.09", "345.51", "17.033", "11.33", "313.37", "343.17", "285.59", "150.18", "63.12", "130.06", "349.83", "89.58", "242.63", "325.98", "339", "112.63", "338.14", "335.47", "347.23", "298.76"], ["115", "533", "931", "187", "48231", "714", "38128", "61", "33", "88", "204", "32", "2948", "376", "978", "2273", "70", "1190", "27743", "208", "875", "309", "16", "134", "18692", "368", "252", "7459", "322", "7306", "425", "225", "38", "638", "92", "241", "212", "1258", "83", "7751", "61", "37", "1825", "1481", "559", "287", "2014", "233", "358", "18", "184", "3540", "40", "47", "493", "7552", "4970", "505", "534", "372", "703", "5862", "1397", "401", "83", "862", "111", "3507", "859", "438", "14356", "60", "1592", "592", "1713", "787", "5772", "1077", "8805", "3135", "1763", "14334", "49", "9317", "719", "97", "200", "1174", "378", "155", "61", "164", "2114", "20", "2023", "421", "650", "16", "195", "63", "123", "104", "511", "85", "405", "2414", "9369", "28", "311", "171", "1842", "2739", "48", "263", "310", "121", "10610", "309", "175", "216", "329", "58", "448", "87", "657", "212", "2026", "90", "286", "2944", "192", "141", "14456", "77", "2188", "500", "614", "1008", "926", "455", "620", "595", "2656", "315", "1327", "145", "145", "837", "8731", "145", "18942", "3433", "71", "1547", "1048", "17", "106", "125", "14399", "3923", "1075", "104", "89", "18", "2284", "5439", "220", "639", "494", "632", "2280", "3397", "1982", "453", "207", "2284", "668", "2418", "547", "871", "181", "28891", "1204", "119", "209", "347", "31", "22364", "77", "408", "8046", "1116", "376", "190", "8597", "69", "12864", "243", "26228", "112", "45", "102", "162", "595", "2476", "26", "160", "63", "17", "1144", "111", "378", "78", "462", "632", "114", "157", "20254", "35", "5912", "280", "1449", "2035", "218", "2022", "3569", "54", "251", "8272", "161", "1018", "100", "7750", "107", "838", "551", "1288", "95", "1023", "881", "182", "5332", "64", "797", "627", "1705", "289", "1553", "1019", "37", "156", "200", "1447", "54", "40", "65", "1095", "3631", "165", "2812", "196", "3349", "1110", "843", "86", "7277", "23", "117", "1068", "75", "22", "345", "45", "5937", "2859", "66", "964", "33", "33", "3193", "176", "171", "2982", "641", "70", "71", "54", "137", "34", "1578", "1873", "12484", "42", "1834", "31", "53", "3165", "150", "3535", "2028", "172", "3184", "247", "112", "275", "95", "3662", "442", "3872", "58", "169", "106", "3729", "59", "652", "595", "410", "209", "153", "91", "892", "280", "100", "1093", "51", "1006", "510", "264", "165", "186", "110", "644", "95", "289", "185", "103", "393", "59", "710", "680", "575", "7171", "12851", "69", "8014", "3129", "5040", "1121", "24754", "775", "1452", "147", "623", "1834", "249", "28", "285", "56", "11240", "253", "308", "4063", "8", "848", "91", "3862", "206", "899", "238", "796", "1160", "25", "83", "95", "210", "2174", "66", "802", "1709", "695", "109", "501", "405", "74", "861", "1093", "14", "142", "3336", "331", "54", "45", "477", "395", "1654", "233", "550", "276", "298", "94", "2929", "131", "91", "538", "377", "1849", "45", "3388", "88", "979", "3109", "16160", "332", "314", "5448", "647", "187", "426", "130", "433", "5561", "669", "126", "69", "74087", "136", "80", "166", "137", "1811", "22311", "842", "106619", "257", "19", "21", "507", "1047", "2214", "176", "195", "15814", "51", "1802", "174", "449", "72579", "107", "54", "25", "860", "85", "772", "282", "1965", "19867", "4794", "791", "53", "1372", "194", "41", "1798", "1651", "68", "933", "1406", "370", "296", "8518", "353", "167", "109", "57", "279", "175", "102", "58", "139", "61", "304", "304", "1452", "615", "21729", "24708", "61", "220", "17994", "973", "1765", "256", "173", "418", "1929", "92", "32", "203", "47", "492"], ["5289", "97", "1088", "2469", "153", "214", "7561", "463", "12261", "3538", "20", "9831", "225", "542", "44", "1408", "201", "71", "266", "771", "543", "45", "1683", "44", "635", "26", "2386", "85", "1068", "594", "2971", "5972", "5290", "744", "392", "37", "2635", "169", "88", "704", "17797", "259", "15", "4622", "282", "103", "547", "22226", "640", "554", "469", "194", "1089", "172", "104", "16", "69", "530", "291", "46", "1697", "679", "315", "201", "9543", "56", "122", "904", "1981", "157", "1805", "2860", "197", "1758", "129", "137428", "642", "12", "75", "609", "12153", "5165", "226", "2577", "500", "4363", "527", "242", "516", "310", "1179", "146", "1423", "1490", "646", "18170", "3", "341", "705", "432", "25872", "1141", "224", "189", "41", "27", "86", "734", "1712", "19", "20", "327", "26972", "58", "120", "135", "9", "148", "46", "9033", "270", "201", "93", "664", "1738", "54", "254", "175", "2006", "269", "103", "139", "467", "177", "209", "15", "115", "55", "709", "561", "218", "284", "304", "330", "92", "95", "1976", "6091", "362", "19", "228", "40", "139", "2949", "1348", "165", "3980", "5399", "198", "53", "130", "35", "663", "921", "173", "22", "1865", "1834", "2023", "7366", "6035", "18548", "90", "263", "58", "88", "36", "2014", "129", "343", "352", "172", "3614", "57", "795", "5443", "153", "240", "75", "232", "116", "291", "42", "461", "6999", "334", "385", "18", "1413", "692", "62", "20", "631", "1086", "157", "53", "120", "35369", "69", "240", "144", "2712", "29664", "878", "139", "318", "365", "242", "213", "431", "16909", "844", "74", "93", "2183", "202", "13345", "47", "1614", "654", "6280", "833", "53", "2123", "219", "67", "58", "4338", "361", "327", "279", "61", "51724", "76", "178", "5441", "838", "44", "450", "1732", "53", "52", "951", "4916", "204", "283", "1365", "54", "4885", "39", "2775", "197", "32436", "181", "134", "211", "555", "22", "362", "64", "12870", "424", "21", "502", "261", "1366", "16", "535", "135", "5110", "191", "333", "65", "82", "209", "508", "206", "117", "21827", "5", "10342", "3985", "104076", "32", "354", "210", "143", "657", "1252", "2889", "307", "121", "1172", "1268", "23", "11565", "570", "1392", "196", "81", "566", "353", "807", "40", "789", "21115", "178", "45658", "205", "311", "205", "67", "120", "1452", "427", "1223", "34", "97", "18", "2073", "479", "491", "137", "1161", "1210", "77", "44", "650", "3412", "172", "5897", "510", "1637", "389", "140", "72", "16905", "70", "417", "57", "151", "48", "323", "1497", "28", "3299", "50", "2502", "54", "833", "214", "1252", "624", "548", "91268", "14919", "237", "56", "26639", "267", "63046", "520", "2749", "1033", "940", "4347", "477", "3562", "397", "95", "7749", "8658", "1025", "6568", "288", "199", "173", "892", "45", "155", "49", "980", "161", "503", "43", "73", "127", "2812", "76", "4170", "138", "5959", "1040", "37", "958", "111", "160", "461", "859", "305", "20", "275", "101", "393", "1195", "1386", "329", "95", "432", "192", "3585", "412", "455", "10338", "583", "1678", "58", "9299", "626", "704", "493", "1680", "167", "44", "103", "798", "21", "497", "495", "1119", "23247", "964", "831", "22", "106", "112", "14", "116", "243", "220", "5155", "739", "55", "688", "444", "471", "6651", "3660", "7022", "89", "141", "44", "335", "4966", "118", "104", "142", "25184", "234", "30", "67", "260", "114", "14", "28064", "257", "1583", "336", "7765", "2697", "19278", "21", "348", "38", "119", "424", "93", "11793", "21118", "73", "723", "301", "693", "87", "4761", "1147", "2721", "21216", "173", "52"], ["34.754", "34.939", "34.509", "34.675", "34.679", "34.948", "34.827", "34.91", "34.809", "34.364", "34.678", "34.869", "34.597", "34.79", "34.937", "34.62", "34.861", "34.874", "34.939", "34.939", "34.894", "34.506", "34.516", "35.582", "34.379", "34.737", "34.906", "34.762", "34.837", "34.639", "34.728", "34.893", "34.914", "34.869", "34.852", "34.8", "34.909", "34.908", "34.944", "34.299", "34.842", "34.722", "34.555", "34.71", "34.972", "34.718", "34.899", "34.645", "34.751", "34.693", "34.97", "34.613", "34.522", "35.813", "34.903", "34.735", "34.73", "34.701", "34.911", "34.914", "34.355", "34.856", "34.505", "34.733", "34.929", "34.809", "34.875", "34.875", "34.836", "34.916", "34.908", "34.907", "34.613", "35.03", "34.573", "34.928", "34.599", "34.905", "34.945", "34.899", "34.936", "34.859", "34.95", "34.959", "34.993", "34.881", "34.845", "34.884", "34.861", "34.914", "34.939", "34.942", "34.834", "34.678", "34.77", "34.891", "34.715", "34.918", "35.005", "34.747", "34.895", "34.962", "34.864", "34.767", "34.603", "34.829", "34.926", "34.606", "34.799", "34.919", "34.932", "34.836", "34.749", "34.849", "34.88", "34.539", "34.915", "35.244", "34.517", "34.91", "34.933", "34.721", "35.279", "34.504", "34.93", "34.892", "34.804", "34.681", "34.859", "34.661", "34.624", "34.721", "34.727", "34.955", "34.742", "34.794", "34.928", "35.057", "34.982", "34.904", "34.932", "34.964", "34.916", "34.912", "34.926", "34.92", "34.835", "34.859", "34.937", "35.644", "34.909", "34.455", "34.96", "34.655", "34.835", "34.918", "34.668", "34.914", "34.884", "34.834", "34.717", "34.839", "34.751", "34.688", "35.117", "34.899", "34.663", "34.869", "35.129", "34.839", "34.628", "34.353", "34.705", "34.887", "34.877", "34.888", "34.831", "34.899", "34.569", "34.672", "34.601", "34.907", "34.863", "34.923", "34.881", "34.936", "34.875", "34.95", "34.818", "34.752", "34.89", "34.528", "34.142", "34.925", "34.928", "34.959", "34.636", "34.874", "34.705", "34.831", "34.659", "34.967", "34.663", "34.887", "34.726", "34.715", "34.256", "34.726", "35.302", "34.763", "34.967", "34.639", "34.871", "35.084", "34.924", "34.709", "34.888", "34.906", "34.689", "34.645", "35.088", "34.267", "35.382", "34.938", "34.961", "35.002", "34.89", "34.924", "34.832", "34.879", "34.454", "34.926", "34.522", "34.901", "34.864", "34.915", "34.93", "34.77", "34.709", "34.787", "34.914", "34.913", "34.751", "34.944", "34.619", "34.882", "34.875", "34.663", "34.888", "34.904", "34.877", "34.746", "34.682", "34.699", "34.922", "34.87", "34.631", "34.581", "34.778", "34.895", "34.674", "34.609", "34.583", "34.865", "35.856", "34.907", "35.019", "34.907", "34.902", "34.942", "34.997", "34.657", "34.915", "34.489", "34.484", "34.892", "34.941", "34.946", "34.687", "34.87", "34.925", "34.696", "34.937", "34.908", "34.923", "34.366", "34.925", "34.917", "34.954", "34.875", "34.719", "34.95", "34.674", "34.923", "34.897", "34.946", "34.949", "34.899", "34.885", "34.876", "34.845", "34.747", "34.887", "34.955", "34.945", "34.471", "34.934", "34.964", "34.682", "34.9", "34.737", "34.922", "35.429", "35.065", "35.941", "34.595", "35.045", "34.5", "34.969", "34.78", "34.97", "34.653", "34.862", "34.675", "34.911", "34.65", "34.887", "34.881", "34.677", "34.847", "35.221", "34.664", "34.681", "34.916", "34.938", "34.637", "34.753", "34.684", "34.99", "34.851", "34.948", "34.819", "35.032", "34.892", "34.926", "34.93", "34.838", "34.748", "34.706", "34.903", "34.945", "34.954", "34.877", "36.284", "34.853", "34.681", "34.927", "34.687", "34.534", "34.728", "34.904", "34.939", "34.685", "34.917", "34.954", "34.504", "34.964", "34.935", "35.289", "34.658", "34.913", "34.939", "34.731", "34.409", "35.056", "34.921", "34.797", "35.795", "35.352", "34.796", "34.831", "34.498", "34.814", "35.648", "34.971", "34.937", "34.549", "34.937", "34.753", "34.952", "34.808", "34.881", "34.364", "34.752", "34.738", "34.888", "34.874", "34.846", "34.496", "34.943", "34.903", "34.888", "34.943", "34.944", "34.933", "34.561", "34.75", "34.815", "34.914", "34.873", "34.677", "34.582", "34.832", "34.918", "34.981", "34.918", "34.83", "34.697", "34.921", "34.967", "34.664", "34.91", "34.93", "34.866", "34.74", "34.538", "34.928", "34.887", "35.351", "34.688", "34.632", "34.91", "34.992", "34.893", "34.79", "34.927", "34.816", "34.912", "34.716", "34.77", "34.706", "35.038", "34.947", "34.542", "35.056", "34.724", "34.933", "34.949", "34.904", "34.926", "34.738", "34.748", "34.726", "35.517", "34.625", "34.702", "34.928", "34.494", "34.677", "34.909", "34.892", "34.899", "34.924", "34.859", "34.937", "34.508", "34.933", "34.96", "34.51", "34.884", "34.88", "34.758", "34.889", "34.9", "35.049", "34.955", "34.831", "34.776", "34.926", "34.68", "34.66", "34.278", "34.459", "34.684", "35.291", "34.623", "34.888", "34.862", "34.835", "34.277", "34.736", "34.875"], ["-21", "26", "174", "85", "-110", "18", "-113", "-21.5", "19.2", "-72", "30", "150", "-36", "-150", "25", "-3", "42", "82.3", "-24", "101", "-40", "132", "107.7", "107.5", "-18", "-144", "38", "112.5", "-37.5", "60", "-108", "97.5", "25.5", "-48.5", "31", "-71", "45", "126", "72", "92.2", "-36", "126", "-25", "28.2", "-126", "81.5", "42", "37.5", "75", "-87", "-82", "60", "46", "-72", "63", "54.5", "20", "18", "-113", "52.5", "100.5", "55", "-81", "7.5", "2", "-56.5", "10", "-42", "14.5", "0", "-30", "172", "152", "97", "113.2", "110.5", "104.5", "25.5", "-174", "-102", "21.5", "130", "23.5", "102", "-21", "162", "-119", "55", "48", "163.5", "-18", "-172", "23.5", "36", "-25", "13", "159", "-93", "87", "144", "13", "159", "-120", "34", "32.5", "47", "-5", "-48", "105.5", "113", "168", "97.5", "-22", "36", "96", "-130", "-161", "100.5", "-86", "156", "-43", "-5", "96", "-120", "-42", "42.5", "119", "0", "108", "-6", "36", "-114", "95", "64", "-67", "166", "60", "54", "1", "90", "93.5", "-35", "83", "31", "-42", "24", "60", "150", "-174", "95", "-60", "-47.5", "-102", "66", "90", "5", "163", "-8.5", "29", "100", "-84.2", "137.9", "13.8", "-20", "28.5", "17", "-138", "45", "33", "-10", "-16", "-8.5", "-4", "50.5", "140.7", "120", "-156", "11.5", "-110", "36", "-114", "90", "-60", "-114", "5", "52.5", "-105", "40", "102", "159", "-85", "-10", "127", "-13", "-48", "163.5", "-162", "114", "-56", "36", "-114", "72", "-105", "-61", "74", "-13", "113", "41", "43.5", "-105", "38.2", "140", "108", "66", "61.5", "44", "170", "-138", "-12", "148", "35", "0", "20", "27.2", "43", "-113", "42", "108", "64", "-73", "-80", "112.5", "13.8", "146", "98.5", "-113", "34.5", "108.4", "-3", "-75", "50.5", "113.6", "-81", "87.5", "103", "24", "83", "-55", "66", "132", "31.1", "-57", "40", "-12", "-96", "10", "78", "43.5", "79.5", "146", "25.5", "48", "66", "87.5", "150", "144", "48", "28.75", "45", "12", "40", "172", "155.9", "125", "102", "-36", "90", "100", "-47.5", "-52.5", "20", "132", "108.2", "159", "142", "42", "60", "150", "42", "132", "90", "126", "109", "-26", "-119.1", "119", "-168", "-33", "-15.5", "38", "164.1", "-18", "-53", "58", "143.72", "-144", "-66", "-138", "43.5", "-81", "-26", "72", "-160", "-60", "7", "-4", "16", "78", "126", "37", "55", "139", "120.5", "41", "-6", "-87", "-119", "5", "75", "-20", "138", "-25", "-24", "84", "-162", "65", "55", "42", "54", "23", "41", "13.8", "66", "-96", "-42", "18", "167", "83.5", "110.5", "76.5", "-156", "-11", "132", "180", "-155", "9.7", "63", "60", "19", "45", "-102", "162", "-129", "-55", "74", "47", "78", "-60", "-56", "-36", "71", "45", "102", "48", "-60", "23", "87", "31", "166", "-174", "-90", "-7", "29", "110.5", "28", "-25", "123", "-68.7", "0", "13", "18", "-54", "83", "55", "83", "24", "-79", "47", "-168", "-43", "-54", "-30", "-45", "-77", "30", "67.1", "67", "-50", "31", "38.2", "8", "40", "160", "17.6", "126", "-105", "120", "7", "144", "143", "0", "34", "33", "42.5", "48", "81", "-41", "-72", "34", "75", "-30", "33.5", "-30", "-102", "-33", "3", "-109.2", "174.1", "-48", "-145", "-20", "47", "-6", "-144", "160", "-126", "-7", "57", "95", "-166", "-120", "45", "-3", "8", "28", "-7", "48", "24", "-4", "6", "85", "175", "-87", "-86.3", "70", "-37.5", "77.5", "-132", "20", "-4", "3", "99", "70.5", "-80", "31", "-10", "-17", "114", "-60", "-16", "-51.5", "-24", "114", "124", "-90", "-135", "-150", "122", "126", "84.5", "0", "54.5", "91.5", "-7", "58.45", "164", "-20", "50.5", "-20", "-90"], ["3.072", "4.825", "4.471", "5.234", "2.129", "5.016", "2.3", "5.209", "6.715", "6.735", "4.048", "4.185", "3.477", "4.711", "1.738", "4.286", "3.252", "2.64", "4.924", "1.355", "2.802", "6.388", "5.304", "4.062", "5.593", "3.112", "7.524", "2.221", "2.984", "2.04", "2.109", "7.035", "4.188", "0.903", "0.8551", "3.531", "1.142", "4.309", "5.995", "4.325", "3.347", "2.958", "3.368", "1.481", "5.182", "1.415", "5.876", "8.315", "4.116", "3.975", "4.179", "4.419", "2.858", "1.999", "4.102", "4.675", "2.461", "3.824", "2.352", "3.521", "4.217", "5.901", "3.919", "4.266", "1.018", "3.336", "4.378", "4.92", "2.853", "2.956", "2.248", "6.001", "1.661", "2.7", "0.7651", "2.257", "1.472", "5.462", "3.985", "5.469", "6.992", "4.421", "2.828", "3.638", "3.691", "3.747", "5.335", "5.472", "2.754", "4.051", "4.988", "2.932", "2.144", "4.857", "4.132", "3.084", "5.398", "6.682", "3.598", "3.128", "8.456", "4.933", "2.823", "6.169", "2.587", "4.987", "4.539", "4.157", "4.308", "4.462", "4.67", "5.813", "1.176", "2.504", "4.873", "4.004", "3.412", "5.324", "6.685", "3.92", "3.631", "1.56", "3.526", "2.129", "4.702", "3.26", "1.767", "1.933", "3.082", "4.898", "4.337", "2.201", "5.532", "1.464", "4.334", "4.076", "3.373", "4.391", "2.843", "3.6", "5.388", "5.588", "1.969", "1.717", "2.124", "2.462", "3.986", "4.271", "2.962", "1.502", "5.366", "2.235", "3.639", "3.357", "1.599", "2.221", "3.063", "2.908", "3.696", "2.443", "3.237", "3.586", "2.259", "3.12", "3.136", "1.313", "1.649", "3.328", "3.332", "4.543", "2.725", "4.972", "4.756", "3.533", "5.483", "1.791", "1.955", "3.597", "3.678", "2.188", "4.975", "2.217", "2.7", "2.068", "2.704", "3.306", "2.553", "2.269", "5.637", "2.837", "4.677", "3.619", "4.773", "3.22", "4.957", "2.249", "5.78", "2.936", "5.173", "4.853", "4.451", "2.688", "2.27", "2.699", "5.195", "3.769", "1.367", "1.91", "6.185", "5.064"], ["84.298", "84.159", "84.397", "83.487", "76.923", "84.982", "84.254", "84.112", "84.25", "84.303", "84.173", "83.881", "84.238", "84.028", "83.441", "84.253", "84.3", "76.923", "83.441", "84.83", "84.188", "76.923", "84.253", "83.44", "76.923", "83.536", "84.642", "84.204", "84.919", "84.286", "84.202", "76.923", "84.281", "84.32", "84.133", "84.908", "84.121", "84.411", "76.923", "76.923", "84.515", "83.527", "84.526", "84.988", "84.155", "83.637", "84.174", "84.641", "84.251", "76.923", "84.17", "76.923", "76.923", "84.968", "84.226", "83.563", "84.985", "76.923", "83.539", "84.083", "83.688", "84.741", "76.923", "76.923", "76.923", "83.474", "84.535", "84.934", "83.888", "83.537", "83.85", "84.202", "76.923", "84.757", "84.308", "76.923", "84.254", "76.923", "76.923", "83.826", "76.923", "84.294", "84.462", "83.866", "84.673", "84.168", "76.923", "84.569", "84.134", "84.825", "84.299", "84.69", "83.531", "76.923", "83.441", "84.204", "84.541", "84.259", "84.208", "84.237", "84.166", "83.842", "84.308", "84.124", "84.121", "84.174", "83.443", "76.923", "84.149", "83.876", "84.06", "84.149", "76.484", "75.964", "84.386", "76.219", "83.441", "76.923", "84.167", "76.922", "83.539", "84.076", "84.253", "76.923", "76.923", "76.923", "83.483", "84.314", "84.251", "76.923", "84.517", "83.445", "84.404", "83.443", "84.253", "84.286", "83.529", "84.159", "84.313", "76.923", "83.521", "84.553", "84.401", "83.617", "84.285", "84.301", "84.196", "84.719", "76.923", "84.404", "83.563", "84.23", "83.894", "84.482", "76.923", "76.923", "84.644", "84.512", "83.431", "76.923", "84.311", "83.491", "84.982", "76.923", "83.692", "83.483", "84.023", "84.916", "83.448", "84.755", "84.121", "76.923", "84.208", "83.517", "76.923", "84.183", "84.253", "84.137", "84.905", "84.307", "84.802", "84.165", "83.539", "84.165", "76.923", "84.313", "83.441", "83.517", "76.934", "84.299", "84.23", "84.641", "84.121", "76.938", "84.211", "76.923", "83.695", "83.44", "84.137", "83.517", "84.253", "84.287", "84.286", "84.16", "83.475", "83.644", "84.383", "76.923", "84.658", "83.488", "84.35", "84.045", "84.92", "76.923", "84.632", "83.553", "84.308", "76.923", "84.294", "84.541", "84.027", "84.144", "84.125", "83.524", "83.651", "84.163", "84.553", "84.14", "84.366", "84.144", "84.096", "84.188", "76.923", "84.379", "76.923", "84.286", "84.952", "84.294", "75.968", "83.441", "84.286", "83.448", "84.082", "83.822", "84.387", "83.882", "84.387", "84.137", "84.555", "83.553", "84.403", "84.445", "84.218", "83.443", "83.443", "83.44", "76.923", "84.089", "84.164", "83.695", "84.619", "84.404", "84.705", "76.718", "76.923", "84.205", "83.517", "84.228", "84.169", "75.908", "83.851", "84.536", "84.313", "84.577", "84.227", "84.431", "84.249", "84.762", "83.486", "84.214", "84.202", "84.195", "84.122", "76.923", "84.279", "84.276", "84.318", "84.305", "83.448", "84.812", "83.638", "84.165", "84.122", "84.158", "84.961", "83.431", "84.25", "76.233", "76.923", "84.198", "83.535", "83.893", "84.286", "83.642", "84.3", "84.296", "83.488", "84.165", "84.142", "84.108", "83.443", "84.677", "76.923", "84.397", "83.489", "84.107", "84.219", "84.432", "84.752", "76.896", "84.626", "83.524", "83.44", "83.44", "84.186", "84.311", "83.489", "84.982", "76.923", "84.237", "84.233", "83.503", "84.206", "84.241", "84.461", "84.757", "83.488", "84.132", "83.553", "84.205", "83.49", "84.91", "76.923", "84.355", "76.922", "83.859", "84.432", "84.404", "84.961", "84.216", "83.441", "83.486", "84.766", "84.881", "84.939", "84.343", "83.577", "83.532", "84.548", "84.549", "84.135", "84.348", "76.923", "84.237", "83.475", "84.308", "84.631", "84.286", "84.222", "84.115", "83.441", "84.163", "84.549", "83.474", "76.923", "84.207", "84.934", "83.484", "84.938", "84.103", "83.517", "83.441", "84.155", "84.208", "76.923", "83.443", "83.441", "84.355", "76.216", "84.976", "84.286", "76.923", "75.991", "83.502", "83.441", "84.561", "84.2", "84.222", "83.444", "83.878", "84.896", "83.695", "84.133", "83.858", "84.124", "84.147", "76.923", "76.922", "83.474", "84.683", "76.923", "84.14", "84.136", "76.923", "84.105", "83.901", "84.553", "84.253", "84.959", "84.136", "76.923", "84.559", "76.923", "76.923", "76.923", "84.232", "84.23", "84.25", "84.685", "76.059", "83.569", "83.553", "84.315", "83.431", "83.563", "75.98", "84.824", "84.55", "84.403", "84.208", "84.129", "84.352", "83.848", "84.231", "84.687", "84.656", "84.124", "83.856", "83.577", "83.442", "83.431", "83.444", "84.315", "84.521", "84.5", "84.083", "76.923", "83.441", "83.492", "84.255", "84.987", "84.142", "84.121", "84.114", "76.923", "75.972", "76.923", "83.902", "84.188", "83.898", "83.882", "84.144", "84.119", "83.834", "76.103", "84.237", "84.198", "84.3", "84.286", "84.314", "84.286", "76.923", "84.342", "84.139", "84.123", "76.923", "76.923", "84.31", "83.749", "84.165", "76.923", "84.409", "84.2", "84.618", "83.535", "83.774", "83.889", "84.763", "84.274", "84.252"], ["0.20%", "3.80%", "3.30%", "3.60%", "1.4", "4.80%", "3.3", "9.40%", "1.10%", "1.10%", "17.5", "2.3", "8.80%", "6.7", "1.4", "2.30%", "2.30%", "3.7", "1.90%", "1.30%", "3.6", "3.60%", "3.70%", "3.60%", "18.10%", "14.8", "3.70%", "1.6", "3.6", "3.60%", "1", "1.80%", "5.8", "1.30%", "3.5", "1.50%", "3.60%", "3.70%", "3.3", "1.4", "3.6", "0.20%", "1.70%", "2.30%", "0.90%", "1.30%", "18.40%", "3.80%", "6.10%", "0.8", "3.60%", "1.00%", "3.60%", "1.10%", "12.80%", "0.90%", "7.2", "3.60%", "24.8", "2.30%", "3.00%", "10.5", "3.00%", "8.4", "3.70%", "3.5", "2.30%", "3.60%", "4.40%", "3.60%", "0.6", "0.60%", "3", "6.10%", "3.3", "18.00%", "1.4", "12.20%", "2.80%", "18.1", "0.80%", "2.2", "24.8", "2.40%", "4.20%", "3.00%", "7.00%", "0.20%", "5", "6.4", "0.9", "3.6", "3.60%", "4.1", "1.2", "6.40%", "5.3", "1.90%", "1.70%", "18.00%", "13.10%", "2.00%", "6.40%", "3.70%", "6.10%", "0.50%", "3.6", "3.60%", "4.1", "3.2", "21.1", "7.70%", "3.70%", "2.30%", "1.00%", "7.5", "0.80%", "3.70%", "7.30%", "18.10%", "3.5", "12.90%", "8.10%", "1.90%", "4.50%", "5.8", "2.3", "18.10%", "5.40%", "3.60%", "7.20%", "6.3", "3.60%", "6", "3.70%", "6.00%", "3.70%", "0.70%", "17.5", "11.50%", "2.20%", "6.80%", "3.20%", "3.7", "1.7", "7.70%", "4.9", "17.40%", "5.3", "3.00%", "10.70%", "1.00%", "3.6", "1.90%", "0.50%", "10.90%", "2.9", "3.30%", "3.6", "2.10%", "2.30%", "1.60%", "1.30%", "18.00%", "2.3", "9.20%", "1.00%", "17.5", "3.70%", "0.60%", "0.70%", "17.70%", "3.60%", "8.30%", "24.8", "1.5", "18.00%", "13.10%", "1.90%", "3.80%", "26.7", "1.70%", "6.4", "2.2", "1.00%", "3.6", "5.7", "1.90%", "17.10%", "4.70%", "2.10%", "7.10%", "8.90%", "3.70%", "18.00%", "1.00%", "7.70%", "2.1", "18.4", "3.00%", "3.70%", "5.40%", "3.80%", "23.1", "7.20%", "1.30%", "4.70%", "3.70%", "17.70%", "1.9", "1.30%", "3.70%", "3.00%", "1.50%", "3.70%", "10.60%", "3.60%", "2.60%", "7.70%", "8.9", "3.60%", "5.90%", "2.80%", "7.1", "10.70%", "3.60%", "1.9", "3.60%", "4.7", "3.9", "1.1"], ["0.01", "0.0297", "0.04", "0.13", "0.13", "0.25", "0.04", "0.0185", "0.75", "0.72", "0.03", "1.26", "0.0765", "0.23", "0.09", "0.54", "0.01", "0.15", "0.18", "0.1848", "0.12", "0.27", "0.21", "0.098", "0.01", "0.152", "0.08", "0.07", "0.89", "0.03", "0.14", "0.1703", "0.65", "0.53", "0.12", "0.09", "0.19", "0.3", "0.89", "0.15", "0.54", "0.14", "0.96", "0.13", "0.14", "0.14", "0.1675", "0.82", "0.52", "0.24", "0.77", "0.15", "0.0712", "0.26", "0.09", "0.53", "0.02", "0.02", "0.03", "0.06", "0.06", "0", "0.0786", "0.1517", "0.2", "0.34", "0.03", "0.18", "0.24", "0.03", "0.03", "0.32", "0.02", "0.1418", "0.25", "0.02", "0.76", "0.04", "0.16", "0.42", "0.11", "0.04", "1.08", "0.14", "0.77", "0.68", "0.3", "0.02", "0.71", "0.1751", "0.02", "0.65", "1.18", "0.1288", "0.16", "0.81", "0.78", "0.81", "0.02", "0.21", "0.31", "0.2", "0.0685", "0.75", "0.56", "0.29", "0.18", "0.13", "0.04", "0.03", "0.39", "0.05", "0.22", "0.1405", "0.1739", "0.06", "0.06", "1.51", "0.19", "0.22", "0.82", "0.1714", "0.6", "0.18", "0.01", "0.13", "0.48", "0.16", "0.18", "0.02", "0.08", "0.87", "0.05", "0.96", "0.03", "0.76", "0.0329", "0.33", "0.16", "0.56", "0.79", "0.02", "0.16", "0.22", "0.18", "0.21", "0.18", "0.03", "0.1411", "0.22", "0.63", "0.04", "0.1043", "0.02", "0.1427", "0.03", "0.14", "0.01", "0.61", "0.68", "0.1799", "0.02", "0.02", "0.24", "0.58", "0.21", "0.18", "0.5", "0.99", "0.0814", "0.27", "0.02", "0.06", "0.49", "0.02", "0.14"], ["4.065%", "7.424%", "0.875%", "1.125%", "1.875%", "1.500%", "0.000%", "1.230%", "1.875%", "1.010%", "1.250%", "5.000%", "1.241%", "8.430%", "6.090%", "6.250%", "6.320%", "1.375%", "1.500%", "1.234%", "0.000%", "1.000%", "0.875%", "5.000%", "0.875%", "5.830%", "0.000%", "8.280%", "5.400%", "1.875%", "0.000%", "1.750%", "0.000%", "6.030%", "1.125%", "0.000%", "5.500%", "5.400%", "6.700%", "5.980%", "0.875%", "5.375%", "4.540%", "1.375%", "1.275%", "8.100%", "1.030%", "1.239%", "6.860%", "1.500%", "2.000%", "5.650%", "6.160%", "1.875%", "3.037%", "1.500%", "0.000%", "4.377%", "1.300%", "2.125%", "1.375%", "1.250%", "9.000%", "0.000%", "4.210%", "1.125%", "5.625%", "7.930%", "1.625%", "7.190%", "6.210%", "5.375%", "8.950%", "0.780%", "1.875%", "4.215%", "6.625%", "1.000%", "1.750%", "7.250%", "6.080%", "6.000%", "0.875%", "6.120%", "1.750%", "6.150%", "0.875%", "7.125%", "1.229%", "1.000%", "1.120%", "5.960%", "7.125%", "5.400%", "0.000%", "5.625%", "5.720%", "1.000%", "0.897%", "0.000%", "2.625%", "7.020%", "1.625%", "4.505%", "7.270%"], ["3.90", "46.77", "280.87", "71.94", "89.70", "191.01", "65.45", "24.90", "240.55", "218.05", "38.38", "134.57", "929.95", "63.66", "8.14", "0.19", "331.80", "0.52", "16.18", "154.18", "1.16", "45.82", "21.18", "7.46", "30.07", "3.53", "66.31", "3.37", "633.60", "214.82", "34.26", "294.60", "6.82", "48.60", "24.81", "24.35", "6.02", "65.98", "9.49", "28.27", "47.85", "2.30", "7.62", "2.89", "107.00", "105.48", "16.57", "5.45", "4.06", "5.81"], ["15455", "4574", "7212", "13213", "4285", "75598", "10000", "11038", "251063", "5376", "3225", "6649", "4608", "10326", "66296", "5584", "7946", "3403", "12125", "4061", "3936", "3578", "3275", "23360", "32100", "5252", "19234", "14048", "15037", "7092", "5375", "18149", "12634", "4006", "10674", "259", "3883", "3883", "129890", "9179", "10626", "11564", "29656", "3090", "20038", "34404", "3596"], ["0.0000", "0.3040", "0.0000", "0.0482", "0.0003", "0.0001", "0.0123", "0.0000", "0.6866", "0.0082", "0.6930", "0.5306", "0.0108", "0.0000", "0.6957", "0.6986", "0.6963", "0.0000", "0.7277", "0.6876", "0.7111", "0.0027", "0.5371", "0.7400", "0.0002", "0.0123", "0.0068", "0.7158", "0.1051", "0.0002", "0.0074", "0.1684", "0.7368", "0.0005", "0.0162", "0.7663", "0.6454", "0.0012", "0.2246", "0.0070", "0.0126", "0.6971", "0.7143", "0.6952", "0.4447", "0.7589", "0.5966", "0.5258", "0.0000", "0.2531", "0.0000", "0.6720", "0.7697", "0.0120", "0.7388", "0.0860", "0.7549", "0.3639", "0.0001", "0.7593", "0.0055"], ["0.8451", "1.1139", "0.699", "0.4771", "0.9031", "0.301", "0.7782", "1.2041", "1.7324", "1.7709", "0.8451", "0.7782", "1.301", "0.8451", "1", "1.2788", "0.699", "1.4314", "1.4472", "1.9085", "0.7782", "0.9542", "1.9031", "2.1614", "0.301", "1", "1.1461", "0.8451", "1.8261", "0.6021", "0.699", "0.7782", "1", "0.301", "0.699", "0.9031", "1.3802", "1.5051", "1.699", "1.1761", "0.4771", "1.2553", "1.3802", "0.6021", "0.301", "1.2788", "1.3802", "1.9191", "1.3222", "0.6021", "0.4771", "1.1461", "1.415", "1.6128", "0.301", "0.6021", "0", "1", "0.699", "0.9031", "0", "0.6021", "NA", "0.301", "0.699", "0.7782", "1.2304", "0.4771", "1.3802", "0.6021", "1.5441", "1.4472", "0.699", "0.301", "0", "0.4771", "0.301", "1.5441", "0.4771", "1.5798", "1.415", "2.3385", "1.3802", "1.0792", "1.7324", "0.6021", "0.4771", "1.1761", "0.301", "1.4624", "0.8451", "1.3802", "1.3617", "0", "1.6335", "1.4624", "1.4914", "0.7782", "1.2304", "0.9031", "0.7782", "0.9542", "0.4771", "0.301", "0.8451", "0.699", "1.7924", "1.5911", "1.9912", "1.1139", "0.6021", "1.301", "0.7782", "0.301", "0.9031", "1.301", "0.6021", "1", "0", "0.4771"], ["21.99", "34.99", "69.99", "9.99", "89.99", "25.99", "54.99", "44.99", "19.99", "22.5", "27.42", "200.65", "64.99", "34.99", "23.99", "12.99", "12.99", "8.72", "59.99", "38.8", "51.39", "54.99", "9.99", "54.99", "44.99", "21.99", "5.28", "11.89", "34.99", "39.99", "33.99", "34.99", "7.99", "18.78", "22.19", "49.99", "19.99", "34.99", "24.74", "54.99", "4.76", "7.06", "13.59", "29.99", "22.99", "27.99", "12.99", "19.99", "54.99", "54.99", "80.85", "69.99", "29.99", "12.99", "29.99", "34.99"], ["D3_DDB", "S2_DDB", "B5_Res", "B1_DDB", "B4_Res", "B5_Res", "D4_DDB", "S5_DDB", "B5_DDB", "S4_DDB", "D4_Res", "D2_DDB", "D4_DDB", "S5_DDB", "D1_DDB", "B5_DDB", "S3_Res", "S4_DDB", "S3_DDB", "B6_Res", "S3_DDB", "D1_Res", "D2_Res", "S1_DDB", "B1_Res", "B3_Res", "B3_Res", "B3_DDB", "S4_Res", "D1_Res", "S5_Res", "B4_DDB", "S2_Res", "B6_Res", "B1_Res", "S4_Res", "D2_DDB", "D4_Res", "B4_DDB", "S1_DDB", "B6_DDB", "B3_DDB", "S3_Res", "S1_Res", "S2_Res", "D2_Res", "S2_DDB"], ["0", "2.05", "5.125", "0", "5", "0", "0", "0", "0", "5.5", "7", "0", "0", "0", "1.104", "7.5", "9.75", "0", "13", "5.625", "6.5", "7", "0", "7.25", "11.5", "6.125", "0", "0", "0", "7.25", "0", "0", "0", "8.75", "0", "0", "0", "6.625", "6.75", "6.246", "5", "0", "0", "9", "5.65", "0", "0", "5", "7.625", "5.125", "1", "5", "0", "0", "0", "4", "7", "0", "5.125", "14", "7", "1", "0", "1", "7.625", "3.75", "7.55", "0", "0", "8.54", "0", "6.5", "0", "6.125", "0", "0", "0", "0", "7.375", "0", "5.875", "0", "7.75", "1", "7.25", "1", "0", "5.875", "0", "9.375", "1", "3.1", "8", "0", "9", "0", "2.875", "4.875", "0", "6.25", "0", "5", "0", "0", "0", "1", "6.625", "0", "2.25", "6.5", "0", "0", "0", "0", "0", "0", "0", "6.875", "0", "5.5", "6", "0", "5.375", "0", "6.5", "0", "6", "11.25", "6.267", "0", "4.75", "5.875", "0", "1", "5.125", "0", "1", "5.35", "9.75", "0", "0", "0", "0", "4.625", "11", "4.625", "0", "8.25", "1", "0", "0", "5.375", "4.25", "0", "5.7", "2.5", "6.125", "0", "0", "6.5", "1", "0", "0", "0", "6.75", "0", "0", "5.875", "9.5", "1", "9.125", "7.5", "8.125", "0", "6.125", "0", "0", "0", "5.875", "8.5", "0", "1", "6.6", "0", "0", "0", "8.8", "0", "6.5", "5.75", "0", "5.017", "6.5", "1", "0", "0", "7.25", "0", "4.75", "0", "0", "0", "0", "5.375", "0", "0", "9.125", "5.875", "9.5", "7", "7.625", "1", "0", "7.45", "7.75", "8.375", "8.75", "0", "7.625", "3.625", "7.625", "5.25", "7.5", "6.5", "0", "0", "0", "0", "0", "7.5", "5.738", "6.125", "1", "0", "7", "0", "6.75", "0", "7.875", "0", "0", "6.375", "7", "0", "0", "0", "6.625", "0", "2.1", "7.875", "3.5", "7.25", "0", "0", "0", "0", "8.25", "0", "11", "0", "0", "12.125", "0", "7", "0", "11", "7.875", "4.5", "0", "5.625", "0", "5.75", "8.875", "0", "8.125", "2.875", "0", "0", "0", "0", "0", "12", "0", "0", "6.75", "0", "5.25", "0", "0", "5.125", "0", "8", "0", "8.5", "0", "9.25", "6.5", "0", "0", "0", "1", "6", "9.25", "0", "0", "5.25", "0", "5", "6.5", "0", "0", "7.375", "0", "6", "0", "6.875", "0", "7.625", "1", "0", "7", "1", "0", "0", "0", "6.25", "12.5", "6.5", "0", "7.25", "4.5", "4.875", "6.5", "0", "5.375", "0", "0", "1", "0", "0.01", "7.5", "0", "0", "9.75", "0", "5.625", "0", "0", "0", "6.125", "3.45", "0", "0", "0", "0", "6.95", "0", "1", "2.95", "0", "0", "5.75", "0", "5.125", "0", "0", "0", "0", "7.32", "9", "8.5", "0", "0", "0", "7.625", "0", "5", "6.875", "0", "7.95", "0", "0", "0", "0", "1", "0", "0", "6.5", "0", "0", "0", "0", "0", "9", "4.875", "0", "8.75", "0", "6.5", "5.25", "8.5", "9.125", "1", "1", "0", "9.5", "0", "0", "1", "6.5", "0", "6", "6.5", "0", "1", "0", "0", "1", "5.75", "1", "0", "5.875", "6.75", "0", "0", "9.75", "0", "1", "0", "6.625", "6.25", "0", "5.25", "5.25", "0", "0", "0", "4.875", "1", "0", "1.25", "5.125", "0", "0", "4.875", "0", "0", "0", "0", "0", "7.75", "6.75", "0", "5.75", "5.375", "0", "5.375", "0", "1.9", "0", "3.625", "0", "5.625", "7", "0", "5.375", "0", "7.5", "0", "6.625", "1", "0", "0", "7.25", "0", "0", "5.125", "6.5", "6.15", "5.5", "0", "4.75", "6.625", "0", "0", "0", "6", "8.25", "7", "8.125", "9.25", "0", "3.3", "0", "0", "6.5", "8.5", "0", "0", "2.2"], ["BR0001", "BR0007", "BR0002", "BR0005", "BR0005", "BR0008", "BR0002", "BR0003", "BR0005", "BR0006", "BR0003", "BR0003", "BR0001", "BR0005", "BR0006", "BR0002", "BR0005", "BR0001", "BR0004", "BR0004", "BR0001", "BR0002", "BR0004", "BR0001", "BR0005", "BR0002", "BR0002", "BR0004", "BR0003", "BR0005", "BR0001", "BR0001", "BR0005", "BR0001", "BR0008", "BR0004", "BR0005", "BR0004", "BR0007", "BR0008", "BR0006", "BR0003", "BR0007", "BR0006", "BR0001", "BR0003", "BR0008", "BR0005", "BR0004", "BR0001", "BR0003", "BR0008", "BR0004", "BR0006", "BR0001", "BR0002", "BR0004", "BR0008", "BR0002", "BR0004", "BR0007", "BR0008", "BR0005", "BR0007", "BR0004", "BR0004", "BR0006", "BR0006", "BR0001", "BR0005", "BR0003", "BR0005", "BR0005", "BR0005", "BR0001", "BR0005", "BR0002", "BR0006", "BR0002", "BR0006", "BR0008", "BR0006", "BR0003", "BR0008", "BR0008", "BR0008", "BR0003", "BR0007", "BR0008", "BR0006", "BR0006", "BR0006", "BR0007", "BR0008", "BR0002", "BR0004", "BR0006", "BR0001", "BR0001", "BR0008", "BR0002", "BR0007", "BR0003", "BR0003", "BR0008", "BR0004", "BR0002", "BR0007", "BR0002", "BR0007", "BR0004", "BR0004", "BR0001", "BR0002", "BR0006", "BR0008", "BR0006", "BR0005", "BR0006", "BR0004", "BR0003", "BR0007", "BR0007", "BR0001", "BR0008", "BR0003", "BR0007", "BR0002", "BR0007", "BR0001", "BR0005", "BR0004", "BR0008", "BR0007", "BR0004", "BR0004", "BR0007", "BR0004", "BR0008", "BR0002", "BR0007", "BR0002", "BR0003", "BR0001", "BR0006", "BR0002", "BR0004", "BR0003", "BR0003", "BR0007", "BR0006", "BR0006", "BR0004", "BR0008", "BR0007", "BR0003", "BR0002", "BR0005", "BR0007", "BR0006", "BR0002", "BR0002", "BR0003", "BR0002", "BR0007", "BR0007", "BR0006", "BR0008", "BR0001", "BR0003", "BR0004", "BR0005", "BR0001", "BR0008", "BR0006", "BR0006", "BR0007", "BR0008", "BR0003", "BR0007", "BR0001", "BR0001", "BR0004", "BR0003", "BR0007", "BR0003", "BR0005", "BR0008", "BR0001", "BR0002", "BR0001", "BR0002", "BR0005", "BR0001", "BR0002", "BR0003", "BR0002", "BR0001", "BR0004", "BR0008", "BR0005", "BR0003", "BR0008", "BR0006", "BR0003", "BR0004", "BR0008", "BR0005", "BR0003", "BR0005"], ["$1.00", "$5.00", "$2.00", "$1.00", "$1.00", "$1.00", "$5.00", "$1.00", "$1.00", "$1.00", "$8.00", "$1.00", "$1.00", "$1.00", "$8.00", "$10.00", "$1.00", "$1.00", "$1.00", "$1.00", "$10.00", "$1.00", "$1.00", "$3.00", "$1.00", "$5.00", "$2.00", "$1.00", "$1.00", "$3.00", "$5.00", "$3.00", "$3.00", "$8.00", "$4.00", "$5.00", "$1.00", "$10.00", "$6.00", "$1.00", "$3.00", "$1.00", "$1.00", "$1.00", "$2.00", "$1.00", "$1.00", "$1.00", "$4.00", "$3.00", "$1.00", "$6.00", "$1.00", "$1.00", "$1.00", "$7.00", "$6.00", "$1.00", "$8.00", "$1.00", "$1.00", "$3.00", "$1.00"], ["NA", "107.79", "NA", "84.939", "NA", "107.17", "107.17", "111.98", "102.06", "NA", "NA", "NA", "NA", "117.9", "NA", "72.836", "NA", "112.58", "NA", "106.34", "NA", "NA", "NA", "63.451", "NA", "51.564", "105.92", "NA", "NA", "106.75", "NA", "117.9", "106.75", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "106.75", "56.941", "56.941", "NA", "NA", "NA", "NA", "NA", "NA", "92.476", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "55.601", "NA", "NA", "104.65", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "119.07", "NA", "NA", "113.17", "NA", "NA", "NA", "NA", "99.278", "105.08", "NA", "NA", "NA", "98.931", "NA", "90.879", "NA", "NA", "101.73", "NA", "NA", "60.941", "NA", "NA", "NA", "NA", "116.13", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "67.628", "NA", "NA", "NA", "102.94", "NA", "54.929", "NA", "116.72", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "113.77", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "114.36", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "113.17", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "118.49", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "60.941", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "80.578", "104.23", "NA", "NA", "103.8", "NA", "NA", "NA", "NA", "106.34", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "116.13", "NA", "68.85", "NA", "NA", "NA", "117.31", "NA", "54.257", "NA", "NA", "NA", "NA", "94.749", "NA", "117.9", "NA", "118.49", "87.375", "NA", "66.446", "NA", "74.056", "NA", "NA", "NA", "NA", "NA", "NA", "66.884", "NA", "106.34", "NA", "NA", "NA", "NA", "94.749", "NA", "NA", "102.93", "NA", "NA", "NA", "NA", "103.37", "69.504", "NA", "NA", "106.34", "98.049", "NA", "NA", "NA", "117.9", "NA", "NA", "114.36", "NA", "NA", "NA", "90.385", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "100.5", "106.75", "NA", "117.31", "NA", "NA", "97.095", "NA", "66.227", "102.06", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "107.99", "NA", "NA", "NA", "NA", "90.879", "NA", "104.23", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "70.808", "NA", "NA", "111.98", "NA", "106.75", "NA", "NA", "NA", "NA", "NA", "NA", "83.671", "NA", "54.257", "NA", "116.72", "NA", "NA", "NA", "NA", "69.384", "NA", "111.39", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "111.39", "104.23", "106.34", "87.375", "NA", "119.07", "NA", "NA", "NA", "NA", "107.58", "NA", "88.89", "NA", "NA", "NA", "88.723", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "118.49", "59.611", "NA", "NA", "NA", "NA", "105.08", "NA", "77.314", "NA", "107.17", "NA", "NA", "64.251", "NA", "118.49", "NA", "60.276", "NA", "NA", "NA", "95.222", "NA", "107.99", "102.5", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "112.58", "NA", "NA", "NA", "NA", "NA", "104.65", "103.8", "NA", "NA", "65.569", "98.931", "102.93", "NA", "NA", "NA", "NA", "NA", "105.92", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "117.9", "NA", "NA", "NA", "NA", "NA", "100.73", "116.72", "111.98", "100.5", "NA", "NA", "107.58", "96.63", "NA", "NA", "NA", "NA", "NA", "63.451", "NA", "NA", "73.969", "NA", "100.29", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "55.601", "NA", "NA", "103.55", "NA", "NA", "NA"], ["Male", "Male", "both", "Male", "Female", "Female", "Female", "Male", "both", "Female", "both", "both", "Female", "both", "both", "Male", "male", "Male", "both", "Male", "both", "men", "both", "both", "both", "both", "Male", "Female", "both", "Female", "both", "Female", "both", "both", "both", "both", "Female", "both", "Male", "both", "Female", "both", "Male", "Male", "both", "Male", "Male", "both", "both", "both", "Female", "Female", "both", "both", "both", "both", "Male", "both", "both", "both", "both", "Female", "both", "Male", "Male", "Male", "Male", "both", "Female", "Female", "both", "Female", "both", "Female", "Female", "Male", "both", "Female", "women", "Female", "male", "Male", "male", "Female", "Male", "Male", "both", "Male", "men", "both", "women", "both", "Male", "both", "both", "both", "both", "both", "both", "Male", "both", "Female", "Female", "both", "women", "both", "both", "both", "both", "both", "Female", "both", "men", "Female", "Male", "both", "women", "Male", "Female", "both", "Male", "Female", "Male", "Male", "both", "Female", "Female", "Male", "both", "Male", "Female", "both", "both", "both", "Female", "Female", "both", "both", "Male", "Male", "Female", "Male", "Female", "both", "both", "Male", "both", "both", "both", "Female", "both", "both", "both", "both", "men", "Female", "both", "Male", "both", "Male", "Male", "both", "both", "Male", "Female", "Female", "men", "both", "both", "Female", "both", "both", "both", "Male", "men", "Female", "both", "both", "Female", "Male", "both", "both", "both", "both", "both", "women", "Male", "Female", "both", "both", "both", "women", "Female", "Male", "both", "Female", "both", "both", "both", "both", "Female", "both", "both", "both", "both", "Female", "both", "both", "both", "Male", "Male", "Female", "Female", "Male", "both", "Female", "Female", "Female", "both", "both", "Female", "both", "Female", "Female", "Male", "Female", "Male", "both", "Male", "Female", "Male"], ["TIER 1", "LEV", "TLEV", "LEV", "TIER 1", "LEV", "LEV", "LEV", "TIER 1", "TIER 1", "TIER 1", "LEV", "LEV", "TIER 1", "LEV", "ULEV", "LEV", "TIER 1", "TIER 1", "TIER 1", "TIER 1", "TLEV", "TIER 1", "LEV", "TLEV", "TIER 1", "LEV", "LEV", "TLEV", "LEV", "TIER 1", "LEV", "LEV", "TIER 1", "TIER 1", "LEV", "TIER 1", "LEV", "LEV", "LEV", "TIER 1", "LEV", "LEV", "LEV", "LEV", "LEV", "LEV", "TIER 1", "TIER 1", "LEV", "TLEV", "LEV", "TLEV", "TIER 1", "LEV", "LEV", "LEV", "LEV", "TIER 1", "LEV", "TIER 1", "LEV", "LEV", "TIER 1", "LEV", "LEV", "LEV", "LEV", "LEV", "LEV", "LEV", "LEV", "TIER 1", "LEV", "LEV", "LEV", "LEV", "LEV", "LEV", "TIER 1", "LEV", "TIER 1", "TIER 1", "TIER 1", "TIER 1", "LEV", "TIER 1", "LEV", "TIER 1", "LEV", "LEV", "LEV", "LEV", "LEV", "LEV", "TIER 1", "TIER 1", "LEV", "ULEV", "TIER 1", "TIER 1", "TIER 1", "LEV", "TIER 1", "LEV", "TIER 1", "LEV", "LEV", "LEV", "LEV", "ULEV", "TIER 1", "LEV", "TLEV", "TIER 1", "TLEV", "LEV", "TIER 1", "LEV", "LEV", "LEV", "TIER 1", "TIER 1", "LEV", "LEV", "TIER 1", "TIER 1", "LEV", "TIER 1", "LEV", "TIER 1", "LEV", "LEV", "TIER 1", "LEV", "LEV", "LEV", "TIER 1", "LEV", "LEV", "TIER 1", "TIER 1", "TIER 1", "TIER 1", "LEV", "TIER 1", "LEV", "LEV", "LEV", "TIER 1", "LEV", "LEV", "LEV", "LEV", "LEV", "TIER 1", "TLEV", "TIER 1", "LEV", "TIER 1", "TLEV", "LEV", "TIER 1", "LEV", "TIER 1", "TIER 1", "TIER 1", "LEV", "LEV", "LEV", "TLEV", "TIER 1", "TIER 1", "LEV", "TIER 1", "TIER 1", "LEV", "TIER 1", "TIER 1", "LEV", "LEV", "TIER 1", "LEV", "LEV", "ULEV", "LEV", "TIER 1", "LEV", "LEV", "LEV", "TIER 1", "TIER 1", "TIER 1", "LEV", "LEV", "LEV", "LEV", "TIER 1", "LEV", "TIER 1", "TIER 1", "LEV", "TIER 1", "TIER 1", "LEV", "TIER 1", "TIER 1", "LEV", "LEV", "TIER 1", "TIER 1", "LEV", "LEV", "TLEV", "TIER 1", "LEV", "TIER 1", "LEV", "LEV", "LEV", "LEV", "TIER 1", "LEV", "TIER 1", "TIER 1", "LEV", "LEV", "LEV", "TIER 1", "ULEV", "TIER 1", "TIER 1", "LEV", "TLEV", "LEV", "TLEV", "TIER 1", "LEV", "LEV", "LEV", "LEV", "TIER 1", "TIER 1", "TIER 1", "TIER 1", "TIER 1", "LEV", "LEV", "LEV", "TIER 1", "ULEV", "TIER 1", "TIER 1", "LEV", "LEV", "LEV", "TIER 1", "TIER 1", "LEV", "ILEV", "TIER 1", "LEV", "LEV", "TIER 1", "TIER 1", "LEV", "TIER 1", "LEV", "LEV", "LEV", "TIER 1", "TIER 1", "LEV", "LEV", "LEV", "TIER 1", "LEV", "ULEV", "LEV", "LEV", "TLEV", "LEV", "LEV", "TIER 1", "LEV", "TLEV", "TIER 1", "TIER 1", "TIER 1", "TIER 1", "TIER 1", "TIER 1", "LEV", "TIER 1", "LEV", "TIER 1", "TIER 1", "TLEV", "TLEV", "LEV", "LEV", "TLEV", "LEV", "LEV", "TIER 1", "TIER 1", "LEV", "TIER 1", "LEV", "TIER 1", "LEV", "TIER 1", "LEV", "LEV", "TIER 1", "LEV", "TIER 1", "TIER 1", "LEV", "TIER 1", "TIER 1", "TIER 1", "ULEV", "TIER 1", "TIER 1", "LEV", "TIER 1", "TIER 1", "LEV", "LEV", "LEV", "TIER 1", "TLEV", "TIER 1", "TIER 1", "TLEV", "LEV", "TIER 1", "TIER 1", "LEV", "TIER 1", "TIER 1", "TIER 1", "LEV", "LEV", "TIER 1", "TLEV", "ILEV", "TLEV", "TIER 1", "LEV", "TIER 1", "TIER 1", "TIER 1", "LEV", "LEV", "LEV", "TIER 1", "LEV", "LEV", "TIER 1", "LEV", "LEV", "LEV", "TLEV", "LEV", "TIER 1", "TIER 1", "TIER 1", "LEV", "TIER 1", "TLEV", "LEV", "LEV", "TIER 1", "TIER 1", "LEV", "TIER 1", "TIER 1", "LEV", "TLEV", "TIER 1", "LEV", "TIER 1", "TIER 1", "LEV", "TIER 1", "LEV", "TIER 1", "LEV", "LEV", "TIER 1", "TIER 1", "LEV", "LEV", "LEV", "TIER 1", "ULEV", "LEV", "TIER 1", "LEV", "LEV", "TIER 1", "LEV", "TIER 1", "TLEV", "TIER 1", "LEV", "TIER 1", "ULEV", "LEV", "LEV", "LEV", "LEV", "TIER 1", "LEV", "LEV", "LEV", "LEV", "TLEV", "LEV", "LEV", "LEV", "TLEV", "TIER 1", "LEV", "LEV", "LEV", "TIER 1", "TIER 1", "LEV", "TLEV", "TIER 1", "TIER 1", "TLEV", "TIER 1", "TIER 1", "LEV", "TIER 1", "TIER 1", "TIER 1", "LEV", "LEV", "LEV", "TIER 1", "TLEV", "LEV", "TIER 1", "TIER 1", "LEV", "TIER 1", "ULEV", "ULEV", "TIER 1", "TLEV", "LEV", "ULEV", "TIER 1", "TLEV", "ULEV", "LEV", "ULEV", "TIER 1", "TIER 1", "LEV", "TIER 1", "LEV", "ULEV", "LEV", "TIER 1", "TIER 1", "LEV", "LEV", "LEV", "TIER 1", "TIER 1", "LEV", "TIER 1", "TIER 1", "LEV", "LEV", "LEV", "LEV", "TIER 1", "LEV", "LEV", "LEV", "TIER 1", "TIER 1", "LEV", "TIER 1", "LEV", "TIER 1", "TIER 1", "LEV", "ULEV", "TIER 1", "TIER 1", "LEV", "LEV"], ["Low", "High", "Medium", "Medium", "Low", "Medium", "High", "Low", "Low", "High", "Low", "Medium", "Low", "Low", "Medium", "Medium", "Low", "Low", "Low", "Low", "Medium", "Low", "High", "Medium", "Medium", "Medium", "Low", "Low", "High", "Low", "Low", "Low", "Low", "Medium", "Low", "Low", "Low", "Low", "High", "Low", "High", "Medium", "Low", "Low", "Low", "Low", "Low", "Low", "Low", "Medium", "High", "Low", "High", "Low", "Low", "Low", "Low", "Low", "Medium", "High", "Low", "Low", "Low", "Medium", "Low", "Medium", "Low", "Medium", "High", "High", "High", "Medium", "Low", "Low", "Low", "Low", "Low", "Low", "Low", "Medium", "Low", "Low", "High", "Medium", "Low", "Medium", "Low", "Low", "Low", "Medium", "Low", "Low", "Medium", "Low", "Medium", "Low", "Low", "Low", "Low", "Medium", "High", "Low", "High", "Low", "Low", "Low", "High", "Medium", "High", "Medium", "Medium", "Medium", "Low", "Low", "Low", "Low", "Low", "Low", "Low", "High", "Low", "High", "Low", "Low", "High", "Low", "Low", "High", "Low", "Medium", "Medium", "Medium", "High", "Medium", "Low", "Low", "Medium", "Medium", "Low", "Medium", "Medium", "Low", "High", "Medium", "Low", "Medium", "Medium", "Low", "Medium", "Low", "Low", "Medium", "Low", "Low", "High", "Low", "Medium", "High", "Low", "Medium", "High", "Medium", "Low", "Low", "Low", "High", "Medium", "Low", "Low", "Low", "Low", "Low", "Medium", "High", "Low", "High", "Low", "Low", "High", "High", "Medium", "Low", "High", "Low", "Medium", "Low", "Low", "High", "Low", "Low", "Low", "Low", "Medium", "Low", "Low", "High", "Low", "Low", "Low", "Medium", "High", "Low", "High", "Low", "Medium", "Medium", "Low", "Low", "Medium", "Low", "Low", "Medium", "Low", "Medium", "High", "Low", "High", "Low", "Low", "High", "High", "Medium", "High", "High", "Low", "Low", "High", "Low", "Low", "Low", "Medium", "Medium", "High", "Low", "Low", "Low", "High", "Low", "Low", "High", "High", "High", "Low", "High", "Low", "Low", "Low", "Medium", "Low", "Low", "Medium", "Low", "Low", "Medium", "High", "Low", "High", "Low", "Low", "Medium", "Medium", "High", "Low", "High", "Medium", "Medium", "Low", "Medium", "Medium", "Low", "Low", "Medium", "Low", "High", "High", "Medium", "Low", "Low", "Low", "High", "High", "Low", "Low", "Low", "Low", "Low", "Low", "Low", "High", "Low", "High", "Low", "Medium", "Low", "Low", "Low", "Low", "Medium", "Low", "Low", "High", "Low", "Medium", "Low", "Medium", "High", "High", "High", "Low", "High", "Low", "Medium", "Low", "Low", "Low", "Low", "Medium", "High", "Low", "Medium", "Low", "Low", "Medium", "Medium", "Medium", "Low", "Medium", "Medium", "Low", "Low", "High", "Medium", "Medium", "Low", "Low", "Low", "High", "High", "Low", "Low", "High", "Low", "Medium", "Low", "Medium", "Low", "Medium", "Medium", "Low", "Low", "Medium", "High", "Low", "Low", "Low", "Medium", "High", "Low", "Medium", "Low", "Low", "Low", "Low", "High", "Medium", "Low", "Low", "Medium", "Low", "Low", "Medium", "Medium", "High", "High", "Low", "Low", "Low", "Medium", "Medium", "Low", "Low", "Low", "Low", "High", "Medium", "Low", "High", "Medium", "Low", "Medium", "Low", "Medium", "High", "Low", "Medium", "Medium", "High", "Low", "Medium", "High", "Medium", "High", "Low", "Low", "Low", "Low", "Low", "High", "Low", "Medium", "High", "Medium", "Low", "Low", "Medium", "Medium", "Low", "Low", "High", "Medium", "High", "Low", "High", "Low", "Medium", "Medium", "Low", "Low", "Low", "High", "Low", "Low", "High", "Low", "Medium", "Low", "Low", "Low", "High", "Low", "High", "Medium", "Medium", "Low", "High", "Medium", "High", "Low", "Low", "Medium", "High", "Low", "Low", "Low", "Low", "Low", "Low", "Low", "Low", "High", "High", "Low", "High", "Low", "Medium", "High", "High", "High", "Medium", "Medium", "High", "Low", "High", "Medium", "Medium", "Low", "Medium", "Low", "Low", "Low", "Low", "Low", "Low", "Low", "High", "High", "Low", "Medium", "Medium", "Low", "Low", "Low", "Low", "Low", "Low", "High", "Medium", "Medium", "Medium", "Low"], ["NA", "NA", "NA", "89.566", "NA", "109.46", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "71.544", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "115.67", "NA", "NA", "NA", "116.18", "NA", "NA", "98.085", "NA", "NA", "NA", "115.16", "113.11", "NA", "NA", "90.721", "NA", "NA", "113.62", "NA", "NA", "103.04", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "107.87", "NA", "NA", "NA", "NA", "NA", "NA", "91.87", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "112.59", "NA", "99.195", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "108.93", "NA", "NA", "NA", "NA", "96.407", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "113.11", "NA", "NA", "NA", "NA", "NA", "99.749", "NA", "NA", "NA", "NA", "112.07", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "116.18", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "115.16", "61.394", "NA", "NA", "NA", "NA", "NA", "NA", "50.201", "NA", "NA", "NA", "NA", "NA", "103.58", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "115.67", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "112.59", "114.14", "NA", "NA", "NA", "118.19", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "108.4", "108.4", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "48.856", "NA", "NA", "NA", "69.669", "NA", "45.469", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "106.27", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "113.11", "NA", "NA", "NA", "NA", "109.98", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "116.18", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "112.07", "NA", "85.479", "NA", "NA", "NA", "118.19", "NA", "NA", "NA", "NA", "NA", "NA", "115.16", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "58.146", "NA", "NA", "NA", "NA", "65.244", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "54.861", "NA", "NA", "NA", "NA", "NA", "106.27", "108.4", "101.95", "101.4", "NA", "112.07", "NA", "NA", "NA", "NA", "111.03", "NA", "112.59", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "60.099", "116.68", "112.59", "NA", "117.19", "59.45", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "44.104", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "95.282", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "115.67", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "98.641", "NA", "NA", "NA", "NA", "103.58", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "116.68", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "116.18", "NA", "NA", "NA", "NA", "NA", "NA", "117.69", "NA", "NA", "115.67", "NA", "NA", "NA", "NA", "112.59", "NA", "NA", "NA", "107.34", "NA"], ["NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "54.376", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "109.67", "NA", "NA", "NA", "104.82", "NA", "NA", "NA", "NA", "NA", "57.502", "NA", "NA", "NA", "107.75", "NA", "101.34", "NA", "NA", "NA", "104.82", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "76.607", "NA", "NA", "NA", "NA", "106.78", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "109.19", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "81.7", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "95.2", "NA", "NA", "NA", "106.29", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "108.71", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "101.34", "NA", "NA", "NA", "105.81", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "66.052", "NA", "NA", "100.84", "NA", "NA", "NA", "100.33", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "106.29", "NA", "53.747", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "109.19", "NA", "NA", "55.005", "NA", "78.886", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "109.19", "NA", "NA", "NA", "102.34", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "95.2", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "106.78", "107.27", "108.71", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "109.19", "NA", "NA", "NA", "NA", "108.23", "NA", "56.88", "NA", "NA", "NA", "107.27", "NA", "NA", "NA", "107.75", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "57.502", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "102.34", "NA", "106.29", "NA", "NA", "58.742", "110.14", "NA", "NA", "104.33", "108.23", "NA", "107.75", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "106.78", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "88.298", "NA", "NA", "NA", "NA", "NA", "NA", "92.046", "NA", "104.82", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "108.71", "99.827", "NA", "NA", "NA", "108.23", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "59.359", "NA", "NA", "NA", "NA", "72.561", "56.256", "NA", "NA", "108.71", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "79.452", "NA", "106.78", "NA", "NA", "101.34", "NA", "NA", "NA", "NA", "NA", "NA", "107.75", "NA", "109.67", "NA", "NA", "NA", "109.67", "NA", "NA", "108.23", "NA", "84.476", "NA", "NA", "99.319", "NA", "NA", "NA", "NA", "NA", "NA", "77.75", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "110.14", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "104.33", "NA", "NA", "NA", "NA", "NA", "NA"], ["N/A", "0.0075", "0.0075", "0.0075", "0.0075", "N/A", "N/A", "0.0075", "N/A", "N/A", "0.0075", "N/A", "0.0075", "N/A", "0.0075", "0.0075", "0.0075", "0.0075", "0.0075", "0.0075", "0.0075", "0.0075", "N/A", "0.0075", "0.0075", "N/A", "0.0075", "N/A", "0.0075", "0.0075", "0.0075", "N/A", "0.0075", "0.0075", "0.0075", "0.0275", "0.0075", "0.0075", "N/A", "0.0075", "0.0275", "0.0075", "0.0075", "0.0075", "0.0075", "0.0075", "0.0075", "0.0075", "0.0075", "0.0075", "0.0075", "0.0075", "0.0075", "0.0575", "0.0075", "N/A", "0.0075", "0.0075", "N/A", "0.0075", "0.0075", "N/A", "0.0075"], ["male", "male", "female", "female", "male", "female", "male", "female", "female", "male", "female", "male", "male", "male", "male", "male", "male", "female", "female", "male", "male", "female", "male", "male", "female", "male", "female", "male", "female", "male", "female", "male", "female", "female", "female", "male", "male", "female", "male", "female", "male", "male", "male", "female", "male", "male", "male", "female", "female", "male", "male", "female", "male", "male", "female", "female", "male", "male", "female", "female", "female", "male", "female", "female", "male", "male", "male", "female", "female", "female", "female", "male", "male", "male", "female", "female", "male", "female", "male", "female", "female", "male", "male", "male", "male", "male", "female", "male", "female", "male", "male", "female", "female", "female", "male", "female", "male", "female", "male", "male", "female", "female", "female", "male", "female", "female", "female", "female", "female", "female", "male", "female", "female", "male", "male", "female", "female", "female", "female", "male", "female", "female", "female", "female", "female", "female", "female", "male", "female", "male", "male", "female", "female", "female", "male", "female", "male", "female", "male", "male", "male", "female", "male", "male", "male", "male", "female", "female", "female", "male", "male", "male", "female", "female", "male", "female", "male", "female", "male", "male", "female", "female", "female", "female", "male", "female", "male", "male", "female", "female", "female", "female", "female", "female", "female", "female", "male", "female", "female", "female", "female", "female", "male", "male", "male", "female", "female", "male", "female", "male", "female", "male", "female", "female", "male", "female", "male", "female", "male", "male", "male", "female", "male", "male", "male", "female", "male", "female", "male", "female", "female", "male", "female", "female", "male", "male", "female", "female", "female", "male", "female", "female", "female", "female", "male", "male", "male", "female", "male", "male", "male", "female", "female", "male", "female", "male", "female", "female", "female", "female", "male", "female", "male", "male", "male", "female", "female", "male", "female", "male", "female", "female", "female", "female", "female", "female", "female", "male", "male", "female", "male", "male", "female", "female", "female", "female", "female", "female", "male", "female", "female", "male", "female", "female", "male", "male", "female", "male", "female", "female", "female", "female", "male", "female", "female", "female", "female", "male", "male", "female", "male", "male", "male", "female", "female", "female", "female", "male", "female", "female", "female", "male", "male", "female", "male", "male", "female", "male", "female", "male", "male", "female", "male", "male", "male", "female", "female", "male", "male", "female", "female", "female", "female", "female", "female", "female", "female", "male", "male", "female", "male", "female", "female", "male", "female", "male", "female", "male", "female", "female", "female", "male", "male", "female", "male", "male", "female", "female", "male", "female", "female", "female", "female", "female", "male", "male", "female", "female", "male", "male", "male", "female", "male", "male", "male", "male", "male", "male", "female", "male", "female", "male", "female", "male", "male", "male", "female", "female", "male", "female", "male", "male", "female", "male", "male", "male", "male", "female", "female", "male", "female", "male", "female", "female", "female", "female", "male", "female", "male", "male", "female", "male", "male", "male", "female", "female", "male", "male", "male", "female", "male", "female", "male", "female", "female", "male", "female", "female", "female", "female", "female", "female", "female", "male", "male", "female", "male", "female", "male", "male", "female", "male", "male", "male", "male", "male", "male", "male", "female", "male", "female", "male", "female", "female", "male", "female", "male", "female", "male", "male", "female", "male", "male", "male", "female", "male", "male", "female", "female", "female", "male", "male", "female", "male", "female", "female", "male", "male", "male", "female", "female", "female", "male", "male", "male", "female", "male", "female", "male", "male", "male", "male", "male", "female", "male", "female", "male", "male", "male", "female", "male", "female", "male", "male", "female", "male", "male", "male", "male", "female"], ["paper", "online", "online", "paper", "online", "online", "paper", "paper", "online", "online", "paper", "online", "online", "online", "online", "online", "paper", "online", "paper", "online", "paper", "paper", "online", "online", "online", "online", "online", "online", "paper", "online", "online", "paper", "online", "online", "paper", "online", "paper", "online", "online", "online", "online", "online", "paper", "paper", "online", "online", "online", "online", "online", "paper", "paper", "paper", "online", "online", "online", "paper", "paper", "online", "online", "online", "online", "online", "online", "online", "online", "online", "paper", "online", "paper", "paper", "online", "paper", "online", "paper", "paper", "paper", "online", "online", "paper", "online", "paper", "paper", "paper", "online", "paper", "paper", "online", "paper", "online", "online", "online", "online", "paper", "paper", "online", "paper", "online", "paper", "online", "online", "online", "online", "paper", "online", "online", "online", "paper", "online", "online", "online", "paper", "online", "online", "paper", "online", "online", "online", "online", "paper", "online", "paper", "online", "online", "online", "online", "online", "online", "online", "online", "online", "online", "paper", "paper", "paper", "paper", "online", "online", "paper", "paper", "paper", "paper", "online", "online", "paper", "online", "online", "online", "paper", "online", "paper", "paper", "online", "online", "paper", "online", "online", "online", "online", "online", "paper", "online", "online", "online", "online", "paper", "paper", "online", "online", "online", "paper", "online", "online", "online", "paper", "online", "paper", "paper", "online", "online", "online", "online", "online", "paper", "online", "online", "online", "online", "online", "online", "paper", "online", "online", "online", "online", "online", "paper", "online", "online", "online", "paper", "online", "online", "paper", "paper", "online", "online", "online", "online", "paper", "online", "paper", "online", "online", "paper", "online", "online", "paper", "online", "online", "online", "online", "paper", "online", "paper", "online", "online", "online", "online", "online", "online", "online", "online", "paper", "online", "online", "online", "online", "online", "online", "online", "paper", "online", "paper", "online", "online", "online", "online", "online", "online", "online", "online", "online", "paper", "paper", "online", "online", "online", "online", "paper", "online", "online", "online", "online", "paper", "online", "online", "online", "online", "online", "online", "online", "paper", "online", "online", "online", "online", "online", "online", "online", "online", "online", "online", "online", "paper", "online", "online", "paper", "online", "online", "paper", "online", "online", "paper", "online", "online", "paper", "paper", "paper", "paper", "paper", "online", "paper", "online", "online", "online", "online", "paper", "online", "online", "online", "online", "online", "online", "paper", "paper", "paper", "online", "online", "paper", "online", "online", "online", "online", "paper", "online", "online", "online", "online", "paper", "online", "paper", "online", "online", "online", "online", "online", "online", "online", "paper", "online", "paper", "paper", "online", "paper", "paper", "paper", "online", "paper", "online", "online", "paper", "online", "paper", "paper", "online", "online", "online", "online", "online", "online", "online", "online", "online", "paper", "online", "paper", "paper", "online", "online", "paper", "paper", "online", "online", "online", "online", "online", "online", "online", "online", "online", "online", "online", "paper", "online", "paper", "online", "paper", "paper", "online", "online", "online", "online", "online", "online", "online", "online", "online", "online", "online", "online", "paper", "online", "online", "online", "paper", "paper", "online", "paper", "paper", "online", "online", "online", "paper", "online", "paper", "paper", "online", "online", "paper", "online", "online", "online", "online", "online", "paper", "online", "online", "online", "online", "online", "online", "paper", "online", "online", "paper", "paper", "online", "online", "online", "online", "paper", "online", "online", "online", "online", "online", "online", "online", "online", "online", "online", "online", "online", "online", "paper", "online", "online", "paper", "online", "paper", "online", "online", "paper", "online", "online", "online", "paper", "paper", "online", "online", "online", "paper", "paper", "paper", "online", "online", "online", "online", "online", "paper", "online", "paper", "paper", "online", "online", "online", "online", "online", "online", "paper", "online", "online", "paper", "online", "online", "paper", "paper", "online", "online", "online"], ["1015194", "896392", "830261", "788138", "1285684", "891471", "1233283", "1216073", "1340694", "1160899", "1274181", "956791", "1124697", "926878", "1068831", "916406", "1260538", "1275749", "1159044", "1263260", "1003652", "905478", "1332227", "1180406", "1312143", "910243", "918938", "1220068", "1233841", "1286669", "1325881", "1274892", "1347830", "1073164", "1268459", "1274474", "1304031", "999103", "1360338", "1152603", "927418", "1111054", "1260443", "1216087", "1185798", "1272947", "1186937", "1346588", "1234032", "1285724", "1187025", "1302626", "1271904", "1078585", "1240346", "1103608", "1178811", "1265902", "1310119", "1273734", "1036855", "1155953", "1217748", "978155", "1216319", "1340524", "1243960", "1014886", "1131481", "1275632", "1200186", "1314899", "1026229", "1158142", "1128348", "856880", "900946", "964391", "1273834", "1003135", "836000", "956589", "495191", "969258", "1250078", "1282313", "1341971", "1244930", "456070", "1331563", "1283045", "1274174", "1076593", "1248108", "1085311", "1303191", "1025040", "524060", "1305386", "1269264", "1200590", "1133540", "1061135", "1278519", "891384", "1189356", "1349429", "1218784", "1094688", "1106760", "1281906", "1001060", "1212517", "1278934", "923796", "1282454", "1342868", "1216944", "1308914", "1135231", "1279921", "1102125", "1353054", "1345957", "937773", "628612", "1156911", "1204731", "1102740", "1225736", "1272985", "1172330", "1154396", "1158100", "934626", "914774", "960116", "1341149", "1038036", "1341695", "1217238", "1121938", "1121608", "1188016", "1092581", "1064470", "1216804", "1342300", "1282023", "1021982", "1275248", "835190", "1245730", "1303087", "1348161", "832176", "1261710", "1278506", "1275577", "1344184", "921595", "1283726", "1275968", "1097527", "1020277", "1250742", "1219365", "898213", "927382", "1272734", "1025505", "1276951", "1181571", "1341828", "1206206", "968002", "1307556", "1261203", "1311222", "1097463", "1026459", "962899", "1314373", "1217221", "1101011", "906198", "622093", "1296921", "977111", "1245839", "1269220", "977428", "1359557", "1350697", "1009047", "1159206", "1156351", "1306394", "856223", "1337186", "1357117", "1189211", "975815", "1342331", "942113", "1204737", "1227573", "1260949", "1105563", "1211821", "1304916", "1310636", "1180524", "1291801", "1261602", "579770", "1151945", "1216338", "1133437", "1328584", "1220361", "890383", "1270945", "1232241", "1227001", "1354373", "1072351", "1227131", "629918", "1265096", "960252", "1304236", "1216164", "1134677", "992320", "1062708", "1346836", "1266428", "1107306", "1309420", "1316993", "1311318", "1353881", "1250302", "1305600", "1250416", "1341854", "1274176", "1341952", "1273791", "621599", "1187270", "1214837", "965734", "895926", "1170728", "1315171", "926491", "1151143", "1208461", "1256250", "1275312", "1259445", "1337185", "1159028", "1275837", "1271944", "1273158", "998800", "975294", "1346422", "1249987", "1313716", "922252", "1307618", "1307333", "1283944", "1346098", "1241744", "1199598", "1275319", "920256", "1275174", "1212139", "1228246", "1287316", "913860", "1285305", "1159915", "1352940", "1003768", "1259536", "889816", "1336597", "1335642", "1350260", "1292381", "1190182", "1331234", "807305", "1202280", "1247278", "1270027", "1099462", "1279026", "916121", "1276664", "1210566", "1101571", "1280229", "1343754", "1135262", "1273024", "886729", "1340238", "1248091", "1318866", "1157251", "1001922", "524545", "1208776", "1357015", "1346948", "1199789", "940780", "984674", "1193389", "1201251", "1282562", "1342783", "1305393", "1196671", "831450", "1185075", "1336598", "1338357", "1263832", "1183166", "1275212", "1275854", "1245533", "1000735", "1123769", "1243498", "1323818", "1253353", "1188758", "1259271", "1198044", "977051", "977183", "1281604", "1077550", "903545", "816930", "1317504", "1225084", "762700", "1215848", "1261243", "1220746", "1164781", "905417", "1307688", "977054", "1169816", "854391", "1345959", "803996", "1230389", "1345555", "1184081", "1338884", "1232249", "1196514", "207905", "1021042", "1273040", "1342943", "1217628", "1290245", "858581", "1281858", "833279", "978434", "1117750", "1213786", "1123146", "839755", "1247679", "1275660", "1032363", "1257469", "1189133", "1300113", "1313928", "992343", "1278100", "1273423", "1274957", "1350979", "1353746", "1243962", "1342400", "1247267", "1328959", "1222138", "1246846", "818212", "1350154", "1297712", "1312392", "1157125", "1028871", "1341642", "890981", "1310453", "839629", "1250879", "1217466", "1035370", "1278899", "1099338", "1216702", "1013469", "1160283", "1235473", "1165546", "1341923", "911582", "1132783", "1158068", "1225936", "1356015", "1169141", "919276", "1341109", "1159266", "963914", "1057492", "1195462", "945560", "1274612", "1291238", "1325445", "1282003", "995817", "1249664", "1191248", "1187997", "1348141", "1213492", "1217055", "1158517", "1340868", "1157619", "1294612", "1213129", "1188615", "882932", "992900", "1099785", "1324388", "1180050", "1022144", "1340768", "1164774", "425697", "1299727", "970680", "1188201", "925721", "1041081", "1066111", "1121341", "1310616", "1347762", "1025786", "1353542", "1263551", "1251179", "890040", "1338851", "1030646", "1018056", "1348403", "895331", "1250734", "1033139", "1307062", "1234721", "1320387", "1216906", "1289198", "1255713", "1341976", "404343", "1333490", "1346655", "1178402"], ["BSCI", "CTR", "NAVB", "JKK", "S", "AADR", "CZZ", "TMUSpA", "TXT", "CVY", "HME", "CMDT", "RWT", "LXPpC", "DDS", "ORA", "STOR", "EWC", "VRX", "ATU", "PHM", "NGS", "BTF", "ARO", "BWP", "CXH", "AA", "OUT", "WEC", "UGA", "GXP", "LIQT", "NYCBpU", "GY", "SNE", "DTE", "RBSpH", "GQRE", "IPAC", "RVT", "OFG", "NUV", "V", "GAA", "OGEN", "SBpD", "OI", "PLOW", "CIM", "RODI", "CGI", "USO", "ACIM", "HPS", "GXPpD", "NHI", "PXMC", "HY", "LGLV", "CSJ", "GEX", "FUD", "ABR", "NRG", "BFO", "FGB", "IBCB", "FXCH", "ACCU", "EPE", "ESBA", "ROOF", "HNI", "NGVC", "PUKpA", "NVGS", "EUFX", "NEEpJ", "AGU", "IJT", "MR", "DIM", "NMpG", "BSX", "INNpC", "EFAD", "DLRpG", "IEI", "GPI", "SSWpE", "MBG", "KIMpI", "LFC", "EDV", "GTY", "GLOP", "SCEpF", "FNX", "PCGpG", "KSUp", "WEET", "ALPpO", "SH", "AFL", "BIT", "KN", "TLL", "SIPE", "SWM", "KBWR", "NMA", "TWM", "RWM", "PZI", "LXP", "BBTpG", "LXK", "FEO", "KEP", "PEBpC", "VMC", "PPR", "BDN", "AGMpC", "DVYE", "IYM", "FWDI", "UBN", "AIY", "NSR", "GZT", "LGL", "VFH", "QLD", "BCSp", "SWY", "SZC", "JBR", "WBC", "HYLD", "UGAZ", "NUS", "NXR", "KED", "SJT", "LVLT", "GAMpB", "CORP", "EEP", "RCD", "KB", "SDA", "PMR", "JO", "PJH", "MCD", "PKB", "CCF", "GRN", "CQP", "RBSpN", "FXZ", "DRQ", "PDP", "BLNG", "TOL", "CBG", "ZBpA", "BHLB", "EMFM", "NEE", "NWY", "OSK", "FRCpD", "ZEP", "RJN", "XTL", "IEFA", "ETG", "MTRN", "TWC", "TDN", "NQS", "MFV", "UST", "SKF", "IGR", "BRK/A", "FMC", "PW", "GXC", "AGQ", "IHT", "FSZ", "HCNpI", "SIVR", "COPX", "SLW", "FXH", "SFN", "DWM", "ORM", "CIX", "AOL", "SXE", "SHO", "SFLA", "IGT", "BZM", "RFTA", "DEF", "MNR", "VDE", "FNDE", "ELJ", "AESpC", "XBI", "NML", "VGI", "NPTN", "EMSH", "AVP", "TRF", "RHI", "CBM", "SB", "KRU", "UCI", "REGpF", "AXL", "EPMpA", "LEE", "CNL", "HUB/A", "VKQ", "UGP", "PB", "EMHZ", "OFCpL", "PFNX", "WFCpL", "RY", "OCIR", "WFEpA", "ELLI", "NLYpD", "ABT", "EVT", "TDE", "CCO", "NBGpA", "BCSpA", "BPY", "CDE", "EMN", "QEP", "ADM", "NKA", "AIB", "LDF", "TGB", "ENFR", "EQL", "PSApS", "FWDB", "LL", "IELG", "SWK", "DB", "BOOT", "VLU", "GTAA", "MHE", "PVA", "GSpD", "NXZ", "AGMpB", "PBE", "EFZ", "ADT", "YAO", "FHLC", "HKOR", "BZQ", "INR", "BUD", "GEB", "XLK", "ILF", "ISF", "GSpB", "MHR", "AAP", "VSR", "JNUG", "SCEpD", "RKUS", "XKE", "TW", "DOD", "GIL", "ACMP", "MMD", "HGH", "DES", "DAR", "IAE", "NC", "USV", "GIS", "INT", "MTS", "TRN", "PLM", "MORE", "BRP", "RZV", "MO", "NBY", "VDC", "GM/WS/C", "NCQ", "PNW", "PER", "TOWR", "CP", "MVT", "IPG", "KFH", "MPW", "GRC", "FPA", "LSC", "TYC", "CPN", "FVL", "ETN", "MPC", "FHK", "DTK", "GDVpA", "TPRE", "DXB", "MLPL", "LOW", "CLD", "RSG", "CAM", "TU", "ASG", "CAFE", "TOTS", "DEJ", "EGP", "UTG", "OUBS", "GRX", "SMLP", "NNC", "EIRL", "RQI", "NHS", "FIW", "BTE", "CIVI", "NLSN", "MINT", "ETF", "ISR", "FAF", "TLR", "JMLP", "JBL", "CPER", "MAB", "TLO", "MVNR", "LAG", "NIE", "EGY", "GSB", "ENJ", "GRAM", "EAT", "YGRO", "TRK", "BIV", "ERF", "SOIL", "PFH", "PT", "QEPM", "NFO", "EZA", "FC", "DF", "FXB", "AUY", "FLC", "GGG", "EWG", "MIDZ", "FELP", "MDC", "CMRE", "AFA", "SWX", "CIB", "DXD", "EWT", "USFR", "VZ", "SGB", "FLTR", "VNM", "VOYA", "TYp", "SEE", "DDRpK", "STAG", "JEC", "MJI", "MHRpE", "WBS/WS", "KRCpG", "WMS", "EMLB", "GD", "AIG/WS", "FHN", "MXL", "MDLL", "FPI", "NNN", "EZU", "MHFI", "NLYpA", "ELA", "CQQQ", "SCZ", "PED", "TMHC", "GVAL", "PFIG", "BJK", "MMP", "FNBpE", "AHLpC", "CM", "VOO", "ICF", "PLL", "INXN", "IWY", "BACpZ", "FXA", "LRN", "CHNA", "NFG", "PAYC", "JJC", "AOD", "CLR", "LEN", "FXU", "MUE", "LUV", "QCAN", "SBpB", "SDOW", "IXN", "MES", "RTLA", "COV", "PGJ", "G", "JKS", "CBD", "IMPR", "IBND", "DNN", "MEG", "VGT", "MIC", "HUSIpD", "GUA", "RYF", "TCAP", "MERpP", "UCP", "GTS", "JMT", "MSCI", "SRV", "NS", "TLYS", "PCGpH", "LPT", "AMPS", "VTA"], ["3055", "36819", "665", "164", "4323", "2226", "24367", "1288", "153566", "590", "179072", "5824", "512414", "4508", "10118", "16334", "125", "9943", "3923", "3873", "453", "3340", "6487", "2595", "163", "66821", "8060", "164721", "32455", "418600", "45723", "2337", "2125", "8955", "107887", "22361", "5655", "9771", "5711", "2676", "6364", "630", "32989", "1045", "738", "1761", "6210", "8364", "6227", "473", "90347", "10015", "3018", "48437", "100381", "460", "44487", "5198", "101778", "1874", "2099", "1803", "42734", "225", "191", "3755", "5372", "23225", "2294", "1942", "174", "3381", "7205", "28503", "6580", "19760", "334512", "11296", "13727", "23714", "23131", "620", "776", "3062", "294", "400566", "7103", "1709", "56034", "37956", "200", "1732", "16140", "2649", "1507", "2087", "14805", "2383", "10459", "51538", "5954", "1308", "4743", "9356", "1704", "49024", "2595", "1377", "1861", "10288", "2770", "194569", "29439", "5733", "86187", "1252", "6031", "4989", "6543", "1514", "1529", "78574", "7498", "1343", "3013", "5364", "449", "559", "8511", "1499", "3514", "134483", "10349", "1889", "949892", "1236", "77979", "329624", "6508", "2163", "3626", "7872", "985", "2861", "11697", "191", "2193", "5888", "1592", "1630", "1712", "434568", "962", "31693", "1741", "2385", "1244", "1995", "28662", "25748", "7277", "10453", "17402", "24649", "6539", "1559", "2507", "4055", "5874", "5323", "3385", "21953", "28023", "4333", "73", "4592", "11066", "6145", "30358", "9836", "51160", "17496", "119", "132345", "3143", "3522", "75176", "37645", "7042", "40325", "6356", "13595", "547", "11435", "4833", "4884", "1822", "4914", "3266", "26520", "1341", "8130", "1471", "1155", "809798", "78726", "101", "16511", "55059", "4405", "6539", "5165", "348", "32087", "214", "3129", "8509", "33206", "3892", "13482", "36681", "94668", "1096", "1686", "3030", "135388", "6925", "82785", "1193", "9307", "9719", "9613", "76", "7699", "9719", "1004", "9712", "19083", "14667", "1954", "286", "2015", "44650", "314", "3282", "1747", "383", "1710", "1415", "1665", "920", "72001", "489", "402826", "106626", "2742", "8770", "21549", "11848", "35114", "1558", "557", "202", "1233", "7424", "703", "2616038", "29425", "396", "1490", "477", "2355", "1275", "517", "5967", "779", "40646", "8300", "1718", "3647", "1111", "23207", "144689", "3300", "60998", "9685", "37785", "116524", "1478", "465910", "1017", "84", "4550", "131306", "948", "21428", "1666", "15693", "112697", "353535", "20123", "3562", "384", "452", "9593", "59429", "3841", "122365", "2974", "20825", "14811", "767", "524", "6259", "222", "564742", "13424", "298", "5818", "2422", "4050", "17249", "21259", "12565", "303", "15956", "2320", "1108", "1322", "3731", "11200", "13293", "490", "10552", "1459", "470568", "496", "3465", "7156", "12063", "4210", "260", "1526", "9735", "3325", "8166", "2056", "142850", "2072", "591", "394", "104619", "329", "87107", "886", "118275", "228", "7961", "41300", "5858", "714473", "5514", "2318", "13329", "439840", "51972", "380888", "748", "8017", "3411", "1408", "30400", "53725", "34869", "273285", "16889", "526", "2953", "257227", "3010", "39502", "67186", "18161", "4207", "47093", "4058", "6672", "17071", "4853", "142840", "2544", "148947", "1529", "3064", "2785", "80", "21320", "153267", "454", "9982", "1674", "73705", "1052", "152555", "197007", "119396", "17077", "3548", "5314", "388692", "3850", "781", "870", "3318", "56842", "6107", "49710", "3117", "1535", "1458", "1031", "987944", "732", "4575", "25346", "30183", "28180", "37929", "409280", "14951", "28160", "129152", "20305", "1319", "10992", "8491", "1888", "54165", "14442", "1305", "2888", "3693", "8459", "341", "3764", "544810", "26770", "1392", "1537", "603", "24639", "12479", "4877", "18773", "966", "29173", "4482", "413", "23290", "2521", "4775", "133231", "102431", "1406", "379540", "3771", "1400", "1160", "9480", "5478", "38023", "1519", "27304", "587", "3667", "16722", "4546", "4431", "31281", "1188", "2780", "5196", "5674", "85201", "4403", "12748", "431", "34547", "366612", "4916", "51580", "23839", "1671", "845322", "11447", "205991", "26422", "4141", "172511", "743453"], ["0.60200", "0.60111", "0.83539", "0.62614", "0.87108", "0.80157", "0.75991", "0.60669", "0.85354", "0.77570", "0.60116", "0.78423", "0.87522", "0.68238", "0.81736", "0.60267", "0.83936", "0.61277", "0.79109", "0.90026", "0.61701", "0.79424", "0.63162", "0.69065", "0.60418", "0.93159", "0.63699", "0.75392", "0.60705", "0.60206", "0.91886", "0.61515", "0.90085", "0.61517", "0.64536", "0.67312", "0.61218", "0.60253", "0.68615", "0.79973", "0.91682", "0.65635", "0.61313", "0.60716", "0.60375", "0.64624", "0.67342", "0.80818", "0.62816", "0.60877", "0.68533", "0.82081", "0.60198", "0.64051", "0.88190", "0.70781", "0.67124", "0.77811", "0.91922", "0.86892", "0.91856", "0.85345", "0.60159", "0.84763", "0.70359", "0.75922", "0.75097", "0.65618", "0.60558", "0.67925", "0.80526", "0.60064", "0.66733", "0.83592", "0.66824", "0.67697", "0.60989", "0.84813", "0.62894", "0.91426", "0.92374", "0.65979", "0.65376", "0.60233", "0.60361", "0.93110", "0.87475", "0.60424", "0.90202", "0.61854", "0.60079", "0.61039", "0.60305", "0.60030", "0.60058", "0.78839", "0.83548", "0.64119", "0.90762", "0.64999", "0.94022", "0.65828", "0.92714", "0.77398", "0.89719", "0.60620", "0.69785", "0.87114", "0.60977", "0.67217", "0.74739", "0.73201", "0.93004", "0.60627", "0.90314", "0.71927", "0.78076", "0.60398", "0.60220", "0.86929", "0.89176", "0.82505", "0.71980", "0.60656", "0.62165", "0.74639", "0.73273", "0.93583", "0.60740", "0.73845", "0.63597", "0.61413", "0.76353", "0.79270", "0.60184", "0.86158", "0.70666", "0.90857", "0.60673", "0.93011", "0.78913", "0.60447", "0.66188", "0.68675", "0.80922", "0.60298", "0.93948", "0.82907", "0.71754", "0.88783", "0.83286", "0.70064", "0.79178", "0.93480", "0.92090", "0.60588", "0.83444", "0.75070", "0.84802", "0.71494", "0.81582", "0.60153", "0.61087", "0.60223", "0.88232", "0.60130", "0.82817", "0.60335", "0.60448", "0.91050", "0.76002", "0.63907", "0.65472", "0.81826", "0.69533", "0.62578", "0.60075", "0.82615", "0.87311", "0.74205", "0.66108", "0.84263", "0.91457", "0.61151", "0.63832", "0.74460", "0.61448", "0.78662", "0.60294", "0.84041", "0.90861", "0.90300", "0.64361", "0.61971", "0.78288", "0.80411", "0.77621", "0.61585", "0.74393", "0.70052", "0.76962", "0.60354", "0.87572", "0.66124", "0.60369", "0.66335", "0.61621", "0.78249", "0.68224", "0.67698", "0.90747", "0.88343", "0.83187", "0.71117", "0.75648", "0.68716", "0.86717", "0.60666", "0.74283", "0.93972", "0.63501", "0.72117", "0.74992", "0.61095", "0.85741", "0.87803", "0.93810", "0.92102", "0.82252", "0.60226", "0.83014", "0.60413", "0.60725", "0.64822", "0.60549", "0.90333", "0.90182", "0.60165", "0.86646", "0.89780", "0.74858", "0.87723", "0.75508", "0.60027", "0.60835", "0.74562", "0.80625", "0.60886", "0.91758", "0.93279", "0.60441", "0.60209", "0.60506", "0.60224", "0.73288", "0.70706", "0.72580", "0.61765", "0.90381", "0.60074", "0.62429", "0.76643", "0.71005", "0.61415", "0.84925", "0.61105", "0.73619", "0.73622", "0.62234", "0.60719", "0.86114", "0.69129", "0.87907", "0.60215", "0.62073", "0.90885", "0.79300", "0.72632", "0.90861", "0.71984", "0.60632", "0.82768", "0.66929", "0.70137", "0.61173", "0.63099", "0.88508", "0.60472", "0.65114", "0.86684", "0.61930", "0.65716", "0.93307", "0.63311", "0.61286", "0.75345", "0.60108", "0.81423", "0.60047", "0.87194", "0.86204", "0.65281", "0.64669", "0.60338", "0.60367", "0.60791", "0.60251", "0.86052", "0.60898", "0.60060", "0.90454", "0.62002", "0.74546", "0.60129", "0.72861", "0.69173", "0.88742", "0.86742", "0.72757", "0.87259", "0.60128", "0.77354", "0.62497", "0.84713", "0.61354", "0.60157", "0.82051", "0.60252", "0.73876", "0.60215", "0.60077", "0.73939", "0.84294", "0.60090", "0.93382", "0.60058", "0.60710", "0.65088", "0.60475", "0.62967", "0.60722", "0.89840", "0.75715", "0.85902", "0.73161", "0.70700", "0.89054", "0.72337", "0.89201", "0.73516", "0.61186", "0.60790", "0.76695", "0.75742", "0.67527", "0.73444", "0.73332", "0.79491", "0.62739", "0.86769", "0.86212", "0.61391", "0.62328", "0.69876", "0.60111", "0.60234", "0.60291", "0.60340", "0.93811", "0.60282", "0.91191", "0.77859", "0.61339", "0.76356", "0.75517", "0.94083", "0.72999", "0.85056", "0.60677", "0.60661", "0.81282", "0.70270", "0.74235", "0.64932", "0.79572", "0.60280", "0.86586", "0.69501", "0.83203", "0.60217", "0.62694", "0.61335", "0.75656", "0.70871", "0.82633", "0.82122", "0.67780", "0.61032", "0.64496", "0.91452", "0.85146", "0.89623", "0.60177", "0.81825", "0.84474", "0.60322", "0.83704", "0.67916", "0.60425", "0.84551", "0.89794", "0.85205", "0.60863", "0.60225", "0.60430", "0.71714", "0.60589", "0.86328", "0.74743", "0.67250", "0.82061", "0.88488", "0.78863", "0.60479", "0.60817", "0.64465", "0.71604", "0.84033", "0.88408", "0.70842", "0.67474", "0.77498", "0.74301", "0.78334", "0.85651", "0.61100", "0.67005", "0.87815", "0.73536", "0.62801", "0.76616", "0.63984", "0.66303", "0.84609", "0.63401", "0.66037", "0.79390", "0.82248", "0.66476", "0.83803", "0.63791", "0.81059", "0.77036", "0.90048", "0.80229", "0.88481", "0.60162", "0.69718", "0.60808", "0.86460", "0.82017", "0.89534", "0.61125", "0.80253", "0.60365", "0.66855", "0.60244", "0.78146", "0.74013", "0.60998", "0.60431", "0.61496", "0.75348", "0.64006", "0.60306", "0.84719", "0.89703", "0.60316", "0.60410", "0.61143", "0.87815", "0.90655", "0.60221", "0.74617", "0.79948", "0.83808", "0.81038", "0.87919", "0.60334", "0.60164", "0.69589", "0.80452", "0.72499", "0.80766", "0.84965", "0.91966", "0.60430", "0.77216", "0.69536", "0.60908"], ["339", "88349", "2966", "1984", "1068", "125800", "27237", "39183", "5315", "1077", "257", "19670", "420", "835", "724", "1297", "4983", "14520", "252708", "3318", "397600", "17514", "1821", "5432", "9951", "6201", "19891", "490560", "3351", "4078", "11920", "449", "1310", "7232", "1311", "1933", "2994", "2346", "1306", "10161", "11157", "322259", "11314", "8730", "488", "905", "4360", "1237", "10584", "855", "21455", "98864", "9648", "6931", "985", "749", "5425", "140695", "2708", "12542", "1054", "26184", "2056", "3428", "2255", "860", "3747", "1667", "70040", "102640", "55478", "567", "4705", "50826", "1074", "612", "1990", "1537", "743", "1745", "1548", "3648", "4969", "2681", "89", "276622", "2072", "4492", "622", "12870", "2724", "3359", "51836", "853", "21865", "1768", "3243", "963", "31163", "335066", "817425", "1420", "3009", "4581", "938", "5255", "3489", "9625", "2740", "216", "8501", "2181", "1992", "3283", "1739", "13879", "56348", "5500", "705", "17160", "34144", "1790", "88196", "583", "28825", "19177", "8029", "1163", "23462", "5100", "1359", "224", "1936", "19954", "2329", "1292", "2440", "6649", "6757", "73366", "1206", "967", "118663", "69386", "16127", "2036", "1126", "5965", "229", "302", "455", "10136", "21885", "68", "2257", "180577", "4181", "7945", "1515", "13127", "44015", "10080", "705", "789", "1511", "498", "4521", "597", "93", "2962", "11754", "841", "128", "9991", "33269", "3415", "3093", "13852", "1113", "3102", "6091", "7722", "1699", "2235", "4649", "434", "205", "606", "1560", "4667", "712", "1494", "12037", "43464", "194571", "463", "2905", "26051", "8657", "2436", "157335", "11908", "4519", "46877", "119", "10833", "18738", "15164", "1014", "2221", "2286", "666", "280", "3993", "185817", "218022", "279057", "203", "3273", "1171", "4670", "185", "7642", "982026", "713", "14155", "261959", "24405", "39952", "3745", "168", "24698", "10397", "3906", "1427", "1521", "9026", "673", "1482", "1341", "6625", "7665", "718", "400", "3512", "16829", "35372", "876", "5732", "12189", "875", "18938", "29915", "23445", "403770", "8215", "64657", "2677", "718", "1699", "13123", "4883", "2648", "435", "3214", "74", "31180", "1799", "2721", "1490", "21347", "150396", "5765", "883", "7666", "681", "1831", "580", "1757", "5955", "4905", "28402", "1315", "36628", "1155", "343", "7846", "1194", "2504", "3344", "158", "45304", "9535", "24", "495", "901", "22672", "1542", "6798", "3337", "9838", "749", "652", "19344", "2387", "2492", "79365", "7340", "876", "5786", "3544", "2689", "2260", "754", "780", "33971", "727", "5366", "2915", "10198", "61140", "9610", "1465", "2504", "1989", "227702", "4993", "1960", "11573", "52098", "5138", "1250", "6521", "5520", "981", "34369", "51819", "37058", "5025", "207336", "1512", "79077", "10263", "668", "1134", "7819", "50570", "51076", "30716", "2759", "9317", "1402", "2058", "1590", "1841", "1017", "5196", "4592", "76559", "1742", "1777", "3116", "269", "275811", "10204", "5089", "3678", "617", "14677", "171408", "53580", "3952", "3400", "25998", "10460", "418", "6998", "13800", "42000", "475", "2284", "2149", "609", "3366", "3307", "294", "791", "1126", "969", "15887", "19331", "1406", "2317", "42309", "14111", "10644", "54506", "4114", "16784", "40919", "479183", "3526", "8001", "36640", "664", "56521", "35891", "10356", "37160", "10734", "4071", "371", "17965", "6294", "3625", "23972", "314", "4226", "742", "2938", "3087", "665", "6535", "829227", "14972", "1569", "429", "18133", "133343", "17626", "1966", "885", "14340", "2491", "819", "1167", "79204", "402", "1077", "25238", "611", "81137", "339", "5556", "240341", "328352", "70802", "498", "76540", "1176734", "57152", "2760", "820", "3143", "2258", "236895", "12268", "6858", "5557", "21339", "2077", "66645", "2776", "8660", "160578", "292963", "238", "7622", "166198", "5165", "3190", "663", "91670", "2806", "11643", "2064", "10617", "32936", "8477", "6146", "4780", "1232", "2978", "532635", "1712", "119439", "405", "53462", "4433", "156934", "3115", "6542", "6992", "758", "217", "1750", "16463", "2204", "3692", "6661"], ["1.0511", "1.7538", "1.4905", "2.6493", "2.6112", "2.3866", "1.8508", "1.4697", "1.7176", "1.1287", "1.7902", "1.437", "1.2972", "2.4649", "2.8801", "1.117", "2.3788", "1.219", "1.2847", "2.5026", "1.6169", "1.3435", "2.6644", "2.0257", "1.4486", "1.5857", "1.5819", "1.6012", "1.6834", "1.5176", "1.4456", "1.2193", "1.0942", "1.3627", "1.3989", "2.5074", "2.0708", "1.499", "2.6545", "2.0629", "1.5944", "2.7641", "1.0772", "1.4245", "2.0439", "1.0969", "1.2996", "2.2385", "3.1612", "1.0823", "2.6217", "1.9739", "3.0114", "2.081", "1.9899", "1.1044", "1.1408", "2.6122", "1.4312", "2.2816", "1.9178", "2.7644", "1.173", "3.0726", "2.7329", "1.6242", "2.9366", "1.2652", "1.2878", "2.9345", "1.5327", "1.5443", "1.6754", "0.90464", "1.4723", "1.1362", "1.8576", "1.5448", "2.6607", "1.1951", "3.0252", "1.3004", "1.7464", "1.5124", "2.5533", "1.6085", "2.5344", "2.3579", "1.3991", "1.8119", "1.5576", "1.4123", "0.82947", "1.0399", "1.187", "2.617", "1.3017", "1.5858", "2.2509", "1.0769", "1.5349", "2.0078", "1.6091", "2.1514", "1.3911", "2.1824", "2.4119", "1.3359", "1.3018", "1.1968", "1.3847", "1.6873", "2.2404", "2.0889", "1.6908", "2.644", "2.9248", "2.1615", "2.7775", "1.1264", "2.237", "1.7036", "1.094", "2.715", "1.5441", "1.8199", "1.1769", "0.92866", "1.6891", "1.3038", "1.797", "2.2204", "1.4491", "1.0746", "1.2888", "3.0695", "1.5924", "1.6838", "2.4939", "3.1108", "1.5035", "0.94041", "1.5099", "1.4053", "1.6848", "2.7719", "1.6065", "1.3552", "1.4616", "1.3009", "1.1951", "1.1374", "2.5864", "1.3468", "2.1136", "2.7636", "1.9705", "1.2136", "1.4984", "1.5968", "1.0309", "2.2343", "1.1427", "1.3946", "2.321", "2.9931", "2.5855", "1.2972", "1.3374", "1.5502", "2.3956", "2.6254", "2.0824", "1.1188", "2.1067", "2.9798", "1.0743", "2.902", "1.5126", "1.5479", "2.9436", "2.5648", "2.0864", "1.4234", "1.5076", "1.4536", "1.0798", "1.2972", "1.5688", "1.5862", "1.9566", "1.0769", "1.2081", "2.3356", "1.8024", "2.9863", "1.1016", "2.6751", "2.6116", "1.6582", "2.0875", "1.7775", "1.1115", "2.784", "1.3199", "1.1816", "1.8519", "2.1349", "1.0769", "2.8789", "2.5325", "1.689", "1.4276", "1.5791", "2.0811", "1.4251", "1.1058", "1.2722", "2.936", "1.7265", "1.2918", "1.5219", "1.9568", "1.6115", "1.0707", "2.1395", "3.1736", "2.6363", "2.6279", "2.2974", "2.7094", "1.4479", "0.98063", "1.4065", "2.9877", "1.7155", "1.3374", "1.6146", "1.0786", "2.5531", "1.922", "1.9016", "1.0782", "2.7425", "2.5475", "2.1426", "1.6053", "1.559", "1.2229", "1.0815", "2.5265", "1.0939", "1.3664", "1.092", "2.0151", "2.7458", "1.0864", "2.8382", "1.4047", "1.8192", "2.8898", "2.5064", "2.2802", "3.1483", "1.617", "2.0119", "1.1934", "2.7789", "1.5028", "1.4235", "1.4081", "1.2016", "1.085", "1.4049", "2.1267", "1.5862", "2.8687", "0.94636", "1.4787", "2.6132", "1.3535", "1.4678", "1.0776", "1.2889", "1.3625", "1.1197", "2.4164", "1.973", "2.7049", "1.7758", "1.4327", "1.2391", "1.6286", "1.3197", "2.9514", "2.5058", "2.6244", "1.3608", "1.676", "1.8674", "1.3395", "2.5272", "1.3772", "2.2712", "1.6654", "2.7335", "1.5344", "2.2272", "1.763", "1.2336", "2.8176", "2.4577", "2.0865", "2.6535", "1.5872", "1.9009", "1.5123", "1.193", "2.1133", "1.3343", "2.0697", "1.5125", "1.3973", "1.9649", "1.4304", "2.8205", "2.0209", "1.2864", "1.5564", "1.3751", "1.2016", "1.0965", "1.0464", "1.5687", "0.93832", "2.7087", "1.3777", "2.1633", "2.6118", "1.0759", "2.7553", "1.5405", "1.0738", "1.6926", "1.6086", "2.5866", "2.0707", "2.5808", "1.2989", "2.4515", "1.3658", "1.2702", "1.306", "2.6267", "2.2226", "1.0794", "1.3903", "1.3415", "1.1931", "1.4875", "1.4726", "2.5423", "1.3532", "1.6401", "2.8197", "1.607", "2.302", "1.2561", "1.5687", "1.2925", "1.3695", "1.6927", "1.279", "2.6323", "2.3812", "1.7147", "2.9002", "1.3249", "1.4788", "1.6527", "1.289", "1.9782", "2.7562", "1.4611", "1.3884", "2.6107", "2.5511", "1.3693", "1.1989", "1.3543", "1.6681", "1.4059", "1.0761", "1.0768", "1.7473", "2.064", "2.7937", "2.6609", "1.3354", "1.6933", "1.9423", "1.6517", "2.7717", "1.3756", "1.5232", "1.4096", "1.4736", "1.5126", "1.6167", "1.971", "1.2657", "1.3625", "1.2572", "2.4535", "2.7481", "2.5544", "2.5992", "1.6736", "1.1114", "1.2069", "1.0811", "1.4007", "1.9364", "2.1433", "1.1045", "1.1966", "1.4764", "1.7784", "1.1017", "1.5762", "1.3793", "1.1934", "2.0021", "1.5075", "1.7139", "2.6855", "1.1137", "2.267", "1.8953", "1.303", "1.658", "2.6867", "3.1239", "1.6336", "0.57458", "3.0576", "2.3413", "1.7584", "1.6171", "1.3174", "2.5627", "1.854", "1.4519", "1.4975", "1.2152", "2.5559", "1.5336", "2.2841", "1.3433", "1.0785", "1.299", "1.0704", "2.0995", "1.739", "1.6949", "2.7716", "1.4258", "2.5386", "1.081", "1.1847", "2.1523", "1.704", "1.2807", "2.1591", "1.5165", "2.5878", "3.0397", "1.2994", "1.6546", "2.5382", "1.5086", "2.8437", "2.6506", "2.7201", "1.4614", "3.0295", "2.1515", "1.2135", "1.3885", "1.5507", "1.4159", "1.511"], ["162400", "151700", "532800", "65600", "402600", "398700", "182200", "324000", "79100", "167500", "53800", "376000", "310100", "408300", "288200", "380500", "94600", "428900", "673200", "432900", "453500", "179200", "391200", "177000", "538500", "383900", "74700", "383700", "667600", "562600", "383800", "272400", "395400", "158400", "121300", "244100", "429600", "181300", "333900", "398300", "211600", "168900", "667300", "393900", "669000", "-48888", "190300", "172900", "525000", "36900", "389500", "560700", "204800", "177700", "471900", "182800", "419100", "272200", "105500", "419200", "159200", "386800", "430500", "378300", "200900", "298700", "387000", "198700", "929800", "203100", "140700", "739200", "224600", "636400", "165000", "222700", "353700", "378600", "497800", "135100", "316900", "709000", "416700", "136500", "442000", "239100", "388700", "93800", "700000", "222400", "677400", "109900", "161700", "196000", "282200", "53000", "665700", "220900", "664100", "332200", "119200", "322300", "265200", "433000", "201400", "386000", "150300", "193800", "408400", "170900", "958500", "191900", "164400", "99400", "175200", "480890", "384700", "665500", "246200", "184800", "387900", "672600", "419100", "220800", "251500", "90700", "523100", "107900", "184000", "116600", "661200", "126600", "397900", "138200", "170000", "391800", "135600", "191600", "388200", "184900", "266900", "288100", "295100", "512000", "117100", "206500", "534700", "159000", "181700", "283000", "250500", "185300", "387200", "262400", "292200", "404800", "256300", "857900", "164900", "328300", "525100", "125700", "611800", "672500", "171700", "110500", "409300", "301300", "173400", "516000", "382200", "211000", "216500", "550500", "509300", "716700", "156200", "148800", "474000", "193600", "642200", "176900", "166700", "672000", "42000", "69000", "180800", "86900", "178400", "561500", "277400", "119000", "344800", "356000", "251600", "360400", "223800", "279200", "276700", "876500", "801500", "205400", "244200", "179400", "337900", "742300", "145900", "503500", "254400", "92900", "429000", "106100", "165900", "233700", "561400", "186700", "552600", "454700", "322500", "167700", "642100", "180900", "32300", "108700", "573200", "804900", "693400", "191100", "813200", "207600", "195500", "166000", "676200", "634600", "334400", "265100", "176300", "307900", "181300", "173300", "169900", "287000", "56700", "378500", "664400", "393300", "-78769", "343800", "431800", "284500", "369200", "330700", "269000", "225200", "641800", "365600", "490973", "411400", "191400", "259200", "398900", "428500", "663800", "769700", "165700", "660700", "341100", "551200", "344100", "210300", "287800", "379700", "185600", "637000", "536900", "303800", "424200", "165500", "175200", "537900", "403300", "170000", "373100", "385900", "181900", "494600", "757600", "197600", "207000", "397600", "335400", "650400", "385200", "250712", "185300", "800600", "402300", "175700", "218300", "263300", "101500", "189600", "187300", "378600", "154900", "364300", "213300", "390500", "536700", "801100", "217600", "156600", "197600", "671500", "406100", "400600", "182900", "844600", "240700", "187000", "171100", "463500", "786700", "399600", "111700", "455200", "274400", "514300", "149600", "494200", "322600", "95200", "822100", "658100", "393600", "672200", "271500", "167700", "673700", "324100", "307300", "180700", "240100", "183000", "259300", "706700", "395600", "663000", "180800", "195600", "374100", "157800", "288800", "114300", "163800", "670800", "321700", "186500", "196100", "184200", "341100", "311800", "174700", "236200", "324900", "199500", "158000", "168700", "188300", "211900", "815100", "390700", "220500", "497100", "171000", "368900", "330100", "557400", "167400", "283900", "200000", "387200", "113100", "188800", "188500", "457700", "535400", "101800", "809300", "73200", "340000", "173500", "185900", "743200", "88900", "655000", "485500", "667700", "180400", "396500", "750400", "563700", "288400", "59900", "123800", "477400", "833800", "181500", "662900", "176700", "176100", "499500", "312100", "357600", "220500", "181100", "292000", "159500", "529100", "1111100", "188100", "412100", "188300", "191500", "726400", "104500", "128800", "395000", "636600", "396600", "462000", "181900", "551100", "403600", "178400", "-46192", "496300", "730300", "197300", "509800", "433300", "395400", "250000", "529800", "610800", "461500", "543000", "161100", "308800", "845600", "248900", "176400", "521800", "380600", "194900", "193500", "514500", "242500", "293100", "311600", "391800", "286800", "665700", "747100", "806900", "229400", "215200", "561500", "273300", "741700", "390700", "701700", "198900", "437300", "184000", "655200", "1141100", "332700", "390300", "412100", "658000", "105000", "313100", "531900", "302300", "682900", "195500", "142500", "205500", "805300", "225200", "387800", "283000", "167800", "213800", "166000", "509000", "181900", "198100", "159700"], ["104448", "836224", "42304", "1025", "10975", "148200", "4125", "3475", "6500", "48175", "439728", "690560", "1408", "3968", "6625", "90225", "11025", "13400", "20160", "2100", "2080", "40875", "2025", "2325", "8550", "10448", "16304", "30272", "49600", "12480", "31275", "29504", "66816", "11968", "259825", "1725", "9875", "329850", "2400", "250050", "723712", "22656", "1950", "62450", "45696", "112", "180224", "208", "5632", "75950", "3175", "2175", "3550", "14050", "18880", "7925", "151125", "28608", "62150", "7104", "5675", "15520", "39125", "8875", "7075", "1712", "39424", "3712", "4525", "18325", "18208", "22200", "25792", "8150", "9600", "170688", "416000", "16384", "18675", "50600", "119800", "4500", "15300", "8375", "1536", "45400", "56192", "2000", "35550", "108672", "23800", "14350", "24125", "40700", "4075", "7296", "5824", "3984", "102336", "3125", "2125", "5248", "7050", "17664", "64448", "7025", "11776", "1450", "39440", "3900", "1625", "825", "73600", "1824", "448", "18575", "17500", "196864", "2300", "5184", "6725", "8800", "302912", "1050", "153800", "116175", "2300", "2175", "17550", "432025", "5792", "1176300", "2000", "15025", "1984", "72128", "175300", "269850", "975", "42624", "1030225", "17350", "1325", "22175", "88128", "339875", "9664", "207650", "32200", "43875", "3575", "766575", "110912", "3600600", "133824", "5900", "33792", "1120", "13225", "10560", "2300", "279225", "75520", "6925", "10875", "239360", "1425", "5872", "10352", "6096", "92025", "11375", "823040", "36672", "31808", "104192", "38525", "363456", "3375", "2300", "8450", "11125", "253575", "1350", "55472", "29904", "7725", "240025", "37600", "16775", "6250", "77925", "30208", "212300", "9360", "12275", "2896", "6175", "910976", "18560", "512", "7425", "11400", "14775", "3968", "442304", "11424", "1008", "5250", "12675", "4672", "2100", "241025", "5536", "1120", "448", "82350", "3000", "15625", "7675", "33650", "3475", "164800", "3850", "3072", "2050", "8425", "10560", "89856", "101825", "1936", "853425", "929050", "3650", "3350", "77325", "35275", "7375", "4625", "8650", "525", "40256", "154048", "544", "2600", "3600", "7500", "15425", "11200", "561968", "2928", "5375", "29500", "1025", "2050", "6200", "184512", "14175", "33050", "9100", "9425", "2375", "17800", "99968", "256", "816", "12025", "7575", "7056", "20250", "130624", "2950", "208", "6975", "1000", "9550", "12608", "926912", "27456", "9650", "1775", "124150", "592", "360576", "1875", "65675", "2072896", "4160", "118016", "684775", "1750", "155136", "410112", "8675", "3600", "81600", "103800", "140288", "94250", "63975", "74075", "475200", "242240", "42304", "15400", "113024", "12575", "2992", "4400", "1250", "2125", "725", "39425", "1440", "21248", "928", "6875", "3150", "459776", "517775", "46112", "1760", "9280", "32192", "34025", "567040", "18200", "3850", "12800", "47525", "1200", "1200", "14350", "89225", "2200", "11200", "17875", "29425", "47168", "11072", "129025", "137152", "6900", "1664", "41025", "9150", "9125", "52850", "18144", "14100", "725", "134912", "32640", "7775", "4000", "6720", "61824", "14432", "3400", "6528", "2650", "320900", "47360", "148672", "100375", "26048", "9075", "188525", "400", "39952", "675", "4608", "639920", "1424", "3584", "18375", "90560", "3350", "3776", "576", "639675", "10800", "82752", "10496", "105600", "5500", "102528", "4960", "880", "38675", "7975", "5075", "301775", "36688", "11275", "61975", "13825", "57984", "6225", "23075", "17825", "12100", "137024", "4672", "45488", "10900", "4050", "9050", "37120", "16625", "5650", "599104", "21900", "384", "3750", "86750", "1325", "752", "11525", "214336", "26150", "10816", "38125", "7088", "19575", "16075", "62464", "27450", "1040", "4950", "2900", "20400", "2050", "1343872", "264450", "7025", "62450", "11750", "5600", "5888", "1700", "8350", "6368", "106175", "1185216", "272", "270275", "164875", "399250", "42175", "48125", "150208", "3625", "88000", "822464", "260925", "13425", "8325", "128128", "6025", "23168", "27125", "47552", "6064", "9325", "6600", "367856", "46750", "8525", "2320", "38016", "24850", "7725", "43050", "31300", "4925", "5100", "10350", "11675", "6125", "20800", "474880", "448", "68250", "48384", "5250", "13700", "1105825", "58825", "5568", "12650", "253475", "213100", "19408", "80575", "416", "5525", "6750", "139136", "17850"], ["ID_563", "ID_315", "ID_25", "ID_1229", "ID_1144", "ID_393", "ID_52", "ID_1077", "ID_254", "ID_352", "ID_281", "ID_256", "ID_1348", "ID_324", "ID_1309", "ID_575", "ID_1341", "ID_186", "ID_1343", "ID_1347", "ID_1318", "ID_3011", "ID_73", "ID_448", "ID_933", "ID_1297", "ID_1001", "ID_3066", "ID_67", "ID_3054", "ID_3050", "ID_2", "ID_1111", "ID_432", "ID_3007", "ID_3010", "ID_2403", "ID_402", "ID_1325", "ID_411", "ID_1049", "ID_1302", "ID_3052", "ID_3040", "ID_3104", "ID_323", "ID_3095", "ID_1362", "ID_140", "ID_313", "ID_126", "ID_353", "ID_137", "ID_247", "ID_414", "ID_3051", "ID_1111", "ID_399", "ID_148", "ID_343", "ID_1049", "ID_22", "ID_174", "ID_1362", "ID_73", "ID_89", "ID_254", "ID_855", "ID_470", "ID_766", "ID_475", "ID_332", "ID_362", "ID_268", "ID_35", "ID_551", "ID_499", "ID_481", "ID_357", "ID_3084", "ID_151", "ID_1348", "ID_1327", "ID_48", "ID_340", "ID_1178", "ID_430", "ID_2", "ID_263", "ID_257", "ID_1322", "ID_146", "ID_441", "ID_306", "ID_706", "ID_420", "ID_166", "ID_3004", "ID_323", "ID_813", "ID_3", "ID_1299", "ID_3089", "ID_79", "ID_402", "ID_369", "ID_471", "ID_291", "ID_484", "ID_127", "ID_34", "ID_524", "ID_439", "ID_414", "ID_685", "ID_380", "ID_174", "ID_10", "ID_279", "ID_333", "ID_1100", "ID_425", "ID_699", "ID_3107", "ID_3057", "ID_1364", "ID_413", "ID_150", "ID_706", "ID_1000", "ID_720", "ID_255", "ID_1356", "ID_227", "ID_384", "ID_3011", "ID_3070", "ID_301", "ID_480", "ID_773", "ID_3009", "ID_3044", "ID_3083", "ID_303", "ID_1348", "ID_1348", "ID_399", "ID_1108", "ID_509", "ID_356", "ID_405", "ID_66", "ID_533", "ID_1145", "ID_732", "ID_322", "ID_108", "ID_416", "ID_416", "ID_1298", "ID_743", "ID_1355", "ID_23", "ID_372", "ID_446", "ID_1100", "ID_65", "ID_155", "ID_701", "ID_239", "ID_702", "ID_1317", "ID_299", "ID_424", "ID_25", "ID_483", "ID_3098", "ID_477", "ID_345", "ID_190", "ID_3092", "ID_698", "ID_63", "ID_1325", "ID_245", "ID_545", "ID_131", "ID_3007", "ID_847", "ID_462", "ID_85", "ID_172", "ID_557", "ID_196", "ID_346", "ID_343", "ID_187", "ID_60", "ID_74", "ID_576", "ID_285", "ID_351", "ID_125", "ID_14", "ID_3036", "ID_186", "ID_240", "ID_539", "ID_254", "ID_3104", "ID_1007", "ID_367", "ID_72", "ID_1357", "ID_363", "ID_732", "ID_3061", "ID_1077", "ID_3098", "ID_713", "ID_1321", "ID_444", "ID_344", "ID_3027", "ID_265", "ID_192", "ID_426", "ID_38", "ID_126", "ID_32", "ID_101", "ID_3042", "ID_574", "ID_134", "ID_3021", "ID_254", "ID_1351", "ID_36", "ID_3002", "ID_274", "ID_439", "ID_400", "ID_345", "ID_3065", "ID_104", "ID_476", "ID_1231", "ID_421", "ID_97", "ID_365", "ID_381", "ID_118", "ID_3019", "ID_1308", "ID_285", "ID_569", "ID_327", "ID_1049", "ID_276", "ID_393", "ID_1090", "ID_3068", "ID_3107", "ID_538", "ID_561", "ID_248", "ID_485", "ID_270", "ID_442", "ID_266", "ID_300", "ID_1358", "ID_193", "ID_219", "ID_478", "ID_678", "ID_3094", "ID_91", "ID_188", "ID_263", "ID_727", "ID_308", "ID_144", "ID_301", "ID_326", "ID_2407", "ID_703", "ID_193", "ID_152", "ID_703", "ID_70", "ID_447", "ID_492", "ID_3043", "ID_431", "ID_332", "ID_48", "ID_712", "ID_411", "ID_336", "ID_1225", "ID_544", "ID_3075", "ID_253", "ID_33", "ID_329", "ID_16", "ID_1257", "ID_468", "ID_248", "ID_258", "ID_238", "ID_577", "ID_721", "ID_11", "ID_3080", "ID_773", "ID_67", "ID_3065", "ID_438", "ID_79", "ID_238", "ID_1299", "ID_103", "ID_302", "ID_1281", "ID_933", "ID_404", "ID_543", "ID_390", "ID_542", "ID_360", "ID_2", "ID_527", "ID_7", "ID_331", "ID_225", "ID_454", "ID_212", "ID_3047", "ID_7", "ID_558", "ID_26", "ID_350", "ID_233", "ID_136", "ID_376", "ID_373", "ID_29", "ID_410", "ID_719", "ID_472", "ID_1344", "ID_417", "ID_146", "ID_3100", "ID_495", "ID_71", "ID_172", "ID_1305", "ID_787", "ID_417", "ID_344", "ID_694", "ID_120", "ID_229", "ID_402", "ID_465", "ID_195", "ID_41", "ID_766", "ID_1176", "ID_339", "ID_362", "ID_3062", "ID_372", "ID_192", "ID_386", "ID_3059", "ID_2403", "ID_124", "ID_347", "ID_280", "ID_117", "ID_3098", "ID_197", "ID_385", "ID_217", "ID_1282", "ID_143", "ID_3036", "ID_56", "ID_219", "ID_1113", "ID_185", "ID_93", "ID_815", "ID_726", "ID_296", "ID_1299", "ID_3042", "ID_227", "ID_245", "ID_573", "ID_305", "ID_178", "ID_545", "ID_786", "ID_206", "ID_189", "ID_270", "ID_551", "ID_3053", "ID_1316", "ID_156", "ID_688", "ID_309", "ID_531", "ID_3096", "ID_389", "ID_18", "ID_139", "ID_3039", "ID_1006", "ID_20", "ID_239", "ID_491", "ID_486", "ID_1221", "ID_528", "ID_59", "ID_133", "ID_326", "ID_233", "ID_272", "ID_385", "ID_298", "ID_713", "ID_3038", "ID_712", "ID_264", "ID_3041", "ID_46", "ID_3006", "ID_1231", "ID_270", "ID_226", "ID_3062", "ID_3034", "ID_403", "ID_24", "ID_1020", "ID_58", "ID_720", "ID_2409", "ID_12", "ID_245", "ID_17", "ID_105", "ID_54", "ID_317", "ID_1325", "ID_3046", "ID_161", "ID_238", "ID_430", "ID_124", "ID_274", "ID_3074", "ID_116", "ID_421", "ID_99", "ID_1178", "ID_471", "ID_492", "ID_218", "ID_451", "ID_571", "ID_94", "ID_119", "ID_3093", "ID_706", "ID_812", "ID_3044", "ID_147", "ID_127", "ID_415", "ID_3043", "ID_230", "ID_88", "ID_753", "ID_33", "ID_1166", "ID_501", "ID_559", "ID_3043", "ID_3072", "ID_1143", "ID_743", "ID_1037"], ["M8 4QS", "M18 8LD", "M8 9LS", "M3 4EE", "M9 4AF", "M15 5PB", "M1 1DW", "M15 5RL", "M4 5JY", "M14 4RE", "M8 7BT", "M22 7TA", "M23 8YQ", "M22 5EU", "M4 5EG", "M40 7PZ", "M4 7HR", "M15 5BJ", "M9 4NU", "M8 7TW", "M3 3ER", "M13 9RN", "M4 4DN", "M3 1SQ", "M15 4PN", "M3 1LQ", "M14 4SW", "M8 8RG", "M18 7TN", "M1 7XN", "M14 6HD", "M12 4JD", "M12 6ES", "M3 2BW", "M14 6HE", "M15 5BP", "M1 2HF", "M3 4NG", "M1 2HF", "M15 6BY", "M21 7NN", "M3 3HF", "M12 5WF", "M11 2NA", "M15 4ZY", "M1 2HG", "M15 4HX", "M15 6SZ", "M21 8ER", "M12 6AE", "M3 1SB", "M8 5DS", "M22 5RH", "M13 9UX", "M20 3YA", "M12 6ES", "M16 8PH", "M15 4JJ", "M4 1HN", "M40 8BB", "M13 0DY", "M20 6TR", "M18 7DT", "M22 6BP", "M16 7WD", "M4 7HR", "M1 2HF", "M14 5GL", "M22 5QZ", "M1 2HF", "M20 5QB", "M7 4QY", "M20 8PN", "M7 4QY", "M4 7HR", "M22 4JN", "M40 8NG", "M14 4AA", "M8 0PN", "M20 6TR", "M16 7WD", "M14 5HT", "M14 5RB", "M13 0QX", "M20 6TR", "M9 1NQ", "M20 3ED", "M40 9DE", "M1 1JU", "M13 9NQ", "M20 4PU", "M15 5BP", "M4 1DQ", "M19 3PQ", "M20 2PQ", "M1 6DD", "M16 7LN", "M22 1BQ", "M1 1EF", "M9 0RD", "M3 3HF", "M4 5DL", "M1 1JU", "M4 5JW", "M14 5JP", "M13 0RX", "M21 1AE", "M3 3HF", "M14 4EP", "M1 2JF", "M40 1QT", "M19 3NN", "M22 4WZ", "M4 7HY", "M4 7HR", "M1 3HZ", "M9 8BN", "M15 5RL", "M13 0FE", "M11 3ND", "M11 4PR", "M4 6BF", "M15 5DD", "M13 9NQ", "M16 8NH", "M16 7LG", "M1 5FW", "M14 7FB", "M3 3HF", "M3 3HF", "M8 5DY", "M22 8TA", "M12 5BX", "M3 1EZ", "M22 1QW", "M22 4HS", "M11 4EA", "M4 1LN", "M22 8LF", "M20 2GU", "M2 4JW", "M20 2RY", "M4 7HY", "M4 1FS", "M22 8EJ", "M40 3TF", "M15 5RL", "M40 8EF", "M13 0PD", "M13 0FE", "M1 6FQ", "M1 2PW", "M13 0NW", "M15 5FS", "M21 7HH", "M9 0RQ", "M14 6SQ", "M8 7FR", "M11 2JW", "M20 3HB", "M20 6UH", "M19 2UH", "M11 2NT", "M3 2EE", "M15 5FS", "M8 5SA", "M14 5JT", "M23 9BP", "M1 6JQ", "M1 6EQ", "M1 7AG", "M20 6SA", "M11 2WJ", "M20 9NA", "M11 1DA", "M8 8RE", "M4 1DQ", "M40 7RG", "M1 1EJ", "M16 8GW", "M11 1FG", "M11 3FX", "M8 8HN", "M11 3BS", "M15 5RL", "M22 5RG", "M16 7WD", "M18 8LW", "M40 1LU", "M12 4DY", "M15 5RL", "M21 7SW", "M21 0SB", "M40 8NQ", "M14 6RN", "M1 3NJ", "M1 5NH", "M20 6FJ", "M8 5EJ", "M1 1DN", "M1 2AN", "M12 6DA", "M15 6BT", "M14 7ED", "M1 6DD", "M9 0RR", "M12 6HS", "M16 7DA", "M23 2UE", "M1 1JQ", "M60 0AS", "M21 8AY", "M22 5RH", "M1 5NH", "M11 1JG", "M40 5BP", "M3 2GX", "M15 5BP", "M8 0AE", "M4 7HR", "M20 6TR", "M21 7SW", "M4 5JW", "M13 9EX", "M15 5RL", "M21 7QA", "M11 2NA", "M4 5JZ", "M23 2SZ", "M4 5JN", "M12 4RY", "M13 9NS", "M21 0YP", "M1 6FQ", "M2 5NS", "M4 7HR", "M21 7SW", "M11 1JG", "M11 2NN", "M22 4TE", "M9 8FY", "M14 6ND", "M8 8QN", "M21 1AQ", "M19 3PQ", "M9 4DH", "M2 5NS", "M22 4PZ", "M14 5LW", "M11 4WR", "M1 2EQ", "M15 4BS", "M20 2DR", "M1 1JU", "M14 6HE", "M4 5JW", "M19 3PQ", "M1 2HF", "M19 2LH", "M15 6ER", "M1 3HZ", "M13 9PL", "M9 1ET", "M1 5HN", "M20 2DR", "M1 3PE", "M14 5GS", "M13 0YL", "M1 3LY", "M12 6FZ", "M15 4GB", "M11 4EA", "M3 1EE", "M11 2JX", "M3 1SQ", "M13 0RQ", "M23 2QL", "M14 5HZ", "M22 5RF", "M1 6FQ", "M15 5RL", "M13 9NQ", "M16 8NR", "M23 2YS", "M9 5XR", "M9 4DH", "M8 5UD", "M1 4QA", "M1 2HF", "M40 8BS", "M12 5GZ", "M4 5JW", "M2 3WQ", "M13 0PD", "M14 4PX", "M21 9AN", "M9 0RR", "M22 4LU", "M9 6NP", "M8 5BN", "M18 7FF", "M2 7HA", "M1 6FQ", "M1 2GH", "M21 7NT", "M15 5BP", "M20 3FN", "M40 8FF", "M21 2JA", "M2 3HY", "M22 5DG", "M13 0SH", "M18 7GR", "M40 9LX", "M11 3AZ", "M7 4QY", "M40 5SH", "M1 6EQ", "M23 0AR", "M12 4AH", "M8 5AE", "M8 7SE", "M1 5ZZ", "M21 9AQ", "M8 8AF", "M18 8LB", "M1 4DY", "M1 7HL", "M3 4NB", "M11 2NP", "M1 3LY", "M9 0RA", "M1 5QA", "M20 4SS", "M1 6JX", "M13 9LW", "M20 9FB", "M11 2WJ", "M15 5BP", "M21 1AQ", "M11 4LW", "M15 5BP", "M12 4DY", "M20 6SX", "M23 9QZ", "M21 9JG", "M9 4NH", "M13 0BT", "M22 4TF", "M20 5PG", "M40 7DA", "M2 3WQ", "M3 1EZ", "M40 2TB", "M21 0AS", "M19 3BT", "M2 3WS", "M14 5RZ", "M1 2PQ", "M7 4QY", "M22 4DJ", "M1 6LT", "M4 6AG", "M2 4LA", "M3 3EF", "M15 5FS", "M1 1LE", "M9 6WW", "M9 3BG", "M20 3HE", "M4 1LE", "M13 0PD", "M23 8SX", "M3 3WR", "M8 5BN", "M1 2HF", "M12 5RS", "M13 9WU", "M13 9SU", "M21 8EH", "M20 6UH", "M22 4RG", "M9 5RJ", "M2 5QR", "M8 8WA", "M11 2WJ", "M15 5RF", "M2 7EF", "M4 7HR", "M14 5JT", "M3 3WB", "M15 5FS", "M11 2NT", "M21 1AE", "M9 8AE", "M4 5HF", "M1 1FL", "M12 6BG", "M4 1LE", "M1 1FN", "M11 1WG", "M19 3HZ", "M12 4DY", "M14 4PA", "M1 2HF", "M14 7HT", "M16 7WD", "M16 8GF", "M15 5WD", "M2 6LE", "M11 2FY", "M15 6JS", "M2 3WQ", "M14 7UU", "M20 5GQ", "M1 6FQ", "M9 8PJ", "M19 1AG", "M1 1JG", "M18 7QR", "M40 2TL", "M15 6SE", "M4 5JN", "M15 4ZY", "M4 7HR", "M22 4UN", "M20 2RQ", "M9 6ER", "M11 1WH", "M14 5SD", "M21 0AE", "M11 2AD", "M23 2YS", "M15 6HP", "M22 5RE", "M14 4RE", "M22 5RT", "M1 6EU", "M1 2NQ", "M13 0QX", "M1 1LQ", "M1 3LD", "M3 2GP", "M19 1EF", "M2 7HG", "M20 6RL", "M9 8AE", "M40 8NT", "M22 4FZ", "M15 5TJ", "M4 5JZ", "M3 4JN", "M19 1EW", "M14 4RE", "M15 5FS", "M23 2SX", "M21 8AN", "M16 8PR", "M12 6BA", "M13 9NQ", "M15 6SE", "M1 1JR", "M40 5SH", "M14 4GP", "M15 5BP", "M12 6FY", "M8 8UW", "M22 5AD", "M3 4FN", "M1 5QA", "M20 4BA", "M20 6TR", "M1 3HY", "M4 5AZ", "M8 6SR", "M1 6FQ", "M12 6DY", "M20 2UD", "M9 7SS", "M9 4HE", "M1 1LE", "M13 0AF", "M11 4PS", "M20 2RY", "M12 5RT", "M12 5AQ", "M13 0NP", "M13 0XT", "M21 7AZ", "M1 6FQ", "M11 2WJ", "M2 5NS", "M18 7LJ", "M20 2NN", "M20 2RU", "M21 7RL", "M19 2RE", "M19 3AT", "M40 7RA", "M40 7PN"], ["-242.49", "-416.8", "-396.14", "-464.36", "-242.67", "-331.75", "-354.45", "-236.17", "-416.8", "-417.07", "-237.85", "-453", "-235.98", "-303.57", "-378.53", "-320.84", "-320.94", "-301.21", "-415.67", "-416.04", "-389.16", "-236.2", "-301.17", "-326.3", "-270.84", "-347.08", "-314.93", "-353.21", "-422.74", "-437.57", "-237.89", "-411.36", "-242.66", "-242.58", "-342.87", "-270.5", "-309.5", "-271.77", "-343.02", "-448.85", "-342.43", "-284.69", "-352.98", "-416.79", "-241.49", "-234.13", "-235.99", "-352.62", "-416.8", "-301.22", "-321.45", "-342.58", "-330.7", "-463.55", "-235.98", "-416.79", "-342.87", "-352.27", "-302.27", "-270.53", "-331.8", "-416.24", "-411.86", "-416.8", "-416.78", "-331.58", "-243.85", "-350.46", "-234.29", "-331.44", "-345.84", "-441.32", "-241.5", "-394.03", "-389.32", "-316", "-326.09", "-379.37", "-465.29", "-351.93", "-331.75", "-416.79", "-327.96", "-416.8", "-327.97", "-342.6", "-416.8", "-327.72", "-416.8", "-314.27", "-416.8", "-302.6", "-416.8", "-275.67", "-263.28", "-293.42", "-342.48", "-410.12", "-416.8", "-303.56", "-392.2", "-317.97", "-241.66", "-391.59", "-236.1", "-243.35", "-416.8", "-272.57", "-302.39", "-272.13", "-343.01", "-270.81", "-272.11", "-263.13", "-254.28", "-352.02", "-390.58", "-416.79", "-248.87", "-411.72", "-459.81", "-263.11", "-348.42", "-410.72", "-301.44", "-346.72", "-355.81", "-327.62", "-393.86", "-410.27", "-342.54", "-272.26", "-350.6", "-331.77", "-279.65", "-416.8", "-380.42", "-290.77", "-233.92", "-416.8", "-409.94", "-291.04", "-303.56", "-391.74", "-416.79", "-317.78", "-403.01", "-343.02", "-235.97", "-353.18", "-242.65", "-327.76", "-438.55", "-321.45", "-235.98", "-338.62", "-342.54", "-235.99", "-234.63", "-318.22", "-442.62", "-438.77", "-409.39", "-465.18", "-331.84", "-236.17", "-327.77", "-409.22", "-431.41", "-465.5", "-389.1", "-237.74", "-416.8", "-346.36", "-416.8", "-343.02", "-327.72", "-454.83", "-465.34", "-277.61", "-418.22", "-416.79", "-271.8", "-236.2", "-272.52", "-272.7", "-234.81", "-438.9", "-243.41", "-264.42", "-350.56", "-347.02", "-304.93", "-331.75", "-416.8", "-379.7", "-236.2", "-321.36", "-263.25", "-243.23", "-327.78", "-234.28", "-402.74", "-292.06", "-461.69", "-243.45", "-342.6", "-416.8", "-342.43", "-327.78", "-416.8", "-243.58", "-462.39", "-416.79", "-243.36", "-447.92", "-236.11", "-343.02", "-417.93", "-282.02", "-394.02", "-291.63", "-304.36", "-416.79", "-463.3", "-425.48", "-321.15", "-372.78", "-235.99", "-318.37", "-279.81", "-235.66", "-416.8", "-465.82", "-264.4", "-292.12", "-303.56", "-395.86", "-416.8", "-327.97", "-413.54", "-237.74", "-459.98", "-331.75", "-241.48", "-320.81", "-272.59", "-234.23", "-416.8", "-275.25", "-354.38", "-350.46", "-301.17", "-314.36", "-235.98", "-416.79", "-236.18", "-426.7", "-319.28", "-416.8", "-276.43", "-235.02", "-416.79", "-327.96", "-315.92", "-242.67", "-416.79", "-346.51", "-431.21", "-461.15", "-416.8", "-437.17", "-243.43", "-413.64", "-411.84", "-380.47", "-416.79", "-465.96", "-409.9", "-437.34", "-455.92", "-351.74", "-234.46", "-283.47", "-417.38", "-297.9", "-459.88", "-329.19", "-301.61", "-243.81", "-236.21", "-321.56", "-236.2", "-328.03", "-416.79", "-301.19", "-321.14", "-234.29", "-437.92", "-411.76", "-414.33", "-399.03", "-345.84", "-464.89", "-248.26", "-350.68", "-343.02", "-465.85", "-358.07", "-298.23", "-416.8", "-275.68", "-235.98", "-238.22", "-416.8", "-346.62", "-243.5", "-399.14", "-315.97", "-463.25", "-341.12", "-352", "-236.18", "-316.93", "-416.8", "-250.12", "-243.15", "-237.81", "-435.15", "-389.69", "-416.79", "-234.29", "-410.11", "-416.78", "-331.03", "-281.08", "-264.71", "-417.2", "-260.29", "-291.27", "-318.73", "-327.99", "-327.97", "-440.07", "-351.8", "-236.2", "-243.6", "-288.24", "-293.92", "-236.2", "-351.4", "-416.8", "-243.58", "-351.99", "-463.22", "-416.8", "-441.23", "-340.74", "-235.23", "-270.63", "-287.49", "-247.5", "-390.43", "-236.2", "-416.8", "-408.57", "-331.76", "-327.98", "-241.4", "-321.16", "-321.54", "-478.34", "-416.8", "-438.61", "-399.93", "-461.71", "-416.8", "-241.34", "-243.45", "-326.62", "-328.33", "-353.24", "-417.62", "-389.1", "-331.46", "-416.79", "-271.79", "-352.46", "-409.72", "-271.1", "-248.39", "-327.79", "-343.04", "-343.01", "-418.17", "-345.85", "-463.24", "-272.16", "-392.23", "-416.79", "-272.35", "-327.79", "-409.94", "-320.83", "-284.84", "-312.45", "-272.38", "-277.91", "-416.63", "-321.08", "-346.47", "-295.51", "-301.16", "-288.21", "-346.5", "-242.85", "-242.81", "-343.79", "-236.2", "-243.47", "-327.81", "-358.07", "-270.61", "-424.77", "-263.09", "-346.37", "-241.66", "-289.18", "-241.69", "-459.78", "-422.43", "-304.79", "-343.01", "-320.76", "-351.99", "-358.07", "-331.84", "-326.74", "-235.98", "-320.82", "-438.26", "-315.99", "-237.81", "-416.8", "-293.59", "-270.44", "-411.19", "-351.51", "-411.65", "-459.29", "-391.82", "-271.02", "-241.41", "-416.8", "-291.88", "-236.2", "-409.23", "-352.62", "-460.69", "-301.22", "-463.47", "-331.76", "-418.27", "-343.05", "-470", "-344.88", "-270.33", "-418.07", "-280.85", "-416.8", "-235.98", "-346.83", "-235.98", "-409.65", "-234.28", "-395.68", "-342.49", "-451.76", "-340.7", "-263.18", "-416.09", "-416.8", "-327.76", "-275.78", "-241.51", "-314.94", "-437.95", "-353.24", "-416.8", "-316.14", "-284.81", "-246.17", "-236.2", "-331.75", "-460.96", "-235.98", "-236.33", "-247.72", "-236.18", "-409.12"], ["3900", "1225", "3750", "13500", "100", "5100", "95000", "48500", "146000", "600", "8700", "3750", "25250", "15000", "3850", "16500", "12000", "82500", "4450", "52000", "16750", "9800", "6000", "7100", "20250", "2500", "14750", "6200", "18750", "142000", "600", "24500", "12500", "63000", "600", "28500", "108000", "210000", "17500", "7300", "9500", "8600", "2800", "11500", "22250", "4250", "140000", "72500", "2700", "1850", "9000", "24000", "7700", "20000", "96500", "4550", "2200", "12000", "3650", "6000", "10500", "11000", "11000", "7000", "46750", "9400", "4500", "13250", "5600", "8000", "1025", "16500", "12500", "12500", "10250", "8000", "65500", "32000", "82000", "10500", "4850", "1400", "16250", "3900", "28500", "44500", "91000", "47000", "16000", "8700", "240", "28500", "24750", "191000", "82000", "7200", "2125", "6300", "11750", "277500", "2225", "85500", "41000", "5000", "9200", "680", "40000", "10250", "5100", "15750", "600", "76000", "138", "82500", "56000", "1650", "9000", "36000", "18000", "10500", "155000", "7200", "5700", "6400", "26250", "17750", "5300", "830", "90000", "15000", "24500", "9100", "5400", "5500", "14000", "19250", "5900", "61000", "260000", "60500", "2050", "18000", "162000", "3650", "66000", "12250", "6500", "4450", "45000", "11250", "107000", "6100", "1625", "20500", "93000", "350000", "2600", "1750", "1850", "3850", "5700", "106000", "15750", "13250", "6300", "22250", "5900", "53000", "179000", "73500", "30000", "57500", "5900", "11000", "111000", "91500", "123000", "7400", "2475", "168", "28000", "74000", "14750", "141000", "19500", "2900", "65500", "40750", "2750", "31500", "2125", "54500", "1600", "14500", "50000", "14000", "10000", "8500", "27750", "270000", "1650", "19000", "14750", "5950", "160000", "8300", "960", "3000", "43500", "19750", "600", "5100", "7500", "85500", "62500", "13250", "4350", "3550", "8250", "6800", "97000", "23750", "27750", "10750", "277500", "9200", "24750", "68500", "630000", "3450", "6400", "6300", "412500", "37500", "7000", "600", "74000", "1225", "36000", "2700", "3450", "50000", "213000", "27500", "118000", "83000", "127000", "4700", "6900", "600", "28000", "37000", "27250", "11250", "3200", "96000", "1850", "16000", "26500", "22750", "8300", "8700", "23000", "2900", "2950", "810", "4400", "295000", "88850", "600", "138000", "45500", "35000", "10750", "13500", "10500", "35000", "20000", "75500", "22750", "2750", "19750", "25250", "10750", "3850", "1475", "4400", "137000", "15000", "600", "1950", "5900", "34500", "14250", "3350", "3200", "43250", "172000", "5100", "15000", "1875", "31000", "600", "3450", "2325", "11000", "152000", "4450", "21000", "11500", "170000", "10750", "41500", "10500", "168000", "8600", "8800", "13250", "16750", "1225", "6500", "124000", "99500", "30000", "3100", "600", "190000", "170000", "8800", "3450", "29250", "56500", "20750", "5900", "54500", "1660000", "30250", "72000", "1975", "59500", "41750", "42750", "7300", "20000", "4200", "4050", "34750", "3600", "7400", "15000", "275000", "9800", "38000", "8300", "40750", "20000", "11500", "9600", "94000", "27250", "475000", "40250", "310", "760", "81000", "86500", "13000", "5600", "7400", "67500", "136000", "15000", "6800", "18500", "17000", "13500", "18000", "36000", "10250", "2850", "5900", "1275", "600", "11250", "20000", "16000", "5800", "5900", "12500", "5600", "660", "107000", "4400", "139000", "71500", "3500", "36500", "104000", "52500", "2800", "100000", "5900", "15250", "16000", "19250", "7700", "7400", "115000", "1350000", "20000", "41500", "24000", "2900", "9500", "9000", "55000", "168000", "58500", "42250", "372500", "23000", "600", "18500", "25000", "58000", "97500", "2950", "1450", "60000", "61500", "8700", "16750", "9500", "38500", "1900", "19000", "5500", "2000", "600", "10500", "59000", "15250", "4750", "8500", "5500", "8800", "3750", "11750", "29000", "28000", "95500", "12500", "32250", "13000", "1300", "2500", "1325", "10750", "55500", "44250", "6300", "16000", "970", "124000", "3200", "26000", "6600", "53000", "0", "5900", "8200", "12750", "20750", "3750", "600", "137000", "57000", "250", "56000", "3200", "45000", "13750", "270", "81500", "600", "40500", "12000", "900", "34250", "12250", "6100", "135000", "16250", "37750", "19000", "6900", "405", "23250", "4050", "8200"], ["655655", "493137", "341510", "52515", "359374", "70508", "225262", "56156", "87591", "348531", "159234", "154313", "112024", "558570", "90797", "231284", "63235", "121713", "554626", "530748", "166398", "168318", "99136", "46454", "193887", "171393", "353190", "71566", "846961", "186025", "125080", "245322", "419424", "28894", "372025", "124649", "640530", "417936", "566265", "218418", "279139", "127278", "401095", "64338", "46433", "19249", "61867", "482465", "105816", "855320", "68772", "140124", "439670", "15773", "192706", "2418755", "80608", "738042", "160349", "140323", "180849", "85324", "297153", "777937", "64705", "122902", "133343", "954364", "39515", "149578", "211576", "134784", "330710", "180884", "86430", "47988", "396439", "180671", "246263", "44715", "360213", "660180", "246107", "500582", "114348", "727678", "601527", "95385", "225787", "27314", "51895", "50870", "38037", "229275", "61522", "50354", "295388", "626299", "1170339", "1172167", "94116", "52905", "124196", "466277", "81327", "80168", "133864", "402758", "53555", "152159", "14853", "109378", "399759", "114689", "39849", "1860415", "529671", "567269", "287379", "54776", "721966", "1279148", "223847", "59311", "70849", "63488", "67797", "846991", "16798", "285189", "121338", "579891", "864680", "152734", "386290", "91954", "1925515", "130126", "23763", "995634", "65387", "40864", "230266", "82110", "25656", "374335", "504511", "298271", "221289", "56995", "493976", "216558", "301979", "73891", "602650", "388911", "249744", "590583", "340442", "489427", "324721", "186434", "309827", "59733", "104843", "265032", "243568", "99343", "29995", "153866", "233432", "43872", "20182", "133214", "71570", "269768", "140245", "443896", "1746688", "26589", "1509579", "176108", "26996", "250987", "905199", "232201", "152504", "1144122", "1313052", "43363", "154606", "342996", "40230", "1004765", "110036", "257960", "128800", "408116", "163917", "1289016", "33682", "50490", "732713", "139391", "84120", "44826", "555297", "192288", "915673", "248785", "190043", "316793", "218161", "97603", "479150", "228672", "33338"], ["4500", "5900", "1350", "4400", "14750", "370", "2550", "3950", "540", "6800", "5500", "2600", "6200", "25250", "10500", "14000", "2125", "770", "26750", "3900", "10500", "720", "11750", "10500", "11750", "28750", "2125", "4100", "1250", "5400", "345000", "12750", "7000", "5300", "1175", "2075", "5900", "80000", "20750", "30000", "13250", "9500", "6000", "1550", "3300", "18750", "6000", "12000", "13750", "2000", "3400", "50000", "4050", "37000", "59000", "2275", "69000", "115000", "5150", "5400", "5000", "16250", "1400", "56000", "11750", "2400", "3800", "3150", "14750", "12750", "16750", "5800", "2075", "50500", "12750", "13250", "17750", "6500", "7900", "1675", "7700", "1475", "15750", "2000", "720", "21000", "1550", "20000", "3800", "7200", "12250", "12000", "15750", "2600", "4850", "16750", "4700", "59500", "7600", "52000", "18250", "5500", "2150", "495", "37250", "16000", "21500", "1775", "7100", "4950", "740", "29250", "2650", "32750", "104000", "13500", "4300", "4450", "8800", "1975", "15250", "540", "22250", "3800", "20250", "39500", "25750", "5100", "3400", "16250", "114000", "3450", "1375", "12000", "14750", "10750", "7200", "3750", "22000", "4250", "9700", "2275", "4400", "2150", "4750", "6700", "600", "600", "184000", "5900", "8700", "3200", "670", "8800", "19500", "21000", "17000", "28000", "18750", "17000", "2000", "1200", "2900", "3850", "12250", "5300", "5700", "4650", "81500", "3350", "2000", "3700", "3900", "8100", "377500", "35250", "37000", "6100", "9700", "360", "8500", "6300", "15500", "12250", "34000", "8300", "9300", "5300", "2750", "7200", "23500", "18750", "13250", "133000", "5300", "24250", "38000", "6000", "15250", "21750", "330", "5700", "7200", "1550", "330000", "8600", "2700", "9700", "6900", "29500", "18000", "6900", "5900", "1275", "2850", "1800", "3800", "3000", "3300", "5000", "4250", "13750", "2600", "5800", "23250", "4400", "230", "3000", "2175", "6000", "11250", "25750", "24250", "4200", "10250", "600", "9100", "20000", "6100", "600", "780", "2175", "4650", "7500", "3050", "5900", "240000", "3300", "7200", "17250", "7600", "51500", "3950", "6900", "3600", "2075", "7900", "6900", "7100", "13750", "2425", "4150", "30250", "3350", "18500", "14500", "39500", "3150", "31500", "43650", "3500", "9200", "1600", "1000", "9000", "5100", "16500", "39000", "11500", "5200", "5000", "2000", "1840000", "19000", "8200", "8600", "7300", "45250", "12500", "7600", "13000", "39000", "26500", "14750", "7900", "1425", "85500", "12250", "8300", "1500", "4400", "3800", "13500", "8200", "8500", "8600", "4550", "5000", "23250", "6200", "255", "4600", "3800", "4150", "11250", "13250", "45500", "1475", "3750", "800", "1260000", "2150", "7700", "4600", "145000", "4850", "2000", "12750", "16000", "24750", "300", "15250", "7400", "19000", "8800", "12000", "6100", "3750", "43750", "1150", "2000", "3800", "27250", "4250", "4900", "2125", "735", "80000", "75500", "5700", "48000", "42250", "2500", "153000", "2225", "1675", "2650", "25250", "11250", "9500", "6400", "8000", "650", "720", "48500", "29000", "6800", "8500", "10500", "3350", "7200", "130000", "14500", "1800", "4000", "7000", "1500", "3200", "1700", "16250", "24500", "1750", "3800", "2375", "7600", "3250", "6900", "7800", "6900", "16250", "2500", "2375", "7000", "1775", "13750", "4250", "1875", "3300", "1525", "3900", "7800", "54000", "880", "10500", "5100", "82000", "4450", "4200", "6200", "7600", "192000", "3500", "55000", "203000", "5300", "1975", "8600", "7300", "3200", "9700", "20250", "8300", "22250", "1075", "6900", "3150", "18250", "14750", "6200", "4250", "23000", "10500", "4100", "5200", "10750", "20000", "16250", "15750", "4750", "12750", "4900", "9400", "20000", "1550", "8200", "840", "6600", "600", "6400", "780", "1650", "4900", "60500", "2000", "1450", "33700", "10250", "5200", "22500", "4050", "3200", "8300", "65000", "260000", "12250", "29000", "4600", "3050", "6200", "70500", "28000", "14500", "11000", "44750", "17000", "1350", "12000", "6300", "4900", "4600", "3800", "31500", "2600", "6900", "3200", "12000", "8500", "2300", "113750", "60500", "250", "1525", "7700", "1725", "4050", "79000", "24250", "600", "3450", "1375"], ["1982", "1984.25", "1977", "1982", "1996", "2005.25", "2009.5", "2000.5", "1987.75", "2001", "1983.5", "1976", "2004.25", "1995.5", "2000.75", "1995.5", "1991.25", "2006.5", "1978.75", "2001.5", "2011", "1996.75", "2002.75", "2007.25", "1995.75", "1975.5", "1993.75", "1980.5", "2008.75", "1989", "1975.75", "1992.25", "2010.5", "2009", "1983.5", "1979.5", "1975.5", "1992.75", "1982.75", "1978.25", "2003.75", "1986.25", "1982", "1989.5", "2008.5", "1994", "2006.25", "2010.25", "2003.5", "1976.75", "1976", "1993.5", "1998.75", "1976.25", "2006", "1975.5", "1995", "1990", "2001.75", "1982.75", "1992.25", "1985.5", "1985.75", "1983", "2013.25", "1980.5", "2000.75", "1979.5", "2011.5", "1996.25", "1976.5", "1978.5", "1981.5", "1979.5", "1976", "1996.25", "1976.25", "2002", "2003.5", "1983", "2009.75", "1998.5", "2001.5", "1979.25", "1980.25", "2009.5", "1979.25", "1983.25", "2004.5", "1994", "1981.5", "2007.75", "1999.25", "1978.5", "1988.5", "2005.25", "1999", "1988", "1997.5", "2005.25", "1975.25", "1976.25", "1996", "1983.5", "2005.75", "1992.75", "2006.75", "1998.25", "2007.75", "2006.25", "1996.75", "2011.25", "1986.5", "1999.75", "2006.75", "1976.75", "1995", "1977.75", "1996", "1996", "2008.75", "1978", "1989.75", "1989.75", "1981", "2011.5", "1983", "2004.25", "2007.75", "1989.5", "2002", "2007.5", "1999", "2007.5", "1997.75", "1980.75", "1980.25", "1996", "1983.75", "1976.25", "2003.5", "1989.25", "2001.75", "1980", "1984.5", "1995.5", "2000", "2006.25", "1987", "1987.5", "1982.25", "1998.5", "2005.75", "1983.75", "2000.5", "1976.75", "1986", "1992.25", "2003", "1992", "2012.75", "2008.5", "1995.5", "1983.25", "2005", "2012.75", "2012.25", "2005.75", "2005.75", "2004.75", "1980.75", "2009.75", "1989.25", "1982", "2009.5", "1999", "2010.75", "1998.75", "1976.75", "1999.25", "1985.75", "1989.75", "1997", "2009", "1977.25", "2012.5", "2000", "1995.25", "1997.75", "1986", "1994.5", "2003.25", "1993.5", "1989.25", "2007.25", "1985.25", "2002.5", "2010", "1983.75", "1991.25", "2000.5", "1989.25", "2002", "1998", "1979", "1989.75", "1998.25", "1988", "1977.5", "1995.25", "2003", "1980", "1976.75", "2008", "1986.25", "1985", "2013", "1990", "1975.25", "2007", "2011.5", "1999", "2008.25", "1985.75", "1977.75", "1988.5", "1997.5", "1981", "1980.75", "1993.25", "1989", "1997", "1978.5", "1990.5", "2000.25", "2011", "1993.5", "2008.25", "2003.75", "2004.25", "1983", "2004", "1987.25", "2005.5", "1984", "1986.75", "1995.75", "1989.25", "1977", "1981.5", "1987.5", "1985", "2009", "2000.25", "1988", "1981", "2001.25", "1983.25", "1999.75", "2008.25", "1999.75", "2005", "2009.75", "1975.75", "2003", "1977.75", "1987.5", "2004.75", "2008.75", "1993", "2013.25", "1993.75", "1994.5", "1998.25", "1999.5", "1977.5", "2008.75", "2008.25", "1975.5", "2011.25", "1995.25", "2007.25", "2003.75", "2001", "1989.25", "2012.75", "2003.25", "1981.75", "1983", "1987.75", "1994", "1995.25", "1993", "1984.25", "1984.25", "1987.25", "1977.75", "2000.5", "2002.75", "2000", "1996", "1994.75", "1990.25", "2004.75", "1976.25", "1986.5", "1985.5", "2005.25", "2012", "1988", "1976.75", "1983.75", "2012.5", "2000", "1998", "1998", "1989.25", "1996", "2009.75", "2013.25", "2009", "2008.5", "1990", "1980", "2008.5", "1993.75", "1978.75", "1984", "1983.75", "2010", "2002.25", "1986.25", "2004.75", "2005.75", "2002", "1986.75", "1978", "1985.75", "1999.25", "1994.25", "1990.75", "1984.75", "2004.25", "1986", "1998", "1992.75", "1995.5", "1984.25", "2001.25", "2001.25", "2000.75", "2006", "1987.75", "1981.75", "1978.25", "2012.75", "1981.25", "1992", "1992.5", "1983", "2007.25", "1991.5", "1993.25", "2001.25", "2012.25", "1980.75", "1995.5", "1988.5", "1986.5", "2012", "1999.25", "2004", "1997.75", "1984.75", "2012.75", "1983.75", "2005", "1998.75", "1980.75", "1984.5", "1987.5", "1993.5", "2005.5", "1975.75", "1985.5", "2009.5", "1977.75", "1981.25", "2011.25", "1995.5", "1994.75", "1997.25", "1984.5", "1986.25", "2007", "1976.5", "1986.75", "2007.5", "1990", "2011", "1979", "1986.25", "2009.25", "1993.75", "2003.75", "1990.5", "1996.25", "1984", "1990", "1985.5", "1987.25", "1979.5", "1982.75", "2002.75", "1986", "1989.25", "1978", "2006.5", "1977", "2003.5", "1979.5", "1994", "1990.5", "2010.25", "2006.75", "2004.5", "1995.75", "1986.25", "1984", "1983.5", "2000", "1989", "1981.75", "1995.25", "1992.75", "2011.25", "1998.25", "2012.25", "2004.5", "1999", "2002.25", "2003", "1985.5", "1994.75", "2007.5", "2006.5", "2001.25", "1979.5", "1981.25", "1983.5", "2012", "1987.25", "2000.5", "1991.75", "1979.25", "1989", "1983.25", "1987.75", "1989.75", "1992.5", "1993", "2009.25", "1994", "2000.25", "2002.25", "1998", "1984.5", "1980.25", "1998.5", "2009.75", "1997.5", "1978", "1994.75", "1994.75", "2004.75", "1982.25", "1988", "1990.75", "1990.75", "2005.25", "2002.5", "1984.5", "2005.5", "1977", "1984.5", "1998", "1982.75", "1998.75", "1978.5", "1985.25", "1977.5", "1995.25", "1985.25", "2002.5", "2009.75", "1989.5", "2008.25", "1994.75", "2011.5", "2006.75"], ["1,444", "3,316", "473,575", "5,915", "3,031", "1,425", "3,097", "2,021", "9,095", "2,501", "739", "9,279", "828", "19,484", "2,596", "2,038", "1,599", "2,085", "4,018", "1,836", "23,497", "1,101", "9,115", "13,701", "1,317", "1,835", "2,472", "3,032", "2,214", "25", "1,020", "2,100", "13,310", "2,808", "3,375", "2,897", "8,066", "1,795", "1,260", "7,747", "1,291", "1,533", "5,731", "1,207", "1,484", "2,873", "8,247", "2,428", "1,099", "4,049", "1,789", "1,218", "706", "9,283", "1,896", "31,977", "2,673", "2,452", "2,498", "1,911", "1,632", "2,035", "1,170", "2,441", "3,261", "1,516", "2,420", "1,773", "1,841", "7,922", "1,670", "1,971", "4,027", "3,817", "2,154", "5,055", "31,672", "1,680", "1,819", "10,081", "2,634", "2,075", "1,501", "2,986", "2,347", "1,917", "1,225", "992", "1,454", "1,171", "3,438", "3,297", "4,267", "2,908", "3,893", "2,700", "870", "1,039", "1,409", "75,176"], ["1,449", "1,679", "2,176", "1,804", "33,188", "653", "791", "2,594", "2,909", "971", "3,277", "682", "2,359", "1,124", "2,866", "2,326", "3,176", "503,670", "1,437", "2,787", "853", "1,648", "960", "1,580", "9,737", "5,652", "1,539", "1,395", "8,072", "1,805", "2,315", "10,327", "1,112", "1,242", "1,967", "1,987", "932", "1,287", "2,167", "3,321", "14,397", "2,280", "22,127", "2,562", "2,158", "5,660", "8,560", "9,236", "1,130", "1,972", "4,232", "0", "2,298", "1,448", "2,023", "1,291", "912", "2,084", "1,153", "2,814", "2,498", "1,169", "2,883", "2,722", "1,873", "1,391", "3,081", "2,181", "84,379", "1,487", "2,724", "2,021", "3,538", "1,566", "1,733", "1,179", "1,916", "2,552", "15,226", "3,795", "1,743", "1,885", "3,122", "1,269", "4,826", "7,999", "9,393", "1,833", "1,535", "3,979", "7,961", "18,246", "1,037", "1,345", "3,714", "4,138", "9,446", "2,297", "33,124", "3,709"], ["2,492", "2,055", "1,215", "1,494", "1,042", "3,123", "3,840", "2,110", "31,942", "8,055", "1,415", "4,314", "1,522", "2,508", "5,077", "3,449", "1,450", "1,297", "1,997", "1,509", "1,781", "1,106", "1,463", "1,179", "3,396", "1,325", "2,164", "3,098", "2,613", "2,049", "2,886", "1,606", "9,373", "25", "5,835", "3,114", "2,236", "1,173", "1,694", "1,794", "477,045", "1,103", "2,682", "2,473", "2,726", "1,640", "8,179", "9,193", "1,674", "32,183", "1,233", "1,430", "832", "2,435", "1,805", "2,641", "712", "996", "3,346", "3,308", "2,438", "1,840", "2,138", "1,264", "2,518", "1,855", "4,072", "5,962", "743", "4,045", "10,157", "3,045", "1,925", "23,648", "1,227", "7,794", "2,904", "1,026", "1,537", "1,903", "1,892", "75,706", "1,828", "2,948", "2,100", "872", "3,913", "8,287", "2,448", "2,842", "19,785", "1,923", "2,363", "9,375", "2,028", "13,399", "13,828", "4,100", "3,280", "9,201"], ["878", "2,576", "4,265", "20,629", "1,236", "1,067", "2,118", "1,312", "5,106", "1,220", "2,337", "3,656", "1,563", "1,097", "2,262", "1,022", "1,271", "1,010", "7,406", "1,620", "8,149", "8,244", "7,931", "426,373", "952", "2,455", "619", "28,154", "1,775", "3,038", "1,626", "750", "2,127", "2,075", "1,388", "1,686", "1,793", "954", "1,254", "2,903", "4,937", "3,427", "693", "1,026", "3,673", "16,941", "1,586", "6,784", "1,792", "11,776", "3,460", "904", "2,131", "2,375", "1,478", "1,445", "1,783", "66,120", "2,109", "2,262", "1,517", "3,350", "1,319", "2,630", "8,880", "1,128", "11,958", "850", "29", "1,798", "2,438", "7,917", "1,166", "27,043", "1,039", "2,143", "1,568", "1,763", "7,111", "2,677", "2,859", "2,734", "1,630", "1,208", "2,423", "2,290", "3,331", "619", "6,841", "1,395", "2,007", "2,185", "2,903", "1,520", "1,786", "1,814", "2,622", "1,217", "2,619", "1,712"], ["uil_17", "uil_3", "uil_40", "uil_121", "uil_76", "uil_113", "uil_114", "uil_54", "uil_37", "uil_5", "uil_69", "uil_85", "uil_71", "uil_74", "uil_116", "uil_6", "uil_84", "uil_73", "uil_122", "uil_101", "uil_82", "uil_104", "uil_107", "uil_57", "uil_24", "uil_44", "uil_8", "uil_117", "uil_81", "uil_39", "uil_50", "uil_16", "uil_20", "uil_68", "uil_119", "uil_55", "uil_72", "uil_70", "uil_77", "uil_108", "uil_48", "uil_49", "uil_75", "uil_41", "uil_103", "uil_52", "uil_9", "uil_88", "uil_43", "uil_36", "uil_89", "uil_106", "uil_83", "uil_38", "uil_51", "uil_7", "uil_109", "uil_100", "uil_105", "uil_102", "uil_87", "uil_25", "uil_90", "uil_4", "uil_115", "uil_19", "uil_10", "uil_120", "uil_11", "uil_12", "uil_42", "uil_18", "uil_56", "uil_35", "uil_23", "uil_22"], ["17.86", "53.57", "124.99", "0", "124.99", "148.8", "434.49", "220.22", "297.6", "5.95", "190.46", "148.8", "101.18", "41.66", "107.13", "148.8", "148.8", "148.8", "136.89", "5.95", "0", "35.71", "5.95", "416.63", "589.24", "148.8", "0", "41.88", "261.88", "446.39", "119.04", "0", "1178.48", "29.76", "59.52", "107.13", "77.37", "732.08", "35.71", "160.7", "0", "416.63", "59.52", "809.46", "53.57", "154.75", "35.71", "41.66", "0", "113.09", "47.62", "684.47", "291.64", "71.42", "767.8", "613.05", "619.0", "130.94", "755.89", "154.75", "59.52", "0", "11.9", "392.83", "142.85", "29.76", "95.23", "660.66", "547.57", "226.17", "130.94", "684.47", "29.76", "77.37", "95.23", "17.86", "380.92", "5.95", "59.52", "65.47", "166.65", "17.86", "386.87", "255.93", "172.61", "297.6", "386.87", "172.61", "124.99", "238.08", "119.04", "23.81", "0", "11.9", "261.88", "11.9", "11.9", "999.92", "47.62", "35.71", "428.54", "35.71", "0", "529.72", "0", "547.57", "178.56", "35.71", "291.64", "65.47", "113.09", "59.52", "47.62", "208.32", "708.28", "35.71", "23.81", "142.85", "333.31", "5.95", "297.6", "124.99", "369.02", "184.51", "220.22", "77.37", "65.47", "142.85", "273.79", "184.51", "2018.16", "148.8", "101.18", "279.74", "1005.87", "690.42", "89.28", "184.51", "0", "261.88", "0", "17.86", "101.18", "285.69", "113.09", "29.76", "0", "1041.58", "109.69", "65.47", "23.81", "41.66", "124.99", "244.03", "101.18", "95.23", "113.09", "29.76", "47.62", "154.75", "101.18", "71.42", "773.75", "107.13", "523.77", "11.9", "660.66", "107.13", "166.65", "47.62", "494.01", "113.09", "232.12", "23.81", "101.18", "113.09", "41.66", "47.62", "434.49", "273.79", "732.08", "23.81", "65.47", "464.25", "107.13", "53.57", "648.76", "321.4", "166.65", "214.27", "166.65", "65.47", "154.75", "11.9", "95.23", "5.95", "553.53", "136.89", "5.95", "95.23", "446.39", "238.08", "1202.28", "53.57", "303.55", "47.62", "130.94", "404.73", "29.76", "130.94", "47.62", "803.51", "53.57", "136.89", "178.56", "0", "154.75", "23.81", "232.12", "178.56", "172.61", "41.66", "827.31", "5.95", "83.33", "89.28", "2351.0", "107.13", "29.76", "29.76", "172.61", "11.9", "464.25", "244.03", "345.21", "95.23", "17.86", "285.69", "17.86", "119.04", "107.13", "142.85", "107.13", "41.66", "416.63", "59.52", "41.66", "124.99", "833.27", "113.09", "47.62", "47.62", "53.57", "35.71", "261.88", "232.12", "166.65", "220.22", "65.47", "148.8", "0", "226.17", "184.51", "446.39", "89.28", "327.35", "559.48", "5.95", "83.33", "35.71", "208.32", "107.13", "23.81", "255.93", "178.56", "130.94", "148.8", "130.94", "0", "232.12", "255.93", "292.6", "0", "5.95", "351.16", "17.86", "166.65", "553.53", "160.7", "77.37", "47.62", "214.27", "422.58", "5.95", "178.56", "232.12", "136.89", "172.61", "238.08", "77.37", "71.42", "166.65", "446.39", "321.4", "595.19", "130.94", "363.07", "244.03", "690.42", "380.92", "101.18", "541.62", "172.61", "142.85", "0", "23.81", "5.95", "249.98", "41.66", "124.99", "190.46", "29.76", "101.18", "208.32", "238.08", "0", "4815.09", "41.66", "291.64", "29.76", "148.8", "202.36", "95.23", "142.85", "3065.23", "95.23", "101.18", "791.6", "59.52", "285.69", "83.33", "309.5", "53.57", "11.9", "83.33", "65.47", "29.76", "505.91", "244.03", "95.23", "0", "136.89", "35.71", "214.27", "113.09", "613.05", "2487.89", "517.82", "154.75", "160.7", "0", "17.86", "404.73", "529.72", "630.9", "172.61", "29.76", "119.04", "59.52", "11.9", "11.9", "29.76", "333.31", "89.28", "440.44", "59.52", "65.47", "41.66", "130.94", "17.86", "255.93", "101.18", "285.69", "0", "726.13", "184.51", "23.81", "428.54", "416.63", "35.71", "29.76", "0", "303.55", "17.86", "160.7", "0", "95.23", "0", "29.76", "0", "17.86", "208.32", "773.75", "0", "0", "755.89", "488.06", "297.6", "0", "208.32", "119.04", "321.4", "142.85", "154.75", "0", "41.66", "249.98", "95.23", "1434.41", "166.65", "65.47", "11.9", "452.34", "0", "904.69", "154.75", "124.99", "53.57", "35.71", "53.57", "636.85", "113.09", "107.13", "1589.16", "11.9", "77.37", "160.7", "339.26", "148.8", "29.76", "53.57", "321.4", "232.12", "77.37", "827.31", "5.95", "202.36", "17.86", "35.71", "988.02", "11.9", "65.47", "214.27", "154.75", "178.56", "285.69", "285.69", "130.94", "119.04", "154.75", "41.66", "404.73", "29.76", "386.92", "0", "77.37", "803.51", "0", "0", "95.23", "154.75", "29.76", "184.51", "77.37", "124.99", "101.18", "696.37", "11.9", "1232.04", "1660.58", "65.47", "202.36", "190.46", "0", "226.17", "351.16", "184.51", "119.04", "53.57", "113.09", "124.99", "130.94", "113.09", "1380.84", "65.47", "41.66", "89.28", "220.22", "154.75", "196.41"], ["681.73", "434.31", "680.378", "712.585", "424.02", "615.408", "694.176", "650.438", "694.544", "689.046", "698.809", "749.442", "630.492", "458.791", "468.213", "742.427", "631.626", "717.551", "698.985", "449.286", "454.17", "701.547", "667.915", "746.668", "666.008", "703.427", "599.627", "688.997", "599.385", "718.47", "417.382", "662.022", "612.826", "419.481", "629.318", "413.697", "620.738", "703.355", "723.032", "728.215", "425.43", "418.796", "683.444", "680.256", "714.14", "628.854", "516.634", "645.058", "698.331", "449.89", "441.806", "646.502", "724.639", "442.976", "419.562", "723.523", "709.635", "448.623", "626.789", "707.652", "659.449", "452.747", "681.521", "684.544", "688.285", "593.094", "441.14", "635.912", "699.578", "624.023", "675.686"], ["0", "866.81", "8678.51", "NAN", "0", "61.7", "296.91", "7.81", "0", "108.8", "9.05", "0.63", "27.44", "84.37", "1484.09", "1347.13", "547.31", "31.54", "NAN", "47.24", "90.34", "762.57", "NAN", "NAN", "48.07", "80.11", "11.55", "126.97", "43.64", "362.22", "420.03", "1.86", "1.51", "173.22", "149.22", "9.29", "45.09", "84.03", "NAN", "596.72", "38.65", "187.17", "NAN", "566.68", "2.46", "NAN", "2.93", "40.8", "871.52", "39.19", "108.5", "23.95", "639.36", "14.12", "25.97", "140.35", "0", "4.56", "NAN", "NAN", "18.99", "732.57", "4.23", "74.46", "1.48", "241.22", "367.88", "1.01", "221.25", "0", "NAN", "0.81", "565.74", "NAN", "0.88", "42.32", "106.37", "3.33", "862.37", "61.8", "NAN", "162.69", "39.27", "NAN", "NAN", "62.21", "1415.88", "718.86", "NAN", "0", "971.6", "180.12", "276.27", "104.79", "188.39", "698.82", "12.26", "22.8", "1.1", "150.95", "50.66", "NAN", "76.63", "4.2", "515.85", "NAN", "77.08", "263.04", "7.34", "111.22", "194.62", "1013.82", "NAN", "NAN", "NAN", "3.93", "74.84", "NAN", "328.82", "1458.98", "35.72", "1.3", "134.11", "NAN", "1.41", "5.77", "NAN", "146.19", "181.36", "NAN", "NAN", "23.82", "NAN", "NAN", "1.2", "475.9", "0", "194.47", "NAN", "NAN"], ["202.56", "1.19", "9.24", "89.48", "60.27", "25.11", "55.51", "7.98", "12.90", "101.90", "0.80", "17.83", "12.53", "27.21", "2.83", "12.34", "8736.40", "13.18", "7.91", "3.30", "11.54", "109.45", "0.17", "133.80", "0.25", "233.51", "13.10", "3.24", "6.88", "53.45", "1.53", "8.01", "17.04", "315.04", "6.23", "257.69", "52.01", "80.83", "3.11", "74.47", "0.00", "36.48", "12.98", "1371.36", "21.64", "1738.57", "6.60", "2.16", "17.99", "99.90"], ["106.68", "#VALUE!", "15.24", "15.24", "109.22", "39.37", "22.86", "88.9", "93.98", "0", "76.2", "0", "129.54", "17.78", "12.7", "20.32", "114.3", "0", "12.7", "54.61", "12.7", "201.93", "25.4", "15.24", "93.98", "15.24", "45.72", "0", "76.2", "218.44", "0", "76.2", "0", "0", "210.82", "195.58", "177.8", "0", "124.46", "40.64", "22.86", "45.72", "111.76", "157.48", "129.54", "0", "106.68", "114.3", "0", "0", "15.24", "26.67", "11.43", "48.26", "20.32", "73.66", "152.4", "17.78", "0", "0", "0", "198.12", "26.67", "0", "0", "0", "20.32", "17.78", "86.36", "16.51", "22.86", "17.78", "281.94", "0", "45.72", "20.32", "0", "34.29", "16.51", "15.24", "12.7", "109.22", "167.64", "50.8", "15.24", "0", "60.96", "43.18", "45.72", "15.24", "101.6", "213.36", "58.42", "43.18", "0", "27.94", "208.28", "109.22", "99.06", "134.62", "215.9", "15.24", "274.32", "0", "193.04", "12.7", "106.68", "116.84", "30.48", "22.86", "124.46", "15.24", "0", "68.58", "121.92", "0", "91.44", "0", "38.1", "50.8", "0", "60.96", "170.18", "157.48", "157.48", "12.7", "246.38", "165.1", "45.72", "0", "132.08", "38.1", "0", "0", "35.56", "15.24", "106.68", "12.7", "121.92", "63.5", "0", "198.12", "78.74", "132.08", "187.96", "0", "167.64", "152.4", "101.6", "0", "0", "165.1", "81.28", "274.32", "0", "0", "111.76", "17.78", "104.14", "12.7", "45.72", "104.14", "50.8", "83.82", "160.02", "114.3", "0", "243.84", "0", "172.72", "15.24", "0", "50.8", "0", "322.58", "167.64", "92.71", "0", "132.08", "40.64", "15.24", "167.64", "93.98", "109.22", "0", "0", "101.6", "48.26", "11.43", "30.48", "187.96", "33.02", "30.48", "165.1", "0", "0", "20.32", "0", "53.34", "106.68", "127", "0", "114.3", "48.26", "20.32", "254", "187.96", "160.02", "93.98", "12.7", "30.48", "17.78", "15.24", "15.24", "15.24", "12.7", "12.7", "162.56", "0", "35.56", "17.78", "106.68", "0", "76.2", "12.7", "0", "177.8", "109.22", "91.44", "17.78", "21.59", "0", "0", "0", "0", "0", "25.4", "0", "111.76", "12.7", "0", "17.78", "127", "0", "132.08", "15.24", "25.4", "274.32", "187.96", "223.52", "147.32", "0", "0", "0", "30.48", "45.72", "0", "195.58", "110.49", "#VALUE!", "22.86", "50.8", "175.26", "124.46", "20.32", "0", "139.7", "12.7", "137.16", "45.72", "106.68", "101.6", "11.43", "0", "15.24", "129.54", "0", "124.46", "0", "15.24", "101.6", "187.96", "104.14", "109.22", "60.96", "43.18", "165.1", "190.5", "106.68", "132.08", "50.8", "99.06", "38.1", "0", "35.56", "33.02", "0", "83.82", "175.26", "26.67", "213.36", "17.78", "95.25", "0", "0", "53.34", "27.94", "78.74", "21.59", "15.24", "124.46", "203.2", "205.74", "180.34", "157.48", "104.14", "210.82", "162.56", "157.48", "13.97", "193.04", "0", "0", "99.06", "88.9", "22.86", "0", "12.7", "17.78", "0", "21.59", "25.4", "76.2", "180.34", "0", "193.04", "15.24", "152.4", "45.72", "0", "38.1", "119.38", "160.02", "0", "0", "144.78", "104.14", "0", "335.28", "20.32", "196.85", "152.4", "25.4", "147.32", "20.32", "15.24", "33.02", "119.38", "15.24", "12.7", "0", "330.2", "0", "22.86", "154.94", "63.5", "30.48", "0", "63.5", "0", "35.56", "284.48", "289.56", "33.02", "93.98", "38.1", "40.64", "154.94", "0", "40.64", "0", "132.08", "12.7", "22.86", "12.7", "0", "20.32", "0", "190.5", "25.4", "0", "114.3", "0", "60.96", "17.78", "12.7", "109.22", "15.24", "307.34", "30.48", "172.72", "13.97", "25.4", "137.16", "144.78", "22.86", "40.64", "0", "20.32", "58.42", "55.88", "0", "27.94", "71.12", "106.68", "22.86", "33.02", "0", "0", "33.02", "109.22", "17.78", "307.34", "193.04", "0", "121.92", "30.48", "165.1", "35.56", "12.7", "31.75", "21.59", "162.56", "114.3", "111.76", "177.8", "11.43", "147.32", "121.92", "114.3", "93.98", "0", "180.34", "12.7", "30.48", "96.52", "105.41", "172.72", "0", "165.1", "0", "22.86", "15.24", "12.7", "180.34", "17.78", "17.78", "190.5", "124.46", "30.48", "71.12", "15.24", "12.7", "63.5", "281.94", "20.32", "180.34", "92.71", "27.94", "50.8", "121.92", "0", "132.08", "54.61", "12.7", "0", "66.04", "27.94", "109.22", "88.9", "55.88", "63.5", "53.34", "0", "12.7", "0", "172.72", "53.34", "25.4", "152.4", "38.1", "16.51", "20.32", "185.42", "137.16", "16.51", "0", "187.96", "26.67", "0"], ["35.00", "6.30", "17.30", "38.90", "93.10", "5.80", "1.90", "2.80", "239.40", "88.70", "27.10", "16.90", "71.30", "23.40", "15.30", "15.40", "1303.50", "11.10", "73.20", "2.50", "12.60", "0.00", "8.90", "26.40", "95.80", "17.20", "23.70", "225.10", "80.90", "92.20", "74.50", "6.90", "5.50", "78.30", "0.00", "7.10", "197.50", "1.00", "24.70", "13.10", "2.50", "33.10", "4.10", "28.00", "33.10", "279.00", "117.50", "10.70", "4.40", "12.40"], ["29.40", "0.20", "17.90", "17.60", "160.20", "16.70", "0.00", "0.10", "42.70", "30.40", "11.10", "702.80", "34.20", "0.90", "10.90", "262.50", "66.00", "33.20", "0.50", "0.80", "0.10", "18.90", "1895.60", "16.10", "10.60", "0.60", "91.30", "0.10", "3.10", "0.00", "740.40", "59.00", "0.30", "0.50", "0.20", "16.90", "5.80", "118.10", "1.40", "199.10", "0.70", "0.40", "394.00", "179.40", "341.90", "277.30", "38.60", "0.10", "265.30", "0.20"], ["ChPe023", "ChPe046", "ChPe045", "ChPe002", "ChPe004", "ChPe030", "ChPe045", "ChPe006", "ChPe041", "ChPe007", "ChPe027", "ChPe014", "ChPe019", "ChPe004", "ChPe040", "ChPe048", "ChPe015", "ChPe028", "ChPe020", "ChPe042", "ChPe022", "ChPe009", "ChPe032", "ChPe002", "ChPe048", "ChPe007", "ChPe023", "ChPe008", "ChPe035", "ChPe032", "ChPe019", "ChPe034", "ChPe033", "ChPe008", "ChPe032", "ChPe046", "ChPe029", "ChPe023", "ChPe040", "ChPe009", "ChPe012", "ChPe004", "ChPe033", "ChPe021", "ChPe034", "ChPe032", "ChPe025", "ChPe032", "ChPe024", "ChPe031", "ChPe029", "ChPe025", "ChPe029", "ChPe028", "ChPe031", "ChPe004", "ChPe002", "ChPe025", "ChPe035", "ChPe022", "ChPe013", "ChPe006", "ChPe007", "ChPe026", "ChPe015", "ChPe007", "ChPe044", "ChPe046", "ChPe048", "ChPe018", "ChPe048", "ChPe027", "ChPe021", "ChPe014", "ChPe035", "ChPe018", "ChPe018", "ChPe033", "ChPe030", "ChPe013", "ChPe020", "ChPe035", "ChPe048", "ChPe022", "ChPe027", "ChPe045", "ChPe013", "ChPe044", "ChPe025", "ChPe030", "ChPe034", "ChPe044", "ChPe009", "ChPe020", "ChPe002", "ChPe004", "ChPe031", "ChPe009", "ChPe012", "ChPe022", "ChPe008", "ChPe033", "ChPe018", "ChPe025", "ChPe024", "ChPe021", "ChPe034", "ChPe002", "ChPe004", "ChPe031", "ChPe007", "ChPe035", "ChPe019", "ChPe045", "ChPe027", "ChPe008", "ChPe015", "ChPe027", "ChPe019", "ChPe014", "ChPe042", "ChPe026", "ChPe024", "ChPe025", "ChPe035", "ChPe020", "ChPe035", "ChPe015", "ChPe020", "ChPe019", "ChPe026", "ChPe031", "ChPe046", "ChPe023", "ChPe041", "ChPe006", "ChPe008", "ChPe040", "ChPe020", "ChPe022", "ChPe014", "ChPe006", "ChPe045", "ChPe019", "ChPe012", "ChPe042", "ChPe013", "ChPe042", "ChPe029", "ChPe034", "ChPe034", "ChPe041", "ChPe015", "ChPe024", "ChPe042", "ChPe018", "ChPe025", "ChPe034", "ChPe042", "ChPe040", "ChPe019", "ChPe045", "ChPe026", "ChPe045", "ChPe044", "ChPe028", "ChPe002", "ChPe021", "ChPe012", "ChPe013", "ChPe009", "ChPe021", "ChPe027", "ChPe014", "ChPe041", "ChPe020", "ChPe032", "ChPe007", "ChPe046", "ChPe012", "ChPe014", "ChPe030", "ChPe031", "ChPe026", "ChPe033", "ChPe004", "ChPe013", "ChPe030", "ChPe033", "ChPe013", "ChPe029", "ChPe009", "ChPe018", "ChPe030", "ChPe040", "ChPe021", "ChPe008", "ChPe007", "ChPe044", "ChPe022", "ChPe026", "ChPe002", "ChPe023", "ChPe040", "ChPe042", "ChPe024", "ChPe031", "ChPe041", "ChPe040", "ChPe009", "ChPe014", "ChPe018", "ChPe015", "ChPe046", "ChPe021", "ChPe024", "ChPe041", "ChPe028", "ChPe028", "ChPe022", "ChPe030", "ChPe028", "ChPe029", "ChPe041", "ChPe012", "ChPe027", "ChPe023", "ChPe029", "ChPe008", "ChPe023", "ChPe024", "ChPe028", "ChPe006", "ChPe044", "ChPe048", "ChPe033", "ChPe006", "ChPe015", "ChPe026", "ChPe044", "ChPe032", "ChPe048", "ChPe006", "ChPe012", "ChPe046"], ["3.29654", "3.29654", "2.91754", "2.72128", "2.7574", "2.79168", "2.7203", "?", "3.05821", "2.79847", "2.71596", "2.82065", "?", "2.81138", "2.75134", "?", "2.75251", "2.74261", "3.29654", "?", "2.7283", "2.7283", "2.85163", "2.82048", "2.91754", "2.81694", "2.83531", "2.8457", "2.84767", "3.29654", "2.7203", "?", "2.72128", "2.74151", "2.71202", "2.89453", "2.9969", "2.73792", "2.77992", "3.29654", "2.74151", "2.87992", "2.8457", "2.9969", "?", "2.78379", "2.72228", "?", "2.72487", "3.29654", "2.74151", "2.8368", "2.73222", "2.72603", "2.83223", "2.75251", "2.83223", "2.7835", "2.71705", "2.7612", "2.82048", "2.74151", "2.9969", "2.7231", "2.79847", "3.29654", "?", "2.78379", "2.83223", "?", "2.91754", "?", "3.29654", "2.7203", "2.7835", "2.7203", "2.7835", "2.7835", "2.79104", "3.29654", "2.82048", "?", "2.79628", "2.83223", "2.8368", "2.83128", "2.73792", "2.7345", "2.7835", "2.87992", "2.8505", "?", "2.78115", "3.29654", "2.81694", "2.72603", "2.8368", "?", "2.96768", "3.29654", "2.85606", "2.72603", "2.83373", "3.29654", "2.78115", "2.72855", "3.29654", "2.91754", "?", "?", "2.72855", "?", "2.73792", "2.71705", "3.29654", "2.91754", "2.7835", "2.73992", "?", "2.7835", "2.7574", "3.29654", "?", "2.73792", "3.29654", "2.73792", "3.29654", "2.7835", "2.72603", "2.84495", "3.29654", "2.74614", "?", "2.78115", "2.72128", "2.91046", "2.73992", "2.8468", "?", "2.72577", "?", "2.72855", "3.29654", "2.8457", "2.73992", "2.7264", "2.79609", "3.29654", "2.91046", "?", "2.81694", "2.72855", "?", "2.79628", "?", "?", "2.74648", "?", "?", "2.7345", "2.75251", "2.75251", "2.83223", "2.71211", "2.75251", "?", "3.29654", "?", "2.74164", "2.83698", "2.7203", "?", "2.72855", "2.7264", "?", "2.74648", "2.78115", "2.8368", "?", "2.7335", "?", "?", "2.70882", "2.72128", "2.91754", "2.8368", "?", "2.7835", "2.73992", "2.81694", "2.72855", "2.72855", "2.8368", "2.79168", "2.74639", "2.81007", "2.70882", "?", "2.81694", "?", "?", "2.73154", "2.91754", "2.89453", "?", "2.91754", "2.7835", "2.72567", "?", "2.72603", "?", "?", "2.7203", "3.29654", "2.72603", "?", "2.79609"], ["1.95473", "2.04774", "1.98839", "2.06469", "1.96031", "2.05999", "2.08177", "2.06469", "1.94747", "2.04577", "2.05999", "2.06887", "1.96445", "2.03388", "2.05698", "1.97638", "2.05698", "1.97215", "2.04226", "2.02547", "2.04828", "1.93936", "2.05301", "2.04774", "2.02547", "2.07308", "1.93936", "1.99195", "1.9945", "2.02547", "2.07308", "2.04774", "2.04774", "1.99195", "2.05153", "2.0837", "2.04071", "2.06624", "2.05153", "2.07308", "2.08177", "2.06624", "2.04774", "2.04774", "2.05698", "1.98839", "1.97638", "2.04071", "2.06469", "1.93936", "2.0837", "1.99195", "1.99195", "2.05698", "1.9945", "2.02547", "2.05651", "1.9528", "1.96017", "2.06469", "1.96717", "2.04071", "2.08177", "1.99195", "2.05698", "1.95473", "2.08177", "1.99195", "2.06553", "1.95473", "1.99195", "2.05999", "1.97241", "2.08642", "2.04774", "2.05698", "2.04774", "2.05698", "2.06553", "1.99195", "1.99195", "2.05206", "2.0837", "1.96671", "2.08177", "2.02547", "2.06553", "1.97638", "2.04071", "2.02547", "2.08177", "2.06469", "1.96031", "1.99195", "2.0837", "2.05698", "2.05698", "2.07308", "2.05698", "2.04868", "2.04774", "2.04774", "2.05698", "2.0665", "1.99195", "2.05999", "2.05698", "1.99195", "2.04774", "2.06624", "2.05153", "2.05153", "2.07308", "1.99195", "2.04071", "2.04071", "2.0837", "2.05698", "2.05698", "2.05698", "2.01702", "1.9945", "2.05262", "2.05698", "1.9945", "1.97638", "2.04071", "2.05698", "2.05698", "1.93936", "2.06469", "1.93936", "2.06553", "1.96717", "1.96031", "1.99195", "2.05999", "2.05698", "1.97515", "2.02547", "1.97515", "1.99195", "2.08642", "2.05698", "2.05698", "2.05698", "2.05698", "2.06469", "2.05698", "1.99195", "2.03388", "2.07141", "1.99195", "1.95473", "2.05153", "2.05698", "2.06516", "2.04774", "2.02547", "2.06469", "1.99195", "1.99195", "2.04071", "2.07308", "1.98839", "2.02547", "2.0218", "1.93936", "2.05698", "2.04774", "2.05651", "1.97638", "2.06624", "2.06516", "2.02547", "1.98839", "2.0665", "2.06516", "2.05698", "1.97215", "2.0665", "2.06516", "2.08344", "1.99195", "1.99195", "1.95473", "1.97037", "2.02547", "2.05301", "2.06469", "2.08177", "1.97638", "2.01702", "2.05698", "2.05153", "2.06553", "1.94747", "1.96966", "2.05206", "1.99195", "2.04774", "2.01702", "2.05698", "1.9528", "1.93936", "2.08642", "2.04071", "2.04071", "1.9528", "1.96671", "2.08642", "1.96017", "1.97836", "1.99195", "1.99195", "2.06553", "2.05698"], ["F", "F", "UAE", "CLM/ASA", "RUS", "ISR", "UAE", "RUS/IK", "F", "QAT", "UAE", "F", "CHN", "ISR", "F", "HOL", "LUX", "F", "G", "ISR", "RUS/IK", "F", "EGY", "NOR", "UAE", "S", "IRQ", "F", "F", "ISR", "ISR", "LUX", "TUR", "TUR", "F", "F", "CHN", "F", "CYP", "EGY", "UAE", "F", "UAE", "INS", "CYP", "QAT", "ISR", "J", "UAE", "ISR", "UAE", "F", "PNG", "UAE", "F", "USA", "PNG", "J", "F", "ISR", "UAE", "UAE", "UAE", "ISR", "F", "IND", "CYP", "ISR", "PNG", "RUS", "QAT", "EGY", "F/EUT", "CHN", "USA", "LUX", "QAT", "ISR", "J", "TUR", "UAE", "ISR", "F", "TUR", "UAE", "F", "AZE", "D", "CHN", "TUR", "F", "F", "EGY", "IND", "J", "QAT", "LUX", "F", "F", "ISR", "UAE", "UAE", "UAE", "UAE", "UAE", "JOR", "EGY", "UAE", "UAE", "CHN", "UAE", "USA", "HOL", "ISR", "F", "RUS", "ISR", "CHN", "UAE", "ISR", "CHN", "J", "G", "J", "ISR", "ISR", "F", "F/EUT", "ISR", "ISR", "UAE", "ISR", "ISR", "USA", "UAE", "CHN", "ISR", "F", "CHN", "ISR", "QAT", "UAE", "ISR", "EGY", "F", "RUS", "D", "IND", "LUX", "MAU", "UAE", "RUS/IK", "LUX", "UAE", "EGY", "F", "LUX", "F", "LUX", "ISR", "UAE", "G", "MLA", "ISR", "THA", "LUX", "UAE", "ISR", "HOL", "QAT", "CYP", "LUX", "UAE", "ISR", "UAE", "ISR", "USA", "TUR", "UAE", "CHN", "UAE", "CHN", "LUX", "ISR", "NOR", "KOR", "LUX", "G", "USA", "VTN", "UAE", "ISR", "QAT", "RUS/IK", "USA", "E", "ISR", "CYP", "RUS/IK", "UAE", "UAE", "CHN", "TUR", "RUS/IK", "LUX", "ISR", "UAE", "NOR", "F", "IND", "J", "F", "CYP", "LUX", "TUR", "F", "EGY", "CHN", "USA", "PNG", "CYP", "F", "HOL", "TUR", "USA", "ISR", "UAE", "EGY", "PNG", "VTN", "UAE", "RUS", "J", "EGY", "F", "PNG", "CHN", "CAN", "ISR", "UAE", "BOL", "J", "VTN", "RUS", "QAT", "KOR", "F", "ARS/ARB", "ISR", "F", "VTN", "UAE", "NIG", "IRN", "PNG", "F", "UAE", "VTN", "ISR", "J", "ISR", "CHN", "USA", "S", "RUS", "ISR", "F", "F", "ARS/ARB", "JOR", "EGY", "RUS/IK", "QAT", "E", "LUX", "UAE", "HOL", "SNG", "F/EUT", "PNG", "ARS/ARB", "I", "NOR", "PNG", "F", "F", "ARS/ARB", "UAE", "UAE", "F", "QAT", "ISR", "UAE", "F", "UAE", "KAZ", "B", "ISR", "QAT", "ISR", "TUR", "UAE", "LUX", "QAT", "ISR", "CHN", "EGY", "F", "UAE", "EGY", "TUR", "E", "CHN", "J", "NCG", "F", "ISR", "RUS", "QAT", "J", "UAE", "LUX", "ISR", "UAE", "ISR", "J", "QAT", "UAE", "F", "CHN", "UAE", "IND", "PNG", "F", "F", "LUX", "F", "LUX", "CHN", "F", "QAT", "F", "ISR", "ISR", "F", "F", "UAE", "UAE", "ISR", "F", "RUS/IK", "UAE", "USA", "UAE", "ISR", "LUX", "LUX", "ISR", "PNG", "F", "F", "USA", "ISR", "AZE", "UAE", "QAT", "UAE", "CHN", "UAE", "LUX", "HOL", "EGY", "J", "VTN", "UAE", "TUR", "F", "LUX", "ISR", "UAE", "CTI/RAS", "F", "CHN", "J", "HOL", "F", "I", "CHN", "ISR", "LUX", "D", "PNG", "TUR", "CAN", "CHN", "USA", "F", "UAE", "LUX", "PNG", "LUX", "CHN", "UAE", "LUX", "UAE", "NOR", "UAE", "PNG", "F", "ISR", "F", "UAE", "F", "F", "ISR", "F", "J", "ISR", "UAE", "EGY", "UAE", "E", "LUX", "EGY", "CHN", "ISR", "G", "J", "F", "UAE", "UAE", "F", "LUX", "ISR", "CTI/RAS", "UAE", "VTN", "AZE", "AUS", "ISR", "F", "RUS/IK", "ISR", "J", "G", "VTN", "NOR", "RUS/IK", "F", "F/EUT", "AZE", "LUX", "J", "CAN", "HOL", "UAE", "CHN", "UAE", "MLA", "ISR", "ISR", "EGY", "TUR", "PNG", "UAE", "HOL", "VTN", "TUR", "USA", "UAE", "CHN", "F", "LUX", "LUX", "F", "LUX", "F", "UAE", "USA", "LUX", "F", "ISR", "CHN", "F", "KOR", "CYP", "JOR", "CHN", "UAE", "USA", "F", "E", "F", "TUR", "CHN", "CHN", "CYP", "CYP", "TUR", "F"], ["0", "0", "0", "0", "0", "0", "2.41", "0", "0", ".45", "0", "94.36", "1470.11", "0", "161.22", "0", "165", "0", "0", "166", "301", ".03", "752", "92.82", "11.06", "0", "744", ".01245", "26.38", "104.69", "353.78"], ["99.999", "0", "0", "99.9436", "0", "0", "99.8399", "0", "99.9201", "99.9999", "0", "99.8399", "99.9972", "99.9992", "99.999", "99.8094", "99.9997", "0", "99.858", "99.9972", "99.9972", "99.8399", "99.98", "99.9972", "99.8094", "99.9516", "0", "99.9967", "99.8399", "99.9999", "99.8399", "0", "0", "0", "99.9967", "0"], ["0", "0", "0", "157.28", "103.94", "437", "97", "9.13", "0", "97", "352.1", "0", "436", "0", "0", "0", "0", ".003", "0", "92.33", ".02", "16.25", ".43", "1432.11", "156", "0", "16.8", "0", "0", ".09", "0"], ["2.93696", "2.93696", "?", "3.30192", "2.93696", "?", "2.63035", "?", "3.3665", "?", "?", "?", "2.93696", "2.65918", "3.29542", "?", "2.64705", "3.16492", "2.64705", "?", "2.80908", "?", "?", "?", "2.64705", "?", "2.63035", "3.3665", "2.80908", "2.93696", "2.64705", "?", "3.29542", "2.65918", "?", "2.80908", "2.65918", "2.65918", "?", "?", "2.65918", "?", "?", "?", "2.80908", "?", "?", "2.64705", "3.3665", "2.64705", "2.65918", "2.64705", "2.65918", "?", "?", "2.64705", "?", "3.16492", "2.65918", "?", "?", "2.65918", "?", "2.65918", "?", "2.65918", "?", "?", "2.93696", "2.93696", "3.16492", "?", "?", "2.64705", "2.93696", "3.3665", "?", "2.64705", "2.65918", "2.65918", "?", "?", "2.65918", "?", "?", "2.65918", "3.3085", "?", "?", "?", "?", "?", "?", "2.64705", "2.57593", "2.64705", "2.63035", "2.65918", "?", "?", "2.64705", "2.64705", "?", "2.65918", "2.65918", "?", "3.3665", "?", "2.93696", "?", "2.93696", "2.65918", "2.64705", "2.93696", "?", "2.65918", "?", "?", "2.63035", "2.65918", "2.65918", "2.57593", "?", "?", "3.49704", "2.64705", "2.65918", "?", "?", "2.63035", "2.65918", "?", "2.64705", "?", "2.64705", "?", "?", "2.65918", "3.29542", "2.65918", "3.3665", "2.65918", "2.93696", "?", "?", "?", "?", "?", "?", "2.64705", "?", "2.64705", "?", "?", "2.64705", "2.65918", "?", "?", "?", "?", "?", "2.57593", "?", "2.97247", "?", "?", "2.64705", "2.80908", "2.64705", "2.65918", "3.63137", "?", "2.64705", "?", "2.64705", "2.93696", "?", "2.65918", "3.3665", "2.64705", "2.64705", "3.63137", "3.3665", "?", "3.3665", "3.3665", "?", "2.65918", "?", "?", "3.3665", "2.64705", "2.63035", "2.65918", "?", "2.64705", "2.57593", "2.63035", "2.65918", "?", "2.57593", "?", "?", "2.64705", "3.49704", "?", "2.80908", "3.3085", "?", "?", "2.93696", "?", "?", "?", "2.65918", "?", "2.63035"], ["1.14531", "?", "1.29857", "?", "?", "?", "?", "1.31778", "1.31171", "?", "?", "1.27521", "?", "1.27521", "1.30559", "?", "?", "?", "?", "?", "1.27521", "1.27186", "1.24913", "?", "1.31171", "?", "?", "1.27521", "1.24918", "1.21243", "?", "?", "?", "?", "1.31171", "?", "?", "1.29371", "?", "?", "?", "1.29857", "1.29857", "?", "?", "?", "?", "?", "1.27186", "?", "?", "1.27521", "?", "1.19418", "1.27012", "1.31171", "?", "?", "?", "1.26758", "1.30858", "?", "1.29321", "?", "1.2494", "?", "1.28621", "?", "1.27859", "?", "?", "?", "?", "1.30599", "?", "?", "?", "?", "?", "1.27663", "?", "?", "?", "?", "1.1861", "1.28621", "1.24913", "1.17406", "1.29857", "?", "1.32639", "?", "1.27666", "?", "?", "?", "?", "?", "?", "?", "?", "1.30559", "?", "?", "?", "?", "1.27012", "1.30667", "?", "?", "?", "?", "1.29857", "?", "?", "?", "1.18208", "?", "?", "1.29857", "?", "1.31171", "?", "?", "?", "1.30537", "1.28621", "1.29857", "?", "?", "?", "?", "?", "?", "?", "?", "?", "?", "1.21959", "?", "1.30537", "1.17884", "?", "?", "?", "1.26553", "?", "?", "?", "1.27186", "?", "1.27186", "?", "1.23377", "1.31171", "?", "?", "1.27338", "?", "?", "?", "1.29857", "?", "?", "?", "?", "?", "1.21959", "?", "1.30559", "?", "?", "1.27521", "?", "?", "?", "?", "?", "?", "1.29857", "?", "?", "?", "?", "?", "?", "1.28467", "1.24701", "1.29324", "?", "1.30599", "?", "1.26758", "?", "?", "?", "?", "1.31171", "?", "1.29857", "?", "?", "1.14531", "?", "1.27521", "1.2579", "?", "?", "?", "?", "1.29857", "?", "?", "?", "1.27012", "1.27521", "?"], ["CO-3.2", "CO-3.2", "CO-3.2", "CO-3.0", "CO-3.2", "CO-anom", "CO-3.5", "CO-3.2", "CO-3.0", "CO-3.0", "CO-3.2", "CO-3.5", "CO-3.4", "CO-3.4", "CO-3.2", "CO-anom", "CO-3.2", "CO-3.0", "CO-3.2", "CO-3.0", "CO-3.0", "CO-3.4", "CO-3.5", "CO-3.2", "CO-3.2", "CO-3.4", "CO-3.0", "CO-3.2", "CO-3.5", "CO-3.2", "CO-3.0", "CO-anom", "CO-3.0", "CO-3.0", "CO-3.2", "CO-anom", "CO-3.2", "CO-3.2", "CO-3.2", "CO-3.2", "CO-3.4", "CO-3.0", "CO-3.4", "CO-3.7", "CO-3.7", "CO-3.2", "CO-3.2", "CO-3.0", "CO-anom", "CO-3.0", "CO-3.0", "CO-3.2", "CO-3.0", "CO-3.0", "CO-3.5", "CO-3.0", "CO-3.5", "CO-3.5", "CO-3.0", "CO-3.2", "CO-3.2", "CO-3.5", "CO-3.5", "CO-3.0", "CO-anom", "CO-3.5", "CO-3.2", "CO-3.2", "CO-3.2", "CO-3.2", "CO-3.0", "CO-3.5", "CO-3.2", "CO-3.5", "CO-3.5", "CO-3.5", "CO-3.5", "CO-3.2", "CO-3.2", "CO-3.0", "CO-anom", "CO-3.5", "CO-3.2", "CO-3.0", "CO-3.4", "CO-3.2", "CO-3.0", "CO-anom", "CO-3.4", "CO-3.2", "CO-3.4", "CO-3.2", "CO-3.5", "CO-3.5", "CO-3.2", "CO-3.7", "CO-3.5", "CO-3.2", "CO-3.2", "CO-3.2", "CO-3.5", "CO-3.2", "CO-3.2", "CO-3.4", "CO-3.5", "CO-anom", "CO-3.5", "CO-3.2", "CO-3.5", "CO-anom", "CO-anom", "CO-3.0", "CO-3.5", "CO-3.5", "CO-3.5", "CO-3.2", "CO-3.0", "CO-anom", "CO-3.2", "CO-3.2", "CO-3.2", "CO-3.5", "CO-3.7", "CO-3.2", "CO-3.2", "CO-3.2", "CO-3.5", "CO-3.0", "CO-3.0", "CO-3.2", "CO-3.5", "CO-3.2", "CO-3.5", "CO-3.0", "CO-3.4", "CO-3.7", "CO-3.2", "CO-3.2", "CO-3.2", "CO-3.0", "CO-3.5", "CO-3.5", "CO-3.0", "CO-3.2", "CO-3.5", "CO-3.2", "CO-3.0", "CO-anom", "CO-3.2", "CO-3.5", "CO-anom", "CO-3.4", "CO-3.2", "CO-3.2", "CO-3.7", "CO-3.0", "CO-3.4", "CO-3.5", "CO-anom", "CO-3.5", "CO-3.2", "CO-3.4", "CO-3.4", "CO-3.2", "CO-3.5", "CO-3.0", "CO-3.5", "CO-3.2", "CO-3.5", "CO-3.0", "CO-3.0", "CO-3.2", "CO-3.2", "CO-3.2", "CO-3.7", "CO-3.4", "CO-3.2", "CO-3.0", "CO-3.2", "CO-anom", "CO-3.5", "CO-3.2", "CO-3.2", "CO-3.7", "CO-3.5", "CO-3.2", "CO-3.0", "CO-anom", "CO-anom", "CO-3.2", "CO-3.4", "CO-3.2", "CO-3.2", "CO-3.0", "CO-3.5", "CO-3.5", "CO-3.2", "CO-3.0", "CO-3.0", "CO-3.0", "CO-3.2", "CO-3.2", "CO-anom", "CO-3.0", "CO-3.2", "CO-3.2", "CO-3.2", "CO-3.2", "CO-3.2", "CO-3.2", "CO-3.2", "CO-3.2", "CO-3.2", "CO-3.2", "CO-3.5", "CO-3.0", "CO-3.0", "CO-anom", "CO-3.4", "CO-3.2", "CO-3.2", "CO-3.2", "CO-3.0", "CO-3.5", "CO-3.0", "CO-3.2", "CO-3.4", "CO-anom", "CO-3.0", "CO-3.0", "CO-anom", "CO-3.2", "CO-3.2", "CO-3.5", "CO-3.5", "CO-3.7", "CO-3.0", "CO-3.2", "CO-3.0", "CO-3.2", "CO-3.2", "CO-3.4", "CO-3.5", "CO-3.2", "CO-3.2", "CO-3.2", "CO-3.0", "CO-3.2", "CO-3.4", "CO-3.2", "CO-3.2", "CO-3.2", "CO-3.2", "CO-3.7", "CO-3.2", "CO-3.0", "CO-3.0", "CO-3.2", "CO-3.2", "CO-3.0", "CO-3.2", "CO-3.0", "CO-3.2", "CO-3.0", "CO-3.2", "CO-3.2", "CO-3.2", "CO-3.2", "CO-3.5", "CO-3.2", "CO-3.0", "CO-3.4", "CO-3.2", "CO-3.2", "CO-3.4", "CO-3.5", "CO-3.2", "CO-3.7", "CO-3.2", "CO-3.5", "CO-3.2", "CO-3.0", "CO-3.5", "CO-3.2", "CO-3.0", "CO-3.5", "CO-3.2", "CO-3.2", "CO-3.2", "CO-3.2", "CO-3.4", "CO-anom", "CO-3.2", "CO-3.2", "CO-3.7", "CO-3.0", "CO-3.2", "CO-3.0", "CO-3.2", "CO-3.4", "CO-3.2", "CO-3.2", "CO-3.2", "CO-3.7", "CO-3.5", "CO-3.2", "CO-3.5", "CO-3.0", "CO-anom", "CO-3.5", "CO-3.2", "CO-3.0", "CO-3.0", "CO-anom", "CO-3.0", "CO-3.2", "CO-3.5", "CO-3.0", "CO-3.5", "CO-3.2", "CO-3.2", "CO-3.2", "CO-3.0", "CO-3.2", "CO-3.2", "CO-3.5", "CO-3.2", "CO-anom", "CO-3.5", "CO-3.4", "CO-3.0", "CO-3.0", "CO-3.7", "CO-anom", "CO-3.2", "CO-3.5", "CO-3.2", "CO-anom", "CO-3.5", "CO-3.0", "CO-anom", "CO-3.2", "CO-3.0", "CO-3.0", "CO-3.4", "CO-3.2", "CO-3.4", "CO-3.0", "CO-3.2", "CO-3.2", "CO-3.2", "CO-3.2", "CO-3.4", "CO-3.2", "CO-anom", "CO-3.2", "CO-3.0", "CO-3.2", "CO-3.7", "CO-3.2", "CO-3.2", "CO-3.2", "CO-3.0", "CO-3.0", "CO-3.2", "CO-3.0", "CO-3.2", "CO-3.4", "CO-3.7", "CO-3.2", "CO-3.0", "CO-3.2", "CO-3.2", "CO-3.2", "CO-3.2", "CO-3.5", "CO-3.2", "CO-3.5", "CO-3.2", "CO-3.0", "CO-3.2", "CO-anom", "CO-3.2", "CO-3.2", "CO-3.2", "CO-3.0", "CO-3.0", "CO-3.2", "CO-3.2", "CO-3.4", "CO-3.2", "CO-3.4", "CO-3.2", "CO-3.2", "CO-3.5", "CO-3.2", "CO-3.2", "CO-3.5", "CO-anom", "CO-3.2", "CO-3.2", "CO-3.5", "CO-anom", "CO-3.2", "CO-3.2", "CO-3.2", "CO-3.2", "CO-3.2", "CO-anom", "CO-anom", "CO-3.0", "CO-3.2", "CO-3.2", "CO-3.7", "CO-3.4", "CO-3.4", "CO-3.2", "CO-3.2", "CO-3.2", "CO-3.2", "CO-3.2", "CO-3.0", "CO-3.2", "CO-3.5", "CO-3.2", "CO-3.0", "CO-3.0", "CO-3.2", "CO-3.7", "CO-3.2", "CO-3.7", "CO-3.5", "CO-3.5", "CO-3.7", "CO-3.5", "CO-3.4", "CO-3.5", "CO-3.5", "CO-3.5", "CO-3.2", "CO-3.5", "CO-3.0", "CO-3.5", "CO-3.5", "CO-3.7", "CO-3.4", "CO-3.2", "CO-3.2", "CO-3.5", "CO-3.0", "CO-3.5", "CO-anom", "CO-3.2", "CO-3.0", "CO-3.5", "CO-3.2", "CO-3.0", "CO-3.5", "CO-3.4", "CO-3.2", "CO-3.5", "CO-anom", "CO-3.2", "CO-3.2", "CO-3.0", "CO-anom", "CO-3.4", "CO-3.4", "CO-3.2", "CO-3.7", "CO-3.0", "CO-3.2", "CO-3.2", "CO-3.2", "CO-3.0", "CO-3.0", "CO-anom", "CO-3.2", "CO-3.2", "CO-3.2", "CO-3.7", "CO-anom", "CO-3.2", "CO-3.5", "CO-3.0", "CO-3.2", "CO-3.2", "CO-3.7", "CO-3.2", "CO-3.0", "CO-3.5", "CO-3.2", "CO-3.5", "CO-3.2", "CO-3.4", "CO-3.2", "CO-3.2", "CO-3.5", "CO-anom", "CO-3.2"], ["absent", "absent", "present", "absent", "present", "absent", "absent", "present", "present", "present", "present", "absent", "absent", "present", "present", "present", "absent", "absent", "absent", "absent", "present", "absent", "absent", "absent", "present", "present", "absent", "absent", "absent", "absent", "present", "present", "present", "present", "absent", "absent", "present", "present", "absent", "present", "absent", "absent", "absent", "present", "absent", "present", "present", "present", "present", "absent", "present", "present", "absent", "present", "absent", "present", "present", "present", "present", "present", "present", "present", "absent", "absent", "present", "absent", "present", "present", "absent", "absent", "present", "present", "present", "present", "present", "absent", "present", "absent", "present", "present", "absent", "absent", "present", "absent", "present", "absent", "present", "present", "present", "present", "present", "present"], ["SOCKEYE", "SOCKEYE", "SOCKEYE", "SOCKEYE", "SOCKEYE", "SOCKEYE", "SOCKEYE", "SOCKEYE", "SOCKEYE", "SOCKEYE", "SOCKEYE", "SOCKEYE", "SOCKEYE", "CHINOOK", "SOCKEYE", "CHINOOK", "SOCKEYE", "SOCKEYE", "SOCKEYE", "SOCKEYE", "SOCKEYE", "SOCKEYE", "CHINOOK", "SOCKEYE", "SOCKEYE", "CHINOOK", "CHINOOK", "CHINOOK", "SOCKEYE", "CHINOOK", "SOCKEYE", "CHINOOK", "SOCKEYE", "CHINOOK", "SOCKEYE", "CHINOOK", "CHINOOK", "CHINOOK", "SOCKEYE", "SOCKEYE", "SOCKEYE", "SOCKEYE", "SOCKEYE", "SOCKEYE", "CHINOOK", "SOCKEYE", "CHINOOK", "CHINOOK", "SOCKEYE", "SOCKEYE", "CHINOOK", "SOCKEYE", "SOCKEYE", "CHINOOK", "CHINOOK", "CHINOOK", "SOCKEYE", "SOCKEYE", "SOCKEYE", "CHINOOK", "CHINOOK", "SOCKEYE", "CHINOOK", "SOCKEYE", "SOCKEYE", "CHINOOK", "CHINOOK", "SOCKEYE", "SOCKEYE", "SOCKEYE", "SOCKEYE", "CHINOOK", "SOCKEYE", "SOCKEYE", "SOCKEYE", "SOCKEYE"], ["0", "0", "1.579", "0", "0", "0", "0", "0", "53.157", "0", "0", "0", "359.971", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "197.088", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "4.367", "0", "0", "0"], ["10511545", "12371018", "11788556", "11246087", "12370566", "12369472", "14540509", "14640453", "12035069", "13958624", "14455831", "14474271", "13852311", "13982029", "13582975", "13197520", "14177731", "14236242", "13112913", "14298443", "14269168", "14431417", "13362808", "13391684", "12452587", "13873113", "12906708", "13059751", "11819672", "11610785", "13688105", "13843741", "11263357", "13008876", "12645835", "12570410", "9916744", "11436825", "14512542", "12681217", "11874590", "13052373", "12417434", "14590035", "13123189", "11826333", "13841256", "11982843", "11384667", "13923414", "11643893", "11801803", "11354850", "11651153", "12449785", "13053267", "11492771", "13332422", "13040570", "11942697", "13793474", "6468964", "13937141", "12036847", "11763887", "12252786", "10793167", "14489293", "11518797", "12641819", "14289790", "12409459", "14568392", "9339501", "12218559", "9652858", "13838744", "14321532", "14487936", "9620832", "12769082", "14307460", "13851602", "10374456", "13070107", "11769834", "11707706", "14110955", "13068991", "11941772", "14296342", "14508633", "12961196", "10657954", "5516153", "12007574", "12652397", "11246050", "10816150", "13358304", "13270595", "12872059", "12959490", "14058892", "13250102", "12996115", "12325334", "13761574", "10718007", "11415882", "12661071", "13407863", "12235906", "12497577", "14647083", "13979142", "14383654", "13327097", "11706782", "14380492", "11415288", "13100681", "11246012", "14439783", "9677723", "13929347", "13203497", "12077782", "12961158", "14280694", "13498331", "13486429", "12627465", "11395193", "12664893", "14248779", "14546849", "13873014", "11852536", "11708664", "12641777", "13386916", "11400509", "12608947", "9966022", "13969867", "10300905", "13597189", "13593942", "11495984", "13250472", "13518184", "14386296", "12652419", "13316001", "11619888", "13434963", "14474667", "11107627", "10462487", "11994944", "10658068", "14600682", "11414827", "10948591", "13033776", "13389951", "14428450", "14658413", "13581753", "12184060", "14102891", "12593342", "12373535", "12648275", "12056933", "12065904", "13552256", "13354845", "13337623", "12335161", "12514640", "12407691", "13983540", "13419324", "10717773", "12834193", "12335228", "13876784", "13190930", "14531449", "14558497", "13984352", "10762516", "13703930", "14466665", "14182195", "12187475", "14543051", "12711422", "13879543", "14432914", "13793390", "11809183", "14487693", "11563542", "12076139", "12393132", "14493658", "13433631", "12370826", "11178233", "13446322", "11214168", "11883859", "14248948", "13276773", "12298872", "12994302", "11886086", "14661768", "11335177", "11624117", "13601503", "12463255", "11401559", "14125409", "14033137", "9918868", "13965098", "14089046", "12616394", "14086764", "12443013", "11077215", "12332974", "12252958", "10465162", "14406096", "12396964", "13216292", "10666301", "12022964", "13703721", "13370603", "13415772", "13243951", "12383860", "10149202", "5558929", "10511230", "12976590", "13574627", "10037032", "12253163", "13738471", "12984678", "13688030", "14095663", "12374642", "13665037", "12183507", "14075432", "10706942", "12184743", "9558852", "11297642", "13518292", "12974987", "12393965", "13231460", "14002174", "14449068", "13518146", "11622769", "12505089", "12307162", "13713475", "14657511", "13828263", "13384494", "13130357", "5486261", "5486285", "13003683", "13070405", "13994123", "12183460", "11982635", "13184361", "10567298", "10902452", "13615440", "10891703", "10708261", "12335136", "13083900", "13032896", "10429674", "14112100", "12989834", "11230582", "14306902", "12846154", "14024566", "11475486", "13870726", "10730159", "11763490", "12523035", "10730365", "13567861", "10147050", "10716007", "13120202", "13386025", "7837947", "14371545", "9794823", "11321950", "13216413", "11538850", "11385324", "14163209", "13777063", "12478593", "14327775", "12594030", "14639627", "12193483", "12207352", "14641252", "10963104", "14648211", "13316015", "12356541", "13240434", "12658729", "13337376", "13475925", "11157607", "13921674", "11037996", "13413842", "9966145", "11138275", "13092937", "11673081", "14342919", "13003524", "13456818", "12748091", "13652339", "13389659", "11384818", "13616382", "14079919", "12184679", "12270200", "14128336", "9627900", "14345875", "11435721", "12411730", "12379527", "12890620", "12491287", "10213167", "14247036", "12262719", "11975948", "14197643", "9857283", "13362096", "13866073", "11616216", "10737915", "12184631", "14043878", "14657647", "11979845", "13900044", "12327090", "13100648", "13184793", "11083005", "11824464", "13073666", "12549057", "13923312", "11306265", "13029258", "11128080", "14506690", "13581730", "12188163", "12499884", "14079641", "13231508", "12850453", "14586194", "14446240", "12034043", "12737349", "12254295", "13930121", "12193309", "11418688", "13446880", "12752599", "12930541", "14666251", "11826408", "13729448", "11131297", "13579822", "12030465", "13977632", "13518290", "13386668", "11812627", "13053411", "13865831", "14530027", "13810867", "14327941", "13977244", "13616324", "12335404", "14351185", "13446268", "9577305", "11330247", "13997780", "12201723", "7821507", "11402371", "13730903", "13259044", "13184642", "11174716", "10058145", "14292553", "14306366", "6468875", "13931877", "12910278", "13221579", "13652027", "11711637", "10264895", "10746190", "14039589", "13166608", "14417983", "12862240", "14365475", "13606898", "12007981", "13053339", "10829714", "13836910", "14360369", "13181960", "14257036", "11005208", "11767878", "13665099", "12250416", "12979842", "10563786", "12426686", "14323422", "13237875", "11385335", "12605055", "10054720", "12927871", "11419721", "13898325", "11073962", "11330122", "12141611", "13389331", "14669654", "14417036", "14035284", "14451264", "14408712", "13576876", "13572798", "14282638", "11495086", "14508355", "13731128", "13553955", "12671598", "14247708", "10519094", "11888784"], ["1931335", "2635010", "3024013", "3015254", "2585822", "3027046", "2569213", "2590069", "3011848", "2197946", "3011390", "2542714", "1974772", "2714854", "3022600", "3011609", "3025121", "2478219", "3008093", "3025049", "2774007", "2080731", "2718221", "3027111", "3022429", "3021144", "1930730", "3018319", "1917642", "2871785", "2218395", "3025019", "2383359", "1960049", "3004082", "3020491", "3003506", "1992230", "3013786", "3011692", "3018649", "3016228", "2676882", "3000922", "2465783", "3018827", "2006215", "1917846", "3003879", "2092651", "3008729", "3010617", "2034846", "3021314", "2561979", "3004952", "3026401", "2663969", "3009534", "2413992", "3013253", "3011492", "1967802", "3003209", "3006850", "3012510", "2483821", "3014307", "2755706", "305911", "1997928", "2112074", "3025133", "2648693", "2086342", "3007995", "3013660", "3027101", "1906861", "2570061", "3002281", "3004361", "3014982", "3001118", "3016266", "3006753", "3027756", "2813878", "2651323", "2006442", "3010287", "3017304", "2440166", "2672608", "3002304", "3013255", "2242286", "3019075", "2587817", "2106232", "2216924", "3006191", "2323275", "2490779", "1961791", "3009931", "3011008", "3019485", "3002516", "2361537", "2075674", "3016665", "3008946", "3007497", "3020934", "2668840", "3014193", "2758727", "3003188", "2698648", "3003970", "3024960", "1919659", "3019929", "3018332", "3024412", "3020738", "3017198", "3021841", "3024635", "2335844", "2621263", "2033092", "1929915", "3022505", "1941613", "3021761", "3020200", "2268259", "3012234", "2695285", "3015024", "3027048", "3002685", "2402746", "2216991", "3008824", "3015246", "3011495", "2608357", "2674251", "3000373", "3012084", "2029870", "3020301", "3023804", "1974749", "2717853", "1966285", "3003353", "3016231", "3014798", "3020610", "3001720", "3018299", "3013511", "2028822", "3011716", "2040202", "2744185", "3020188", "2494544", "3024409", "3011042", "2122987", "2121677", "3001680", "2736950", "3002609", "2084175", "3014026", "2653454", "3004671", "2760227", "1956361", "2697441", "3027108", "2125248", "2525555", "1920236", "2730510", "2016764", "3010343", "3011043", "3000555", "3006711", "2768174", "2004479", "3004569", "3010791", "2637878", "2414086", "2733780", "3011723", "1897956", "2729228", "3024345", "3007970", "2871694", "1929960", "3005771", "3022413", "1980343", "3005979", "1965680", "2668602", "3013113", "2769166", "2770016", "3006423", "3016227", "2502570", "2806500", "1914438", "1912249", "3026237", "3021248", "3010341", "3013495", "1908505", "3017315", "2714558", "2403830", "3017872", "3004046", "1964256", "2630093", "3026236", "3019806", "3000538", "2433729", "3020797", "3011009", "3016736", "3015523", "3020462", "2079529", "2695605", "2793626", "3003410", "3002734", "2717999", "1940187", "2643494", "2247543", "3012347", "2382903", "3012935", "2606679", "1895472", "2418533", "3004574", "2200864", "3021706", "3010189", "1984798", "2695616", "2368754", "3020021", "3017195", "3027098", "2745508", "3019483", "3023411", "2011203", "3003487", "1951786", "3007110", "2806599", "2614757", "3018847", "3003119", "3009553", "1973417", "3024410", "2075663", "3014996", "3003750", "3026860", "3008598", "3005693", "3004292", "3019088", "2459736", "3002788", "3007524", "3016607", "3010284", "3024853", "2355853", "3026430", "3004682", "3022958", "2566714", "3014025", "3001340", "2553120", "1906827", "2616684", "3019324", "3004295", "3001366", "2106685", "2065716", "1920838", "2698784", "2445901", "2654264", "2569995", "3021702", "2491227", "3019600", "2823247", "2090348", "2570958", "3008979", "2540569", "3000413", "2065681", "2280991", "3027047", "1975220", "3026438", "2711468", "3022398", "2405132", "3027109", "2601436", "1930014", "3025141", "2271434", "2742690", "3001292", "2025867", "2649118", "3006729", "2881814", "3010433", "3015248", "2818862", "2822880", "2070782", "3002269", "2009054", "2218408", "2019912", "3007025", "2176694", "3021561", "2003307", "3003364", "2616140", "2714081", "2866719", "2384750", "3015603", "3026365", "1952507", "3014861", "2403818", "1912250", "3005440", "3020303", "2191255", "2016446", "3022718", "1962125", "3003512", "2758818", "1948089", "3018344", "3024341", "2885430", "3026242", "3018178", "2521893", "3018865", "3008050", "2585833", "3002424", "2792010", "3019836", "2668599", "2330145", "3004886", "3026808", "3002063", "3006094", "3011622", "3021806", "2165493", "3016114", "3017619", "3017153", "3018849", "3000374", "3012258", "3019047", "3020463", "2077216", "3024796", "3013068", "3012017", "3019575", "3023103", "2173388", "3020913", "2881847", "3004875", "2653829", "3020997", "3017748", "3022981", "3011483", "2760114", "301372", "2770005", "2573388", "3024391", "3021661", "1964165", "3022340", "2451414", "3020268", "3013374", "3025706", "3012269", "1910878", "2490235", "3024411", "3022354", "1966058", "1958301", "2537088", "2052611", "2101522", "3009138", "3006212", "2006022", "30011674", "3020704", "3015093", "2044817", "1965679", "1975162", "2763113", "3010159", "3009265", "3021695", "3016085", "3027107", "3003224", "2049243", "3027114", "2070373", "2698148", "1966183", "1895245", "2679290", "2026859", "2621843", "3012061", "1899974", "3021007", "3012615", "2775044", "1912556", "3012446", "3021925", "1993437", "3019605", "2509753", "1913946", "3006248", "3014158", "2084211", "2422766", "3016060", "3001459", "3005562", "3016813", "1982429", "3005042", "3014391", "1938212", "3017597", "3006603", "3000452", "3017595", "3003971"], ["362-7835", "384-3389", "360-2479", "403-9199", "357-4573", "407-3949", "407-8575", "333-2964", "409-6588", "397-5060", "379-5592", "332-5820", "410-7553", "368-8835", "353-6038", "413-4831", "394-7447", "389-2747", "400-4344", "363-1719", "373-3959", "403-7775", "332-5964", "336-8010", "375-2522", "369-8574", "339-1405", "354-2189", "366-8382", "333-6296", "370-5527", "398-4567", "341-3180", "419-9713", "350-1422", "406-4604", "383-2017", "411-5748", "420-9009", "342-6316", "351-7016", "421-3226", "379-4257", "416-3915", "415-4051", "378-3508", "359-5893", "384-3904", "364-9040", "371-6284", "401-3685", "366-2273", "334-4438", "421-2955", "362-6528", "357-3187", "397-6064", "364-8128", "398-8745", "339-4636", "362-5111", "336-6128", "418-6737", "399-2151", "413-4039", "420-2796", "417-2221", "400-4020", "418-3135", "328-8179", "366-2212", "404-9978", "392-1105", "347-1473", "400-8952", "408-8269", "345-5639", "345-5980", "385-6952", "329-8115", "357-5784", "383-8695", "355-2293", "340-9449", "402-1668", "363-2602", "404-4486", "334-6519", "415-2641", "415-2865", "358-3114", "379-9821", "334-5634", "402-3370", "374-8187", "382-8274", "399-1750", "342-8002", "334-3142", "353-6300", "332-2258", "416-9162", "395-1229", "354-3237", "417-3257", "331-3202", "365-2008", "406-7737", "332-2126", "341-4570", "416-7591", "397-4304", "409-7523", "395-1380", "337-1151", "336-5661", "409-3520", "343-6643", "341-8667", "347-8205", "336-1749", "370-9533", "402-8930", "389-6790", "346-5287", "415-3158", "355-8299", "370-8379", "416-8701", "394-6505", "347-2378", "364-5510", "359-1441", "402-1251", "370-9755", "343-5372", "356-4558", "363-5819", "366-7247", "346-2530", "343-2605", "386-8690", "388-9285", "390-8876", "388-4331", "414-9119", "410-4023", "400-6454", "371-4306", "364-1969", "370-1465", "404-6357", "331-4184", "415-6110", "353-3203", "411-8043", "369-9465", "360-6416", "378-6986", "336-8343", "360-8919", "336-5900", "411-5078", "411-6211", "370-9622", "341-5892", "376-5471", "373-2339", "406-4158", "372-1493", "341-1412", "415-1141", "359-7648", "374-9531", "353-2557", "331-8713", "354-2434", "378-7299", "376-9940", "382-3512", "338-1400", "352-9836", "419-9688", "371-1187", "363-4005", "404-7518", "396-4171", "383-8848", "388-8583", "384-9254", "342-5243", "371-9482", "402-7650", "365-8831", "410-5963", "400-2738", "340-9803", "374-5353", "400-9510", "406-2454", "396-2324", "347-3821", "364-3286", "405-3371", "407-7464", "374-5530", "353-8970", "380-7742", "329-9001", "406-4840", "411-1810", "414-1246", "363-1366", "370-9000", "383-5109", "386-1374", "413-2238", "366-6248", "376-7043", "355-9475", "366-6991", "392-6647", "384-7873", "328-6011", "364-1134", "329-6603", "388-5850", "416-2778", "341-1191", "378-4294", "366-6730", "399-3083", "374-1684", "327-6194", "389-7012", "373-2782", "364-9059", "417-7888", "422-7728", "343-4696", "343-2350", "337-4749", "422-5350", "377-1765", "336-1574", "342-7716", "359-5890", "400-6999", "345-9690", "363-5947", "392-2708", "345-1243", "329-9517", "365-9011", "415-2949", "336-2829", "354-8491", "357-7060", "398-8578", "411-8956", "392-1616", "362-2787", "399-6233", "418-5300", "410-3159", "343-4147", "342-3678", "343-9654", "394-3312", "417-4456", "393-6376", "400-1367", "385-8997", "400-8538", "401-6977", "370-9296", "359-8466", "360-1776", "343-7242", "417-5034", "393-2220", "416-5341", "386-4581", "420-5990", "392-5941", "400-3497", "354-4448", "355-9581", "366-8036", "393-8736", "392-3813", "393-6053", "368-9860", "334-8817", "380-3161", "406-7670", "392-5512", "386-1418", "393-5897", "414-6219", "366-4426", "353-3305", "415-5476", "333-5295", "359-6995", "405-8075", "421-9752", "355-3814", "351-2589", "404-4421", "343-9365", "359-7788", "353-9339", "386-7337", "389-6955", "412-6019", "385-7688", "401-4778", "408-6305", "346-8368", "381-9196", "366-4287", "390-2891", "368-5165", "397-9933", "362-8378", "378-9090", "347-9995", "329-3458", "385-2370", "400-7509", "386-2317", "343-1347", "335-3110", "394-8086", "418-7478", "336-5702", "415-8780", "380-6631", "395-1962", "385-1985", "392-6331", "420-7066", "370-8463", "352-7413", "415-6333", "384-6654", "391-8626", "341-3464", "330-5824", "352-6084", "411-1045", "417-2608", "406-1349", "371-8452", "348-1706", "334-3289", "352-4221", "410-3782", "362-7318", "411-9554", "391-8677", "419-5505", "352-9017", "353-7730", "340-3409", "396-4410", "363-5853", "349-9060", "337-6851", "364-1995", "375-2975", "355-1735", "384-8890", "411-3095", "347-6994", "359-7694", "402-1942", "336-4960", "370-5361", "347-5063", "348-7448", "357-1938", "332-1494", "415-8448", "402-3634", "354-7201", "404-4611", "410-4882", "405-6559", "395-2854", "329-6191", "410-5192", "419-6418", "412-3726", "388-8891", "390-9986", "388-8797", "393-4843", "331-5138", "358-1346", "337-1100", "385-5722", "362-7870", "378-6924", "354-8088", "362-4159", "393-5802", "398-1759", "369-8005", "385-4715", "350-2832", "354-9068", "355-2464", "365-9371", "351-9537", "330-6165", "356-7511", "408-4865", "340-3011", "341-9890", "399-2457", "392-8905", "330-1835", "395-6030", "389-4278", "334-9182", "379-2514", "420-9973", "364-7622", "410-2015", "419-3196", "413-2201", "399-9239", "373-5670", "351-2928", "415-8151", "422-9964", "360-6868", "353-9998", "402-2072", "401-5915", "355-3801", "408-6089", "377-7107", "340-6339", "332-1690", "409-8453", "401-9909", "402-9704", "332-6934", "410-4739", "422-8333", "362-8331", "409-1856", "343-2689", "416-5662", "388-7701", "330-5255", "351-4025", "418-4658", "409-3353", "420-3857", "399-1021", "370-8786", "381-2726", "348-9945", "378-7872", "330-8142", "373-8895", "408-5601", "405-3309", "336-5495", "329-5114", "381-7003", "377-7177", "383-4361", "377-7276", "350-2340", "343-7019", "337-3932", "336-3488", "332-5521", "355-7895", "418-5141", "358-3604", "359-9369", "402-5014", "414-4276", "369-4962", "363-3763", "327-6087", "399-3164", "374-1551", "415-9553", "354-4577", "394-6382", "332-1502", "375-8505", "403-5279"], ["PAL00065", "PAL02892", "PAL01363", "PAL06286", "PAL04121", "PAL02457", "PAL07225", "PAL07734", "PAL05259", "PAL06644", "PAL06888", "PAL05896", "PAL02163", "PAL04942", "PAL00383", "PAL04503", "PAL04494", "PAL00451", "PAL06483", "PAL03287", "PAL04190", "PAL01160", "PAL06899", "PAL06531", "PAL02117", "PAL03729", "PAL07948", "PAL04985", "PAL04905", "PAL01817", "PAL02391", "PAL06708", "PAL05686", "PAL06731", "PAL06284", "PAL02148", "PAL05017", "PAL06869", "PAL02186", "PAL06369", "PAL07484", "PAL04071", "PAL05800", "PAL07401", "PAL05532", "PAL06656", "PAL04328", "PAL00948", "PAL05072", "PAL07315", "PAL05203", "PAL07132", "PAL00651", "PAL07663", "PAL00023", "PAL04554", "PAL00672", "PAL06745", "PAL02548", "PAL00154", "PAL04272", "PAL07598", "PAL04842", "PAL03320", "PAL04530", "PAL05738", "PAL07314", "PAL03538", "PAL00634", "PAL00320", "PAL04965", "PAL00610", "PAL07747", "PAL00717", "PAL05031", "PAL01720", "PAL00995", "PAL07515", "PAL06760", "PAL01259", "PAL04847", "PAL00105", "PAL07328", "PAL05118", "PAL02275", "PAL00467", "PAL06147", "PAL05280", "PAL02410", "PAL07346", "PAL00335", "PAL00776", "PAL00439", "PAL01756", "PAL00570", "PAL07946", "PAL04128", "PAL06078", "PAL07884", "PAL06833", "PAL06282", "PAL04919", "PAL00682", "PAL01687", "PAL00641", "PAL07199", "PAL06319", "PAL01271", "PAL06946", "PAL00778", "PAL04474", "PAL07501", "PAL01129", "PAL07205", "PAL04312", "PAL02289", "PAL06450", "PAL06087", "PAL03952", "PAL00630", "PAL04132", "PAL00557", "PAL00726", "PAL01273", "PAL02182", "PAL07302", "PAL02074", "PAL07592", "PAL02337", "PAL01131", "PAL07911", "PAL04356", "PAL06929", "PAL06911", "PAL02187", "PAL01130", "PAL04351", "PAL00249", "PAL04310", "PAL03948", "PAL03931", "PAL05006", "PAL00638", "PAL02443", "PAL07227", "PAL06273", "PAL03896", "PAL02733", "PAL06986", "PAL05495", "PAL02763", "PAL07420", "PAL07282", "PAL07691", "PAL00037", "PAL02931", "PAL07529", "PAL06930", "PAL00953", "PAL07208", "PAL06380", "PAL02872", "PAL07530", "PAL04169", "PAL04653", "PAL07836", "PAL02545", "PAL03922", "PAL04866", "PAL00517", "PAL06976", "PAL05028", "PAL06452", "PAL00326", "PAL01830", "PAL01827", "PAL02274", "PAL04499", "PAL04325", "PAL02631", "PAL04174", "PAL01039", "PAL04031", "PAL06533", "PAL03328", "PAL04764", "PAL06710", "PAL07002", "PAL03671", "PAL02860", "PAL02454", "PAL05464", "PAL00115", "PAL05598", "PAL03270", "PAL07160", "PAL02190", "PAL01020", "PAL07508", "PAL05174", "PAL04853", "PAL05786", "PAL05069", "PAL02364", "PAL03936", "PAL07156", "PAL05766", "PAL02234", "PAL00559", "PAL05785", "PAL02648", "PAL06896", "PAL00090", "PAL07356", "PAL03704", "PAL04231", "PAL07021", "PAL00857", "PAL01228", "PAL00947", "PAL05813", "PAL05609", "PAL03507", "PAL06782", "PAL07131", "PAL04798", "PAL06618", "PAL01718", "PAL01291", "PAL04097", "PAL03759", "PAL04076", "PAL01187", "PAL02097", "PAL06926", "PAL04363", "PAL04345", "PAL02891", "PAL05052", "PAL02183", "PAL06935", "PAL06877", "PAL03564", "PAL02902", "PAL00124", "PAL04201", "PAL06582", "PAL06113", "PAL00397", "PAL02250", "PAL00612", "PAL05814", "PAL03298", "PAL07418", "PAL00400", "PAL01064", "PAL04889", "PAL05064", "PAL00810", "PAL06400", "PAL02591", "PAL03091", "PAL05207", "PAL04819", "PAL05431", "PAL06834", "PAL01707", "PAL06927", "PAL07813", "PAL05316", "PAL03926", "PAL05199", "PAL07166", "PAL00041", "PAL05452", "PAL00465", "PAL02512", "PAL06347", "PAL06394", "PAL06666", "PAL02650", "PAL03300", "PAL02399", "PAL05810", "PAL03929", "PAL02910", "PAL00436", "PAL00963", "PAL05278", "PAL03547", "PAL04361", "PAL07184", "PAL07745", "PAL07735", "PAL06540", "PAL02267", "PAL00418", "PAL07022", "PAL07329", "PAL00062", "PAL07570", "PAL04484", "PAL04323", "PAL04064", "PAL03518", "PAL05614", "PAL00604", "PAL02674", "PAL00784", "PAL00845", "PAL05753", "PAL03353", "PAL01184", "PAL05815", "PAL01746", "PAL03071", "PAL00180", "PAL04220", "PAL02783", "PAL02577", "PAL07468", "PAL01682", "PAL04651", "PAL04887", "PAL01977", "PAL07902", "PAL06867", "PAL06593", "PAL05498", "PAL06879", "PAL02659", "PAL07143", "PAL06780", "PAL01117", "PAL01252", "PAL04734", "PAL07405", "PAL00818", "PAL06598", "PAL06608", "PAL00586", "PAL02055", "PAL03751", "PAL05216", "PAL04316", "PAL04408", "PAL04909", "PAL02152", "PAL02544", "PAL04179", "PAL00413", "PAL07712", "PAL00952", "PAL07185", "PAL07513", "PAL06559", "PAL02230", "PAL00527", "PAL07395", "PAL01168", "PAL06825", "PAL03752", "PAL05287", "PAL04438", "PAL04114", "PAL03282", "PAL07720", "PAL05499", "PAL03483", "PAL00162", "PAL03278", "PAL00250", "PAL00309", "PAL04126", "PAL04762", "PAL02928", "PAL07872", "PAL01235", "PAL06070", "PAL01211", "PAL07776", "PAL05547", "PAL07297", "PAL03079", "PAL07190", "PAL02006", "PAL03087", "PAL01329", "PAL04393", "PAL07494", "PAL00055", "PAL04970", "PAL01757", "PAL07178", "PAL06520", "PAL04536", "PAL04046", "PAL00333", "PAL07399", "PAL02582", "PAL04222", "PAL06627", "PAL07673", "PAL06367", "PAL03318", "PAL07879", "PAL06080", "PAL07868", "PAL01048", "PAL05821", "PAL06219", "PAL06519", "PAL01349", "PAL04237", "PAL06823", "PAL06505", "PAL05733", "PAL06873", "PAL05713", "PAL05336", "PAL02553", "PAL06614", "PAL01811", "PAL02749", "PAL05362", "PAL07887", "PAL05572", "PAL06233", "PAL02466", "PAL04213", "PAL06648", "PAL06466", "PAL04886", "PAL03890", "PAL03897", "PAL06360", "PAL04033", "PAL06253", "PAL00218", "PAL01697", "PAL07444", "PAL06975", "PAL05794", "PAL04675", "PAL05968", "PAL04614", "PAL05505", "PAL07172", "PAL06870", "PAL03517", "PAL00603", "PAL03905", "PAL03327", "PAL01084", "PAL02764", "PAL04885", "PAL06866", "PAL02350", "PAL05797", "PAL03112", "PAL00837", "PAL02734", "PAL00099", "PAL00027", "PAL00866", "PAL07877", "PAL06074", "PAL04214", "PAL03492", "PAL02946", "PAL05662", "PAL05324", "PAL07175", "PAL02329", "PAL05120", "PAL04701", "PAL02503", "PAL06964", "PAL05264", "PAL03120", "PAL04696", "PAL04456", "PAL07784", "PAL04932", "PAL06658", "PAL05335", "PAL02210", "PAL03500", "PAL07819", "PAL07599", "PAL05773", "PAL07852", "PAL04085", "PAL04465", "PAL06981", "PAL06974", "PAL03958", "PAL04170", "PAL05067", "PAL07762"], ["384545", "15204565", "1254116", "6790125", "279316", "222374", "400966", "216227", "14882567", "1720563", "12559727", "2446000", "12049931", "221700", "389737", "15068262", "16869252", "1500036", "1042644", "19450929", "368609", "1743432", "1858163", "15564481", "10776045", "7323092", "16496414", "1604299", "1392578", "373839", "204471", "1116224", "1654266", "16077995", "1859308", "12693920", "1617279", "1338624", "17469278", "1702275", "14174352", "1987745", "11353755", "1510708", "1359123", "6930", "3752981", "508898", "13994205", "13932402", "2038301", "16068002", "1285886", "556769", "8276062", "6271479", "9125088", "1622795", "16259434", "10747664", "268011", "1394526", "1051280", "3728272", "356349", "1611759", "19811533", "1859371", "1747426", "271221", "3120435", "13082308", "1402291", "13747027", "15075401", "3984014", "13484088", "271352", "5288828", "15064418", "298911", "19453847", "364478", "15950673", "7950275", "11944351", "17458506", "202180", "8829035", "274741", "13303032", "1701270", "3631651", "13078788", "1416398", "14518081", "17941315", "10747147", "16133571", "1599167", "561034", "14113122", "12473246", "11664205", "1108769", "9104081", "15376104", "221258", "1123761", "1000968", "257822", "1438200", "9112178", "17464293", "88315", "7933078", "2035277", "16417979", "10917171", "13431553", "510439", "64607", "218379", "13932459", "389917", "8276901", "16491331", "273687", "8214146", "13949591", "11477418", "4072892", "372843", "365020", "3752964", "222378", "205676", "15962412", "64558", "7332573", "9098075", "5979871", "15483628", "4398717", "11225778", "11227613", "2578109", "1654433", "10744553", "271936", "1533505", "1325764", "15559149", "18886652", "555052", "2020859", "16088775", "230259", "9095988", "17573550", "15208000", "3878833", "5036906", "809178", "1629393", "15328231", "7960028", "11545122", "39311", "558456", "13934093", "16302147", "6835443", "3879127", "15624743", "4483170", "53884", "1056850", "1188037", "5060991", "1528851", "11273779", "19823138", "5046528", "560890", "16354760", "201779", "2781593", "9312798", "1657998", "1859359", "341875", "1286263", "5096966", "1587291", "17727792", "1573995", "19622338", "1452692", "16339098", "7441820", "14113070", "7326590", "218652", "9124599", "10740359", "360879", "1136154", "12678214", "16480944", "5307833", "1499197", "388683", "12589485", "3894176", "138872", "1209355", "16117778", "15868239", "15419828", "12508700", "15403882", "8109624", "15681923", "5755539", "2530595", "19487520", "216341", "92335", "11722232", "1339522", "1538348", "1406420", "3650067", "11227646", "13428794", "17423685", "9406747", "1449091", "14523868", "1542989", "3566", "1377221", "1292807", "1347347", "11626503", "6839842", "15605720", "1410506", "1616739", "3753120", "135126", "4264374", "326346", "996991", "8214136", "11291440", "1641710", "15457534", "1856987", "1338366", "16371056", "1501464", "11541603", "17460673", "5817478", "964397", "19822411", "4375443", "9095713", "1361246", "3983665", "1449273", "12716732", "3120429", "9631177", "3123284", "554324", "16341359", "5046492", "398968", "1570710", "1611192", "257860", "2484652", "1681919", "1185037", "4473424", "15570910", "15545617", "13948195", "400295", "15075559", "16443430", "2815920", "10917155", "16384648", "4774446", "11589961", "15571547", "1715808", "19739229", "13932975", "806612", "1004278", "1448747", "15161656", "1746019", "11392421", "1336162", "1598642", "3329390", "197441", "16420303", "7960318", "3751709", "12498870", "474786", "16440450", "1752809", "14347727", "19454033", "3729235", "4409065", "222738", "16208315", "17668017", "1578893", "14996653", "16445227", "13931304", "202150", "14690434", "15926796", "17466660", "10743147", "1680641", "16351416", "16356938", "1609608", "613881", "12049945", "1737158", "2958239", "1382681", "1292760", "278026", "1539981", "12473358", "16142320", "268572", "19259215", "5115908", "366236", "16352643", "1045125", "6886407", "329681", "15825675", "15025464", "7963288", "624895", "14085593", "6886575", "2264819", "388290", "14516246", "1513432", "5493576", "221181", "13929156", "13196679", "197152", "1254113", "383761", "476761", "13195293", "3286708", "1692112", "366114", "14019756", "17576357", "5218518", "10547311", "10775130", "11541484", "19383058", "210056", "222780", "16089967", "220773", "16445105", "11889793", "1580697", "1709335", "14492522", "1432895", "9", "11723066", "199859", "15410152", "83954", "593003", "335123", "400631", "15703804", "1882251", "320615", "15245732", "1434995", "7110781", "1705658", "19169380", "354012", "1947188", "620862", "3328985", "2434374", "366132", "16464835", "360732", "1678966", "5750588", "2729085", "1041248", "1581384", "19439538", "3255747", "16094209", "11226069", "13934432", "11202456", "3985957", "222640", "10744811", "15246020", "15454452", "13196973", "7962461", "1709337", "370465", "3728318", "16339126", "368960", "16445123", "7964748", "16443539", "9046509", "16074636", "2215806", "558035", "7994360", "14019782", "15277660", "384028", "481672", "13356049", "1642367", "1434708", "3336112", "1251658", "370551", "202578", "16093625", "1004466", "16246574", "5595415", "11919872", "2463699", "3359140", "1617289", "1416475", "356479", "401286", "2792684", "13194215", "552400", "1599014", "1618", "16422277", "1862142", "7940437", "45331", "4139760", "19822233", "11611671", "18651126", "2501811", "8273368", "15555529", "311439", "15309490", "16300279", "6173493", "11521204", "14177795", "4944606", "3943344", "19440024", "3752672"], ["5828", "7181", "28424", "2958", "19003", "487", "10839", "4297", "1405065", "2309", "0", "15", "6703", "7276", "1608", "2245", "0", "820", "21891", "716", "106324", "11252", "120", "5980", "17794", "3802", "299", "32143", "13366", "1011", "23", "17304", "68313", "687", "6540", "11155", "29917", "1329", "19243", "508793", "1571", "68364", "41458", "11545", "42", "29157412", "5919", "14994", "182", "1359", "19263", "5290", "36805", "22145", "6768", "23553", "1324", "1189", "56680", "6345", "965", "2234886", "27464", "322", "14739", "663", "15271", "939800", "49692", "76430", "148016", "37535", "1292", "2432", "2950", "283", "4616", "1298", "3141", "1391", "1181", "381", "2037", "15129", "2922", "16251", "11269", "51571", "563", "5206", "6141", "3833", "62471", "37139", "76244", "581", "2064", "9050", "5766", "49016", "4497", "584", "1995", "29466", "16704", "193", "695431", "1289", "45904", "10342", "5457", "634", "9901", "290184", "268", "178977", "9252", "3373", "726", "15589", "158", "172798", "9563", "147", "42921", "4350", "2525", "0", "47079", "294150", "124606", "4454", "5987", "1757766", "11", "1929", "2679", "20038", "689", "81", "848", "210", "13579", "956", "371", "7123", "383", "6508", "17581", "991", "12196", "629", "550", "19696", "2904", "7709", "3354", "857", "196", "32237", "7017", "127", "300943", "523", "754", "29366", "264", "10", "920", "10974", "1230", "8661", "57592", "5760", "1848", "2876", "60", "311", "769", "6276", "14533", "8605", "5777", "6234", "15034", "532", "1034", "494", "8597", "44", "5363", "15149", "1738", "25936", "196228", "92876", "1853", "2336", "432909", "118", "53", "1562", "2137", "1885", "3042", "18686", "1121", "1084", "7515", "6325", "2782", "273664", "6663", "280", "240", "2390", "5771", "27886", "36780", "430005", "518659", "1716", "7253", "36325", "3671", "42226", "136713", "5859", "938", "9182", "1103", "14894", "14141", "31055", "2008", "291", "1622", "9677", "320", "42410", "48", "1556", "15081", "39", "2141", "0", "11932", "16698", "7458", "68", "13300", "9086", "2088952", "37623", "32942", "2452543", "3513", "3778", "10636", "2531", "5562", "3428", "988", "2235", "3553", "4771", "1479", "20892", "11982", "2333", "32077", "438", "12195", "115", "78195", "41819", "46495", "10410", "69", "711059", "1818", "161", "17227", "18159", "3834", "117", "154", "11087", "24113", "6687", "4722", "78544", "224", "105734", "3253", "539", "0", "931", "3274", "2623", "5527", "1271", "3263", "171635", "5303", "66", "20382", "1773", "395", "51", "466", "85053", "2976", "6828", "1112", "78", "73102", "1362", "337", "580", "195630", "505", "6149", "2876", "84387", "6098", "310", "2355", "139", "0", "2972", "2761", "526", "3556", "10696", "796", "1278", "6686", "585", "15626", "417", "319728", "1122733", "7259", "948", "905852", "362", "4174", "58649", "936", "23705", "674", "7953", "1328", "12036", "9822", "24253", "194", "23662", "2991", "14233", "18132", "943428", "22085", "6", "439", "3448", "3357", "137", "42469", "4377", "6817", "3659", "1340", "187", "553", "867", "5342", "4267", "21133", "287", "2583", "186755", "37474", "411", "85", "1031", "235", "293", "6345", "10346", "18507", "1856", "23896", "1118", "2053", "99586", "371", "126", "4112", "1478", "37754", "12045", "118061", "1533", "3219", "2043", "17993", "5699", "17020", "2502", "20261", "510", "539", "5255", "4771", "606", "5637", "435", "9113", "761", "8167", "2582", "561", "778", "105889", "4721", "9274", "2831", "2193", "38", "6133", "91", "4690", "47937", "69", "32456", "11821", "5223", "5333", "8769", "1386", "747", "14085", "237", "12807", "3232", "602", "643", "14742", "697", "13042", "10051", "82599", "891", "7612", "33237", "64", "77432", "274563", "200", "3646", "232", "52", "34", "2585", "2069", "197", "19", "9578", "1902", "2859", "4195", "2099", "532", "2174", "2129", "185050", "54", "1821", "5133", "5235", "103009", "4105", "1708", "34244", "24078", "75", "140700", "3010", "304", "5169", "16138", "400", "46248", "3386", "2444", "10478", "2714", "0"], ["3963.07", "1426.8", "2682.71", "1487.64", "2028.26", "1214.43", "380.03", "5325.06", "2719.55", "228.38", "0", "884.72", "1261.83", "600.02", "467.81", "916.11", "577.09", "1475.55", "1866.13", "499.16", "998.34", "1546.74", "143.88", "251.71", "1590.48", "2861.69", "114.28", "0", "3047.8", "531.92", "63.09", "226.04", "1915.59", "2069.7", "2851.81", "111.27", "0", "690.46", "726.6", "53.21", "267.58", "1765.58", "733.02", "678.73", "2917.54", "145.21", "1002.7", "1184.54", "1412.63", "1299.84", "655.54", "0", "738.39", "413.37", "733.62", "2087.25", "1028.42", "1934.25", "1148.26", "7629.68", "648.1", "693.3", "27.37", "2232.72", "19812.43", "1990.98", "4185.04", "4568.11", "1214.58", "804.07", "2274.07", "447.74", "417.28", "17.92", "179.32", "229.52", "63.8", "729.81", "3768.89", "860.47", "247.61", "30.91", "2615.31", "642.45", "147.09", "178.9", "753.65", "440.54", "1005.6", "912.3", "2580.19", "3268.2", "2326.26", "730.17", "521.7", "384.21", "35.73", "164.16", "286.64", "1912.7", "901.0", "1594.59", "998.47", "1540.64", "0", "0", "54.68", "286.27", "64.7", "520.24", "849.86", "769.93", "623.08", "1020.03", "222.82", "3768.87", "562.4", "105.62", "1470.25", "1045.15", "2046.82", "0", "136.6", "747.37", "919.53", "542.81", "1561.72", "2314.62", "1257.23", "751.84", "5038.98", "5295.8", "668.22", "2976.74", "4230.02", "0", "106.58", "731.31", "5362.14", "1438.28", "182.43", "134.27", "1143.81", "527.42", "991.9", "735.51", "5365.29", "57.15", "34.82", "962.1", "821.77", "969.88", "193.76", "509.27", "102.15", "943.1", "1214.88", "1042.93", "1514.97", "529.09", "452.29", "478.92", "2257.46", "689.94", "1318.92", "1062.74", "2.17", "76.31", "5460.44", "1839.14", "1652.18", "0", "357.65", "319.47", "544.71", "0", "2850.12", "293.89", "1688.82", "294.57", "3032.54", "789.1", "0", "964.83", "265.01", "73.74", "435.77", "721.94", "1341.9", "0", "261.44", "0", "451.87", "379.05", "704.93", "147.07", "955.14", "2938.34", "656.11", "1103.11", "0", "926.55", "2698.39", "873.11", "0", "541.82", "442.73", "805.6", "842.36", "7528.75", "366.08", "2263.01", "2500.55", "3933.06", "2839.92", "283.97", "1233.32", "887.39", "0", "864.72", "214.23", "1666.66", "215.82", "716.61", "322.36", "1374.24", "140.32", "1212.38", "86.88", "322.47", "1122.03", "63.32", "2114.34", "946.45", "1899.92", "850.04", "1399.85", "942.17", "399.37", "502.13", "665.25", "5405.76", "440.52", "2491.94", "2690.27", "3198.97", "43.91", "1203.81", "542.08", "69.81", "533.2", "53.32", "318.89", "812.88", "5426.73", "937.65", "882.3", "1288.87", "2893.29", "763.53", "1021.37", "3480.34", "1815.34", "213.13", "437.12", "10.03", "1420.48", "150.76", "223.33", "2396.93", "17.08", "599.57", "747.26", "549.64", "223.57", "0", "5680.36", "1276.88", "709.99", "199.0", "338.99", "0", "269.36", "2864.6", "81.36", "527.75", "104.56", "634.51", "1399.81", "283.75", "811.96", "482.37", "1697.93", "581.1", "1621.07", "85.37", "986.25", "1970.17", "1375.61", "16.75", "2672.36", "3388.71", "1395.37", "2234.99", "89.89", "629.36", "402.39", "2406.71", "3121.1", "770.25", "867.2", "598.23", "0", "3917.4", "35.02", "590.88", "0", "131.29", "473.17", "17.13", "50.92", "598.5", "923.81", "23.92", "3382.47", "1239.13", "548.24", "0", "3147.71", "3220.64", "1102.13", "2248.86", "1770.08", "2419.54", "3685.17", "637.49", "6949.64", "539.63", "801.12", "0", "3647.63", "1240.55", "821.05", "2231.4", "1651.77", "3476.08", "923.83", "741.15", "1419.16", "67.02", "2112.15", "401.52", "39.37", "728.88", "686.86", "92.8", "250.86", "2197.52", "701.8", "822.26", "0", "77.47", "1047.54", "1339.1", "266.24", "602.77", "198.49", "890.57", "1152.65", "4407.14", "0", "0", "497.88", "76.17", "1347.09", "212.09", "2538.52", "2.23", "1350.12", "0", "2360.03", "318.86", "487.08", "1442.47", "3541.59", "795.63", "2591.46", "914.78", "672.79", "5736.31", "0", "850.23", "530.14", "827.95", "363.73", "1389.86", "82.52", "1965.88", "1641.07", "491.42", "1119.88", "458.61", "78.23", "445.89", "1599.31", "3926.38", "325.17", "449.08", "351.4", "2642.56", "515.22", "888.87", "927.54", "254.59", "721.82", "240.3", "0", "1126.16", "3924.99", "272.42", "284.13", "113.74", "915.79", "4268.93", "0", "1547.59", "0", "0", "0", "1433.23", "1222.81", "2748.87", "437.03", "609.2", "94.06", "97.53", "2860.77", "884.53", "0", "800.11", "158.03", "1352.59", "2353.48", "2069.88", "567.01", "94.25", "1198.04", "3239.31", "1081.67", "1112.47", "1786.36", "128.84", "1711.49", "2853.26", "8239.84", "146.67", "31.89", "443.98", "4207.57", "113.72", "1037.03", "1062.16", "0", "4976.82", "314.69", "5535.61", "327.13", "788.71", "670.28", "0", "1130.81", "9.67", "636.35", "2278.7", "1063.06", "1022.75", "507.92", "880.51", "295.04", "1300.8", "337.93", "205.9", "782.98", "2206.29", "20500.26", "563.76", "643.2", "2159.71", "1904.88", "1202.39", "569.27", "4474.41", "480.64", "350.19", "979.69", "2180.76", "868.85", "705.39", "2246.66", "151.49"], ["1594.75", "1930.45", "61.25", "5878.16", "5078.93", "647.81", "0", "4996.85", "1924.51", "1776.23", "571.26", "42.73", "124.8", "1070.86", "842.82", "70.5", "2620.76", "16.38", "316.85", "1831.4", "0", "935.72", "992.89", "6001.68", "757.33", "387.07", "1557.58", "626.58", "869.09", "122.56", "2357.04", "1401.21", "520.21", "59.12", "2373.93", "206.54", "4442.83", "0", "1025.38", "1403.02", "5847.32", "693.77", "245.58", "1881.88", "4210.36", "1109.58", "2113.46", "0", "234.97", "913.39", "397.2", "4146.09", "331.4", "553.68", "1375.19", "4350.97", "86.62", "328.96", "0", "6759.48", "105.89", "823.38", "242.89", "1924.54", "864.48", "260.8", "795.74", "980.76", "3218.89", "4811.86", "1295.54", "101.79", "2404.99", "917.91", "1949.26", "6098.81", "1348.65", "878.64", "829.51", "31.93", "471.16", "2122.19", "0", "530.83", "0", "338.04", "3231.84", "0", "2788.97", "252.06", "1560.55", "0", "1448.72", "25.26", "999.99", "564.13", "712.37", "314.52", "0", "326.39", "4175.17", "440.72", "3212.97", "283.86", "84.08", "2142.29", "988.65", "85.63", "1394.47", "116.22", "4253.62", "783.53", "753.59", "180.89", "239.8", "97.25", "1233.64", "1052.45", "30.26", "0", "1026.54", "480.57", "0", "998.48", "556.29", "41.12", "762.48", "374.41", "318.5", "346.31", "57.07", "531.42", "656.12", "3839.64", "179.86", "1715.3", "548.47", "135.86", "1491.07", "851.66", "281.58", "1233.0", "1500.24", "756.32", "948.36", "4054.11", "1159.42", "575.83", "156.43", "260.03", "3416.01", "372.34", "1551.57", "374.64", "4548.57", "875.04", "1619.24", "66.1", "687.8", "2144.08", "4283.43", "4123.76", "334.5", "277.74", "1702.96", "392.4", "876.43", "619.17", "390.55", "9782.29", "599.67", "1876.16", "1861.36", "265.7", "632.35", "999.19", "1008.64", "1068.49", "216.19", "851.14", "195.33", "1521.51", "2753.42", "390.02", "19944.76", "0", "2177.28", "212.36", "7215.44", "3800.46", "416.32", "2327.2", "206.74", "1140.95", "5330.16", "40.58", "21.08", "987.68", "290.72", "972.12", "38.49", "333.38", "1154.55", "631.74", "1207.77", "259.48", "0", "430.79", "5594.09", "1101.39", "5910.21", "1240.63", "1307.92", "164.07", "3446.33", "22647.34", "1168.09", "422.61", "297.2", "1707.54", "4637.65", "868.75", "1106.0", "1555.23", "210.35", "244.67", "3378.45", "0", "240.14", "525.09", "830.39", "1798.75", "663.74", "2100.04", "896.71", "9.23", "705.23", "1130.59", "1293.94", "447.77", "11063.8", "1288.52", "1842.22", "53.4", "0", "268.57", "70.51", "989.67", "0", "1760.6", "1367.13", "814.03", "68.46", "105.74", "3630.76", "1181.17", "0", "510.58", "847.44", "1112.72", "673.88", "1124.42", "748.72", "2550.48", "1283.28", "258.26", "1051.39", "340.66", "1158.75", "3337.14", "418.01", "16256.35", "1288.3", "872.04", "107.71", "2022.58", "883.63", "0", "983.52", "0", "905.61", "1651.93", "1082.79", "275.42", "640.0", "1216.02", "994.94", "83.7", "196.0", "823.43", "396.36", "1371.31", "1401.68", "4147.68", "170.13", "915.47", "2714.91", "451.58", "3662.94", "30.32", "957.3", "4363.2", "2132.12", "0", "16849.61", "1082.62", "529.22", "309.95", "751.73", "1651.21", "1613.04", "652.6", "3547.95", "1001.79", "0", "287.66", "0", "15949.43", "1806.24", "2172.54", "3363.36", "3310.22", "1613.26", "2022.88", "370.2", "852.72", "5060.55", "320.54", "6521.88", "167.77", "397.96", "0", "499.61", "7388.88", "146.43", "0", "1012.0", "707.98", "58.98", "1101.54", "0", "1194.55", "826.34", "284.05", "191.58", "148.63", "3571.99", "263.84", "411.08", "0", "228.75", "852.8", "562.17", "1837.08", "5072.44", "2256.18", "0", "219.05", "383.53", "421.81", "693.78", "10892.63", "2475.14", "1428.01", "338.55", "144.35", "4426.34", "4143.88", "1231.66", "0", "177.39", "812.6", "981.66", "221.79", "159.32", "5029.98", "1317.47", "607.67", "7647.64", "2140.73", "144.18", "5703.43", "2801.57", "7455.03", "85.87", "636.85", "364.04", "508.36", "3580.65", "1314.48", "1717.18", "177.21", "241.31", "2298.35", "1790.31", "132.5", "5580.53", "957.12", "0", "303.73", "615.09", "426.63", "1895.0", "797.22", "620.57", "524.91", "7250.54", "626.54", "1777.5", "2058.68", "1773.68", "249.64", "1907.01", "345.47", "506.48", "1529.64", "0", "5467.74", "3235.15", "288.76", "127.01", "4135.21", "8764.9", "738.25", "829.28", "995.62", "254.44", "788.75", "583.76", "416.18", "46.58", "365.91", "2510.32", "1139.83", "3879.01", "857.73", "644.37", "1471.9", "660.66", "1592.89", "0", "697.38", "1658.82", "117.04", "183.56", "2857.68", "123.23", "6952.02", "843.71", "114.87", "310.53", "1121.74", "962.16", "424.03", "1414.39", "2872.9", "1142.96", "185.68", "3757.13", "16.73", "759.2", "840.1", "847.0", "2796.83", "447.19", "1509.22", "470.17", "1140.4", "609.14", "709.6", "1599.58", "1645.12", "275.06", "2557.81", "0", "566.21", "1516.67", "314.87", "1502.88", "2042.03", "190.95", "574.26", "38.67", "97.02", "1268.55", "87.79", "0", "0", "1348.79", "671.41", "16920.92", "0", "707.9", "994.42", "1290.7", "362.99", "185.39", "316.48", "436.67", "674.77"], ["20140903", "20140818", "20140402", "20141107", "20140312", "20140520", "20140418", "20140822", "20140829", "20140413", "20140621", "20140225", "20140429", "20141028", "20140623", "20140630", "20141228", "20140426", "20141108", "20141221", "20140113", "20140601", "20140602", "20141115", "20141030", "20140710", "20140609", "20140207", "20140627", "20140330", "20141022", "20140504", "20140823", "20141231", "20140526", "20140719", "20140807", "20140612", "20140123", "20141216", "20141003", "20140219", "20141025", "20140808", "20140814", "20141031", "20141004", "20141214", "20140905", "20140408", "20140218", "20140121", "20141230", "20140722", "20141129", "20140107", "20140528", "20141009", "20140620", "20140927", "20140523", "20140319", "20140204", "20140929", "20140323", "20140328", "20140130", "20141110", "20140223", "20141130", "20140821", "20141215", "20140226", "20140618", "20141101", "20141017", "20140930", "20140524", "20141122", "20140420", "20140401", "20141106", "20140911", "20140721", "20140301", "20140318", "20140228", "20140209", "20140826", "20140816", "20141006", "20140220", "20140111", "20140211", "20140809", "20140625", "20140422", "20140517", "20140718", "20140325", "20141002", "20141223", "20141206", "20140720", "20140327", "20140501", "20140201", "20140511", "20140416", "20140707", "20140815", "20141015", "20140411", "20140902", "20140802", "20141029", "20140817", "20140615", "20140115", "20140626", "20140916", "20140827", "20141026", "20141124", "20140922", "20140828", "20140326", "20140725", "20141118", "20140622", "20140104", "20140124", "20140105", "20141127", "20141027", "20140116", "20140705", "20140726", "20140614", "20140403", "20141018", "20140227", "20140611", "20141201", "20140706", "20141125", "20140606", "20140430", "20141016", "20140513", "20140724", "20140603", "20140305", "20141112", "20140525", "20140803", "20140617", "20140202", "20141123", "20141212", "20140406", "20140907", "20140329", "20140717", "20141128", "20141211", "20140407", "20140311", "20140805", "20140313", "20140812", "20141126", "20141227", "20141116", "20140527", "20140919", "20140502", "20140918", "20140131", "20140506", "20141225", "20141209", "20140928", "20140310", "20140423", "20140217", "20140910", "20140610", "20140409", "20140806", "20140926", "20140801", "20141024", "20141013", "20141005", "20140605", "20141114", "20140825", "20141102", "20140616", "20140715", "20141217", "20141121", "20141119", "20140529", "20140917", "20141109", "20141205", "20140906", "20140331", "20140521", "20141219", "20140723", "20140909", "20140419", "20140221", "20140405", "20140306", "20140901", "20140716", "20140831", "20140914", "20140702", "20140414", "20140108", "20140619", "20140125", "20140915", "20140103", "20140117", "20140714", "20140206", "20140904", "20140421", "20141104", "20140417", "20140913", "20140205", "20140921", "20140729", "20140314", "20140730", "20140214", "20141229", "20140324", "20140713", "20140813", "20140629", "20140114", "20141023", "20141203", "20140216", "20140122", "20141210", "20140215", "20140613", "20140428", "20141020", "20140404", "20140110", "20140210", "20140824", "20140307", "20140106", "20140731", "20140712", "20141105", "20141207", "20140608", "20140924", "20140709", "20140819", "20140708", "20140208", "20140515", "20140101", "20141011", "20141007", "20140224", "20141103", "20141202", "20140112", "20140308", "20140410", "20141008", "20140503", "20140415", "20140703", "20141117", "20140810", "20140317", "20140701", "20141010", "20140302", "20140129", "20141021", "20141224", "20140912", "20140427", "20140530", "20140120", "20140522", "20140321", "20140128", "20140212", "20140704", "20140213", "20141113", "20140102", "20140512", "20140925", "20141222", "20140920", "20140711", "20141208", "20141213", "20140531", "20140514", "20140628", "20141204", "20141012", "20140412", "20140728", "20140507", "20140519", "20140830", "20140516", "20140908", "20140509", "20140804", "20140518", "20140923", "20140508", "20140309", "20140118", "20140425", "20141019", "20140222", "20140119", "20141226", "20141218", "20141014", "20140607", "20140320", "20140727", "20140303", "20140510", "20141220", "20141120", "20140624", "20140811", "20140203", "20141001", "20141111", "20140304", "20140126", "20140127", "20140604", "20140315", "20140820", "20140424", "20140316", "20140505", "20140322", "20140109"], ["08/14/01", "01/13/14", "08/11/14", "08/21/06", "02/09/76", "09/22/14", "06/04/12", "03/29/87", "12/26/06", "03/02/08", "11/28/99", "06/16/85", "09/20/04", "11/04/13", "01/10/94", "10/17/05", "06/01/10", "06/27/88", "05/08/11", "10/22/89", "12/06/10", "01/16/07", "03/06/06", "03/10/14", "08/14/00", "08/28/96", "10/15/07", "05/11/98", "03/10/14", "08/27/01", "05/27/08", "01/09/06", "06/16/03", "12/19/88", "01/12/09", "10/06/14", "02/22/88", "07/16/12", "08/15/88", "04/04/05", "12/03/12", "07/11/05", "06/26/85", "12/26/99", "06/25/90", "03/05/01", "02/11/02", "05/20/85", "08/17/98", "12/14/88", "02/20/01", "07/16/12", "12/04/00", "07/29/13", "10/10/07", "06/30/14", "06/07/04", "09/04/01", "05/02/05", "10/10/84", "03/07/88", "02/14/00", "09/05/06", "12/29/00", "10/08/12", "09/04/07", "07/16/12", "11/08/04", "05/07/12", "09/18/95", "09/08/14", "04/21/14", "12/02/13", "11/29/04", "07/21/03", "01/17/06", "02/22/05", "02/09/03", "08/07/06", "01/30/06", "02/12/96", "02/24/14", "03/16/98", "07/23/00", "04/01/85", "06/26/95", "09/23/85", "10/06/14", "08/20/07", "09/11/00", "04/14/14", "08/16/99", "01/26/04", "05/17/93", "06/12/89", "01/30/06", "09/04/01", "05/30/00", "04/12/99", "10/01/01", "07/17/06", "09/18/06", "08/12/13", "09/25/00", "04/02/01", "07/19/99", "08/11/14", "12/01/03", "02/26/90", "07/26/87", "05/07/01", "08/11/14", "05/15/95", "09/17/01", "07/30/13", "03/10/14", "04/02/03", "11/07/11", "08/02/10", "03/05/01", "06/09/08", "08/12/13", "09/03/02", "02/11/02", "08/31/87", "01/12/98", "04/08/13", "11/03/80", "05/16/94", "02/19/08", "04/05/93", "10/11/99", "03/11/98", "07/19/04", "01/23/95", "02/11/02", "10/03/05", "03/19/07", "02/25/13", "11/09/09", "10/03/05", "04/18/11", "02/14/00", "02/27/95", "03/25/85", "03/17/08", "05/14/07", "10/30/06", "06/26/05", "06/25/07", "08/12/13", "05/09/88", "01/28/13", "07/07/03", "03/30/86", "11/13/05", "06/25/90", "01/28/13", "02/14/00", "08/23/99", "11/05/12", "02/06/95", "03/06/06", "07/16/12", "09/07/99", "01/16/01", "05/31/05", "01/30/12", "12/03/12", "04/23/12", "09/27/99", "05/09/11", "09/17/06", "06/23/08", "08/16/10", "01/14/02", "12/08/10", "10/22/12", "11/23/87", "05/20/13", "01/02/89", "11/24/97", "06/15/94", "08/19/96", "05/28/96", "01/23/95", "12/21/92", "02/12/01", "10/06/71", "07/17/00", "11/06/01", "09/10/12", "03/26/12", "11/04/13", "02/06/95", "04/09/12", "02/21/06", "10/31/88", "03/05/01", "12/11/06", "01/18/10", "01/06/03", "09/18/95", "09/15/08", "02/29/88", "08/13/12", "08/17/98", "09/18/95", "09/22/14", "11/26/07", "07/18/11", "01/16/07", "07/23/07", "05/07/90", "12/02/13", "03/11/13", "07/03/00", "09/21/84", "11/13/06", "02/24/14", "08/12/13", "05/17/04", "12/30/02", "07/14/97", "09/29/14", "03/02/08", "07/25/05", "08/10/92", "08/14/95", "09/16/96", "01/05/09", "01/06/03", "11/29/04", "02/11/13", "04/17/78", "05/03/99", "11/11/12", "02/03/03", "10/05/98", "03/25/02", "12/01/14", "08/26/13", "02/26/79", "03/22/89", "08/14/89", "05/04/87", "07/01/13", "02/19/08", "11/22/10", "12/08/80", "08/12/90", "11/29/04", "07/10/06", "09/04/07", "02/22/94", "10/06/14", "08/16/04", "10/10/12", "03/19/07", "06/08/98", "02/24/14", "07/16/07", "07/20/81", "09/14/14", "08/21/06", "11/01/10", "09/07/83", "01/12/98", "06/02/03", "07/17/06", "10/08/12", "12/01/85", "03/03/08", "01/26/04", "07/23/00", "07/14/08", "08/23/04", "05/29/01", "04/22/02", "12/02/91", "01/03/89", "04/25/94", "08/02/93", "08/12/13", "10/31/05", "12/06/99", "07/15/12", "06/16/85", "08/06/01", "01/18/11", "03/16/98", "01/03/12", "10/06/85", "07/30/12", "05/01/06", "06/15/03", "04/17/06", "08/12/13", "11/29/04", "11/18/13", "11/22/10", "06/05/12", "09/08/87", "01/24/99", "03/10/14", "02/01/99", "09/08/87", "06/13/94", "08/15/94", "09/22/14", "09/04/06", "11/03/14", "08/19/96", "07/21/02", "09/24/96", "12/16/96", "03/26/12", "07/17/00", "03/19/07", "02/10/14", "01/22/02", "08/09/99", "06/01/10", "06/16/03", "08/11/97", "03/19/07", "01/19/86", "06/20/83", "01/27/14", "01/18/94", "02/27/12", "04/28/08", "06/19/89", "03/17/08", "08/15/88", "01/23/05", "04/25/88", "01/16/01", "08/20/07", "09/04/79", "04/17/06", "07/17/06", "09/12/11", "10/29/07", "01/09/89", "01/14/13", "06/07/04", "09/20/99", "07/09/01", "02/22/94", "01/30/06", "09/22/14", "08/12/13", "08/12/13", "12/08/98", "03/03/97", "09/22/14", "02/25/13", "03/26/12", "09/06/05", "07/02/01", "07/02/12", "08/08/89", "12/01/14", "11/26/07", "09/22/95", "05/14/07", "09/03/07", "12/01/80", "04/17/06", "11/03/03", "11/27/06", "12/27/05", "11/09/12", "09/13/10", "08/22/99", "09/04/01", "05/18/98", "04/29/02", "06/12/00", "04/30/01", "07/16/12", "01/16/90", "10/03/88", "03/11/13", "01/30/06", "12/01/14", "10/01/07", "01/28/13", "01/27/14", "06/20/88", "09/30/13", "07/06/09", "03/03/08", "06/30/14", "01/18/11", "01/27/14", "03/31/08", "02/19/08", "04/09/90", "04/09/02", "12/28/05", "03/20/00", "06/08/86", "09/04/01", "02/21/06", "02/11/02", "03/10/03", "11/28/05", "04/19/93", "11/29/99", "11/27/95", "04/08/13", "01/18/05", "01/28/13", "09/08/81", "03/26/12", "12/08/98", "08/06/07", "01/28/13", "06/17/13", "01/17/06", "11/18/02", "07/29/13", "07/24/06", "10/31/05", "10/25/99", "04/16/12", "10/11/09", "12/08/08", "06/01/04", "01/02/90", "04/09/12", "07/27/98", "02/13/06", "08/06/01", "06/27/05", "09/10/12", "09/09/04", "02/24/14", "01/18/94", "02/12/88", "10/12/98", "09/10/84", "10/16/06", "09/29/97", "10/13/08", "10/06/03", "07/14/08", "10/18/87", "08/16/78", "07/16/07", "10/06/14", "12/16/13", "03/31/02", "06/13/88", "07/09/90", "08/17/99", "06/17/13", "01/09/05", "05/17/04", "11/04/02", "06/04/12", "06/01/97", "09/02/08", "07/17/06", "03/19/07", "06/01/82", "03/10/14", "05/27/08", "09/23/02", "06/07/04", "06/19/00", "03/14/88", "05/22/11", "11/27/06", "01/18/94", "10/31/94", "09/21/87", "02/07/05", "09/07/03", "07/29/13", "11/08/04", "12/16/13", "10/16/00", "03/31/97", "08/04/08", "01/14/13", "01/14/13", "12/03/89", "03/10/14", "08/17/99", "12/06/99", "09/15/98", "10/17/05", "10/11/77", "08/27/12", "08/27/90", "04/16/00", "09/04/07"], ["40LDT62", "600LDV01", "30LDT21", "20LDV08", "40LDV19", "640LDV02", "40LDV29", "570LDT10", "40LDV37", "30LDT62", "570LDV09", "40LDT45", "40LDT61", "40LDT48", "290LDT08", "30LDT38", "40LDT51", "380LDT05", "30LDV33", "20LDT60", "20LDT45", "40LDT26", "30LDT58", "20LDT57", "660LDV05", "40LDT49", "30LDV18", "590LDV07", "30LDT14", "20LDT43", "30LDT39", "40LDV32", "30LDT34", "576LDV02", "30LDT62", "30LDV08", "380LDV08", "20LDT10", "20LDV23", "20LDT40", "260LDV10", "40LDV48", "570LDT04", "40LDT27", "380LDT01", "20LDV18", "20LDT01", "30LDT35", "30LDT76", "200LDV19", "30LDV03", "40LDT52", "570LDV11", "30LDV14", "40LDV27", "196LDV09", "20LDV07", "200LDT02", "640LDV02", "540LDT04", "570LDV17", "290LDT06", "20LDT49", "40LDV16", "40LDT32", "20LDT31", "20LDT19", "40LDV14", "120LDV02", "178LDV02", "30LDT43", "570LDT04", "30LDV10", "260LDV21", "30LDT51", "209LDT01", "570LDV09", "20LDV12", "20LDT10", "20LDV15", "40LDT42", "380LDV01", "540LDV02", "490LDV05", "660LDV04", "30LDT30", "40LDT37", "40LDV36", "40LDV22", "40LDT64", "540LDT03", "640LDV02", "30LDT33", "40LDV48", "30LDT65", "30LDT73", "40LDV03", "40LDV31", "40LDT48", "600LDV02", "40LDT50", "93LDT01", "640LDV03", "290LDT12", "40LDT34", "40LDT49", "540LDV06", "40LDT61", "560LDV17", "560LDV12", "40LDV26", "40LDT46", "540LDT03", "40LDT47", "30LDT62", "40LDT35", "40LDV24", "40LDT45", "30LDV03", "40LDT27", "20LDV06", "640LDV03", "40LDT32", "20LDT30", "30LDV09", "30LDT71", "40LDT58", "30LDT38", "20LDT25", "540LDT02", "460LDT01", "40LDV09", "290LDT10", "30LDT70", "20LDT65", "40LDT54", "40LDT30", "290LDT07", "200LDV17", "40LDV31", "30LDT09", "30LDV08", "30LDT10", "30LDT12", "178LDV02", "590LDV04", "40LDT46", "40LDT58", "260LDV18", "30LDV11", "40LDT25", "40LDV16", "20LDV12", "20LDV13", "20LDT18", "290LDT06", "30LDT38", "380LDT02", "570LDV14", "20LDT51", "30LDT76", "20LDT46", "20LDT07", "260LDT02", "30LDT11", "640LDV01", "540LDT03", "30LDT78", "20LDV21", "200LDV01", "40LDV24", "30LDT16", "20LDV20", "40LDT48", "440LDV03", "305LDV02", "570LDT18", "20LDT42", "178LDV03", "40LDT51", "380LDV05", "40LDT10", "590LDV02", "20LDT25", "209LDT01", "209LDT01", "290LDT02", "30LDV04", "30LDT37", "540LDV06", "30LDV27", "20LDT48", "260LDV19", "20LDT65", "20LDV22", "290LDT06", "30LDT11", "40LDT34", "440LDV04", "30LDV13", "40LDT44", "590LDV06", "470LDV05", "30LDV10", "30LDT53", "40LDV48", "20LDT62", "40LDT51", "20LDT57", "30LDT28", "20LDV08", "420LDV01", "20LDT50", "540LDT01", "30LDT39", "600LDV01", "20LDT07", "40LDT56", "640LDV01", "30LDT38", "20LDT35", "20LDT62", "196LDV10", "30LDT29", "30LDV09", "560LDV15", "30LDT15", "30LDT29", "560LDV09", "30LDT16", "570LDV05", "40LDT52", "570LDV06", "40LDT63", "40LDT57", "40LDV37", "40LDT26", "120LDV03", "290LDT13", "540LDT03", "20LDT55", "20LDV23", "120LDV04", "560LDV14", "40LDT57", "30LDV14", "380LDT07", "640LDV03", "600LDV04", "30LDT54", "492LDV02", "120LDV10", "40LDV37", "40LDT26", "20LDT64", "30LDT28", "30LDT31", "30LDT58", "20LDT54", "20LDT65", "20LDT19", "20LDV11", "260LDV01", "460LDT01", "30LDT11", "20LDT54", "40LDV22", "570LDT11", "30LDV31", "20LDV15", "30LDV30", "20LDV25", "40LDV07", "30LDT53", "30LDT48", "20LDT37", "20LDT55", "40LDT10", "30LDT44", "30LDV08", "30LDT28", "20LDT56", "178LDV03", "260LDV04", "40LDV14", "178LDV04", "40LDV36", "20LDV12", "40LDV04", "30LDT19", "40LDV19", "30LDT78", "570LDV19", "40LDT31", "20LDV16", "570LDV09", "570LDV03", "20LDT59", "20LDT43", "30LDV09", "570LDT14", "30LDT08", "30LDT73", "178LDV04", "30LDV26", "30LDT56", "40LDT66", "30LDT52", "260LDV12", "30LDT41", "196LDV08", "20LDT45", "20LDV22", "260LDV25", "40LDT64", "20LDT04", "290LDT12", "290LDT04", "40LDV07", "40LDT41", "40LDV28", "30LDT68", "540LDV05", "40LDV21", "40LDV47", "40LDV24", "20LDT09", "40LDT46", "20LDT11", "30LDT62", "350LDV01", "120LDV01", "30LDT21", "260LDV30", "540LDT02", "30LDT52", "40LDV44", "40LDV34", "40LDT32", "20LDT47", "40LDT42", "260LDV22", "20LDT53", "590LDV08", "20LDT11", "380LDT07", "290LDT10", "20LDT22", "20LDV22", "40LDV15", "660LDV06", "570LDV10", "20LDT39", "20LDV15", "30LDT35", "540LDT05", "40LDT47", "196LDV08", "178LDV02", "120LDV11", "20LDT18", "200LDV18", "570LDT11", "40LDT25", "30LDT32", "40LDT62", "40LDV23", "40LDV38", "40LDT31", "660LDV05", "540LDT02", "30LDV11", "20LDT34", "196LDV11", "40LDT53", "20LDT21", "660LDV05", "20LDV14", "30LDT23", "30LDT58", "570LDT01", "40LDT26", "40LDT52", "30LDT12", "20LDT32", "120LDV01", "40LDV49", "40LDV16", "40LDT29", "570LDV18", "570LDV06", "30LDT26", "590LDV08", "290LDT09", "540LDT01", "260LDV09", "472LDV01", "30LDT44", "20LDT46", "20LDT43", "490LDT04", "30LDT26", "40LDV39", "20LDT53", "20LDT53", "660LDV05", "640LDV03", "260LDV23", "20LDV20", "260LDV05", "40LDV32", "540LDT03", "40LDT35", "305LDV01", "30LDT45", "30LDV24", "20LDT55", "40LDT39", "490LDT01", "30LDT59", "30LDT19", "20LDT47", "30LDT68", "570LDT02", "20LDT65", "20LDT36", "570LDV06", "470LDV04", "590LDV03", "30LDT66", "40LDV33", "20LDT61", "30LDT77", "30LDT79", "40LDT58", "20LDT24", "30LDT05", "20LDV20", "380LDT08", "20LDT66", "720LDT01", "196LDV07", "40LDV21", "30LDT74", "540LDV04", "40LDV09", "40LDT31", "40LDT63", "260LDV02", "20LDT49", "440LDV04", "590LDV07", "200LDV08", "260LDV15", "40LDT36", "40LDT27", "490LDT05", "120LDV08", "570LDT13", "290LDT10", "40LDV37", "40LDT54", "20LDV24", "30LDV11", "30LDT33", "30LDT12", "20LDT03", "490LDT07", "178LDV01", "30LDT48", "30LDT10", "200LDV11", "200LDV08", "570LDV07", "40LDV24", "30LDV33", "570LDT09", "40LDV08", "470LDV05", "570LDT16", "290LDT11", "200LDV07", "40LDT54", "40LDV25", "30LDT60", "570LDV16", "120LDV04", "20LDT26", "380LDT06", "20LDT52", "20LDT24", "40LDT47", "20LDT42", "30LDV15", "40LDT51", "490LDV01", "30LDT59", "30LDT06", "560LDV16", "20LDV26"], ["560LDT02", "30LDT55", "20LDT21", "178LDV02", "20LDV05", "40LDT49", "305LDV04", "40LDT24", "30LDT14", "40LDT23", "30LDT12", "20LDT14", "20LDT07", "30LDV29", "640LDV01", "200LDV01", "40LVT01", "40LDT36", "30LDT24", "640LDV10", "30LDT29", "490LDT03", "20LDV07", "20LDT07", "40LDT56", "640LDV08", "338LDV01", "40LDT01", "30LDT49", "30LDT40", "40LDV13", "40LDT37", "40LDT04", "178LDV02", "265LDV05", "30LDT06", "20LDT51", "380LDT10", "380LDT10", "40LDT50", "570LDT18", "120LDV05", "570LDT13", "30LDV23", "570LDT02", "20LDT43", "200LDV05", "40LDT14", "20LDV17", "20LDT47", "30LDV14", "570LDT01", "30LDV25", "40LDV19", "30LDV24", "40LDV33", "40LDV24", "20LDV03", "40LDT29", "30LDT35", "20LDT26", "20LDV07", "640LDV06", "570LDT12", "30LDT54", "570LDV11", "30LDV26", "30LDV25", "380LDT07", "200LDT02", "30LDT20", "260LDV04", "20LDT11", "120LDV05", "30LDV05", "30LDT43", "40LDV23", "440LDV02", "570LDV09", "20LDT52", "30LDV20", "40LDT17", "20LDT23", "40LDV18", "590LDT01", "30LDT40", "540LDT04", "30LDT56", "30LDV11", "20LDT47", "40LDV13", "20LDT36", "40LDT13", "40LDT24", "40LDT21", "470LDV02", "30LDT34", "570LDV01", "40LDV01", "570LDT16", "20LDT29", "30LDT05", "30LDT13", "570LDT16", "570LDT18", "380LDT11", "40LDV03", "40LDV06", "40LDT36", "570LDV07", "380LDV05", "30LDT42", "30LDT09", "265LDV04", "600LDV01", "380LDT01", "380LDT03", "590LDV05", "20LDT04", "540LDT02", "570LDV11", "570LDT14", "30LDV02", "440LDV03", "120LDV07", "490LDT02", "20LDV03", "472LDV02", "20LDT15", "470LDV01", "490LDT06", "30LDT27", "30LDT37", "540LDT02", "30LDT65", "640LDV12", "196LDV03", "40LDT04", "20LDT14", "40LDT26", "600LDV05", "40LDV14", "40LDT35", "120LDV05", "40LDT05", "440LDV01", "640LDV08", "40LDV36", "40LDT21", "570LDT03", "200LDV05", "40LDV02", "40LDT02", "200LDV06", "40LDV35", "570LDT18", "196LDV07", "40LDT49", "40LDV07", "40LDT50", "590LDV04", "20LDT36", "30LDT49", "30LDT41", "20LDT18", "570LDT13", "30LDT03", "20LDT55", "40LDT22", "490LDT05", "40LDT18", "178LDV04", "380LDV03", "200LDV06", "40LDT44", "20LDV07", "30LDT45", "40LDV02", "40LDT42", "30LDT42", "200LDV05", "20LDT22", "570LDV11", "20LDT02", "540LDT05", "305LDV03", "560LDV13", "40LDT38", "196LDV05", "261LDT02", "420LDV01", "20LDT04", "40LDT09", "40LDV39", "570LDT03", "40LDV20", "30LDT20", "30LDV26", "30LDT47", "178LDV05", "40LDV34", "40LDV31", "30LDV09", "570LDT14", "40LDT52", "540LDT02", "40LDT08", "570LDT10", "40LDV29", "30LDV18", "260LDV02", "260LDV09", "380LDT06", "40LVT02", "40LDV01", "265LDV04", "200LDV05", "40LDT52", "20LDT07", "40LDT08", "20LDV12", "40LDT39", "20LDT39", "40LDT49", "40LDV22", "490LDT04", "40LDT13", "470LDV02", "20LDT07", "470LDV03", "260LDV12", "40LDT05", "30LDT55", "20LDT11", "20LDT48", "380LDT11", "40LDT04", "40LDT14", "40LDT52", "30LDT03", "20LDT34", "640LDV03", "30LDT25", "20LDV21", "30LDT16", "261LDT01", "20LDT38", "40LDV18", "20LDT52", "30LDT57", "40LDV19", "305LDV04", "40LDT08", "20LDV02", "200LDV02", "30LDT48", "196LDV07", "40LDT46", "590LDV05", "20LDV14", "570LDT16", "200LDT04", "200LDV01", "570LDV08", "290LDT08", "40LDT23", "470LDV02", "20LDT46", "40LDV03", "40LDT03", "590LDV05", "40LDV34", "20LDV15", "470LDV02", "40LDV17", "40LDV05", "30LDV12", "30LDT04", "420LDV01", "20LDV21", "20LDT48", "20LDT40", "20LDT18", "30LDT16", "40LDV28", "30LDT16", "20LDV03", "660LDV02", "40LDV10", "380LDV09", "40LDT12", "30LDT39", "30LDT03", "30LDT31", "540LDT02", "40LDV11", "40LDV02", "260LDV20", "40LDT40", "20LDV09", "30LDT15", "640LDV11", "260LDV21", "30LDT23", "305LDV03", "20LDV04", "40LDT36", "40LDT23", "590LDT01", "200LDV01", "40LDV40", "30LDT39", "540LDV06", "40LDT27", "260LDV10", "40LDT28", "40LDT27", "540LDT04", "380LDT06", "20LDT08", "20LDT44", "40LDT23", "260LDV05", "460LDT01", "30LDT16", "640LDV09", "260LDV23", "560LDV11", "640LDV04", "30LDT46", "220LDV02", "20LDT31", "30LDT26", "200LDV09", "40LDT20", "570LDT03", "40LDV10", "305LDV03", "200LDV02", "30LDT38", "20LDV12", "640LDV10", "380LDT05", "290LDT04", "540LDV04", "40LDV35", "40LDV20", "40LDT23", "290LDT08", "40LDT22", "120LDV07", "20LDT39", "30LDT02", "30LDV26", "570LDV12", "20LDT24", "260LDV21", "20LDT15", "196LDV04", "260LDV06", "30LDV12", "380LDT12", "20LDT43", "540LDT04", "290LDT04", "40LDT23", "560LDT01", "20LDT41", "40LDT11", "570LDT16", "200LDV01", "40LDV12", "40LDT36", "260LDV19", "20LDV01", "20LDT47", "40LDT50", "40LDT50", "570LDT04", "30LDV13", "30LDT48", "40LDT18", "40LDV04", "20LDV12", "120LDV01", "40LDV13", "20LDT43", "40LDV10", "40LDT27", "260LDV15", "30LDT10", "600LDV02", "261LDT01", "20LDT09", "260LDV11", "40LDT02", "40LDT13", "70LDV01", "30LDT21", "40LDV01", "261LDT02", "20LDT28", "40LDT28", "40LDT22", "570LDV10", "40LDT42", "40LDT50", "40LDT45", "40LDV34", "273LDT01", "540LDT02", "178LDV03", "40LDT41", "40LDT30", "30LDT50", "570LDT05", "20LDV18", "200LDV03", "30LDT61", "540LDT03", "30LDT23", "40LDT49", "640LDV09", "265LDV06", "30LDT42", "30LDT64", "420LDV01", "200LDV07", "40LDT08", "30LDT30", "200LDT03", "40LDT37", "40LDT02", "30LDV03", "20LDT38", "40LDV09", "20LDT17", "30LDT07", "40LDT02", "40LDT05", "20LDT35", "640LDV13", "260LDV01", "40LDT50", "20LDT27", "120LDT02", "460LDT01", "640LDV13", "20LDT18", "20LDT25", "20LDT27", "30LDV06", "40LDV32", "40LDT28", "40LDT17", "196LDV04", "40LDT28", "30LDV13", "40LDT16", "40LDV20", "30LDV04", "30LDT02", "40LDT51", "20LDT48", "40LDT38", "40LDT37", "40LDT55", "590LDV02", "200LDT03", "178LDV05", "20LDT22", "560LDV04", "20LDT04", "120LDV09", "196LDV09", "490LDV04", "30LDT36", "540LDV05", "20LDV01", "40LDT40", "30LDT41", "40LDT40", "20LDT07", "178LDV05", "540LDV05", "40LDV16", "40LDT25", "30LDT38", "20LDT05", "20LDT03", "570LDT17", "570LDT11", "20LDT47", "20LDV18", "40LDV37", "40LDT23", "40LDT25", "560LDV07", "576LDV01", "560LDV09"], ["5/29/15", "1/20/15", "6/4/13", "9/4/14", "8/20/14", "8/6/14", "1/7/16", "10/28/14", "10/27/14", "9/19/14", "1/27/10", "10/30/14", "5/19/15", "1/13/10", "6/18/13", "8/29/14", "10/14/14", "7/27/12", "9/3/14", "9/6/12", "8/1/13", "3/11/15", "6/3/15", "9/8/14", "8/2/13", "4/27/15", "2/16/15", "10/26/11", "3/12/12", "3/13/13", "8/4/14", "5/13/14", "5/26/15", "1/12/15", "8/12/13", "6/24/15", "4/8/15", "10/22/14", "6/30/15", "10/3/14", "8/12/14", "10/20/14", "8/21/13", "8/28/14", "12/3/14", "9/7/12", "10/23/14", "2/23/14", "2/10/15", "6/4/15", "10/28/14", "1/15/15", "3/28/13", "11/14/14", "5/7/15", "12/10/14", "10/14/14", "2/27/15", "7/31/15", "8/2/11", "2/24/15", "7/31/14", "7/14/15", "12/10/15", "7/9/15", "2/24/10", "8/4/14", "5/20/13", "10/27/12", "8/4/11", "12/19/14", "5/5/15", "2/24/16", "2/4/16", "2/8/16", "12/9/14", "10/27/14", "10/24/13", "2/10/11", "4/13/16", "11/24/14", "2/20/14", "4/15/15", "7/27/15", "9/10/14", "5/18/12", "2/23/16", "10/27/14", "8/22/11", "1/18/13", "12/20/13", "12/22/14", "11/20/14", "7/20/15", "1/14/16", "1/13/14", "2/10/10", "7/8/15", "2/3/13", "2/16/15", "1/24/16", "6/1/11", "2/17/15", "2/19/14", "1/14/13", "11/14/14", "3/26/12", "6/6/14", "4/21/15", "2/3/16", "3/15/16", "5/14/15", "10/1/08", "9/26/14", "6/13/12", "8/12/12", "5/20/13", "6/9/14", "8/7/14", "9/26/14", "6/30/14", "11/12/14", "12/12/14", "6/1/13", "6/20/14", "3/1/16", "7/31/13", "2/24/16", "4/18/15", "1/3/12", "2/1/13", "12/18/14", "3/20/13", "12/17/14", "2/4/15", "1/20/10", "4/26/16", "6/10/14", "12/10/14", "12/10/14", "12/1/14", "10/31/11", "3/29/09", "7/9/13", "5/27/15", "11/23/14", "2/2/15", "10/24/14", "4/16/12", "5/13/14", "8/2/13", "6/7/13", "1/3/16", "9/3/10", "5/17/16", "1/22/15", "12/10/14", "4/3/13", "9/13/13", "5/17/16", "1/18/09", "2/27/13", "3/20/13", "12/28/11", "9/17/13", "11/10/14", "4/12/15", "3/14/10", "11/24/14", "7/15/13", "10/12/11", "8/4/15", "8/1/14", "3/10/16", "2/9/16", "12/21/14", "7/11/14", "3/17/16", "2/26/13", "2/27/13", "4/13/13", "9/11/11", "1/1/10", "3/27/13", "1/12/15", "10/9/14", "8/5/14", "9/30/13", "5/2/16", "11/11/14", "12/22/15", "X", "1/21/14", "11/23/15", "11/11/13", "7/1/13", "4/20/11", "1/22/15", "8/18/12", "1/29/15", "10/24/13", "4/1/13", "3/7/14", "5/18/15", "10/14/14", "9/11/13", "2/16/15", "6/28/13", "7/31/14", "12/12/14", "X", "3/19/15", "2/18/13", "10/14/14", "2/28/14", "3/31/15", "2/18/15", "8/27/14", "7/25/12", "8/19/13", "11/9/15", "11/3/14", "5/20/14", "2/11/14", "8/5/15", "4/18/16", "10/23/14", "3/8/14", "11/30/12", "6/16/15", "5/22/12", "5/31/12", "7/22/15", "3/13/12", "5/21/15", "X", "6/15/15", "2/29/12", "12/8/11", "4/22/15", "7/28/15", "1/28/16", "1/20/15", "5/10/15", "2/25/15", "4/20/15", "11/1/12", "1/11/16", "11/13/14", "6/11/15", "9/18/14", "1/15/14", "1/14/13", "2/12/16", "2/1/11", "4/17/13", "2/25/14", "11/21/14", "10/15/15", "X", "7/20/14", "6/10/15", "9/10/13", "11/1/12", "4/6/10", "11/3/14", "11/14/14", "3/17/13", "8/13/14", "2/12/13", "7/10/12", "3/6/14", "1/29/15", "5/18/16", "2/19/14", "4/15/15", "12/16/15", "1/31/14", "11/3/12", "10/31/14", "11/24/14", "2/25/15", "8/1/13", "12/8/14", "2/13/14", "7/20/15", "11/10/14", "6/1/13", "1/7/16", "8/27/14", "8/3/11", "6/15/15", "11/11/08", "6/22/15", "5/30/13", "12/2/13", "4/26/14", "7/10/14", "2/22/13", "5/21/14", "1/22/15", "9/4/14", "9/8/14", "3/10/15", "4/26/15", "5/28/15", "2/20/14", "12/11/13", "2/18/11", "12/7/15", "5/13/15", "12/23/15", "8/9/12", "1/14/13", "8/23/13", "6/21/13", "7/13/15"], ["10250", "16250", "7000", "14500", "3550", "208000", "2750", "300", "6400", "1275", "1625", "8200", "55000", "5700", "82500", "64500", "17750", "68500", "11250", "40250", "11000", "52000", "13250", "6300", "450", "7100", "37500", "7000", "88500", "11250", "75000", "297500", "16500", "4850", "7000", "70500", "64500", "14500", "16500", "5500", "11000", "193000", "6300", "12750", "228000", "19000", "41500", "4250", "16500", "0", "10250", "5600", "7300", "25250", "26000", "64500", "5700", "32500", "2000", "132000", "18250", "16000", "3950", "282500", "17500", "6800", "1220000", "300000", "20500", "12250", "350000", "1075", "7800", "1275", "23750", "1375", "10000", "800", "39250", "1550", "4950", "10750", "7100", "4400", "50000", "1525", "210000", "24000", "21250", "21250", "830", "985000", "8000", "12000", "36000", "118000", "168", "31500", "12500", "3800", "97000", "19500", "930", "3450", "2100", "100", "2475", "73500", "8700", "15250", "487500", "900", "5000", "1625", "59000", "5100", "5200", "24750", "1325", "8200", "2350", "322500", "1850", "9000", "25250", "600", "142000", "2550", "28000", "1600", "9800", "53000", "21250", "5900", "930", "900", "28500", "88500", "970", "56500", "21000", "88500", "412500", "8500", "29000", "11250", "6200", "18000", "5600", "6000", "27500", "970", "58500", "13000", "12250", "12000", "39500", "49500", "109000", "39000", "94500", "61500", "14000", "1800", "91000", "600", "15500", "0", "4750", "11500", "6000", "32750", "5500", "12250", "6900", "8400", "1225", "73500", "18500", "35500", "3250", "76500", "68500", "2800", "600", "470000", "1475", "41750", "5900", "6700", "38750", "3650", "10000", "1150", "31250", "12000", "2650", "100", "92500", "3750", "6300", "5800", "23500", "8300", "6200", "182000", "40250", "10750", "53500", "190000", "10500", "69000", "62000", "73000", "23500", "24000", "18000", "10750", "11000", "18750", "6000", "4750", "10500", "4150", "23750", "2850", "57000", "137000", "17750", "4850", "20000", "33750", "37250", "7100", "10880000", "3600", "24250", "14250", "67500", "22250", "3050", "2475", "5400", "34750", "20000", "600", "27000", "44750", "3650", "27500", "13500", "0", "116000", "29750", "24500", "2800", "17000", "99000", "118000", "12250", "10000", "23500", "6300", "26250", "10500", "20500", "152000", "9600", "228000", "6900", "2750", "198000", "8000", "4200", "6300", "600", "34000", "1900", "11750", "7300", "23500", "61000", "4600", "78000", "41000", "600", "24000", "2500", "8700", "43750", "640", "0", "8700", "6800", "42750", "6900", "42250", "43500", "34500", "910", "45000", "13000", "1650", "26750", "11250", "122000", "6200", "600", "171000", "12500", "145000", "3900", "44250", "219000", "4450", "615000", "109000", "75000", "8700", "1450", "2950", "7900", "10000", "80500", "5500", "5900", "242000", "24500", "15500", "122000", "0", "3850", "24500", "317500", "10750", "11250", "2075", "23750", "4400", "3550", "6300", "159000", "95500", "5100", "72500", "2500", "72500", "31250", "6600", "177", "100", "2900", "14000", "11000", "7300", "11250", "1275", "20750", "21750", "600", "13250", "166000", "26250", "20750", "10500", "2950", "5500", "2600", "3200", "27500", "437500", "550", "5600", "11250", "600", "28500", "2750", "71000", "5300", "2500", "23250", "300", "16500", "24000", "12500", "660", "3550", "600", "2600", "10500", "10500", "810", "6800", "8300", "910", "2500", "5300", "23500", "10750", "1475", "5100", "415000", "18250", "140000", "19250", "218000", "19250", "225", "40000", "12500", "75500", "60000", "25500", "15250", "2900", "5300", "18500", "29750", "17750", "26250", "118000", "1920000", "8700", "26250", "14250", "3200", "83000", "600", "5200", "6200", "105000", "300", "0", "30000", "36000", "2650", "11250", "10500", "12500", "580000", "72000", "79000", "18500", "146000", "115000", "3200", "570000", "2750", "12500", "900", "59000", "31000", "108500", "16750", "3000", "26750", "10250", "4000", "7400", "20000", "11000", "4850", "9500", "75000", "22750", "21000", "25750", "57000", "525000", "21250", "5900", "90500", "9500", "1700", "5200", "37250", "40500", "5500", "15500", "14500", "40250", "257500", "20000", "11250", "4850", "12500", "72000", "14000", "23500", "54500", "95500", "15000", "6800", "174000", "540", "97000", "1975", "42000", "6450", "12750"], ["WA1 4RQ", "WA1 2EL", "WA1 1QB", "WA1 1QB", "WA2 8LT", "WA1 4SH", "WA13 9LN", "WA4 1LT", "WA5 5UH", "WA2 8TR", "WA1 4AT", "WA1 1PJ", "WA1 2NL", "WA4 6NJ", "WA1 1HU", "WA4 3AE", "WA4 1NR", "WA2 7AB", "WA3 6AE", "WA2 8JJ", "WA5 8WD", "WA2 8QT", "WA4 6PS", "WA1 4SG", "WA5 1BA", "WA5 5UG", "WA3 6AE", "WA1 4RZ", "WA2 7JQ", "WA3 6AT", "WA4 1GD", "WA4 1AZ", "WA1 3SP", "WA1 2TF", "WA4 6PS", "WA4 4NU", "WA1 4RT", "WA3 6AE", "WA5 5YW", "WA5 1UP", "WA2 8QT", "WA4 6PU", "WA1 1PG", "WA3 6AE", "WA2 7AF", "WA2 8ST", "WA3 6BU", "WA1 1QE", "WA4 6PS", "WA5 0AD", "WA13 0BA", "WA3 4HY", "WA1 1QE", "WA5 1HG", "WA3 7QZ", "WA5 3AA", "WA1 4RF", "WA1 1XG", "WA5 5RJ", "WA2 8ST", "WA4 6PS", "WA1 2QQ", "WA1 4SH", "WA1 2EN", "WA3 6BL", "WA4 6ZE", "WA1 2EN", "WA2 8TX", "WA3 4EL", "WA2 8TX", "WA1 1QE", "WA5 1ET", "WA1 2LY", "WA5 5YW", "WA5 1QX", "WA3 7PB", "WA1 4EP", "WA1 2HT", "WA2 7TT", "WA1 2RU", "WA3 6AY", "WA3 6SB", "WA1 4AG", "WA4 6SG", "WA1 1QF", "WA3 7PH", "WA5 1QQ", "WA5 5TN", "WA1 1QE", "WA4 5EQ", "WA3 4HA", "WA3 5LL", "WA13 0ER", "WA3 5QQ", "WA1 4AG", "WA1 1TD", "WA5 1ED", "WA13 0SW", "WA3 7QZ", "WA5 8HF", "WA1 3HY", "WA2 8TX", "WA4 6EF", "WA2 8TX", "WA2 8TX", "WA2 8JA", "WA2 8RE", "WA1 3HY", "WA5 2SG", "WA4 4QT", "WA3 7BH", "WA4 6PS", "WA13 0RW", "WA5 5TN", "WA1 1UG", "WA2 7LT", "WA1 4SG", "WA3 7BH", "WA3 7WE", "WA13 0HP", "WA1 1UG", "WA2 8TX", "WA3 6SB", "WA5 4HX", "WA13 9DQ", "WA4 4DN", "WA1 3NJ", "WA5 7ZT", "WA2 8QY", "WA1 2SS", "WA2 8NX", "WA1 1QE", "WA2 7AF", "WA3 5SW", "WA1 2EQ", "WA5 4BS", "WA5 5TN", "WA1 4RQ", "WA5 8WD", "WA3 4EJ", "WA1 1PG", "WA4 6SG", "WA5 5TN", "WA2 9UB", "WA1 1QE", "WA2 8RF", "WA4 6QE", "WA1 2QG", "WA1 2RF", "WA4 1LT", "WA3 6GP", "WA4 1PN", "WA4 4SN", "WA13 9AR", "WA1 2DN", "WA1 2EN", "WA2 7LT", "WA4 1JY", "WA4 1PL", "WA1 4RR", "WA3 7PG", "WA3 6GA", "WA1 2EE", "WA5 8WD", "WA5 3LG", "WA3 6DB", "WA2 7XE", "WA1 3NJ", "WA1 1XR", "WA1 4RJ", "WA4 6NU", "WA2 7HJ", "WA2 7NG", "WA3 6FW", "WA2 8QT", "WA1 1NJ", "WA2 7RL", "WA4 2QU", "WA3 6SB", "WA2 7HW", "WA5 8WD", "WA4 6AD", "WA1 2EN", "WA1 1SB", "WA5 1RJ", "WA1 2BD", "WA12 4XX", "WA2 7LT", "WA5 1LX", "WA1 4RQ", "WA1 1XP", "WA3 6BU", "WA2 8TX", "WA3 6FW", "WA2 9BW", "WA1 1AA", "WA13 9BY", "WA4 1EB", "WA1 2DN", "WA4 1PL", "WA5 7XQ", "WA4 6HL", "WA1 2QG", "WA5 5RJ", "WA3 6AR", "WA4 6QF", "WA1 1JP", "WA4 6FD", "WA12 4XX", "WA4 6HN", "WA1 1EF", "WA3 6BP", "WA5 8AB", "WA5 2LZ", "WA2 8TX", "WA3 6AE", "WA1 1UH", "WA5 4HE", "WA1 4RF", "WA2 7AF", "WA2 8TX", "WA4 6PS", "WA2 7LT", "WA1 2QQ", "WA1 1EH", "WA4 6PS", "WA1 1JA", "WA5 2JW", "WA3 7PG", "WA1 2EN", "WA1 4AW", "WA13 0AB", "WA2 7PG", "WA1 1TS", "WA1 2AY", "WA1 1QP", "WA5 1AD", "WA2 8RF", "WA3 7QN", "WA5 8WD", "WA3 7BH", "WA2 7DE", "WA5 3EA", "WA4 6LL", "WA3 7BH", "WA4 6PS", "WA2 8NT", "WA4 1AG", "WA1 4RQ", "WA3 6PL", "WA5 5UG", "WA2 8TX", "WA2 7UW", "WA1 2EN", "WA1 1UD", "WA5 8WD", "WA5 8SD", "WA13 9PR", "WA4 2AN", "WA5 2UL", "WA4 6LE", "WA2 8QP", "WA1 1QE", "WA2 7JE", "WA4 4SN", "WA13 0HX", "WA3 6ZN", "WA1 2HE", "WA13 9PR", "WA1 2LY", "WA2 7NT", "WA1 1QE", "WA1 1EJ", "WA2 7DH", "WA13 0ED", "WA2 8QY", "WA3 7PG", "WA1 4JQ", "WA1 3AF", "WA5 4BN", "WA1 1XD", "WA2 8TX", "WA4 6PS", "WA3 6FW", "WA4 6NL", "WA1 2HS", "WA3 7QZ", "WA2 7NH", "WA2 7PG", "WA3 7QZ", "WA13 0HU", "WA4 6RZ", "WA1 1QP", "WA5 8AH", "WA3 4EJ", "WA4 6PS", "WA2 7LT", "WA13 0RU", "WA1 2HT", "WA5 5QA", "WA1 4AG", "WA3 6BN", "WA1 1QA", "WA4 6HL", "WA1 1QP", "WA1 3SN", "WA3 6BU", "WA3 6AE", "WA3 6GE", "WA5", "WA2 8QP", "WA2 7RU", "WA1 3HY", "WA4 5NR", "WA2 7LP", "WA1 1XP", "WA2 0HD", "WA4 1AZ", "WA3 6PJ", "WA5 8WD", "WA5 0BX", "WA5 8WD", "WA3 6PR", "WA2 0DU", "WA5 5QE", "WA1 1UH", "WA4 1JW", "WA2 8QG", "WA2 7LT", "WA4 6HL", "WA5 2UB", "WA1 4AU", "WA5 7YA", "WA4 3HJ", "WA2 7TT", "WA1 1SG", "WA1 2EN", "WA1 1QP", "WA3 7EQ", "WA4 2DH", "WA1 4RT", "WA5 1DD", "WA1 3DF", "WA1 2TW", "WA5 4PY", "WA1 1QE", "WA2 8TX", "WA3 7BH", "WA2 8JA", "WA3 7PQ", "WA2 8QP", "WA2 8HJ", "WA2 7AY", "WA5 7YA", "WA1 4RW", "WA3 6QT", "WA2 8JP", "WA2 8RE", "WA3 7QZ", "WA2 7UW", "WA1 3BD", "WA4 2RH", "WA1 1PS", "WA3 6PJ", "WA5 2DS", "WA3 6SB", "WA5 1LX", "WA5 5NF", "WA4 6SG", "WA4 1QZ", "WA2 8QY", "WA1 2EL", "WA1 2SS", "WA4 6LG", "WA4 6PS", "WA1 1QE", "WA1 1QP", "WA3 6BN", "WA3 6AY", "WA3 6AE", "WA2 8QZ", "WA5 5ZT", "WA1 1DG", "WA2 0JP", "WA4 1LJ", "WA5 1LX", "WA5 1AA", "WA5 7ZT", "WA2 7LW", "WA5 5TE", "WA1 4RQ", "WA1 1NB", "WA1 1JG", "WA3 7QZ", "WA5 1LA", "WA4 6PS", "WA2 7SQ", "WA1 1HE", "WA4 6PS", "WA3 7GB", "WA2 ONB", "WA2 8NU", "WA2 8TX", "WA1 1QE", "WA3 4EH", "WA1 4GB", "WA5 8WD", "WA1 4RQ", "WA3 6AX", "WA3 6AE", "WA1 1NJ", "WA1 1QE", "WA1 2HF", "WA1 4RF", "WA2 0HL", "WA1 4AT", "WA5 1EB", "WA2 8TX", "WA2 8RW", "WA1 3QY", "WA4 6LG", "WA2 8QT", "WA13 9AR", "WA2 0HD", "WA5 2LZ", "WA4 6SG", "WA1 2HY", "WA1 1QE", "WA5 8WD", "WA5 1HG", "WA4 6HA", "WA1 1EZ", "WA3 6AE", "WA3 6BH", "WA4 6PU", "WA3 7PG", "WA1 4AL", "WA5 2EY", "WA1 4PB", "WA3 7BH", "WA4 6PS", "WA3 6NU", "WA1 1QE", "WA4 1PL", "WA1 1QP", "WA1 1UD", "WA3 7PB", "WA3 6FW", "WA1 4HJ", "WA3 7PQ", "WA1 3AF", "WA1 4GD", "WA1 3AB", "WA2 8QN", "WA1 4SG", "WA5 2UT", "WA4 2NQ", "WA3 7QZ", "WA5 5RJ", "WA2 9LW", "WA5 4HX", "WA2 8UF", "WA5 1EB", "WA3 7PQ", "WA3 6GP", "WA1 2RF", "WA1 3HY", "WA3 6AR", "WA1 4AE", "WA4 1JE", "WA2 7LT", "WA4 6PS", "WA2 7LP", "WA1 3UJ", "WA2 9BX", "WA5 3LQ", "WA4 6QQ", "WA2 9SA", "WA2 8QY", "WA3 6DD", "WA1 4AG", "WA1 3BD", "WA1 3LS", "WA1 2BG", "WA1 2QH", "WA1 1QE", "WA1 1PJ", "WA2 7LT", "WA1 1QB", "WA3 4ER", "WA1 3NU", "WA3 6BL", "WA1 2PF", "WA4 6QQ", "WA1 4RQ", "WA1 2HT", "WA2 8TX", "WA3 6NJ", "WA5 5JU", "WA1 2AE"], ["DL8 2SD", "YO61 1SL", "YO61 4BB", "DL6 2AB", "YO7 1NB", "DL7 9QR", "YO7 1SL", "TS9 7AQ", "DL6 1NH", "DL8 1EQ", "DL7 0SB", "TS15 9PW", "DL6 3PY", "DL6 3EA", "DL7 9DX", "YO7 3AB", "DL7 8PP", "YO61 1RT", "TS9 5EW", "TS9 6DE", "YO61 1DT", "DL8 1HZ", "YO61 4NN", "DL6 2LB", "DL7 8PQ", "DL6 1JG", "DL7 9HW", "DL6 2LB", "YO61 1JU", "DL6 2EH", "TS9 7BL", "DL7 9HP", "DL6 3RE", "DL10 6AT", "YO61 1RY", "YO61 3EG", "YO7 1JF", "TS9 6JX", "TS15 0AS", "YO61 1RT", "TS9 5DQ", "DL7 9QW", "DL7 0PN", "DL7 9NG", "YO7 2PR", "DL7 8JZ", "DL7 0DH", "TS9 7AS", "TS9 6EP", "YO61 3EF", "DL6 3NG", "DL7 9SS", "DL6 2AB", "YO61 3EG", "YO7 1PL", "DL6 2AB", "DL6 2UA", "TS9 7JS", "DL6 1DP", "YO61 1EB", "TS9 7HA", "TS15 9QB", "DL7 0SB", "TS9 5NB", "YO61 3HJ", "DL6 2PZ", "YO61 1EB", "YO7 1PL", "DL7 9EH", "TS9 5JL", "DL6 3PY", "YO7 1JN", "DL7 8PP", "YO7 1DA", "DL8 1ED", "DL7 0SB", "TS9 6DE", "YO21 2RN", "TS9 6JX", "YO61 1SL", "YO7 1BB", "DL7 0PX", "DL7 9QW", "TS15 0BA", "YO7 1QL", "DL8 1AN", "DL8 2PW", "DL8 1PE", "YO61 3AD", "DL6 2LB", "DL6 3HQ", "DL6 2LB", "YO7 4RS", "YO61 1UB", "YO7 3AW", "TS9 6LL", "DL6 2EH", "TS15 9QB", "YO61 3AF", "DL6 2AB", "TS9 5NB", "DL7 8LU", "DL7 0SB", "DL6 2EQ", "DL8 2AT", "DL6 3HQ", "DL8 1ED", "TS9 7AQ", "YO61 1DP", "YO7 3HE", "YO61 1LA", "DL8 2SD", "DL6 1NH", "DL7 8LU", "DL7 8QR", "YO7 4AB", "DL6 2RE", "TS9 5AD", "DL6 3BL", "TS9 6AA", "DL7 8JX", "TS9 5DG", "YO7 3AB", "TS9 6QA", "TS9 7JN", "DL8 1EQ", "DL6 2UD", "TS9 5NB", "TS9 6BW", "DL8 2EQ", "DL7 8QR", "YO7 4AZ", "DL6 1JG", "TS15 0DB", "YO7 4JU", "DL7 8QR", "DL7 9DW", "DL7 8JX", "YO7 3EP", "DL7 0SB", "YO7 2PH", "YO61 1EB", "YO61 1DW", "DL7 9QW", "YO7 1RX", "YO61 3PS", "TS9 7BL", "YO21 2RG", "YO61 4TZ", "DL10 6AT", "YO61 4RF", "YO7 3AB", "YO30 1AA", "DL8 1AW", "DL6 3PY", "DL6 1LP", "YO61 3EG", "DL7 9HB", "YO7 1LB", "TS9 7JN", "DL6 3NA", "DL7 8LZ", "YO61 3EG", "TS9 6DE", "DL6 1AE", "TS15 9PH", "TS9 6LL", "DL6 2AB", "YO7 1NB", "DL6 3BL", "DL6 2AB", "DL7 0PX", "YO61 3AG", "DL8 2HQ", "DL6 2SG", "YO61 1RT", "DL7 9AN", "YO61 4TZ", "YO61 4AH", "TS9 6DE", "DL6 1JG", "TS9 7JR", "DL6 3PA", "YO7 1QS", "DL10 6AT", "DL6 3NA", "DL8 2HX", "DL8 1AN", "DL8 1DD", "DL10 6AT", "YO61 3EG", "DL7 9AY", "DL7 0QP", "DL7 0QX", "YO61 4PW", "DL6 1JG", "TS9 7AQ", "DL6 2UZ", "DL6 3TD", "YO61 3AN", "DL7 0LQ", "TS9 6DE", "TS9 5AD", "DL7 8LU", "YO61 2PS", "YO7 4RA", "YO7 1QS", "YO61 4PY", "YO7 1RX", "DL7 8NL", "YO7 1LY", "DL7 0PE", "DL6 2SG", "DL6 1ED", "TS15 0JL", "DL8 1AN", "DL7 0SY", "TS15 0BA", "DL7 9HG", "YO30 2DF", "DL6 2NH", "TS15 0AE", "DL6 2AB", "TS9 7BB", "YO61 3EF", "TS9 6DE", "YO61 1RX", "YO61 1RT", "DL7 0DH", "DL6 2TX", "DL6 2LW", "DL6 1JG", "YO61 1DP", "DL8 1AA", "DL7 9PZ", "TS9 6DE", "YO61 1DW", "YO7 1QS", "DL6 1JG", "YO7 4HG", "YO7 2JD", "DL6 2EH", "DL6 3BJ", "DL7 0SB", "DL6 2LB", "YO7 1NB", "YO7 3AB", "YO21 2RU", "TS9 6QA", "TS9 6AA", "TS9 5AL", "DL6 3BL", "DL6 2RE", "TS9 6AA", "TS9 7AL", "YO61 4TZ", "DL6 2SB", "YO21 2RG", "YO61 3PS", "DL6 2LB", "TS9 6LL", "TS9 5AL", "YO61 1RT", "YO61 3EG", "DL6 2EH", "TS9 7AQ", "YO7 3AB", "DL8 2SD", "DL7 8LU", "YO7 1RX", "YO61 4PY", "YO61 3JB", "YO61 4AS", "DL6 3DT", "YO61 3EG", "YO7 4QN", "DL6 2AB", "DL6 2EH", "DL6 3PY", "YO7 1SL", "DL7 9DW", "YO7 2BQ", "DL7 8PP", "DL7 9PZ", "TS9 6DE", "YO7 1LB", "DL6 1AE", "YO7 1DA", "TS15 9QB", "YO30 2AZ", "YO61 4QA", "YO61 3EG", "YO61 1RT", "YO61 1DP", "TS9 5DN", "DL6 2EH", "YO61 1RT", "YO61 1RT", "DL8 2HX", "DL6 3EA", "YO61 1DT", "DL6 2AB", "YO61 3LF", "DL7 9HW", "DL8 2PR", "YO61 1RT", "DL7 9QR", "DL8 2RE", "YO61 4AS", "DL7 8JX", "DL7 8AN", "YO7 2JD", "YO61 1DW", "TS9 7AS", "YO7 2JZ", "DL6 2AB", "DL6 2AB", "DL8 1ED", "YO7 3AB", "YO61 4SJ", "TS15 0DA", "TS9 7AQ", "TS9 6AA", "TS15 9QB", "YO61 4TW", "DL7 9QS", "YO61 1RD", "YO61 1NR", "DL7 8PP", "YO61 1RD", "DL2 1PP", "TS9 7AQ", "DL6 2LB", "YO61 1EB", "YO7 4RS", "DL8 2NS", "TS9 7BL", "YO21 2RG", "YO7 1RZ", "YO61 1LA", "DL6 2AB", "TS9 6DE", "TS9 6QA", "DL7 0SB", "YO61 4AS", "DL7 0DF", "DL6 1NA", "DL6 3PY", "YO7 2BA", "YO7 2PF", "DL7 8BL", "YO7 1NB", "DL6 2AB", "DL8 1BZ", "TS9 7AQ", "TS15 9QB", "YO61 3AA", "TS9 7AQ", "YO7 2NS", "TS9 5ER", "DL6 2EQ", "DL6 2AB", "YO61 1EB", "TS9 6AA", "YO61 2NT", "TS9 7BL", "DL7 8JX", "DL8 1AF", "TS9 5LD", "YO7 4JL", "YO7 3HN", "DL6 2SG", "DL7 0DF", "TS7 0NU", "DL6 2LB", "TS9 6AA", "YO61 4AG", "DL6 3HQ", "DL7 8PT", "DL7 8UL", "TS9 6AA", "TS9 5EW", "DL8 2TR", "YO7 2JZ", "DL6 2TX", "YO7 4AZ", "YO7 1PL", "YO7 4EL", "YO7 1NB", "DL6 2HH", "DL6 3SN", "YO7 1QS", "DL6 2EH", "YO7 3JD", "YO61 4AH", "TS9 7JN", "DL8 2ST", "YO61 3EG", "YO61 1SL", "TS9 7AS", "DL7 8DJ", "TS9 7AQ", "YO7 2JQ", "TS9 6QA", "DL10 6AT", "YO7 1LH", "DL6 3PY", "YO61 1RT", "TS9 5BE", "DL7 8QF", "YO61 1EB", "YO61 1SL", "YO61 1DP", "YO30 1AA", "DL6 2TX", "DL7 8PQ", "TS15 0JL", "YO61 4TZ", "DL8 1PE", "YO7 1QS", "DL10 6AT", "YO7 2DP", "YO7 1AU", "TS9 6AA", "DL7 8QR", "TS9 7AS", "TS15 9PS", "YO7 3AB", "TS9 6DE", "TS15 0DA", "YO7 1QS", "YO30 2BR", "DL6 1EZ", "YO61 1HS", "DL8 1AL", "YO61 1DP", "DL6 3EA", "DL8 2RX", "DL6 3TD", "DL8 2AT", "DL8 2UE", "DL7 8LU", "YO61 1SL", "DL7 8EA", "DL7 0SB", "DL8 1HP", "DL8 2AT", "YO7 1QL", "DL6 2SD", "YO7 2JQ", "TS9 7AQ", "YO61 4TN", "YO7 4JL", "YO7 4EQ", "TS9 7AQ", "HG4 5JQ", "TS9 5DQ", "DL6 2LB", "YO7 1JN", "DL10 6AT", "YO21 2RG", "YO7 2PS", "YO61 1EB", "YO7 1HQ", "YO7 1LB", "YO61 1RT", "YO21 2RG", "TS9 5HJ", "TS15 0DT", "DL8 2HX", "TS9 7ER", "YO61 1RT", "YO7 2BW", "YO7 1QS", "DL7 0SB", "YO61 1RT", "YO61 3EF", "TS9 7AQ", "YO61 3ET", "YO7 1QS", "YO7 1PQ", "TS15 0ER", "HG4 4AH", "DL6 2EH", "YO7 2JQ", "DL6 3BL", "TS9 7JN", "TS15 0DB", "TS9 6LL", "YO7 4QN", "DL10 6AT", "YO61 4RF", "DL6 1NH", "TS9 5AD", "DL7 9HW", "YO61 3AG", "YO30 1DD", "YO61 1EB", "TS9 6LL", "DL6 2SB"], ["14.33236", "14.65482", "13.56404", "13.59784", "13.35884", "13.86622", "11.33653", "14.35158", "13.42509", "12.64203", "13.82497", "14.78597", "12.53104", "14.4164", "12.41919", "13.99694", "13.18237", "12.8336", "11.46613", "12.97698", "13.18551", "11.83777", "11.42257", "14.17805", "14.08521", "11.49463", "14.01082", "13.99255", "14.52128", "14.08048", "13.069", "11.88564", "11.88492", "14.95901", "13.16981", "14.99343", "12.04773", "13.32164", "15.12863", "13.72546", "12.83185", "13.57191", "14.22188", "13.37018", "13.41403", "14.52004", "12.74273", "15.14728", "11.95907", "12.04468", "11.66106", "15.25283", "12.56479", "13.9471", "13.68818", "11.22396", "13.1362", "15.08463", "14.00113", "13.85619", "14.75096", "12.64236", "14.22863", "11.14154", "15.20081", "13.25215", "12.78525", "13.01709", "13.14297", "12.95019", "12.85181", "11.49423", "13.97292", "11.68224", "15.27014", "14.1216", "12.25587", "13.90724", "13.26273", "12.11816", "11.79931", "15.3733", "12.77801", "12.20495", "12.52097", "15.19235", "13.934", "13.8148", "13.27328", "15.16818"], ["CTGTTGAG", "ATGGATCC", "ACGTACTG", "ATGCCGTA", "ATGGCCTA", "ATGGATGG", "ATGCATCG", "ACTCGTTG", "ATGCAAGG", "ATGGAAGC", "ATGCATGC", "ACTCTTAC", "ACGGTGGC", "ATCGGCTA", "ATCGATGC", "CTTCAGGA", "ATCGCCAA", "CTTCCAAC", "ACTAGTAC", "ATTACGCG", "CTTCAGCT", "ACTAACAC", "CTTCACGT", "CTGTTCTG", "ACTATGAT", "ACTATTAA", "CTTCCTAG", "ATGCGGAA", "ATTACCGG", "ACTGAATC", "ACTAATAC", "ACTCAGAC", "ATGCGCAT", "ATCGTACG", "ATGCTAGC", "ACTAATAA", "ATGGCCAT", "ATGGCGAA", "CTTCCATG", "ATTACGGC", "CTTCACCA", "ACGGTTAT", "ATCGCGTA", "ATGGCGTT", "ACTACGGA", "ATGGTACC", "ATGGTTCG", "ATCGGCAT", "ATGCAACC", "ATGCTTGG", "ACTCTAAA", "ACTCGGCT", "ATGCGGTT", "ACGGTATA", "ATGCTACG", "ACTGCTCA", "CTGTGTGA", "ACGGTTCG", "ATGCCGAT", "ATGCTTCC", "ATGGAACG", "ATCGTTCC", "ATCGCCTT", "ACGGTGTC", "CTGTTGTC", "ACTCGCAA", "ATGGTAGG", "ATCGTAGC", "ATTAGCCG", "ATGGTTGC", "ACGTCTTA", "ATCGCGAT", "CTGTTCAC", "ACGTCCCC", "ATGCGCTA", "CTTCCTTC", "ATCGTTGG", "ATTAGCGC"], ["32.06167", "29.48177", "28.43093", "28.21731", "27.46643", "24.47571", "31.09639", "22.21988", "30.25528", "23.02061", "22.94139", "31.00514", "35.79102", "28.99031", "25.96727", "26.72661", "32.67863", "25.96727", "25.5293", "30.40489", "31.68118", "22.7504", "31.28151", "27.46643", "23.12414", "30.70138", "30.6482", "23.12409", "22.21823", "24.53868", "30.86611", "28.37576", "30.70822", "32.95669", "30.63441", "30.85752", "30.29207", "28.24205", "22.62335", "28.15262", "30.41082", "32.81378", "31.00398", "22.6192", "31.00522", "22.77405", "23.09149", "31.00336", "23.26027", "22.96653", "23.25511", "23.1004", "25.51231", "30.63901", "32.79359", "23.67477", "26.04659", "30.70822", "28.54565", "34.79506", "31.26895", "24.53868", "36.96813", "31.01834", "33.29933", "27.6073", "26.06712", "31.65348"], ["SW11 2EJ", "SW12 9HS", "SW11 1SW", "SW17 8DS", "SW16 6BL", "SW18 5SG", "SW8 2UD", "SW15 4AA", "SW17 6AT", "SW17 9HQ", "SW11 1JD", "SW11 5JP", "SW11 5TU", "SW11 1HG", "SW18 4HH", "SW17 7AL", "SW15 4LE", "SW19 6DA", "SW17 7TG", "SW19 6AE", "SW19 6EW", "SW12 8EU", "SW18 4DU", "SW17 7AW", "SW18 4DD", "SW17 9LR", "SW19 2BY", "SW12 8TT", "SW12 9DL", "SW12 9HS", "SW18 4HX", "SW15 6TQ", "SW15 2TL", "SW17 7BA", "SW18 5DS", "SW4 8NU", "SW11 2PH", "SW15 5PJ", "SW11 6PW", "SW17 0NB", "SW15 4HN", "SW15 6HG", "SW16 6LY", "SW12 8NB", "SW11 1SW", "SW4 0DE", "SW15 4DU", "SW8 3RX", "SW8 1UL", "SW11 2NU", "SW11 3UJ", "SW18 5AE"], ["46.47568", "46.50068", "46.49389", "46.50483", "46.50571", "46.48796", "46.47529", "46.49296", "46.47583", "46.47634", "46.51004", "46.49195", "46.47701", "46.4753", "46.50982", "46.49528", "46.47911", "46.49565", "46.4789", "46.47745", "46.50906", "46.49044", "46.4914", "46.4946", "46.47515", "46.49638", "46.49637", "46.47623", "46.49908", "46.47529", "46.50903", "46.49596", "46.49409", "46.47817", "46.50701", "46.47559", "46.47557", "46.50665", "46.47576", "46.48796", "46.47909", "46.47662", "46.47548", "46.4922", "46.47959", "46.50046"], ["TGGTACAA", "TGGTGACC", "TCCGTGCT", "TCCGTTTT", "TCCGTGCG", "TCCGTCTT", "TCCGTCGG", "TCGAGCCG", "TCCTGTAC", "TCCTTCCA", "TGGTATTG", "TCGACGAC", "TGGTATTG", "TCCTTCTT", "TCGACGAA", "TCGAATCC", "TCCTTCTT", "TCCTCCCT", "TCCGGTAA", "TCCTTGGT", "TCCGGTAA", "TCCTAATA", "TCGAAAGG", "TCCGTGCT", "TCCTTGGT", "TCGAGCGA", "TCGACAAC", "TCGAGCTG", "TGGTAACC", "TCCTGGCA", "TGGTAACC", "TCCGGCCG", "TGGTCAAG", "TCGACGAC", "TGGTCGCT", "TCCTCGTA", "TGGTAGAT", "TCCGTTTT", "TCCTTCCA", "TGGTATAC", "TCGACCGG", "TGGTATAC", "TCCTAATA", "TCGAAGAG", "TCGAACCT", "TCGAAGAG", "TCGACCTA", "TCCTGGCA", "TCGAATCC", "TCGACCGG", "TGGTCGCT", "TGGTGATC", "TCGAAAGG", "TCCTGTAC", "TCCTCCCT", "TGGTCAAG", "TGGTACAA", "TGGTCTTT", "TCGACAAC", "TCCTCGTA", "TGGTAGTC", "TCCGTTCC", "TCCTCGTG", "TCCGTTCC", "TCGACGAA", "TCCGGCCG", "TGGTAGAT", "TCGAACCT", "TCCGTCGG", "TGGTGACC", "TGGTCTTT", "TCCTCGTG", "TCGAGCCG", "TCCGTCTT", "TCGACCTA", "TCGAGCGA", "TCGAGCTG", "TGGTAGTC"], ["4/5/10", "8/31/09", "4/12/10", "8/11/09", "3/23/10", "1/25/10", "7/27/09", "1/11/10", "1/18/10", "9/21/09", "5/3/10", "1/25/10", "10/12/09", "9/28/09", "1/11/10", "10/19/09", "2/15/10", "10/19/09", "2/15/10", "3/29/10", "3/1/10", "2/22/10", "8/3/09", "3/23/10", "12/28/09", "2/8/10", "7/20/09", "3/23/10", "6/29/09", "2/8/10", "3/8/10", "4/5/10", "6/15/09", "8/17/09", "1/11/10", "6/29/09", "9/28/09", "2/22/10", "8/3/09", "4/26/10", "4/12/10", "1/18/10", "1/25/10", "3/8/10", "7/20/09", "7/20/09", "9/7/09", "1/25/10", "2/8/10", "12/28/09", "10/12/09", "3/29/10", "8/24/09", "1/4/10", "4/19/10", "2/1/10", "8/17/09", "8/24/09", "6/22/09", "6/22/09", "7/13/09", "8/17/09", "3/15/10", "5/3/10", "1/25/10", "2/22/10", "1/25/10", "4/5/10", "10/12/09", "6/22/09", "6/22/09", "8/24/09", "2/22/10", "8/3/09", "4/26/10", "1/11/10", "9/28/09", "1/11/10", "2/22/10", "5/3/10", "4/5/10", "3/1/10", "2/22/10", "10/12/09", "3/15/10", "3/8/10", "10/12/09", "9/21/09", "3/8/10", "8/31/09", "3/15/10", "1/18/10", "6/15/09", "4/12/10", "7/13/09", "2/1/10", "2/22/10", "1/18/10", "9/7/09", "10/19/09", "3/29/10", "1/18/10", "2/1/10", "1/4/10", "8/11/09", "10/12/09", "1/4/10", "3/15/10", "3/1/10", "8/11/09", "3/29/10", "6/15/09", "1/11/10", "5/3/10", "6/29/09", "3/29/10", "2/1/10", "3/29/10", "9/14/09", "8/11/09", "4/19/10", "7/27/09", "8/11/09", "1/11/10", "12/28/09", "7/13/09", "4/5/10", "6/22/09", "1/4/10", "7/27/09", "10/19/09", "10/5/09", "3/15/10", "6/15/09", "4/19/10", "10/5/09", "9/7/09", "9/7/09", "9/21/09", "2/1/10", "7/27/09", "2/15/10", "2/22/10", "9/28/09", "4/5/10", "5/3/10", "7/27/09", "8/3/09", "9/14/09", "2/22/10", "10/12/09", "1/25/10", "1/4/10", "7/13/09", "4/12/10", "1/18/10", "2/1/10", "4/26/10", "5/3/10", "8/11/09", "3/8/10", "9/21/09", "3/1/10", "2/8/10", "6/29/09", "3/15/10", "9/28/09", "9/14/09", "3/1/10", "1/18/10", "2/15/10", "12/28/09", "1/4/10", "3/23/10", "2/15/10", "1/4/10", "7/13/09", "12/28/09", "3/1/10", "2/15/10", "9/28/09", "7/6/09", "2/8/10", "2/8/10", "6/22/09", "7/20/09", "7/27/09", "10/19/09", "9/28/09", "2/1/10", "8/3/09", "8/3/09", "3/29/10", "3/8/10", "9/14/09", "7/6/09", "7/6/09", "10/19/09", "4/19/10", "10/5/09", "8/17/09", "4/12/10", "8/31/09", "10/5/09", "6/15/09", "9/14/09", "1/11/10", "6/15/09", "4/19/10", "8/24/09", "1/25/10", "8/24/09", "2/15/10", "7/20/09", "3/23/10", "3/23/10", "9/7/09", "3/8/10", "10/5/09", "1/4/10", "7/6/09", "10/19/09", "12/28/09", "4/5/10", "4/26/10", "4/26/10", "2/8/10", "9/21/09", "1/18/10", "9/7/09", "10/5/09", "9/14/09", "9/21/09", "12/28/09", "4/12/10", "3/29/10", "4/12/10", "2/8/10", "2/1/10", "12/28/09", "7/20/09", "8/24/09", "7/6/09", "7/13/09", "8/11/09", "2/8/10", "1/25/10", "3/1/10", "8/17/09", "9/7/09", "7/6/09", "8/17/09", "7/6/09", "3/15/10", "8/31/09", "1/4/10", "2/22/10", "9/7/09", "8/24/09", "3/23/10", "3/8/10", "4/12/10", "2/1/10", "2/15/10", "12/28/09", "3/8/10", "3/23/10", "6/22/09", "4/19/10", "7/27/09", "4/19/10", "9/21/09", "1/11/10", "4/26/10", "3/15/10", "6/29/09", "10/19/09", "4/5/10", "4/12/10", "4/5/10", "8/17/09", "1/18/10", "8/31/09", "3/1/10", "8/31/09", "3/29/10", "6/22/09", "9/21/09", "2/8/10", "3/15/10", "8/11/09", "3/1/10", "9/14/09", "6/29/09", "1/25/10", "7/27/09", "7/20/09", "7/20/09", "8/24/09", "9/28/09", "10/12/09", "9/7/09", "3/15/10", "8/31/09", "8/3/09", "7/13/09", "3/8/10", "3/29/10", "10/5/09", "6/15/09", "7/20/09", "7/6/09", "2/1/10", "8/17/09", "8/24/09", "3/23/10", "6/15/09", "1/11/10", "7/13/09", "5/3/10", "10/5/09", "10/12/09", "9/21/09", "1/4/10", "10/19/09", "7/6/09", "4/12/10", "6/29/09", "4/26/10", "8/17/09", "4/5/10", "4/26/10", "10/5/09", "4/19/10", "8/31/09", "6/29/09", "6/22/09", "8/3/09", "6/15/09", "3/1/10", "8/11/09", "2/15/10", "9/14/09", "8/31/09", "9/28/09", "7/13/09", "7/27/09", "4/19/10", "6/29/09", "12/28/09", "1/18/10", "5/3/10", "3/23/10", "8/3/09", "5/3/10", "9/14/09", "4/26/10", "4/19/10", "2/15/10"], ["0.885893", "6.50703", "2.86477", "4.50009", "6.82626", "1.25884", "3.88406", "2.85989", "2.17546", "3.77332", "0.558019", "5.1321", "8.76424", "2.37224", "5.90729", "1.50254", "2.638", "8.02853", "1.90476", "6.83858", "3.75551", "5.16174", "10.3056", "5.05308", "3.41675", "2.68545", "3.31686", "1.65774", "0.589623", "2.94812", "1.2206", "0.698149", "1.03673", "1.64314", "1.32693", "2.01532"], ["2.02155", "2.31775", "0.596778", "2.17275", "0.522379", "1.90849", "0.5318", "0.869118", "1.9591", "2.5393", "1.22631", "0.761285", "1.55217", "1.50017", "1.53116", "1.15423", "0.969704", "1.33868", "1.07059", "1.77746", "1.10531", "2.05308", "1.51412", "1.57599", "2.0278", "1.27726", "1.25825", "1.02491", "0.679358", "0.899619", "1.37708", "0.739707", "0.589723", "1.29167", "2.0164", "0.910406"], ["0.39", "0.01", "0.08", "0.83", "0.7476", "0.19", "0.7", "0.2136", "0.85", "0.05", "0.84", "0.87", "0.88", "0.83", "0.17", "0.88", "0.83", "0.83", "0.17", "0", "0.26", "0.83", "0.01", "0.04", "0.8633", "0.12", "0.8544", "0.81", "0.66", "0.62", "0", "0.75", "0.84", "0.83", "0.86", "0.11", "0.75", "0.79", "0.06", "0.85", "0.00E+00", "0.83", "0.54", "0.46", "0.15", "0.8544", "0.13", "0.58", "0.02", "0.03", "0.02", "0.19", "0.34", "0.09", "0.8544", "0.8277", "0.18", "0.18", "0.8277", "0.00E+00", "0.07"], ["0.03", "0.85", "0.03", "0.28", "0.19", "0.82", "0.65", "0.2", "0.02", "0.83", "0.8455", "0.56", "0.86", "0.04", "0.12", "0.87", "0.84", "0.00E+00", "0.85", "0.1", "0.85", "0.73", "0.23", "0.86", "0.8811", "0.8811", "0.41", "0.8811", "0.14", "0.02", "0.85", "0.77", "0.01", "0.2", "0.85", "0.08", "0.8811", "0.77", "0.8811", "0.00E+00", "0.68", "0.22", "0.09", "0.06", "0.03", "0.77", "0.8544", "0.15", "0.6", "0.21", "0.84", "0.01", "0.87", "0.85", "0.85", "0.17", "0.2", "0.07", "0.36", "0.48", "0.8633"], ["8/4/10", "10/26/09", "7/26/10", "10/16/09", "1/25/10", "3/17/10", "2/9/10", "1/25/10", "1/25/10", "10/27/09", "3/22/10", "11/5/09", "3/22/10", "11/18/09", "3/22/10", "10/12/09", "12/11/09", "2/22/10", "9/25/09", "1/9/10", "10/26/09", "11/17/09", "10/15/09", "11/20/09", "10/12/09", "1/26/10", "3/17/10", "11/4/09", "10/12/09", "3/19/10", "10/26/09", "3/21/10", "1/27/10", "3/22/10", "11/5/09", "3/22/10", "1/25/10", "10/9/09", "12/3/09", "1/26/10", "12/4/09", "11/12/09", "10/15/09", "12/15/09", "3/4/10", "10/2/09", "3/19/10"], ["0.33", "0.79", "0.05", "0.01", "0.1", "0.77", "0.00E+00", "0.82", "0.04", "0.77", "0.01", "0.8", "0.02", "0", "0.0712", "0", "0.45", "0.04", "0.08", "0.77", "0.79", "0.77", "0.67", "0", "0.13", "0.8188", "0", "0.65", "0.28", "0.02", "0.82", "0.8", "0.77", "0", "0.03", "0.24", "0.07", "0.8", "0.75", "0.01", "0.72", "0.77", "0.07", "0.67", "0.18", "0.77", "0.82", "0.7832", "0.79", "0.75", "0.05", "0.6", "0.02", "0.11", "0.54", "0.77", "0.41", "0", "0.02", "0.5", "0.78"], ["0.21", "0.04", "0.1602", "0.75", "0.71", "0.48", "0.04", "0.73", "0", "0.0178", "0.7209", "0.0267", "0.09", "0.68", "0.41", "0.1335", "0.0178", "0", "0.00E+00", "0.73", "0.75", "0.0356", "0.73", "0.69", "0.69", "0", "0.7", "0.67", "0.03", "0", "0.01", "0.69", "0.31", "0.72", "0.7209", "0", "0.01", "0.28", "0.76", "0.76", "0.37", "0.7", "0.63", "0", "0.01", "0.58", "0", "0", "0", "0.71", "0.00E+00", "0", "0.01", "0.55", "0.06", "0.71", "0.73", "0.58", "0.00E+00", "0", "0.71"], ["0.3293", "0.00E+00", "0.74", "0.01", "0.76", "0.03", "0.79", "0.7", "0.78", "0.09", "0.04", "0.02", "0.42", "0", "0.06", "0.39", "0.58", "0.04", "0.15", "0.76", "0.76", "0", "0.76", "0.66", "0.1", "0.07", "0.22", "0.78", "0.02", "0.04", "0", "0.76", "0.01", "0.76", "0.76", "0.47", "0.79", "0.6497", "0.81", "0.07", "0.26", "0.52", "0", "0.05", "0.81", "0.81", "0.00E+00", "0.07", "0.03", "0", "0.81", "0", "0.78", "0.01", "0", "0.77", "0.76", "0.65", "0.74", "0.78", "0.79"], ["0.67", "0.22", "0.00E+00", "0.00E+00", "0.68", "0.67", "0.03", "0.66", "0.65", "0.57", "0.7", "0.52", "0.1", "0.0089", "0", "0.0178", "0.69", "0.6853", "0.06", "0", "0.42", "0.68", "0", "0.51", "0.1691", "0.7", "0.13", "0.65", "0.73", "0.67", "0", "0.25", "0.00E+00", "0.02", "0.5", "0", "0.71", "0.02", "0.62", "0", "0.00E+00", "0.0089", "0.66", "0.01", "0.72", "0", "0.00E+00", "0.02", "0", "0", "0", "0", "0.66", "0.71", "0.67", "0.3", "0", "0.00E+00", "0.65", "0.65", "0.35"], ["8/18/08", "10/13/06", "9/26/05", "8/19/08", "8/2/07", "8/11/07", "9/24/08", "8/29/06", "10/2/05", "9/21/08", "7/28/06", "8/2/07", "7/29/06", "10/2/05", "7/28/06", "8/11/07", "7/29/07", "9/24/08", "10/7/06", "8/16/08", "8/16/08", "8/2/07", "8/29/06", "8/16/08", "8/11/07", "9/25/06", "9/24/08", "10/13/06", "9/21/08", "8/1/07", "10/12/06", "10/12/06", "7/29/07", "8/3/07", "8/19/08", "8/3/07", "9/21/08", "7/29/07", "8/3/07", "9/21/08", "7/29/06", "9/21/08", "8/11/07", "9/26/05", "8/18/08", "8/19/08", "8/3/07", "10/7/06", "7/29/06", "10/13/06", "7/29/06", "8/2/07", "9/24/08", "7/28/06", "7/29/06", "8/11/07", "10/12/06", "7/28/06", "10/15/05", "8/2/07", "8/18/08", "8/29/06", "9/25/06", "8/18/08", "8/18/08", "9/25/06", "7/28/06", "8/16/08", "8/19/08", "10/7/06", "8/16/08", "10/13/06", "10/13/06", "8/16/08", "10/2/05", "9/24/08", "10/13/06", "7/28/06", "8/11/07", "10/15/05", "7/29/06", "10/14/05", "7/28/06", "8/11/07", "10/13/06", "10/7/06", "7/29/07", "8/11/07", "10/3/05", "8/29/06", "10/15/05", "7/28/06", "8/11/07", "8/2/07", "10/12/06", "10/7/06", "8/16/08", "8/1/07", "10/12/06", "8/19/08", "7/28/06", "10/13/06", "10/3/05", "8/18/08", "8/18/08", "10/7/06", "8/2/07", "10/7/06", "8/19/08", "8/2/07", "8/29/06", "7/29/07", "9/21/08", "10/12/06", "10/15/05", "10/13/06", "8/11/07", "9/24/08", "9/26/05"], ["9/28/07", "9/25/08", "9/28/07", "9/25/08", "9/25/08", "9/25/08", "10/16/06", "9/25/08", "9/28/07", "9/25/08", "10/17/06", "10/16/06", "10/16/06", "9/25/08", "9/25/08", "9/28/07", "9/28/07", "9/25/08", "9/25/08", "9/25/08", "10/16/06", "10/16/06", "10/16/06", "9/25/08", "9/28/07", "10/16/06", "9/25/08", "10/16/06", "10/16/06", "9/25/08", "10/16/06", "9/25/08", "9/25/08", "9/28/07", "9/25/08", "10/17/06", "10/16/06", "9/28/07", "9/28/07", "9/25/08", "9/25/08", "10/16/06", "9/28/07", "10/16/06", "9/25/08", "9/25/08", "9/25/08", "10/16/06", "10/17/06", "10/16/06", "10/16/06", "10/17/06", "9/25/08", "9/28/07", "9/25/08", "10/17/06", "9/25/08", "10/16/06", "9/25/08", "10/16/06", "9/25/08", "10/16/06", "10/16/06", "9/28/07", "9/25/08", "9/28/07", "9/28/07", "9/25/08", "9/28/07", "9/25/08", "10/16/06", "9/25/08", "9/25/08", "9/28/07", "9/25/08", "9/25/08", "10/16/06", "9/25/08", "9/25/08", "10/16/06", "9/25/08", "10/16/06", "9/28/07", "10/16/06", "9/28/07", "9/28/07", "9/28/07", "9/25/08", "9/28/07", "9/28/07", "9/25/08", "9/25/08", "9/28/07", "9/28/07", "10/17/06", "10/16/06", "10/16/06", "9/25/08", "10/16/06", "9/25/08", "9/28/07", "10/16/06", "10/16/06", "9/28/07", "9/25/08", "10/16/06", "9/28/07", "9/25/08", "9/28/07", "10/17/06", "10/16/06", "10/16/06", "10/16/06", "9/25/08", "9/28/07", "9/28/07", "9/25/08", "10/16/06", "9/25/08"], ["07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/10", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/15", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "09/01/15", "07/01/14", "07/01/14", "07/01/15", "07/01/15", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/15", "07/01/14", "07/01/14", "12/02/14", "07/01/14", "07/01/14", "06/07/12", "07/01/14", "07/01/15", "07/01/14", "07/01/14", "07/01/13", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "12/08/14", "07/01/14", "07/01/14", "07/01/15", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "09/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "10/01/12", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/15", "12/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/15", "07/01/14", "11/01/12", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "02/01/14", "07/01/14", "07/01/14", "08/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "08/15/14", "07/01/14", "07/01/15", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/15", "07/01/14", "07/01/13", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/15", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "09/01/13", "07/01/13", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "09/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/13", "07/01/15", "07/01/14", "07/01/14", "07/01/15", "07/01/14", "04/01/12", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/15", "11/01/13", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "09/02/14", "06/25/12", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/11", "07/01/14", "07/01/15", "03/01/12", "09/15/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/15", "07/01/14", "07/01/14", "07/01/15", "07/01/14", "01/01/15", "07/01/14", "07/01/14", "01/05/15", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/13", "07/01/14", "07/14/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/12", "07/01/14", "07/01/12", "08/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/15", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/10", "01/01/15", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "09/01/14", "07/01/14", "07/01/14", "07/01/14", "09/15/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/10", "12/27/13", "07/01/14", "07/01/14", "07/01/15", "07/01/13", "07/01/15", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "11/01/13", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/13", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/10", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "03/01/14", "07/01/14", "07/01/14", "07/01/15", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "09/01/14", "07/01/14", "07/01/14", "07/01/15", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/12", "07/01/14", "07/01/14", "07/01/15", "02/01/14", "07/01/14", "07/01/14", "07/01/14", "10/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/15", "07/01/15", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/15", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/13", "07/01/14", "07/01/14", "07/01/14", "08/01/13", "09/01/15", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/13", "07/01/14", "09/01/14", "07/01/15", "07/01/13", "07/01/15", "07/01/14", "07/01/15", "07/01/14", "07/01/14", "07/01/14", "03/01/12", "07/01/12", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/12", "07/01/14", "07/01/14", "07/01/14", "04/15/13", "07/01/14", "07/01/13", "07/01/14", "07/01/14", "07/01/14", "07/01/15", "07/01/14", "07/01/14", "07/01/14", "07/01/15", "07/01/14", "07/01/14", "07/01/14", "09/01/13", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "12/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/12", "07/01/15", "07/01/15", "07/01/14", "07/01/15", "07/01/15", "07/01/14", "07/01/14", "08/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/15", "07/01/14", "07/01/13", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/15", "07/01/15", "12/02/14", "07/01/14", "07/01/14", "07/01/14", "07/01/15", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "03/02/15", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "01/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/12", "07/01/15", "01/01/15", "07/01/14", "07/01/13", "07/01/14", "07/01/14", "11/01/10", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "01/01/15", "07/01/14", "07/01/13", "07/01/14", "07/01/14", "07/01/14", "07/01/12", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/28/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "07/01/14", "11/15/14", "07/01/14", "07/01/14", "07/01/14", "07/01/15", "07/01/14", "07/01/14", "07/01/14"], ["1", "1", "1", "1", "1", "0.76395", "1", "1", "1", "1", "0.008339", "1", "1", "1", "1", "0.000901", "1.074", "1", "0.065642", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1.074", "1", "1", "1", "1", "1.484501", "1", "0.008339", "1.484501", "1", "1", "1.074", "1", "1", "1", "1", "0.082534", "1", "1", "1", "1", "1", "1", "1.484501", "1", "1", "1", "1", "0.008339", "1", "1", "1", "1", "0.115955", "1", "1", "1", "1", "1", "1", "1", "0.008339", "1", "1", "1", "1", "0.76395", "0.729022", "1", "1", "1", "1", "1.074", "1", "1", "1", "1", "0.000901", "1", "1", "1", "1", "1", "0.729022", "1", "1", "1", "1", "1", "1.074", "1", "0.001604", "1", "1", "0.128981", "1", "1", "1", "0.789578", "1", "1", "0.128981", "1.074", "1", "1", "0.789578", "1", "1", "1", "0.000076", "1", "1", "1", "1", "1", "1", "1", "1.074", "1", "0.128981", "1", "1", "1", "0.008339", "1", "1", "1", "1", "0.115955", "1.074", "1", "1", "1", "0.022371", "1", "1", "1", "0.789578", "0.000076", "1", "1", "1", "1", "1", "1", "0.008339", "1", "1", "1", "1", "1", "1", "1", "0.082534", "1", "1.074", "1", "1", "1", "1.074", "0.312881", "0.124083", "1", "1", "1", "1", "1", "1", "1", "1", "1", "0.008339", "1", "1", "1", "1", "1", "0.000901", "1", "1", "1", "1", "0.76395", "1.074", "1", "1", "1", "0.115955", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "0.115955", "1", "0.385134", "1", "1", "0.000076", "0.263748", "1", "1", "0.128981", "1", "1", "1", "1", "1", "1", "1", "1", "1.029548", "1", "1", "1", "1", "1.074", "1", "1", "1", "1", "1", "1", "1", "1", "0.000076", "1", "1", "1.074", "0.128981", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "0.008339", "1", "1", "1", "1", "1", "1", "1", "1.074", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "0.008339", "1.029548", "0.000901", "1", "1.074", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1.074", "1", "1", "0.065642", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "0.008339", "1.484501", "1", "1", "1", "1", "0.000901", "1", "1", "1", "1", "1", "0.031959", "1", "1", "1", "1", "1", "1", "1", "1", "1", "0.008339", "1", "1", "0.128981", "1", "1", "1", "1", "1", "0.008339", "1", "0.008339", "1", "1", "1", "1", "1", "1", "1", "1", "1", "0.143761", "1", "1", "1", "1", "0.000901", "1", "1", "1", "1", "0.76395", "0.128981", "1.074", "1", "0.789578", "1", "1", "1.484501", "1", "0.000901", "1", "1", "1", "1", "1", "1", "0.008339", "0.270015", "1", "1", "1", "1", "0.789578", "1", "0.008339", "1", "1", "0.008339", "1", "1", "1", "1", "1", "0.022371", "1", "1", "1", "1", "1", "0.270015", "1", "1.074", "0.082534", "1", "1", "1", "1", "1", "1", "1.074", "1", "1", "1", "1.074", "1.484501", "0.789578", "1.484501", "1", "1", "0.789578", "1", "0.008339", "1", "0.000076", "0.789578", "1", "1", "1", "1", "1", "1.074", "1", "1", "1", "0.000901", "1", "1", "1", "1", "1", "1", "0.128981", "1", "1", "1", "1", "1", "1", "0.76395", "1", "1", "1", "1", "1.484501", "1", "0.76395", "1", "1", "1.074", "1", "1", "1", "1", "1", "1.074", "1", "1", "1", "1", "1", "1", "0.008339", "1", "1", "1", "1.484501", "0.128981", "1", "1", "1"], ["0", "0", "0", "0", "965700", "0", "80142", "0", "0", "50", "0", "12759443", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "4235300", "0", "0", "5", "0", "0", "117", "0", "6", "0", "0", "0", "160", "0", "0", "0", "0", "0", "0", "277", "0", "0", "0", "0", "0", "4", "0", "0", "0", "0", "0", "4", "0", "0", "0"], ["06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/17", "06/30/15", "06/30/16", "06/30/15", "06/30/15", "06/30/17", "06/30/19", "06/30/15", "06/30/16", "06/30/15", "06/30/15", "06/30/19", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/17", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/18", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/18", "06/30/15", "06/30/15", "06/30/14", "06/30/15", "07/01/15", "06/30/16", "06/30/17", "06/30/15", "06/30/15", "06/30/16", "06/30/16", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/19", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "07/01/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/16", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/16", "06/30/16", "06/30/18", "02/27/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/16", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/17", "06/30/15", "06/30/15", "06/30/15", "06/30/18", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/16", "06/30/15", "06/30/18", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/16", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/16", "06/30/15", "06/30/16", "06/30/15", "06/30/17", "06/30/15", "06/30/15", "06/30/19", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/19", "06/30/15", "06/30/15", "06/30/16", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/18", "06/30/15", "06/30/15", "06/30/15", "06/30/16", "06/30/15", "06/30/15", "06/30/15", "06/30/17", "06/30/15", "06/30/16", "06/30/15", "06/30/16", "06/30/18", "06/30/15", "06/30/15", "06/30/18", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/18", "06/30/15", "06/30/15", "06/30/15", "06/30/16", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/16", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/16", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/16", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/17", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/16", "06/30/15", "06/30/15", "06/30/16", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/16", "06/30/16", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "07/01/15", "06/30/18", "06/30/15", "06/30/17", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/16", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/16", "06/30/15", "06/30/15", "06/30/15", "06/30/16", "06/30/18", "06/30/15", "06/30/16", "06/30/15", "06/30/15", "06/30/16", "06/30/16", "06/30/15", "06/30/15", "06/30/16", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/16", "06/30/16", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/18", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/16", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/19", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/16", "06/30/18", "06/30/15", "06/30/18", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/16", "06/30/15", "06/30/19", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/16", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/16", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/19", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/16", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/16", "06/30/15", "06/30/16", "06/30/15", "06/30/15", "06/30/17", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/16", "06/30/16", "06/30/15", "06/30/16", "06/30/15", "06/30/15", "06/30/15", "07/01/16", "06/30/17", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/17", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/16", "06/30/15", "06/30/15", "06/30/15", "06/30/16", "06/30/16", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/17", "06/30/15", "06/30/17", "06/30/16", "06/30/15", "07/01/15", "06/30/15", "06/30/15", "06/30/16", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/17", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/16", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/16", "06/30/15", "06/30/15", "06/30/15", "06/30/16", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15", "06/30/15"], ["Acer24", "Acer24", "Acer24", "Birthday", "Birthday", "Acer24", "Acer24", "Birthday", "Birthday", "Birthday", "Acer24", "Birthday", "Birthday", "Birthday", "Birthday", "Birthday", "Acer24", "Acer24", "Acer24", "Acer24", "Acer24", "Acer24", "Acer24", "Birthday", "Acer24", "Acer24", "Acer24", "Birthday", "Acer24", "Acer24", "Birthday", "Birthday", "Birthday", "Acer24", "Acer24", "Acer24", "Acer24", "Birthday", "Acer24", "Acer24", "Birthday", "Acer24", "Birthday", "Birthday", "Birthday", "Acer24", "Acer24", "Birthday", "Acer24", "Birthday", "Birthday", "Acer24", "Acer24", "Birthday", "Birthday", "Acer24", "Acer24", "Acer24", "Acer24", "Birthday", "Birthday", "Acer24", "Birthday", "Birthday", "Birthday", "Birthday", "Birthday", "Birthday", "Acer24", "Acer24", "Acer24", "Birthday", "Acer24", "Birthday", "Acer24", "Birthday", "Birthday", "Acer24", "Acer24", "Acer24", "Birthday", "Acer24", "Birthday", "Birthday", "Acer24", "Birthday", "Birthday", "Acer24", "Acer24", "Birthday", "Birthday", "Acer24", "Birthday", "Birthday", "Acer24", "Acer24", "Acer24", "Birthday", "Acer24", "Birthday", "Birthday", "Acer24", "Acer24", "Birthday", "Acer24", "Acer24", "Birthday", "Acer24", "Birthday", "Birthday", "Birthday", "Acer24", "Acer24", "Birthday", "Acer24", "Birthday", "Birthday", "Birthday", "Acer24", "Birthday", "Birthday", "Acer24", "Acer24", "Acer24", "Acer24", "Acer24", "Birthday", "Birthday", "Birthday", "Acer24", "Acer24", "Birthday", "Acer24", "Acer24", "Birthday", "Birthday", "Acer24", "Birthday", "Birthday", "Birthday", "Birthday", "Birthday", "Acer24", "Acer24", "Birthday", "Acer24", "Birthday", "Birthday", "Birthday", "Birthday", "Birthday", "Acer24", "Birthday", "Acer24", "Acer24", "Birthday", "Birthday", "Birthday", "Acer24", "Birthday", "Birthday", "Acer24", "Acer24", "Acer24", "Acer24", "Acer24", "Birthday", "Acer24", "Birthday", "Birthday", "Acer24", "Birthday", "Birthday", "Acer24", "Birthday", "Birthday", "Acer24", "Acer24", "Birthday", "Acer24", "Birthday", "Birthday", "Acer24", "Birthday", "Birthday", "Acer24", "Acer24", "Birthday", "Birthday", "Birthday", "Birthday", "Birthday", "Acer24", "Birthday", "Birthday", "Birthday", "Birthday", "Birthday", "Acer24", "Birthday", "Birthday", "Birthday"], ["Resident", "Resident", "Visitor", "Resident", "Resident", "Resident", "Resident", "Resident", "Resident", "Resident", "Resident", "Resident", "Resident", "Visitor", "Resident", "Resident", "Resident", "Resident", "Resident", "Resident", "Resident", "Resident", "Visitor", "Resident", "Resident", "Resident", "Resident", "Visitor", "Visitor", "Resident", "Resident", "Resident", "Resident", "Resident", "Other", "Resident", "Resident", "Resident", "Resident", "Resident", "Visitor", "Resident"], ["42.469757", "26.138268", "33.96376", "40.819902", "39.842897", "41.552633", "28.940661", "40.663134", "26.762539", "33.582789", "35.46475", "41.953303", "41.83149", "40.695217", "40.30713", "40.754138", "35.585995", "29.186116", "42.088616", "42.520454", "40.75533", "39.853414", "41.947144", "41.975933", "40.038468", "27.99038", "41.760974", "39.684359", "39.179239", "40.109601", "42.586433", "43.334485", "33.552729", "41.37273", "40.74773", "40.714744", "42.316836", "40.680506", "26.720525", "42.292578", "40.790049", "42.87469", "42.654602", "43.62258", "40.434292", "41.539998", "27.783003", "42.085984", "41.909244", "35.798809", "41.762737", "41.78164", "26.393475", "39.277358", "40.882089", "43.100713", "40.771042", "42.122", "40.630492", "41.669688", "27.2286", "26.18085", "40.690075", "37.34834", "25.984381", "42.28293", "41.949853", "40.18336", "42.358561", "41.905161", "33.078782", "40.027337", "39.760602", "40.706958", "42.210718", "43.052199", "39.721647", "40.754649", "39.284828", "40.794722", "35.561292", "42.321204", "40.732813", "42.272026", "40.416017", "40.751374", "39.719727", "43.273565", "42.137183", "40.167098", "42.047709", "41.165174", "42.927061", "33.602945", "40.758315", "39.34379", "41.864704", "42.871003", "28.268377", "42.690507", "40.70043", "37.339239", "27.878029", "27.960228", "28.947709", "41.558589", "41.722332", "41.610986", "41.488253", "40.743001", "40.597873", "40.793215", "40.555427", "43.80527", "33.873661", "41.396021", "40.903818", "40.816506", "26.10034", "41.577197", "41.717495", "42.024435", "41.766779", "40.10144", "41.830003", "42.365169", "28.852925", "35.516519", "40.648044", "42.661206", "41.936217", "41.88874", "41.728495", "27.916874", "41.410131", "36.021913", "42.380557", "28.054189", "42.246823", "42.018024", "34.964633", "41.360769", "41.681209", "42.272737", "30.117885", "29.177213", "36.94069", "40.752228", "42.237708", "40.587896", "27.978343", "28.051611", "40.65701", "35.324214", "41.445964", "42.650941", "32.93808", "41.40304", "42.275672", "40.849052", "39.132125", "32.892258", "28.551113", "40.887515", "40.933389", "42.503548", "40.879476", "42.544311", "40.515706", "41.973342", "27.140582", "29.826993", "40.72291", "35.951323", "41.404269", "41.956809", "40.721895", "42.362756", "40.616599", "43.83326", "41.8887", "40.515286", "40.816534", "40.032609", "32.616588", "39.933883", "42.161227", "40.923695", "40.748481", "40.709786", "42.366484", "44.983518", "27.359844", "31.959858", "39.756029", "36.683018", "40.592908", "42.465434", "40.436853", "40.141851", "41.170397", "35.923589", "42.613174", "33.98376", "43.458208", "34.942805", "36.218796", "41.10139", "43.040001", "42.64555", "40.77658", "41.758978", "40.237689", "33.710625", "40.781247", "41.496809", "41.534167", "42.088256", "40.087271", "41.664925", "40.7459", "35.84741", "40.453959", "41.359081", "40.615646", "38.566619", "26.156492", "42.682593", "38.9427", "42.54162", "33.561567", "34.617011", "42.236525", "38.860159", "41.261487", "40.667902", "40.862097", "42.03997", "41.517862", "41.644172", "40.872919", "39.185037", "39.901656", "40.887708", "42.609992", "40.729029", "32.133587", "40.766792", "42.409907", "41.809467", "40.43036", "44.451352", "35.507147", "41.870687", "43.047869", "39.933057", "27.938471", "34.227541", "40.920572", "41.35842", "43.154165", "41.985523", "42.670647", "41.738964", "42.983917", "43.513992", "42.25397", "40.435702", "42.427347", "41.550521", "39.040477", "40.765298", "40.282412", "40.705384", "41.807953", "40.713846", "41.771772", "26.668335", "41.993982", "39.29891", "42.378185", "40.172236", "41.79933", "36.165463", "42.320789", "39.140209", "40.739941", "41.67159", "42.909809", "41.733353", "40.424258", "36.670856", "36.012404", "40.071169", "35.57032", "41.691458", "41.296328", "40.72498", "28.279368", "39.891011", "33.009351", "26.007038", "40.783194", "25.813829", "42.763956", "42.55815", "42.48112", "42.495812", "43.111306", "40.60838", "40.905598", "42.348566", "42.738964", "39.958728", "43.643602", "32.908793", "42.562133", "40.75469", "41.356845", "42.33994", "44.504461", "42.335213", "41.548874", "42.189269", "40.113015", "34.097167", "41.705039", "33.864223", "41.419931", "42.56855", "42.3487", "40.485628", "39.963556", "42.041281", "41.109333", "34.891325", "30.289835", "42.024339", "42.40243", "41.346374", "39.858737", "40.605441", "41.232049", "42.710808", "39.922485", "41.971719", "41.765609", "40.65038", "42.731558", "42.311214", "39.804284", "42.699908", "35.05041", "40.108799", "27.937937", "42.141878", "33.853951", "43.196992", "41.275914", "40.542811", "42.296955", "42.34675", "41.829715", "33.987693", "40.078092", "40.711056", "41.886562", "40.097816", "32.896641", "40.999348", "40.704356", "43.698261", "41.984423", "43.699831", "38.452196", "40.168331", "40.774197", "41.737213", "41.967994", "40.058586", "39.108801", "41.912658", "43.141363", "35.240129", "44.000176", "40.757716", "32.903659", "41.910956", "42.396793", "39.080911", "33.202516", "42.142152", "41.871664", "41.847231", "40.511528", "41.276475", "40.046444", "40.717661", "42.557049", "40.749488", "42.650272", "41.239047", "42.47533", "39.290344", "42.566303", "42.414641", "43.164949", "40.39315", "40.456616", "29.656757", "42.816835", "27.967897", "43.176793", "27.793251", "30.772166", "41.39854", "32.711667", "33.3057", "40.714978", "40.894955", "44.340099", "44.569991", "43.704036", "41.738319", "33.758057", "42.480538", "39.824608", "40.760748", "41.823386", "43.645161", "44.921323", "39.655889", "42.550931", "41.827292", "43.31594", "42.125025", "42.331332", "40.852403", "39.44477", "42.549777", "36.31801", "40.361632", "30.146689", "39.801107", "41.28571", "41.8845", "40.706548", "41.890367", "41.876634", "40.678124", "41.713003", "35.999862", "40.221168", "40.597736", "33.053928", "41.955954", "40.936266", "40.836825", "40.82652", "42.366257", "43.062055", "41.905271", "33.655176", "26.103574", "40.711304", "44.081395", "40.72297", "40.76182", "43.034706", "24.72024", "40.82661", "35.825315", "40.82977", "43.132503", "29.006543", "40.04415", "40.708312", "40.835379", "33.83069", "41.896494", "42.382444", "34.088361", "34.893253", "25.759555", "35.475526", "33.509207", "41.417033", "44.138141", "28.321811", "40.072299", "26.330675", "39.350983", "27.338814", "42.353328", "40.744872", "28.251083", "41.285334", "39.351325", "41.398122", "42.205275"], ["44.429022", "43.691089", "43.419435", "49.857343", "43.876797", "44.753862", "43.468425", "43.666103", "45.322098", "42.664676", "44.240921", "42.403857", "43.706395", "43.735316", "44.414496", "43.754096", "45.411321", "45.059458", "49.416388", "44.149272", "43.849132", "50.090261", "45.35115", "42.94709", "44.400403", "44.337044", "43.771474", "44.381869", "44.081322", "42.862865", "43.891445", "43.482326", "49.611265", "43.546098", "43.659637", "44.350178", "45.434507", "43.645438", "43.719396", "44.56323", "44.849493", "46.277089", "43.959391", "44.556885", "42.854761", "43.320393", "44.152089", "46.301174", "49.274994", "45.543871", "45.595835", "43.724736", "51.018042", "43.918216", "45.344742", "43.003516", "42.934883", "44.479886", "44.430744", "44.041313", "45.46895", "45.134129", "43.808412", "44.70781", "42.646291", "44.426714", "45.918282", "43.35709", "46.330624", "43.661944", "43.646527", "44.679125", "42.554901", "44.706217", "48.244614", "42.625424", "44.743533", "48.532316", "48.477872", "42.093849", "44.698698", "44.329193", "43.842391", "42.588052", "45.294299", "44.804643", "44.133793", "45.664873", "43.135525", "45.555157", "43.392911", "43.369246", "45.394105", "43.849736", "45.405793", "43.189028", "46.186663", "42.97614", "43.602313", "43.508683", "45.645036", "44.003336", "43.467811", "43.832961", "45.090752", "46.316931", "43.192488", "46.512082", "44.611684", "42.963407", "43.254536", "46.48566", "44.086926", "43.902387", "46.413394", "42.978911", "47.995727", "48.401843", "48.381429", "42.90956", "44.188993", "43.808387", "44.907607", "45.268658", "43.898715", "45.431185", "43.03864", "43.818841", "43.118836", "42.950003", "43.411219", "44.324598", "44.729134", "46.536837", "45.025045", "43.979765", "43.887284", "44.735721", "45.979276", "44.861855", "43.221017", "44.325607", "43.643023", "48.767042", "43.368968", "44.797058", "43.709687", "43.914176", "43.67786", "43.597398", "42.937682", "43.352685", "44.980789", "49.410078", "43.989193", "42.885961", "43.921029", "46.494454", "49.343272", "42.745567", "43.662111", "44.750948", "43.655339", "49.063753", "44.005647", "42.27416", "42.882252", "43.642134", "50.178307", "45.556377", "43.687084", "45.272075", "43.742657", "45.916035", "44.30848", "44.535991", "45.268598", "44.089264", "43.76842", "42.986497", "45.335318", "45.343693", "43.649767", "44.003665", "43.003641", "44.169401", "43.634405", "43.599978", "43.942808", "46.104299", "44.201521", "43.721155", "46.235789", "43.948906", "43.704246", "45.539799", "43.869052", "43.485081", "43.204704", "43.680158", "42.316644", "44.521529", "49.602074", "43.953441", "46.362694", "43.758887", "42.988414", "43.67688", "44.926638", "43.439161", "44.630174", "46.264366", "44.307375", "43.44058", "44.187202", "44.510093", "43.645332", "43.704062", "45.60989", "44.890743", "43.316189", "43.903819", "44.039001", "43.794196", "42.257722", "46.706205", "44.537622", "45.14861", "43.860582", "43.993415", "43.164107", "45.223493", "45.435778", "43.369923", "43.614667", "49.688719", "44.410208", "46.454616", "43.106212", "43.611843", "43.683127", "43.151753", "43.726729", "43.526687", "48.477908", "44.178136", "45.837003", "44.012654", "43.85745", "42.886269", "44.658301", "43.306407", "43.78384", "44.314384", "43.352493", "44.421208", "45.358284", "45.309847", "44.28233", "49.761915", "44.330528", "43.848648", "44.30702", "48.807961", "48.718531", "43.649585", "43.196657", "43.667499", "43.554741", "46.627813", "45.736012", "45.257571", "46.255875", "43.393276", "43.660505", "43.707004", "43.651766", "42.663159", "43.457771", "43.165007", "44.868637", "44.262723", "43.655404", "46.211956", "46.477852", "44.38894", "43.970393", "42.746855", "43.514116", "44.758582", "49.216422", "44.381493", "43.178879", "45.120953", "47.825687", "46.651742", "45.044111", "43.864812", "48.152289", "43.778596", "44.107696", "44.020378", "44.609442", "45.970298", "43.639925", "51.273898", "45.399256", "42.77169", "43.424257", "43.096459", "43.741296", "50.639184", "45.255077", "43.487136", "43.419664", "43.445936", "42.991183", "43.642136", "42.986185", "43.669186", "44.433353", "45.477843", "46.386346", "42.995625", "43.711298", "45.55561", "43.204988", "43.608283", "44.610571", "43.651216", "43.047455", "45.301429", "45.42299", "48.452022", "43.779723", "45.411755", "43.453389", "45.030311", "43.708487", "46.366258", "44.908482", "47.506908", "44.612085", "44.502811", "43.683997", "43.681034", "43.238358", "43.13448", "44.232974", "42.98019", "49.725354", "45.430355", "43.670479", "44.299473", "43.869953", "43.712679", "43.658325", "44.303185", "43.735622", "43.729482", "45.388587", "46.500884", "49.767685", "43.66818", "46.076709", "48.782546", "44.321688", "44.055685", "42.315283", "48.437819", "43.666877", "44.095062", "46.100441", "43.508082", "43.581877", "43.501119", "43.23525", "43.915717", "43.460617", "43.611589", "42.933728", "42.333479", "44.585439", "43.680019", "44.765545", "43.622726", "43.95208", "43.898319", "43.757942", "41.762038", "49.012543", "43.859391", "43.919396", "43.983065", "45.101476", "43.897121", "42.881308", "43.707374", "45.479757", "42.033465", "42.038824", "42.985145", "43.367035", "43.582757", "43.68894", "44.100444", "51.464862", "43.683343", "45.334306", "43.501666", "44.753247", "43.223026", "42.592058", "45.288346", "45.821142", "43.796802", "42.907259", "45.627543", "47.449651", "43.805439", "44.915425", "44.561861", "43.772152", "42.903539", "43.835043", "43.647591", "43.462025", "43.791022", "45.300179", "42.787693", "43.590598", "45.015735", "46.612928", "42.958102", "44.356011", "43.254982", "44.5876", "43.862874", "44.262724", "43.065997", "45.268906", "45.88675", "44.062447", "43.774042", "44.328675", "43.568007", "43.665544", "45.487988", "43.934505", "45.231182", "43.58273", "43.015098", "48.722054", "43.325975", "42.431646", "43.103005", "45.366618", "43.257921", "43.166706", "43.769818", "45.318294", "43.386688", "43.648296", "43.675325", "47.732113", "43.756401", "43.67083", "44.626357", "43.560979", "49.78086", "44.176108", "48.590351", "44.474011", "43.768838", "45.399647", "45.018344", "42.629644", "43.251816", "43.874134", "42.287819", "43.9271", "42.313571", "46.733879", "43.730987", "48.940246", "44.41544", "42.97539", "42.820428", "45.193561", "45.425672", "43.257188", "43.696878", "45.421533", "43.68089", "44.219366", "44.176011", "43.759234", "43.784748", "42.848779", "46.292823"], ["682444704", "683384062", "682443145", "688119094", "670567676", "671983676", "678123872", "678560943", "673361480", "661699526", "657695065", "657320228", "678873845", "688102853", "664819656", "665536627", "672760342", "679197310", "685978121", "664566289", "678130627", "670486103", "671988170", "679197647", "680835695", "662906639", "661372655", "677677983", "682933216", "685983649", "681530747", "680550715", "670958530", "669177384", "657695121", "684811686", "667264239", "658014135", "659845765", "670522734", "670576215", "676641951", "668592785", "671351739", "672760196", "679162385", "663548965", "663800887", "673651511", "685980588", "680545967", "666189241", "684804151", "663809806", "680546147", "687023257", "680543661", "666817619", "686645970", "670539438", "661712111", "687436738", "663800888", "657615254", "659850809", "667291837", "684104910", "666501126", "687470093", "685261855", "665902389", "666185641", "672366118", "676954836", "661070192", "678556436", "679974048", "663872779", "679965171", "665536967", "684519892", "662574034", "671349188", "666825309", "680551295", "661052257", "661708859", "678874091", "658024960", "662038873", "687746125", "678127444", "673964520", "676194199", "685264696", "679505731", "659535477", "685976293", "678129096", "660651213", "672749985", "685259662", "667671345", "661097202", "682603281", "679197202", "659201813", "679517619", "683810165", "664812590", "662576519", "670549223", "664820060", "681135115", "679511641", "669487094", "662907618", "679197312", "676206112", "670150691", "677682786", "677321642", "670557153", "685260738", "679512893", "682445307", "677314791", "681143877", "663800947", "674782630", "679965030", "658782687", "663809807", "661371620", "676955088", "661700954", "677320404", "678123642", "668675441", "679197206", "676638959", "680546230", "668600513", "670152836", "681135385", "687736560", "666180979", "671343354", "658340971", "678874885", "674360067", "661097203", "666194902", "684803379", "682961116", "682603396", "663203451", "670159625", "667661987", "679161217", "661041999", "676639328", "681135284", "657695120", "669103396", "679968437", "676200019", "676955090", "675812979", "666537547", "661700307", "675807514", "658784379", "665902510", "669857501", "672764634", "687745277", "688119092", "666547298", "670153953", "685977267", "680549401", "688083071", "664528500", "677682788", "657694737", "668298504", "673649023", "684793556", "662103625", "660643913", "667941065", "662907844", "682437558", "684808333", "678129543", "676955089", "687737473", "680544254", "667661509", "684803466", "662076719", "664820943", "676207626", "661060684", "667671596", "664589401", "666825671", "665902002", "678127704", "681944824", "681125861", "670522692", "675807443", "666822722", "669103397", "687737109", "670150325", "686303626", "657615501", "661024878", "679965610", "661364259", "679161693", "658793351", "687745412", "684123031", "682961170", "668326209", "665902388", "688094015", "669494805", "686646083", "683379823", "685969799", "681943630", "664528434", "674782127", "682441443", "687436824", "683375975", "658006171", "679190137", "662573841", "671989378", "671985373", "661708375", "676199003", "674359615", "657667193", "657968465", "673651645", "684113865", "663249222", "679161692", "680835714", "676192519", "669854518", "680835696", "683376794", "666822239", "667937100", "678874886", "674809514", "657312046", "675464019", "668334326", "686620775", "687436368", "684810518", "659562931", "667328197", "687452406", "659480370", "679503219", "667618684", "667934513", "681528116", "668619816", "676201490", "662103964", "687016259", "678131722", "662906819", "661365923", "661701621", "675449515", "681525650", "662908816", "660165984", "687009292", "669103310", "676199936", "663268035", "662906362", "675463989", "667601878", "678558460", "658033101", "679181109", "657320298", "670956208", "685258388", "669103398", "681529668", "672360212", "662576995", "669487043", "657319121", "685266419", "678880865", "670954078", "670957027", "660651411", "681938292", "680838898", "672748762", "682952426", "681936925", "683383953", "658321775", "676198116", "678129299", "683390596", "661052254", "688110403", "670147310", "681528059", "672365922", "671994141", "674809021", "681528285", "677682493", "675451864", "684808323", "663546610", "661705167", "658794684", "669169308", "675447239", "659175604", "663249222", "669177471", "680548017", "661706211", "667943007", "674361887", "673975319", "672359659", "659569167", "663536312", "666183209", "673334272", "660165985", "675807204", "678123871", "680839589", "662103963", "675113236", "679505359", "688119708", "675119487", "682443146", "675461054", "683390670", "674360651", "679517672", "670159626", "680546407", "687013642", "681936951", "657328100", "686627924", "670567739", "676635331", "665536965", "687469842", "674790616", "670951996", "666482879", "659183699", "660157403", "661371523", "681941134", "667627658", "667943008", "665146311", "661699544", "686312765", "666483204", "662574442", "657615255", "673362007", "679971656", "659850572", "669486449", "663194571", "660159115", "674360068", "670954972", "672752698", "667645275", "673974058", "665181405", "676964074", "658795724", "682440918", "658377013", "658331555", "657674689", "663800946", "669486770", "670152837", "664820071", "683379911", "685671553", "669853346", "660634402", "670575873", "680545422", "673969806", "688110250", "682602560", "685258387", "672367741", "657315169", "682932848", "676638960", "670959500", "682594871", "679197962", "657621576", "661704157", "663800948", "675448480", "686311383", "658369952", "657328216", "672366151", "687460576", "662900909", "667644768", "664023030", "682601567", "684802751", "666826268", "686312205", "658778537", "679197204", "661698878", "671999023", "660640547", "670148035", "680832469", "660639352", "673969884", "673353155", "676191206", "674361014", "673651512", "679197516", "683383107", "659193265", "663195191", "661033539", "665146289", "671337390", "683394262", "671989377", "677680038", "666530354", "662568377", "683382364", "681143876", "682439107", "675808704", "666184911", "659174942", "680832500", "669491886", "682448902", "685672600", "660164331", "669856924", "683376795", "684797937", "682971131", "685973489", "680550716", "660639351", "667308635", "676954109", "660634403", "673968842", "676199915", "659554870", "673972535", "682444705", "661060683", "670959515"], ["47.070805", "47.027935", "47.090931", "47.030628", "46.994137", "47.114605", "46.996948", "47.089218", "47.068165", "46.980968", "47.05172", "46.995724", "46.990131", "47.045074", "46.949417", "47.065498", "46.975487", "47.076286", "46.9828", "47.050732", "47.067162", "47.112251", "47.04987", "47.060799", "47.020008", "47.070713", "47.036041", "46.957264", "46.983128", "47.149483", "47.109562", "47.089828", "47.166031", "47.054317", "47.072544", "47.099957", "47.130043", "47.183102", "47.002373", "46.986488", "47.054905", "47.032986", "47.110233", "46.957382", "47.07196", "46.945206", "47.013821", "46.947208", "47.003223", "46.93784", "47.026665", "47.14175", "47.075809", "47.136017", "47.109787", "46.965145", "46.964558", "46.982155", "47.124237", "47.164646", "47.099663", "47.130939", "47.082623", "47.110706", "47.023853", "47.11961", "46.957474", "46.986351", "47.046497", "47.005238", "46.979446", "47.023087", "47.152878", "47.098816", "47.033455", "47.012993", "47.125572", "47.012703", "46.974499", "47.013538", "47.015884", "47.037678", "47.167545", "47.088108", "47.083729", "46.98201", "47.042393", "47.148914", "47.121136", "46.999062", "47.002087", "47.124928", "47.034225", "47.024212", "47.043217", "47.040894", "47.010769", "47.031681", "46.945686", "47.045506", "47.013241", "47.10236", "47.041321", "47.129974", "47.161709", "47.007916", "46.980988", "47.106537", "47.115864", "47.096718", "47.062046", "47.142139", "47.135113", "47.092804", "46.971043", "47.140354", "47.150322", "47.086678", "46.992332", "46.943054", "47.080921", "46.96534", "47.028519", "47.113846", "47.151588", "47.000374", "47.085632", "47.062649", "47.053673", "46.953205", "46.995571", "47.019684", "47.03331", "46.991596", "46.985912", "47.119656", "47.096966", "46.982597", "46.977085", "47.040619", "47.163357", "47.100735", "47.070057", "47.080509", "47.070267", "47.007816", "47.151672", "47.039722", "46.994946", "47.080399", "46.989304", "46.967083", "47.063488", "47.013103", "47.107735", "47.131233", "47.072136", "47.082561", "46.950199", "46.999317", "47.129898", "47.155556", "47.131725", "47.089073", "46.970184", "47.125515", "47.122269", "47.127171", "47.059788", "46.991283", "46.958817", "47.147594", "47.128651", "47.107418", "46.985657", "46.963963", "47.04248", "47.062782", "47.025635", "46.988213", "47.068153", "47.006741", "47.075726", "46.963749", "47.155037", "47.107101", "47.13987", "46.986607", "47.073708", "47.00663", "46.953747", "47.047981", "46.995457", "47.080837", "47.025623", "46.955212", "46.983543", "47.068138", "47.111069", "47.072662", "47.135166", "47.06686", "47.145668", "47.082123", "46.985302", "47.086773", "47.008236", "47.012135", "47.053516", "46.94545", "47.064571", "47.044415", "47.045986", "47.000385", "47.049149", "47.171436", "47.016117", "46.980232", "46.988071", "47.019962", "47.102299", "47.07848", "47.079819", "47.097168", "47.149399", "47.033421", "47.106403", "46.986092", "47.1022", "47.009949", "47.088081", "47.025818", "47.071255", "47.081318", "46.976555", "46.990467", "47.146004", "47.039303", "47.05608", "46.963764", "47.024082", "46.976299", "47.1782", "47.027657", "47.182476", "47.108257", "46.991554", "47.108669", "47.02039", "47.03149", "46.949619", "47.146309", "47.004379", "47.120064", "47.016582", "46.984917", "47.088539", "47.093582", "47.079834", "47.05566", "46.979156", "47.091831", "47.0564", "47.133209", "47.103428", "47.112476", "47.165199", "47.034481", "47.162762", "47.075542", "46.988491", "46.943485", "47.020962", "47.108299", "47.095909", "47.073376", "47.058353", "47.150074", "47.063293", "47.041691", "47.059269", "47.123539", "47.155972", "47.147396", "47.143368", "47.040611", "47.01123", "46.997471", "47.089615", "47.01104", "47.010513", "46.998848", "47.1689", "47.054726", "47.010544", "47.067055", "47.132027", "47.175758", "47.127373", "47.156605", "47.016624", "47.012444", "46.96162", "47.083519", "46.97435", "47.087826", "47.084244", "47.089935", "47.089001", "47.10603", "46.95528", "47.13393", "47.162285", "47.089153", "47.171124", "47.053234", "47.146309", "46.967079", "47.0867", "47.120789", "47.148853", "47.01733", "46.989597", "47.049904", "47.108116", "47.10434", "46.990906", "46.994667", "47.109486", "47.007713", "47.084412", "47.055069", "47.177116", "47.000759", "47.077438", "47.145134", "47.02277", "47.111263", "46.987762", "47.183456", "47.087685", "47.164631", "47.023277", "47.047916", "46.985687", "47.077415", "47.160061", "47.025539", "47.045849", "47.098389", "46.972416", "46.987732", "47.086407", "46.95192", "47.171371", "47.00457", "47.060612", "47.011837", "47.073166", "47.083832", "46.974072", "47.106457", "47.153313", "47.009022", "47.14719", "46.992996", "47.092915", "46.98148", "46.975925", "47.076328", "46.954651", "46.995804", "47.038166", "47.11591", "46.953953", "47.040375", "47.005981", "47.12014", "47.120274", "46.978497", "46.947556", "47.051903", "47.104343", "47.121483", "47.01852", "47.06068", "46.998543", "47.093636", "47.170391", "46.990952", "47.156029", "47.017101", "47.136623", "47.054798", "47.062099", "47.020676", "47.119717", "47.060986", "47.036655", "47.137775", "47.125919", "47.151844", "47.14333", "47.005482", "47.005733", "47.034359", "47.000771", "46.964893", "47.147202", "47.064224", "46.966125", "46.993916", "46.990948", "47.065132", "47.061592", "46.996601", "47.083351", "47.118244", "47.076553", "47.141758", "47.043648", "47.135654", "47.047771", "47.132759", "47.029648", "47.175758", "47.159763", "46.952251", "47.120564", "46.960365", "47.091499", "46.944721", "47.104115", "46.964275", "46.976254", "47.068008", "46.993748", "47.152473", "47.066265", "47.066814", "47.034287", "47.047047", "46.951828", "47.07737", "47.126972", "46.99818", "46.96217", "47.109459", "46.973839", "47.055794", "46.976673", "47.012997", "46.938358", "47.031921", "47.076694", "46.956287", "47.04377", "47.044758", "47.0145", "47.137749", "47.060997", "47.04686", "46.947258", "47.00412", "47.038094", "47.053406", "47.061749", "47.134323", "47.076054", "47.168491", "47.11628", "47.142197", "47.072155", "46.922962", "46.973644", "47.067406", "47.107826", "47.108875", "47.025475", "46.977097", "47.0079", "46.95993", "47.124973", "47.056824", "47.08416", "47.052795", "47.0658", "46.989723", "47.093575", "46.957138", "47.114952", "47.183811", "47.085152", "47.109596", "47.037682", "47.030518", "47.068829", "46.965179", "47.049557", "47.015236"], ["30.33146", "35.351477", "32.762631", "41.267546", "32.762563", "28.494931", "42.087769", "40.072246", "37.255915", "42.999364", "36.116854", "36.205718", "28.545742", "42.425683", "32.588536", "41.462346", "44.776138", "44.867013", "44.425356", "32.973645", "29.776375", "41.31353", "39.949377", "42.449454", "36.201451", "39.109272", "38.092097", "33.925454", "36.045811", "31.027003", "38.720938", "34.542098", "39.970241", "38.051679", "27.538658", "37.630577", "30.941282", "31.086483", "39.423344", "47.69399", "38.363151", "30.521962", "38.426786", "42.63427", "30.183651", "40.002156", "30.348585", "32.795467", "36.687543", "29.404267", "46.809965", "30.403286", "36.566779", "41.016159", "36.139385", "40.02847", "41.434796", "38.367298", "39.819", "29.697038", "40.123708", "34.460537", "35.623029", "44.656686", "32.849008", "35.992691", "41.871331", "44.265633", "38.614986", "40.299646", "31.509039", "37.772399", "33.081863", "42.129274", "38.30382", "41.947335", "30.514401", "47.133606", "34.935636", "41.782681", "33.166739", "34.274355", "30.513308", "37.168435", "39.011225", "42.375821", "31.890374", "37.592184", "43.1791", "44.096194", "35.39068", "34.739023", "37.168435", "35.156491", "32.659277", "34.738793", "33.868314", "35.03319", "33.486049", "39.678495", "31.817344", "36.880746", "35.844753", "42.131526", "40.032664", "36.278298", "33.91967", "40.651751", "42.254087", "30.289646", "45.301337", "34.009209", "42.475886", "40.211241", "41.023872", "41.660949", "48.759079", "30.129908", "35.263287", "40.053308", "40.763899", "34.653448", "33.528734", "43.020176", "47.11929", "43.753837", "43.736145", "41.099008", "34.561584", "38.772117", "29.626187", "39.508608", "38.303103", "31.8007", "37.413716", "40.061694", "42.593047", "35.018385", "38.502854", "32.631009", "40.173141", "36.761698", "40.002514", "35.097719", "28.30073", "32.767329", "33.823495", "30.675635", "29.510562", "41.782915", "38.93193", "29.982746", "37.758568", "34.037557", "41.281518", "40.375925", "41.46213", "39.831061", "34.933617", "33.319722", "36.055115", "31.220059", "41.125695", "33.476908", "28.604717", "32.280746", "46.169982", "33.239097", "30.655348", "33.492107", "40.047966", "33.144908", "35.784708", "35.893121", "38.120303", "36.050286", "41.037325", "37.257053", "33.844814", "29.909764", "44.995029", "40.183837", "36.561341", "33.568573", "32.031067", "39.599755", "33.125032", "41.788536", "33.633685", "41.4376", "43.171707", "30.246309", "39.54083", "43.217069", "37.168985", "40.703502", "36.299293", "32.479492", "39.954363", "27.839802", "33.153528", "30.143485", "36.854812", "36.224218", "43.045076", "48.097144", "37.966292", "45.121666", "31.279043", "38.881082", "44.903165", "26.914393", "44.288158", "37.982775", "39.836586", "34.748066", "29.759314", "39.548928", "39.394701", "39.784614", "42.466292", "38.623304", "32.785", "35.315118", "29.369619", "42.12867", "43.464943", "43.736732", "32.423083", "37.80848", "39.669219", "41.321189", "42.967684", "35.302806", "38.311355", "36.649548", "39.932279", "27.541676", "33.318579", "34.152021", "35.992283", "26.928035", "41.656798", "29.197701", "34.839562", "29.198704", "40.156514", "33.546051", "30.537938", "37.436451", "28.492059", "38.752434", "33.029838", "36.201513", "40.380219", "45.144415", "32.7603", "36.841454", "33.833416", "42.837189", "34.169426", "33.588436", "37.724504", "41.894676", "29.510204", "27.291694", "40.791328", "41.390194", "25.990494", "40.266201", "42.026209", "30.674057", "35.437666", "39.449012", "30.883208", "35.560622", "36.532059", "38.672127", "35.091472", "28.042799", "41.330789", "29.09649", "32.379693", "38.408794", "45.32627", "36.930527", "41.159224", "29.411583", "35.018511", "36.038042", "38.245844", "29.581304", "33.455031", "47.413817", "33.054671", "43.394676", "33.498076", "38.63099", "34.840717", "40.627668", "45.88645", "41.493763", "34.7964", "43.449201", "28.658395", "36.068015", "45.122052", "42.599614", "33.45139", "41.252748", "29.825908", "42.515426", "42.563505", "27.201006", "34.620874", "37.976008", "41.02951", "30.285127", "45.478641", "37.777083", "32.495484", "44.530892", "38.130807", "43.163692", "32.855666", "34.201503", "41.403462", "43.711862", "27.448688", "33.517435", "39.88488", "34.954106", "39.553786", "39.792042", "37.605641", "41.169987", "32.675604", "32.397255", "40.498403", "36.645419", "41.357947", "41.144256", "39.730234", "47.243062", "43.170606", "42.496588", "27.846568", "33.828061", "34.489085", "33.822204", "39.853674", "34.142094", "40.498793", "41.60135", "33.356981", "34.085289", "42.591109", "29.938155", "33.551145", "35.60089", "38.716874", "40.203458", "41.277763", "42.424338", "38.438617", "38.325969", "44.556984", "36.414942", "33.328951", "38.146216", "37.606778", "33.853853", "41.017736", "35.10425", "42.501401", "37.257053", "35.249655", "43.652404", "40.662797", "36.065711", "33.627942", "39.496547", "39.595115", "34.223753", "39.403178", "39.626736", "44.394143", "43.048777", "40.341716", "36.149394", "42.946418", "41.118465", "43.426792", "34.010943", "34.712327", "44.089173", "34.212618", "43.978561", "32.229884", "44.446885", "30.163368", "33.932052", "42.005978", "35.863114", "40.552853", "36.096998", "29.611545", "33.657969", "33.195073", "32.876475", "33.083579", "42.583436", "33.8808", "33.437428", "41.129363", "41.236331", "43.769889", "29.760833", "31.880229", "32.727128", "38.370203", "38.952366", "40.614997", "35.167987", "41.646398", "42.797633", "44.985313", "35.033903", "37.164346", "38.605355", "41.240036", "32.264365", "35.495894", "47.311072", "35.775789", "26.05479", "34.282877", "36.115899", "32.991185", "42.609789", "27.884565", "36.506407", "26.195591", "34.613973", "35.447961", "38.668827", "40.409641", "31.447119", "37.94384", "29.510439", "39.470949", "30.408807", "37.81109", "42.292335", "29.943573", "37.738348", "37.305769", "38.643248", "42.662671", "41.471569", "46.343483", "39.261679", "41.574581", "26.719596", "41.74805", "33.034586", "28.545742", "31.782408", "37.926666", "35.239022", "34.265985", "39.039636", "39.393237", "44.020483", "38.935305", "42.527184", "46.630721", "34.779227", "42.169106", "42.853039", "29.166186", "42.980163", "35.028574", "36.831723", "33.968011", "38.616891", "40.777036", "33.481491", "28.006247", "26.348354", "29.363335", "35.594103", "41.320904", "34.606146", "43.299689", "40.50217", "39.637245", "32.810275", "35.533093", "37.91496"], ["3136G2GG6", "3136G2BQ9", "3135G0G64", "3136G2DK0", "3136G2UH8", "3135G0B28", "3136G2C96", "3136G2KM8", "3136G2GU5", "3136G2R66", "3136G2HJ9", "3136G2GP6", "3136G2EF0", "3136G2VW4", "3136G2SP3", "3135G0D67", "3136G2F51", "3136G2E60", "3136G2S40", "3136G2DL8", "3136G2JB4", "3136G2F36", "3136G2DW4", "3136G2LD7", "3136G2PG6", "3136G2UK1", "3136G2KG1", "3136G2RN9", "3136G2FM4", "3136G2PJ0", "3136G2LY1", "3136G2R90", "3136G2V20", "3136G2FT9", "3135G0F65", "3136G2DT1", "3136G2LE5", "3136G2NH6", "3136G2TZ0", "3136G2J99", "3136G2RE9", "3136G2ML8", "3136G2RJ8", "3136G2MB0", "3136G2QL4", "3136G2V61", "3136G2C54", "3136G2S65", "3136G2JX6", "3136G2QK6", "3136G2JA6", "3136G2TY3", "3136G2DX2", "3136G2SJ7", "3136G2HX8", "3136G2JR9", "3136G2FZ5", "3136G2EX1", "3136G2UL9", "3136G2NV5", "3136G2QB6", "3135G0C43", "3135G0B93", "3136G2RS8", "3136G2TW7", "3136G2N86", "3136G2D46", "3136G2NW3", "3136G2SR9", "3136G2R41", "3136G2MN4", "3136G2PS0", "3136G2VC8", "3136G2L54", "3136G2G84", "3136G2K30", "3136G2PV3", "3136G2TT4", "3136G2HH3", "3136G2Q34", "3136G2HM2", "3136G2JJ7", "3136G2UD7", "3136G2EV5", "3136G2T56", "3136G2JE8", "3136G2L70", "3136G2L39", "3135G0E41", "3135G0B85", "3136G2JU2", "3136G2EJ2", "3136G2VF1", "3136G2VB0", "3136G2LK1", "3136G2GD3", "3136G2FB8", "3136G2U21", "3136G2CB1", "3135G0G31", "3136G2VM6", "3136G2J81", "3136G2MQ7", "3136G2DM6", "3136G2PE1", "3136G2HL4", "3136G2UN5", "3136G2FV4", "3136G2U47", "3136G2HK6", "3136G2LN5", "3136G2RF6", "3136G2LX3", "3135G0C68", "3136G2GY7", "3136G2HT7", "3136G2KJ5", "3136G2S32", "3135G0D83", "3136G2DR5", "3135G0H48", "3136G2MA2", "3136G2HZ3", "3136G2NQ6", "3136G2DZ7", "3136G2NG8", "3136G2GH4", "3136G2SY4", "3136G2P35", "3136G2LM7", "3136G2JP3", "3136G2MZ7", "3136G2PQ4", "3136G2VK0", "3136G2SQ1", "3136G2RV1", "3136G2G68", "3136G2BZ9", "3136G2QW0", "3136G2QR1", "3136G2KC0", "3136G2JG3", "3136G2DJ3", "3136G2VA2", "3136G2K97", "3136G2LP0", "3136G2RG4", "3136G2MY0", "3136G2SU2", "3135G0B36", "3136G2G76", "3136G2QH3", "3136G2V38", "3136G2PN1", "3136G2JS7", "3136G2HB6", "3136G2FH5", "3136G2PU5", "3136G2TD9", "3136G2F28", "3136G2TR8", "3136G2FL6", "3136G2MU8", "3136G2MX2", "3136G2U62", "3136G2P68", "3136G2KZ9", "3136G2G27", "3136G2ES2", "3136G2LV7", "3136G2UZ8", "3135G0E82", "3136G2RZ2", "3136G2NF0", "3136G2KT3", "3136G2NK9", "3136G2TN7", "3135G0D67", "3136G2JC2", "3136G2S73", "3136G2FG7", "3136G2FX0", "3136G2PM3", "3136G2D79", "3136G2UC9", "3136G2HQ3", "3136G2DU8", "3136G2UT2", "3136G2P27", "3136G2S57", "3136G2JD0", "3136G2T98", "3136G2RQ2", "3136G2QA8", "3136G2RY5", "3136G2E52", "3136G2CC9", "3136G2VJ3", "3136G2E94", "3136G2LH8", "3136G2K71", "3136G2TM9", "3136G2EC7", "3136G2UE5", "3136G2GQ4", "3136G2CE5", "3136G2N60", "3136G2SZ1", "3135G0H30", "3136G2VX2", "3136G2NM5", "3136G2JH1", "3136G2M79", "3136G2ME4", "3136G2UM7", "3135G0D67", "3136G2EB9", "3136G2GN1", "3136G2NR4", "3136G2PP6", "3136G2V95", "3135G0C92", "3136G2MV6", "3136G2M46", "3136G2EA1", "3135G0G98", "3136G2MG9", "3136G2JQ1", "3136G2KK2", "3136G2H91", "3136G2SL2", "3136G2KR7", "3136G2QT7", "3136G2BM8", "3136G2UY1", "3136G2C47", "3136G2JZ1", "3136G2NA1", "3136G2DF1", "3136G2BV8", "3136G2NP8", "3136G2U88", "3136G2TS6", "3136G2QM2", "3136G2J24", "3135G0D91", "3136G2P50", "3136G2QX8", "3136G2GH4", "3136G2CN5", "3136G2PZ4", "3136G2FF9", "3135G0C76", "3136G2UU9", "3136G2KF3", "3136G2UV7", "3136G2J32", "3136G2HD2", "3135G0D42", "3136G2RA7", "3136G2JF5", "3135G0E90", "3136G2K89", "3136G2RC3", "3136G2ET0", "3136G2CT2", "3136G2M95", "3136G2MT1", "3136G2R33", "3136G2LT2", "3136G2SW8", "3136G2F69", "3136G2KP1", "3136G2UX3", "3136G2E86", "3136G2UG0", "3136G2GC5", "3136G2MM6", "3136G2RT6", "3136G2T31", "3136G2V53", "3136G2J65", "3136G2Q83", "3136G2E37", "3136G2R82", "3136G2QG5", "3136G2VV6", "3136G2MJ3", "3136G2U96", "3136G2E78", "3135G0G56", "3136G2SD0", "3136G2K48", "3136G2E45", "3136G2M87", "3136G2JV0", "3136G2H67", "3136G2PK7", "3136G2D20", "3136G2UA3", "3136G2UW5", "3136G2QJ9", "3136G2RD1", "3136G2KQ9", "3135G0A94", "3136G2VD6", "3136G2DG9", "3136G2DC8", "3136G2CU9", "3136G2KV8", "3136G2FE2", "3136G2N29", "3136G2NB9", "3136G2EE3", "3136G2PL5", "3136G2LR6", "3136G2KL0", "3136G2UB1", "3136G2BN6", "3136G2JT5", "3136G2BK2", "3136G2FK8", "3136G2RP4", "3136G2E29", "3136G2V46", "3136G2PH4", "3136G2KU0", "3136G2LB1", "3136G2P43", "3136G2FC6", "3136G2CY1", "3136G2US4", "3136G2GZ4", "3136G2F85", "3136G2FS1", "3136G2KE6", "3136G2TJ6", "3136G2FJ1", "3136G2H42", "3136G2CV7", "3136G2NX1", "3136G2JY4", "3136G2U70", "3136G2EU7", "3136G2NT0", "3136G2QQ3", "3136G2SX6", "3136G2QV2", "3136G2F93", "3136G2SC2", "3136G2SF5", "3136G2HV2", "3135G0G23", "3136G2Q67", "3136G2CL9", "3136G2L62", "3136G2VH7", "3136G2T23", "3136G2F44", "3136G2TC1", "3136G2FP7", "3136G2CR6", "3136G2LZ8", "3136G2TP2", "3136G2FQ5", "3136G2H26", "3136G2SH1", "3136G2GV3", "3136G2GW1", "3136G2SM0", "3136G2TV9", "3136G2RU3", "3136G2HW0", "3136G2L88", "3136G2PA9", "3136G2VS3", "3136G2PX9", "3136G2SE8", "3136G2EK9", "3136G2HF7", "3136G2MR5", "3136G2VP9", "3136G2PB7", "3136G2KH9", "3136G2TE7", "3136G2R25", "3136G2NN3", "3136G2HG5", "3136G2VY0", "3136G2CS4", "3136G2V79", "3136G2LJ4", "3136G2D87", "3135G0D26", "3136G2U54", "3136G2P76", "3136G2DB0", "3136G2RL3", "3136G2CJ4", "3136G2GL5", "3136G2N78", "3136G2KB2", "3136G2LG0", "3136G2VN4", "3136G2SB4", "3136G2LF2", "3136G2VU8", "3136G2MW4", "3136G2RR0", "3136G2U39", "3136G2NZ6", "3136G2NL7", "3136G2D53", "3136G2TF4", "3136G2KA4", "3135G0A86", "3136G2DS3", "3136G2CM7", "3136G2PR2", "3136G2QS9", "3136G2HP5", "3135G0C35", "3136G2HA8", "3136G2K55", "3136G2EY9", "3136G2EQ6", "3136G2HR1", "3136G2PW1", "3136G2MD6", "3136G2JK4", "3136G2NS2", "3136G2QY6", "3136G2UR6", "3136G2GT8", "3136G2QP5", "3136G2ST5", "3136G2CP0", "3135G0C27", "3136G2FN2", "3136G2PY7", "3136G2GX9", "3135G0B69", "3136G2GA9", "3136G2RM1", "3136G2G43", "3136G2T64", "3136G2EL7", "3136G2P92", "3136G2RH2", "3136G2NE3", "3136G2T72", "3136G2T49", "3136G2EP8", "3136G2F77", "3136G2VT1", "3136G2M20", "3136G2P84", "3136G2G50", "3136G2C70", "3136G2EN3", "3136G2KS5", "3136G2PC5", "3136G2L96", "3136G2EG8", "3136G2LU9", "3136G2RX7", "3136G2Q91", "3136G2UP0", "3135G0D59", "3136G2UQ8", "3136G2NY9", "3136G2DA2", "3136G2G92", "3136G2GF8", "3135G0B51", "3136G2N45", "3136G2TX5", "3136G2RB5", "3136G2EW3", "3136G2GS0", "3136G2S99", "3136G2SA6", "3136G2R58", "3135G0C84", "3136G2M53", "3136G2Q42", "3136G2DQ7", "3136G2ED5", "3136G2HE0", "3136G2QD2", "3136G2TU1", "3136G2M38", "3136G2RK5", "3136G2DN4", "3136G2TK3", "3136G2L21", "3136G2CK1", "3136G2CQ8", "3136G2QZ3", "3136G2VG9"], ["43.590691", "42.919811", "43.494011", "43.44965", "43.497471", "41.953201", "43.490551", "43.338112", "43.33522", "42.465012", "42.44104", "42.91655", "43.457119", "43.353161", "43.570179", "41.850201", "43.345711", "43.460758", "42.949459", "43.452518", "42.914452", "43.5811", "42.437321", "43.328579", "43.489422", "42.499592", "42.899731", "43.56464", "42.452042", "42.93816", "43.36095", "43.537979", "43.425289", "43.50032", "43.301788", "43.461842", "43.668861", "43.43697", "43.355621", "43.699509", "43.586979", "42.458061", "43.576321", "43.49152", "43.324032", "43.354382", "41.948662", "43.57803", "43.758389", "43.495171", "43.650459", "43.58036", "42.533958", "43.579762", "43.586941", "42.941921", "43.367531", "43.358822", "43.711552", "43.33952", "43.440521", "43.757301", "42.486919", "42.928268", "43.67337", "43.35844", "43.35799", "43.497608", "43.568779", "43.658932", "43.604778", "43.48716", "42.488392", "43.52158", "43.483582", "43.74118", "43.3582", "43.333691", "41.916451", "43.357262", "43.3274", "43.293659", "43.476639", "43.782219", "43.438221", "43.56789", "43.49403", "43.49601", "43.487492", "43.33215", "43.409161", "43.336449", "43.37706", "41.97393", "43.335072", "43.439548", "43.764679", "43.798222", "43.564678", "43.331051", "42.92947", "43.321178", "43.490952", "43.321388", "43.47665", "43.30521", "43.37635", "45.253899", "43.335892", "42.44178", "43.48584", "43.352612", "43.576389", "43.577721", "43.782169", "45.3652", "43.582829", "41.855042", "42.939381", "43.547138", "43.355598", "43.4963", "43.384762", "43.34391", "43.585621", "43.36483", "45.232639", "43.324032", "43.355148", "43.580502", "42.958549", "43.34042", "43.369179", "42.45134", "43.31691", "43.405029", "43.582439", "43.464649", "42.8601", "43.488789", "43.543152", "43.486389", "43.342209", "42.461651", "43.569439", "43.497871", "43.575249", "43.458858", "41.862228", "42.91993", "43.715359", "43.343208", "42.90638", "43.476608", "43.714111", "43.65778", "43.343491", "43.341862", "43.309361", "42.93935", "43.57325", "43.44276", "42.45961", "43.46682", "43.363239", "43.357929", "43.478149", "43.354519", "43.580101", "43.359009", "43.56942", "43.48481", "43.350761", "42.960629", "43.32069", "43.358879", "43.32642", "42.917629", "43.436119", "43.371799", "43.745129", "43.547649", "43.787689", "42.928429", "43.308048", "43.49535", "42.91782", "43.476669", "42.56131", "43.776089", "42.490978", "43.287319", "43.36615", "43.341171", "43.396561", "43.362228", "43.300121", "42.454288", "43.572208", "43.4995", "43.574162", "43.356491", "42.459099", "43.562698", "43.329109", "42.45628", "43.575588", "42.490292", "43.358898", "43.3526", "43.345081", "43.357128", "43.476662", "43.361561", "43.354839", "43.476669", "43.338081", "43.313889", "43.487019", "42.93074", "42.922588", "42.93589", "43.476662", "43.374001", "45.226749", "43.487049", "43.476669", "43.41695", "43.346771", "42.556721", "43.429741", "42.445019", "43.35556", "43.482311", "43.6082", "43.49622", "43.348621", "43.347698", "43.342178", "43.444729", "43.788559", "43.34586", "43.382309", "43.683201", "43.451519", "42.51722", "43.31567", "43.497608", "43.514229", "43.484531", "43.494289", "43.292999", "43.343929", "43.36673", "43.476681", "42.497799", "43.580448", "43.583061", "43.80172", "43.786171", "42.456051", "43.476631", "42.952641", "43.441978", "41.996471", "43.45948", "43.31982", "43.561241", "41.925968", "45.315071", "43.42733", "43.496658", "42.436798", "43.759441", "43.289669", "43.372959", "43.6623", "42.56176", "43.389099", "43.590488", "43.340549", "43.437359", "42.92078", "43.44693", "43.351002", "43.600151", "43.777699", "42.521912", "43.637932", "42.941021", "43.447769", "43.328979", "43.409149", "43.49157", "43.476662", "42.560612", "43.572521", "43.343342", "43.341911", "43.349018", "43.358952", "43.476662", "42.93293", "43.651459", "43.327068", "43.45269", "42.483131", "43.476681", "42.489109", "43.353619", "43.31395", "41.966862", "43.329529", "43.297649", "43.48801", "42.940262", "43.409199", "43.663399", "43.491161", "43.357929", "43.350979", "43.451721", "43.362621", "41.84296", "43.649349", "43.489891", "42.561691", "42.460609", "43.568531", "43.409191", "43.581791", "43.377499", "43.368431", "42.94614", "43.588821", "43.344681", "43.355431", "43.49128", "43.782001", "45.360241", "43.454979", "42.92733", "43.528469", "43.570011", "43.483082", "43.331089", "43.566429", "45.274719", "43.392319", "43.349682", "42.89817", "42.45591", "43.78986", "43.521759", "43.570202", "43.51638", "43.568829", "43.513611", "43.344398", "43.541489", "43.33952", "42.536171", "45.295319", "43.314411", "43.35186", "43.476608", "43.4464", "43.345299", "41.964581", "43.345558", "43.572559", "43.54023", "43.4991", "43.303631", "43.298409", "43.56649", "43.309811", "43.435242", "43.582142", "41.918911", "43.572071", "43.57618", "43.582451", "43.34866", "41.84552", "43.338619", "43.482609", "43.605968", "43.49762", "41.86924", "43.280628", "43.57114", "43.333599", "43.489471", "43.286598", "43.30489", "43.68639", "43.374828", "43.355839", "43.28986", "43.358711", "43.476669", "43.521679", "42.45858", "42.493542", "43.35545", "43.31229", "43.494598", "42.950329", "43.374512", "43.357281", "43.310822", "45.312599", "41.84058", "43.625729", "43.751141", "43.370762", "43.479839", "43.348801", "43.326111", "43.565868", "41.99181", "43.578671", "43.49213", "43.310051", "43.79668", "42.538391", "43.669891", "43.376221", "43.37558", "43.539822", "43.335331", "43.564388", "43.32774", "43.568069", "42.954609", "43.349911", "43.512581", "43.357151", "42.49535", "43.345879", "43.277512", "43.49707", "42.919449", "43.356392", "43.344559", "43.345539", "43.441059", "43.490261", "43.34433", "45.287571", "43.533459", "43.494259", "43.44241", "43.69838", "42.45208", "43.584888", "43.5186", "43.47665", "41.871571", "43.341011", "43.337212", "43.33812", "42.960491", "43.358952", "43.41238", "41.881168", "43.370281", "42.472382", "43.305031", "43.555851", "43.381802", "43.356579", "43.32576", "43.343239", "42.95179", "42.953331", "42.906811", "43.636829", "43.346661", "45.387348", "43.328079", "43.789848", "43.356491", "43.588638", "45.347832", "43.341709", "43.352951", "43.56332", "43.42754", "43.33474", "43.476639", "43.405312", "43.56316", "43.351089", "41.878799", "42.951012", "43.431862", "42.926842", "43.469028"], ["74.834999", "75.361656", "75.163017", "74.891167", "75.011002", "75.420563", "75.253326", "75.584999", "75.421669", "75.384666", "75.183998", "75.356499", "75.239578", "74.82933", "75.237999", "75.200333", "75.421669", "74.797501", "74.970093", "75.120667", "75.25", "75.013344", "75.145332", "74.860001", "75.167686", "75.344337", "75.626831", "74.947083", "75.375", "75.266327", "75.190887", "75.154999", "75.262833", "75.263634", "75.195343", "74.866997", "75.620827", "74.870689", "75.311668", "75.096657", "75.215927", "75.162498", "74.985168", "74.797836", "75.625343", "75.021339", "75.283669", "74.935829", "75.181259", "74.862503", "75.418327", "74.920837", "75.376671", "75.141327", "74.827003", "75.132668", "74.936501", "74.806831", "75.343674", "75.269829", "74.995506", "74.965332", "75.167213", "75.197998", "74.802498", "75.23333", "75.183647", "75.018333", "75.057671", "75.028343", "74.831001", "75.150002", "75.352997", "75.036827", "75.370003", "75.136673", "75.424667", "75.056664", "75.015839", "75.415001", "74.780998", "75.583", "75.385002", "75.039673", "74.807503", "75.328667", "75.404167", "75.279343", "75.153343", "75.379669", "75.243332", "75.309113", "75.177727", "75.200829", "75.143997", "74.773338", "74.902313", "75.409157", "75.363327", "75.216003", "75.112999", "75.362289", "75.139999", "74.927162", "74.820343", "74.775002", "75.360001", "75.421669", "75.578987", "75.15667", "75.048157", "74.913673", "74.94883", "74.760002", "75.272293", "75.298447", "74.870003", "75.322662", "75.14267", "75.21833", "75.140663", "75.235832", "75.312332", "75.000671", "75.192833", "75.367409", "75.005836", "75.074173", "75.135674", "74.815002", "75.369331", "75.293114", "75.375", "75.356003", "75.21833", "75.091667", "74.693466", "74.824837", "75.213531", "74.954086", "75.003326", "75.201828", "74.909157", "75.211502", "75.008331", "75.04467", "74.952332", "74.910843", "74.931664", "74.8125", "75.381668", "75.070663", "74.955833", "75.372002", "75.290443", "74.861", "74.865349", "75.050987", "74.897697", "75.266663", "75.081169", "75.387657", "75.373001", "74.950577", "75.100662", "75.148003", "75.375", "75.385002", "75.338333", "75.366669", "74.815826", "75.355003", "75.60833", "75.17704", "75.116669", "75.250679", "74.724663", "74.793327", "75.197327", "74.88385", "75.34333", "75.210831", "75.188667", "75.063667", "75.301109", "74.758331", "75.126999", "74.943581", "75.303772", "74.879227", "75.163017", "75.37867", "75.026497", "75.364304", "75.421669", "74.945343", "74.876038", "75.09433", "74.928337", "75.419449", "75.258667", "75.188499", "74.763", "75.386169", "74.923332", "75.336998", "75.577003", "75.217728", "75.224998", "74.800003", "74.915833", "75.084663", "75.297668", "75.324333", "74.865501", "75.152161", "75.422668", "74.855003", "75.010834", "74.990334", "75.147003", "75.146667", "74.788338", "75.186333", "75.319328", "75.610832", "75.622337", "74.698669", "75.367157", "74.925827", "75.380669", "75.39267", "75.30117", "74.805", "75.172791", "75.343002", "75.345657", "74.998581", "75.158333", "75.276657", "74.859497", "75.375", "75.383667", "75.315826", "75.083656", "75.228333", "75.186043", "75.171928", "75.623833", "75.280167", "75.228828", "75.282333", "74.765999", "75.220833", "74.979584", "75.421669", "75.102333", "75.375671", "75.224327", "75.205002", "74.763344", "75.421669", "74.858002", "75.389664", "75.045326", "75.269997", "75.331673", "74.847", "75.351013", "75.118332", "74.838997", "75.220497", "75.306442", "75.385002", "75.254997", "75.21833", "74.900162", "75.023338", "75.231499", "75.244499", "75.355667", "75.385674", "74.823013", "75.09967", "75.090157", "75.209999", "75.363472", "75.273331", "75.242043", "75.14183", "74.768333", "75.128662", "75.167664", "75.224579", "74.975166", "74.756668", "75.339668", "75.368523", "74.960632", "75.574997", "74.918167", "75.05117", "75.613327", "75.005836", "75.158836", "75.219833", "74.847", "75.349167", "75.366669", "74.851334", "75.341003", "74.856506", "75.37767", "75.033997", "75.338997", "74.778", "75.237671", "75.363892", "75.318001", "75.181664", "75.110336", "74.989082", "75.358002", "74.984337", "75.364723", "75.355499", "74.888474", "74.94133", "75.396667", "75.202667", "75.38517", "74.794998", "75.254173", "74.881378", "75.191002", "75.426666", "74.772003", "75.342331", "74.918327", "75.276657", "75.042503", "75.287781", "75.215332", "75.214127", "75.367668", "75.425667", "74.941833", "74.863998", "74.792503", "74.8685", "74.893082", "75.595497", "75.294167", "75.382668", "74.843002", "75.064163", "75.287163", "75.601334", "74.753326", "75.330673", "74.906929", "75.290657", "74.974831", "75.368156", "75.077164", "75.366669", "75.03817", "74.946167", "74.811333", "75.295776", "75.348999", "75.400673", "75.581001", "75.188332", "75.371002", "75.249657", "74.874619", "75.368332", "75.195663", "75.146004", "75.21653", "74.851013", "75.276329", "75.070663", "75.016167", "75.031174", "75.388657", "75.097", "75.067162", "74.778343", "75.374001", "74.993843", "74.955833", "75.183144", "75.206329", "75.618332", "75.122673", "75.369003", "75.365669", "74.802338", "75.141998", "75.215332", "75.263329", "75.206329", "74.940079", "75.628326", "75.338661", "74.819", "74.809998", "74.783333", "74.886673", "75.020844", "75.21833", "75.365173", "74.933327", "75.366669", "75.107674", "75.347", "75.359657", "75.357674", "75.386673", "75.366669", "75.345001", "75.273331", "75.177963", "75.03167", "74.904663", "75.366173", "75.28511", "75.308167", "75.151657", "75.077667", "75.362923", "75.259987", "75.40667", "74.9655", "75.342163", "74.698669", "74.930832", "75.053833", "74.895668", "75.411667", "74.96067", "74.950996", "75.060173", "75.025833", "74.842667", "75.088173", "74.838333", "75.193336", "74.855667", "75.423668", "75.124657", "75.615829", "75.104668", "75.352669", "74.833832", "75.144669", "75.592003", "75.149338", "74.922661", "74.970337", "75.157333", "75.148666", "75.108673", "75.131332", "75.588501", "74.787003", "74.790001", "75.304657", "74.980003", "75.172379", "75.246361", "75.147339", "75.341667", "74.913338", "75.256668", "75.112663", "75.369629", "75.340332", "74.938332", "75.367332", "75.214729", "75.259323", "75.105003", "75.232079", "75.246674", "75.335167", "74.783997", "74.768997", "75.26796", "75.325668", "75.143333", "75.115662", "75.217133"], ["21.540000", "22.980000", "23.370000", "23.990000", "21.360000", "12.340000", "17.480000", "15.110000", "14.200000", "16.440000", "17.900000", "8.080000", "19.670000", "17.820000", "18.160000", "13.720000", "21.320000", "21.060000", "13.800000", "17.670000", "11.140000", "16.620000", "20.400000", "19.270000", "7.090000", "13.370000", "16.660000", "14.950000", "13.960000", "16.970000", "17.050000", "18.280000", "22.930000", "18.160000", "22.020000", "17.330000", "15.480000", "26.040000", "23.420000", "24.600000", "16.880000", "16.540000", "17.500000", "16.570000", "11.440000", "14.310000", "15.760000", "22.640000", "19.020000", "17.820000", "15.080000", "19.580000", "13.600000", "12.710000", "20.990000", "20.060000", "19.850000", "20.680000", "22.590000", "22.980000", "11.920000", "19.230000", "21.520000", "16.200000", "17.260000", "8.460000", "14.110000", "20.080000", "18.670000", "17.100000", "17.130000", "16.930000", "18.040000", "14.710000", "21.140000", "14.210000", "19.140000", "23.450000", "13.500000", "21.980000", "16.290000", "15.180000", "14.220000", "14.200000", "25.330000", "13.840000", "11.400000", "13.590000", "15.590000", "14.610000", "20.460000", "13.640000", "13.690000", "21.960000", "22.580000", "15.020000", "21.790000", "24.050000", "19.970000", "10.970000", "21.340000", "20.030000", "11.510000", "16.800000", "8.210000", "13.730000", "16.480000", "20.410000", "13.550000", "23.680000", "15.900000", "15.220000", "23.490000", "7.540000", "17.970000", "4.760000", "22.650000", "19.270000", "13.660000", "23.530000", "12.520000", "13.640000", "18.960000", "18.320000", "21.880000", "13.060000", "16.120000", "19.980000", "14.270000", "15.910000", "13.030000", "20.260000", "13.000000", "24.580000", "19.550000", "11.660000", "19.800000", "18.620000", "18.470000", "16.120000", "24.230000", "6.620000", "14.020000", "8.780000", "15.170000", "18.220000", "16.680000", "14.430000", "14.190000", "14.710000", "19.090000", "24.450000", "18.410000", "18.230000", "20.430000", "13.400000", "19.100000", "15.160000", "24.650000", "21.880000", "17.080000", "10.840000", "19.390000", "18.450000", "16.050000", "17.230000", "26.560000", "18.310000", "20.660000", "20.050000", "15.730000", "17.350000", "20.130000", "19.520000", "17.980000", "15.160000", "13.940000", "21.440000", "15.980000", "19.690000", "20.000000", "16.820000", "9.460000", "16.840000", "20.090000", "10.390000", "16.440000", "15.150000", "8.020000", "13.190000", "10.980000", "14.880000", "16.930000", "20.540000", "18.420000", "17.880000", "22.690000", "9.830000", "18.790000", "13.410000", "17.650000", "16.870000", "21.580000", "13.850000", "6.800000", "19.220000", "17.980000", "21.090000", "12.270000", "18.090000", "17.840000", "19.060000", "13.320000", "21.130000", "16.460000", "17.360000", "14.870000", "20.960000", "12.960000", "13.910000", "21.190000", "18.390000", "17.090000", "16.350000", "10.490000", "27.600000", "16.540000", "13.610000", "22.160000", "15.930000", "15.190000", "19.060000", "16.670000", "14.600000", "16.930000", "23.490000", "13.370000", "9.170000", "21.950000", "13.860000", "2.650000", "13.010000", "15.210000", "25.930000", "21.810000", "30.750000", "17.990000", "13.660000", "23.260000", "16.070000", "9.050000", "23.030000", "21.390000", "18.330000", "24.290000", "15.960000", "17.190000", "16.750000", "15.340000", "18.960000", "13.120000", "10.090000", "13.260000", "15.910000", "23.260000", "11.750000", "14.860000", "13.740000", "17.810000", "18.000000", "23.470000", "16.070000", "21.120000", "12.330000", "14.790000", "11.810000", "19.790000", "14.760000", "19.470000", "22.130000", "16.710000", "22.000000", "16.630000", "20.000000", "11.880000", "11.250000", "16.220000", "16.470000", "21.060000", "20.600000", "15.750000", "20.550000", "10.110000", "10.560000", "21.570000", "15.650000", "17.500000", "16.720000", "14.440000", "15.590000", "14.100000", "22.760000", "20.450000", "12.800000", "13.180000", "7.490000", "17.990000", "20.440000", "20.320000", "14.620000", "18.790000", "25.790000", "21.050000", "18.450000", "14.030000", "24.420000", "12.270000", "11.540000", "6.990000", "21.200000", "15.880000", "20.280000", "18.040000", "17.990000", "17.460000", "15.000000", "8.980000", "19.000000", "12.400000", "19.130000", "14.380000", "19.750000", "12.980000", "22.210000", "15.440000", "19.330000", "16.630000", "17.380000", "20.530000", "16.020000", "13.740000", "21.160000", "16.120000", "17.300000", "17.620000", "20.370000", "11.200000", "21.840000", "15.270000", "15.160000", "20.800000", "12.350000", "16.710000", "21.560000", "22.070000", "21.220000", "9.820000", "15.810000", "17.740000", "10.910000", "13.060000", "14.160000", "11.570000", "17.600000", "19.850000", "14.840000", "26.640000", "12.990000", "22.140000", "13.430000", "13.560000", "16.220000", "14.420000", "14.060000", "11.730000", "16.950000", "20.640000", "14.230000", "28.890000", "9.600000", "23.530000", "15.300000", "8.740000", "12.470000", "27.900000", "18.390000", "11.990000", "20.570000", "12.620000", "20.830000", "15.770000", "20.130000", "13.360000", "17.020000", "16.270000", "15.020000", "17.340000", "11.580000", "14.210000", "17.620000", "24.730000", "15.560000", "14.250000", "16.070000", "15.300000", "15.870000", "16.460000", "15.770000", "14.680000", "17.470000", "14.760000", "18.220000", "16.640000", "18.650000", "20.670000", "19.750000", "17.110000", "18.400000", "18.870000", "19.630000", "21.860000", "13.630000", "21.490000", "15.840000", "14.820000", "13.910000", "15.320000", "14.260000", "18.280000", "15.340000", "14.630000", "18.660000", "11.140000", "18.730000", "16.470000", "17.050000", "16.580000", "20.200000", "17.810000", "14.740000", "25.800000", "13.350000", "10.790000", "23.100000", "15.690000", "23.320000", "18.290000", "11.140000", "23.290000", "10.960000", "11.620000", "15.940000", "22.270000", "10.100000", "14.880000", "8.760000", "13.390000", "21.730000", "13.020000", "16.780000", "23.000000", "20.770000", "17.610000", "13.230000", "17.940000", "17.980000", "20.960000", "22.690000", "21.510000", "18.250000", "16.490000", "12.160000", "22.320000", "17.700000", "19.440000", "16.880000", "15.230000", "13.860000", "19.000000", "10.480000", "14.530000", "20.020000", "22.890000", "22.230000", "21.480000", "12.960000", "17.880000", "14.240000", "19.070000", "16.050000", "21.750000", "15.780000", "16.800000", "18.100000", "12.250000", "12.410000", "15.900000", "13.140000", "24.070000", "25.150000"], ["8.670000", "4.730000", "11.530000", "9.940000", "6.930000", "7.760000", "10.680000", "10.700000", "8.080000", "11.410000", "6.970000", "11.480000", "5.570000", "6.290000", "11.740000", "7.170000", "7.540000", "6.010000", "5.980000", "9.050000", "8.860000", "5.420000", "12.710000", "6.910000", "10.280000", "6.800000", "10.440000", "11.820000", "12.220000", "7.170000", "10.960000", "10.310000", "7.680000", "9.800000", "7.860000", "11.550000", "4.770000", "9.820000", "9.580000", "8.360000", "11.650000", "8.910000", "14.030000", "10.920000", "6.780000", "9.290000", "7.590000", "10.930000", "8.750000", "9.360000", "10.830000", "9.830000", "8.470000", "3.470000", "9.770000", "5.710000", "6.630000", "7.980000", "7.430000", "8.590000", "9.090000", "10.850000", "7.800000", "6.590000", "6.370000", "5.730000", "9.630000", "4.340000", "9.910000", "12.590000", "8.350000", "8.470000", "11.670000", "10.260000", "10.640000", "6.890000", "9.740000", "8.130000", "9.710000", "9.520000", "12.330000", "10.090000", "9.460000", "7.990000", "7.340000", "10.980000", "10.580000", "12.610000", "11.270000", "11.500000", "2.250000", "7.090000", "8.830000", "8.780000", "11.510000", "7.840000", "9.460000", "6.860000", "9.590000", "8.080000", "5.830000", "9.170000", "9.160000", "13.660000", "8.930000", "11.110000", "8.210000", "10.620000", "3.410000", "7.250000", "12.710000", "12.630000", "1.970000", "8.950000", "6.680000", "10.210000", "11.390000", "8.640000", "8.460000", "13.260000", "6.510000", "9.370000", "8.840000", "9.450000", "10.510000", "7.220000", "11.400000", "6.900000", "11.820000", "7.500000", "10.450000", "8.480000", "9.060000", "8.230000", "3.610000", "5.360000", "12.700000", "8.680000", "8.040000", "7.640000", "9.430000", "5.760000", "11.070000", "8.710000", "9.790000", "4.930000", "11.360000", "10.580000", "7.760000", "6.080000", "11.380000", "5.700000", "7.230000", "10.070000", "10.230000", "8.500000", "7.140000", "15.850000", "5.310000", "7.080000", "6.870000", "6.600000", "8.370000", "6.820000", "12.730000", "8.200000", "9.650000", "7.010000", "9.540000", "7.620000", "7.480000", "8.110000", "5.220000", "8.380000", "12.660000", "10.080000", "8.960000", "13.270000", "6.970000", "8.960000", "12.140000", "8.210000", "7.410000", "7.430000", "10.810000", "6.860000", "7.190000", "8.740000", "11.810000", "10.010000", "10.650000", "8.890000", "12.650000", "4.900000", "10.490000", "6.800000", "7.660000", "9.650000", "4.640000", "11.440000", "11.330000", "12.030000", "11.120000", "6.480000", "10.600000", "9.630000", "9.030000", "9.040000", "12.230000", "10.020000", "9.090000", "8.830000", "6.770000", "8.030000", "5.330000", "10.610000", "11.640000", "8.320000", "8.180000", "7.100000", "12.380000", "5.720000", "9.490000", "10.130000", "8.320000", "3.670000", "7.600000", "12.340000", "15.740000", "11.720000", "9.170000", "14.100000", "12.000000", "13.800000", "11.850000", "11.120000", "8.290000", "7.250000", "5.400000", "11.890000", "11.550000", "5.200000", "9.860000", "10.620000", "9.640000", "7.400000", "6.800000", "7.830000", "10.920000", "9.380000", "9.690000", "10.250000", "10.860000", "5.820000", "6.790000", "4.420000", "10.250000", "8.500000", "3.510000", "11.670000", "8.230000", "11.040000", "7.450000", "10.060000", "8.700000", "7.490000", "11.550000", "8.000000", "8.440000", "6.070000", "4.250000", "7.900000", "7.000000", "7.830000", "7.630000", "13.630000", "10.100000", "6.500000", "6.870000", "15.760000", "8.150000", "10.270000", "5.800000", "8.180000", "7.880000", "9.210000", "9.980000", "12.590000", "9.430000", "9.840000", "8.150000", "4.860000", "11.810000", "12.190000", "7.860000", "10.110000", "13.140000", "6.060000", "13.840000", "11.520000", "10.440000", "8.580000", "8.760000", "9.480000", "9.290000", "8.030000", "10.350000", "11.790000", "15.710000", "10.680000", "12.110000", "10.490000", "8.080000", "8.150000", "6.880000", "7.860000", "11.660000", "11.110000", "12.640000", "13.000000", "7.070000", "11.340000", "11.850000", "10.990000", "8.900000", "7.690000", "9.330000", "7.500000", "9.620000", "12.240000", "11.510000", "7.000000", "10.620000", "11.010000", "11.770000", "8.210000", "7.650000", "10.310000", "11.580000", "10.690000", "8.860000", "8.290000", "11.550000", "12.870000", "9.640000", "8.730000", "12.880000", "10.830000", "10.410000", "8.520000", "9.470000", "13.050000", "7.790000", "6.890000", "7.050000", "10.000000", "7.420000", "4.470000", "5.840000", "11.160000", "9.880000", "6.150000", "8.210000", "10.330000", "9.320000", "9.950000", "11.780000", "10.820000", "9.480000", "9.680000", "9.540000", "10.980000", "11.070000", "12.840000", "11.300000", "2.860000", "9.930000", "11.040000", "8.430000", "9.890000", "10.850000", "7.630000", "11.780000", "10.580000", "8.790000", "8.650000", "8.180000", "6.610000", "4.840000", "8.050000", "8.120000", "8.660000", "8.590000", "12.150000", "7.330000", "8.340000", "11.770000", "8.090000", "13.910000", "9.070000", "7.100000", "13.170000", "13.870000", "5.000000", "10.040000", "5.810000", "8.130000", "5.850000", "5.210000", "6.610000", "9.100000", "13.740000", "8.310000", "11.130000", "9.020000", "10.200000", "10.510000", "8.090000", "11.530000", "10.170000", "6.400000", "8.140000", "6.390000", "6.390000", "5.960000", "12.520000", "11.680000", "8.010000", "9.150000", "9.400000", "9.360000", "6.550000", "11.500000", "8.170000", "8.150000", "10.350000", "9.600000", "12.490000", "8.960000", "9.300000", "10.780000", "10.230000", "10.850000", "7.430000", "15.860000", "8.520000", "7.140000", "7.760000", "7.590000", "10.960000", "7.750000", "12.930000", "11.930000", "9.970000", "8.910000", "9.190000", "14.670000", "9.450000", "10.290000", "6.160000", "10.650000", "7.140000", "10.640000", "7.070000", "11.080000", "9.000000", "8.370000", "9.800000", "8.480000", "9.450000", "7.350000", "8.060000", "10.850000", "12.960000", "9.630000", "10.180000", "9.450000", "16.990000", "10.830000", "9.930000", "9.400000", "10.070000", "10.270000", "7.600000", "8.290000", "8.780000", "10.160000", "6.910000", "9.560000", "9.040000", "10.220000", "10.570000", "10.600000", "7.110000", "8.470000", "10.980000", "13.690000", "12.070000", "6.000000", "12.840000"], ["-2.557721", "-2.275183", "-2.536720", "-2.397532", "-2.269951", "-2.355536", "-1.791573", "-2.447264", "-1.957319", "-2.339803", "-1.832999", "-1.954448", "-2.311054", "-1.949620", "-1.794715", "-2.620156", "-2.451653", "-2.636762", "-2.271677", "-2.416639", "-2.451497", "-1.827702", "-2.525635", "-2.235193", "-2.252513", "-1.760347", "-2.355153", "-1.759050", "-2.422941", "-1.850621", "-2.004717", "-2.421361", "-2.301328", "-2.217300", "-2.293030", "-2.004832", "-1.770759", "-2.017036", "-2.344461", "-2.451454", "-2.269428", "-2.251411", "-2.199583", "-2.254316", "-1.972791", "-1.982013", "-1.788120", "-2.253058", "-2.413567", "-2.302990", "-2.500236", "-2.272393", "-1.962900", "-2.018885", "-2.251406", "-2.301651", "-2.589698", "-2.011964", "-2.451262", "-2.461601", "-1.844328", "-1.845492", "-1.866926", "-2.451525", "-2.451471", "-1.960710", "-2.581125", "-1.784048", "-2.032916", "-2.363943", "-2.451429", "-2.285745", "-2.376588", "-2.474197", "-2.260240", "-2.565683", "-2.607083", "-2.031760", "-1.764022", "-2.450299", "-2.360009", "-2.451472", "-2.594217", "-2.269568", "-1.954140", "-2.526621", "-1.843564", "-2.141262", "-1.805792", "-2.423793", "-2.020850", "-1.958177", "-2.613241", "-2.260470", "-2.409718", "-2.305840", "-2.594533", "-2.366496", "-1.953219", "-2.483714", "-2.547557", "-1.934865", "-2.402821", "-1.824370", "-1.999417", "-2.481516", "-2.453569", "-2.009472", "-2.451495", "-1.760034", "-2.451544", "-1.853485", "-2.616585", "-2.160116", "-2.636514", "-2.430144", "-1.812965", "-2.634664", "-1.982233", "-1.961864", "-1.986269", "-2.369751", "-1.902830", "-2.400609", "-2.284515", "-2.031984", "-1.848585", "-2.429664", "-2.370472", "-2.451201", "-2.379390", "-1.974979", "-2.442973", "-2.449269", "-2.264814", "-2.451517", "-2.584546", "-1.953240", "-2.443067", "-1.827512", "-2.639456", "-2.256778", "-2.319826", "-2.088347", "-2.451538", "-1.764915", "-1.775431", "-2.347393", "-2.451437", "-2.451383", "-1.806714", "-2.467724", "-2.418431", "-1.821250", "-1.853606", "-1.964887", "-1.989817", "-2.278590", "-2.253782", "-2.383921", "-2.453825", "-2.420647", "-2.491429", "-2.507168", "-2.487942", "-2.277091", "-2.440932", "-2.349913", "-2.412542", "-2.328768", "-2.252634", "-2.451513", "-1.844927", "-2.445458", "-2.031728", "-2.349402", "-2.443102", "-1.821174", "-2.390824", "-2.313896", "-1.830225", "-1.777232", "-1.885149", "-1.996797", "-1.834316", "-2.256798", "-2.022754", "-2.330133", "-2.451475", "-1.842993", "-2.105028", "-1.839568", "-2.011208", "-1.826615", "-1.799486", "-2.281335", "-2.058266", "-2.386916", "-2.285355", "-2.305890", "-2.322514", "-2.330904", "-2.408616", "-2.376681", "-2.273462", "-2.294108", "-2.273851", "-2.179875", "-2.072845", "-2.403490", "-1.831693", "-2.638179", "-1.846065", "-2.451437", "-1.967392", "-2.025387", "-2.625672", "-2.380692", "-2.451499", "-2.609427", "-1.851869", "-1.953408", "-1.852334", "-2.437184", "-2.451523", "-2.346942", "-2.292094", "-1.919442", "-2.285601", "-2.317784", "-1.769056", "-2.427492", "-2.369460", "-1.996726", "-2.539927", "-2.641021", "-1.834939", "-2.269773", "-2.270384", "-2.029830", "-2.642577", "-2.332046", "-2.287931", "-2.281171", "-2.392759", "-2.331491", "-2.550030", "-2.635719", "-2.316841", "-2.392878", "-2.598848", "-2.299067", "-2.362721", "-1.990350", "-2.340606", "-2.572309", "-2.044950", "-2.033220", "-1.848779", "-2.024680", "-2.570821", "-2.383991", "-2.469903", "-2.622464", "-2.028944", "-2.604480", "-1.842032", "-2.397915", "-2.391104", "-2.403796", "-2.626030", "-1.781347", "-1.813844", "-1.817712", "-2.631237", "-2.432945", "-1.976873", "-1.849953", "-2.634243", "-2.295057", "-2.122493", "-1.838850", "-2.578521", "-2.409873", "-2.268678", "-2.447813", "-2.334975", "-2.509202", "-2.451336", "-1.829411", "-1.836417", "-2.451583", "-1.840914", "-1.800285", "-2.276454", "-1.854083", "-1.968461", "-2.434283", "-2.455938", "-2.252028", "-2.451503", "-2.321639", "-2.451196", "-2.629590", "-2.449226", "-1.835558", "-2.339343", "-2.559246", "-1.851382", "-2.437255", "-2.264412", "-2.434955", "-2.517445", "-2.311270", "-2.269545", "-1.974470", "-2.617040", "-1.847144", "-2.452321", "-1.846680"], ["7136.4999", "7099.5002", "7109.0001", "7111.5995", "7117.9998", "7247.4992", "7171.5001", "7109.2", "7195.5003", "7319.4998", "7113.8998", "7104.8", "7069.4998", "7279.5", "7104.2002", "7403.5001", "7122.4999", "7130.5003", "7116.9", "7107.2001", "7106.8997", "7121", "7163.4999", "7134.4999", "7118.8", "7115.5002", "7132.4997", "7104.6999", "7105.5001", "7459.5002", "7121.4998", "7049.4999", "7143.5001", "7106.7001", "7347.4992", "7155.5001", "7187.5", "7124.5001", "7363.5001", "7102.5001", "7399.5006", "7139.5", "7105.1004", "7175.4998", "7215.4998", "7115.1", "7117.0996", "7113.1004", "7110.3001", "7118.3002", "7271.4999", "7295.4999", "7114.3", "7379.5002", "7105.7998", "7111.8999", "7114.4998", "7125.4999", "7104.4", "7327.5001", "7059.5001", "7117.8001", "7115.0001", "7112.6996", "7109.7", "7409.5", "7111.4005", "7123.9998", "7103.5002", "7303.5001", "6999.4995", "7109.9", "7275.5", "7110.401", "7219.5003", "7335.4998", "7140.5", "7167.5", "7112.1999", "7343.4993", "7116.7008", "7375.4999", "7115.3998", "7114.7", "7116.1999", "7133.5005", "7243.5001", "7114.0999", "7009.4996", "7105.4", "7108.3996", "7129.5", "7108.6998", "7115.2", "7395.5006", "7111.1999", "7108.8002", "7117.3998", "7183.5", "7112.3994", "7108.2002", "7479.4999", "7107.6998", "7120.0001", "7109.3", "7113.5", "7118.5004", "7106.3998", "7283.5", "7255.5005", "7387.4999", "7106.6006", "7116.1", "7109.6004", "7104.9998", "7331.5001", "7108.3001", "7359.5", "7118.5997", "7110.6999", "7117", "7107.0994", "7111.8002", "7137.5002", "7105.1993", "7104.6002", "7122.0006", "7125.0006", "7103.5994", "7113.3998", "7110.1", "7489.4995", "7115.8", "7117.2001", "7116.4995", "7469.5002", "7110.9005", "7101.4998", "7315.5", "7429.4998", "7108.9005", "7112.7998", "7079.4995", "7111.0998", "7039.5001", "7103.9004", "7211.4997", "7112.0001", "7159.5006", "7112.3001", "7109.8004", "7110.4998", "7203.5001", "7135.4998", "7115.8996", "7307.4994", "7251.5001", "7239.4998", "7019.4999", "7114.2002", "7112.0998", "7439.4995", "7123.0001", "7227.5008", "7115.5997", "7113.7999", "7116.5999", "7106.1", "7104.1005", "7191.5003", "7105.6003", "7103.6999", "7231.4998", "7114", "7179.5006", "7089.5001", "7117.6996", "7127.5", "7113.5999", "7113.7001", "7113.2002", "7110.5999", "7117.5995", "7371.4999", "7323.4999", "7109.5004", "7138.4998", "7131.4995", "7117.3002", "7117.4994", "7267.5004", "7111.3", "7105.9", "7104.8997", "7117.8998", "7114.6001", "7103.7999", "7141.5001", "7115.3007", "7419.4998", "7109.0996", "7142.5", "7114.8998", "7113.0002", "7128.4999", "7223.5002", "7116.3995", "7106.7999", "7291.5001", "7199.5", "7106.3", "7449.5005", "7120.4996", "7383.4997", "7118.9001", "7111.7001", "7107.4002", "7339.4995", "7107", "7123.5001", "7112.9", "7118.3994", "7100.5001", "7118.6998", "7207.4999", "7116", "7108.0998", "7118.9999", "7118.2", "7311.5", "7118.0999", "7112.5004", "7107.5001", "7119.5003", "7111.0001", "7407.5006", "7110.8", "7113.3", "7110.2001", "7104", "7125.9998", "7109.4", "7235.5", "7391.5002", "7104.2999", "7104.5005", "7105.9998", "7351.5", "7105.7001", "7355.5003", "7108.4995", "7499.4998", "7299.4998", "7367.5001", "7287.5002", "7106.5", "7147.4997", "7112.5998", "7116.2999", "7107.3003", "7029.5", "7116.8004", "7114.7999", "7259.5", "7107.6", "7151.4998", "7108.5999", "7107.9995", "7111.4998", "7115.6997", "7106.2006", "7114.4007", "7126.4999", "7107.9", "7105.2998"], ["40LDT09", "338LDT01", "290LDT01", "490LDT03", "40LDV11", "570LDV05", "30LDT02", "30LDV03", "40LDT40", "640LDV05", "20LDT44", "30LDT30", "40LDV17", "20LDT44", "40LDT46", "570LDT04", "30LDT47", "120LDV10", "30LDT28", "40LDT04", "20LDT39", "40LDT01", "30LDT06", "30LDT06", "40LDV02", "40LDV02", "30LDT32", "40LDT36", "40LDT50", "40LDT19", "40LDT38", "70LDV02", "30LDV12", "290LDT01", "40LDT55", "200LDV15", "40LDT07", "40LDT16", "30LDT11", "40LDV14", "407LDV01", "20LDT07", "30LDV21", "30LDT36", "260LDT03", "120LDT02", "273LDT03", "20LDT22", "40LDV13", "40LDT40", "20LDT17", "40LDT36", "600LDV06", "40LDT43", "20LDT40", "30LDT26", "590LDV03", "200LDV04", "40LDV12", "472LDV01", "40LDT03", "40LDT29", "260LDV04", "350LDV01", "20LDT44", "120LDV07", "20LDT35", "265LDV06", "200LDV17", "196LDV03", "40LDT18", "260LDV10", "20LDT08", "570LDT02", "20LDT19", "20LDT06", "640LDV02", "570LDV06", "20LDT08", "305LDV02", "30LDT07", "178LDV06", "570LDT02", "570LDT02", "200LDV17", "260LDV14", "20LDT06", "30LDT39", "40LDT44", "30LDT09", "40LDT35", "440LDV03", "40LDT29", "40LDT15", "40LDT54", "40LDT03", "40LDT34", "30LDT04", "20LDT26", "30LDT23", "570LDV11", "120LDV05", "40LDT36", "40LDT57", "200LDV10", "40LDT09", "40LDT06", "600LDV03", "30LDV02", "200LDV19", "640LDV13", "40LDT40", "590LDV05", "490LDV03", "273LDT01", "40LDV02", "20LDT32", "120LDV04", "570LDT04", "40LDV04", "30LDT09", "30LDT06", "30LDT37", "305LDV04", "40LDT21", "40LDT24", "30LDT31", "305LDV02", "570LDT01", "560LDV01", "120LDV11", "570LDT07", "540LVT01", "454LDV01", "30LDT39", "290LDT07", "40LDV02", "120LDV03", "640LDV16", "380LDT04", "30LDV19", "640LDV13", "20LDT41", "540LDT01", "30LDV17", "40LDT06", "40LDT35", "540LVT01", "200LDV20", "40LDT18", "440LDV02", "30LDT39", "640LDV05", "178LDV03", "200LDV18", "30LDT07", "30LDV16", "40LDT12", "40LDV07", "40LDT22", "1160LDT01", "460LDT02", "380LDT05", "30LDT21", "40LDT61", "30LDV08", "40LDT15", "40LDT20", "660LDV05", "20LDT43", "20LDT23", "40LDV02", "20LDT12", "196LDV01", "570LDT11", "40LDV07", "200LDV21", "40LDT07", "20LDT04", "40LDT44", "40LDV01", "40LDT42", "30LDT16", "120LDV05", "30LDV07", "640LDV15", "590LDV07", "70LDV01", "40LDT52", "20LDV08", "290LDT01", "40LDT42", "30LDT34", "576LDV01", "40LDT11", "30LDT04", "200LDV05", "40LDT28", "40LDT30", "20LDT42", "20LDT33", "20LDT18", "30LDT27", "570LDT10", "200LDT01", "20LDV10", "265LDV03", "660LDV01", "30LDT02", "20LDT06", "30LDT08", "20INT01", "30LDV14", "40LDT36", "440LDV01", "120LDV02", "640LDV03", "220LDV02", "20LDT45", "20LDT17", "40LDT67", "640LDV10", "40LDT10", "40LDT33", "40LDV10", "570LDT10", "30LDT38", "40LDT25", "20LDT04", "200LDT04", "640LDV16", "30LDT48", "20LDT08", "40LDT58", "20LDT25", "40LDV09", "20LDT25", "640LDV07", "570LDV01", "200LDT02", "30LDT10", "40LDT42", "420LDV03", "30LDT22", "20LDT25", "440LDV02", "20LDT42", "260LDV02", "120LDV06", "20LDT33", "20LDT01", "30LDT09", "40LDT08", "20LDT18", "305LDV03", "40LDT66", "20LDV04", "640LDV02", "40LDT06", "260LDV15", "200LDV01", "40LDT30", "40LDT35", "20LDT23", "178LDV09", "338LDV03", "40LDT57", "380LDV08", "20LDT30", "600LDV02", "20LDT04", "261LDT02", "305LDV02", "200LDV16", "570LDV02", "260LDV01", "70LDV02", "260LDV14", "560LDV04", "30LDT16", "420LDV02", "40LDT57", "120LDV07", "30LDV20", "560LDV05", "40LDT58", "20LDT07", "30LDT38", "380LDT02", "420LDV01", "20LDT35", "640LDV15", "40LDV09", "30LDT17", "30LDT37", "20LDT43", "600LDV04", "40LDT43", "20LDT24", "20LDT04", "305LDV03", "40LDT31", "40LDT56", "178LDV06", "40LDT13", "30LDV11", "30LDT41", "40LDV11", "1160LDT01", "120LDV01", "273LDT03", "40LDT62", "30LDV15", "570LDT10", "200LDT03", "178LDV02", "120LDV07", "40LDV09", "40LDT55", "30LDV13", "30LDT43", "40LDT02", "20LDT02", "260LDV16", "30LDT05", "40LDT66", "20INT01", "40LDT32", "30LDV21", "30LDT25", "570LDV04", "40LDT50", "570LDT14", "338LDT01", "420LDV03", "20LDT21", "30LDV02", "30LDT22", "660LDV03", "40LDT54", "40LDT25", "265LDV07", "30LDV11", "30LDT39", "570LDT13", "40LDT50", "20LDT13", "30LDT11", "460LDT03", "380LDV01", "590LDV04", "600LDV05", "420LDV01", "30LDV22", "20LDT36", "30LDT25", "20LDV04", "30LDV04", "30LDT46", "40LDV11", "20LDT09", "30LDV20", "30LDT22", "380LDT05", "600LDV04", "40LDT51", "30LDT10", "196LDV02", "265LDV05", "40LDT30", "290LDT07", "570LDV09", "40LDT47", "20LDT09", "40LDT37", "20LDV05", "30LDV19", "20LDT11", "640LDV01", "380LDV02", "20LDT31", "590LDV03", "30LDT22", "273LDV01", "20LDT39", "40LDT28", "30LDV05", "40LDT51", "40LDT65", "40LDT41", "40LDT36", "40LDV05", "30LDT35", "20LDT07", "640LDV01", "492LDV01", "570LDT04", "460LDT01", "600LDV01", "30LDV15", "196LDV04", "120LDV07", "30LDV21", "20LDT12", "30LDT09", "30LDT15", "40LDT62", "40LDT05", "540LVT01", "40LDT37", "30LDT01", "640LDV06", "20LDV08", "30LDT44", "490LDV02", "290LDT07", "40LDT11", "640LDV02", "20LDT20", "570LDV09", "30LDT47", "20LDT42", "30LDT19", "40LDT53", "260LDV02", "40LDV09", "30LDT44", "196LDV02", "30LDT29", "420LDV03", "570LDT03", "40LDT44", "120LDV05", "30LDT31", "40LDV08", "196LDV04", "20LDV06", "40LDV02", "200LDV21", "40LDT34", "40LDT50", "260LDV05", "20LDT29", "570LDV13", "40LDV02", "20LDT04", "570LDT06", "30LDT45", "178LDV02", "40LDT61", "380LDV03", "20LDV11", "30LDT20", "30LDT36", "120LDT01", "40LDT32", "420LDV03", "40LDT01", "570LDT09", "640LDV11", "20LDT35", "200LDV05", "30LDT41", "120LDT01", "540LVT01", "40LDV14", "40LDT24", "200LDV02", "570LDV14", "40LDT07", "40LDT39", "305LDV02", "260LDV03", "290LDT04", "120LDV05", "30LDT06", "20LDT35", "338LDT03", "40LDV12", "20LDT09", "540LDT01", "20LDT26", "30LDT11", "40LDV04", "30LDT04", "570LDT14", "420LDV02", "290LDT01", "40LDT36", "40LDT17", "640LDV13", "590LDV05", "560LDT01", "40LDT34", "20LDT29", "360LDV01", "260LDV16", "40LDT18", "20LDT36", "30LDT32"], ["120LDV11", "540LVT01", "305LDV06", "40LDT51", "40LDV03", "178LDV02", "40LDT22", "30LDT55", "273LDV01", "260LDV15", "120LDV05", "40LDT36", "200LDV12", "40LDT48", "40LDT40", "660LDV02", "30LDT15", "20LDT61", "40LDT07", "200LDV13", "120LDV17", "640LDV02", "30LDT57", "30LDV09", "490LDT01", "570LDT06", "570LDV06", "40LDT35", "200LDV23", "30LDT40", "30LDT03", "20LDT22", "30LDT17", "20LDT29", "20LDV01", "40LDT54", "380LDT04", "120LDV11", "30LDT11", "30LDT02", "40LDT49", "196LDV05", "570LDV03", "380LDV02", "660LDV03", "40LDT39", "40LDT06", "40LDT23", "40LDT20", "20LDT54", "20LDT61", "420LDV02", "380LDT03", "20LDT74", "20LDT48", "40LDT40", "200LDV10", "30LDT47", "30LDT08", "40LDT53", "40LDT11", "30LDV01", "40LDT07", "305LDV01", "40LDV02", "600LDV03", "20LDT27", "196LDV03", "290LDT03", "570LDT15", "20LDT65", "178LDV02", "196LDV05", "273LDT01", "196LDV03", "40LDT37", "178LDV05", "40LDT49", "20LDT37", "20LDV08", "380LDT09", "273LDT01", "40LDV18", "30LDV13", "640LDV06", "640LDV06", "30LDT45", "490LDT02", "40LDT40", "260LDV20", "570LDV04", "20LDT15", "40LDV05", "305LDV06", "30LDT06", "440LDV02", "200LDV20", "30LDT39", "40LDT05", "590LDV03", "30LDV13", "30LDT10", "209LDT01", "40LDT28", "40LDT33", "380LDV01", "200LDV18", "40LDT16", "120LDV07", "30LDT20", "570LDV08", "30LDT54", "40LDV07", "570LDV01", "20LDT54", "40LDV07", "30LDT16", "40LDV18", "30LDV14", "40LDV05", "380LDT01", "30LDV21", "560LDV05", "30LDT47", "30LDT50", "265LDT02", "30LDT53", "20LDT09", "20LDT62", "40LDV04", "560LDT02", "40LDT26", "640LDV01", "30LDT07", "40LDT50", "30LDT03", "590LDV05", "305LDV06", "273LDT01", "30LDT52", "30LDT48", "380LDV04", "40LDT47", "660LDV04", "120LDV11", "40LDT06", "40LDT39", "120LDV12", "120LDV17", "40LDV07", "20LDT24", "30LDT28", "40LDT54", "590LDV02", "20LDT50", "640LDV04", "20LDT62", "40LDV02", "200LDV19", "30LDT11", "40LDT33", "265LDV07", "1390LDT01", "40LDV07", "120LDV15", "590LDV07", "380LDV05", "20LDT69", "40LDV11", "40LDT37", "273LDT01", "380LDT01", "440LDV02", "200LDV16", "30LDT32", "20LDT45", "196LDV01", "200LDV13", "40LDT27", "20LDT58", "640LDV10", "660LDV01", "20LDT77", "40LDT49", "40LDT29", "305LDV02", "460LDT02", "265LDV08", "20LDT06", "30LDT48", "305LDV04", "40LDV16", "540LDT01", "20LDT69", "30LDT20", "20LDT62", "40LDT05", "40LDT51", "600LDV01", "20LDV02", "590LDV06", "40LDT50", "40LDT03", "30LDT19", "40LDT25", "560LDV04", "40LDT12", "20LDT71", "560LDT01", "30LDV10", "380LDT07", "20LDT03", "640LDV10", "590LDT01", "40LDT29", "20LDT09", "30LDT05", "490LDT02", "380LDT08", "40LDT43", "70LDV01", "40LDT46", "640LDV05", "600LDV02", "30LDT48", "440LDV02", "40LDT09", "260LDV05", "691LDV01", "20LDT57", "338LDT02", "200LDV27", "20LDT57", "20LDT04", "290LDT01", "40LDT34", "560LDT03", "40LDT06", "30LDT16", "590LDV01", "265LDV01", "290LDT05", "40LDT51", "120LDV17", "30LDT01", "40LDT04", "30LDT13", "30LDT25", "30LDV13", "120LDV15", "20LDT58", "640LDV03", "20LDT66", "20LDV05", "40LDT13", "30LDT26", "70LDV01", "196LDV03", "120LDT03", "380LDT08", "380LDT08", "20LDT69", "20LDT02", "40LDV13", "305LDV01", "570LDT06", "570LDT13", "40LDV07", "120LDV11", "30LDT18", "30LDT51", "20LDT76", "490LDT02", "120LDV10", "20LDV01", "40LDT45", "20LDT01", "560LDV03", "40LDT22", "40LDT41", "20LDT01", "40LDV03", "120LDV17", "40LDV11", "40LDV09", "40LDT38", "40LDV13", "20LDT58", "200LDV09", "20LDT62", "40LDT52", "20LDT31", "460LDT02", "40LDT39", "20LDV06", "30LDV13", "20LDT43", "540LVT01", "30LDT13", "640LDV06", "30LDT14", "40LDT27", "40LDT40", "200LDV10", "40LDT17", "40LDT27", "30LDT10", "20LDV07", "540LDT02", "200LDT02", "590LDV06", "640LDV02", "20LDT68", "40LDT55", "200LDV22", "260LDV20", "30LDV01", "20LDT02", "40LDT18", "40LDT24", "40LDT04", "30LDT24", "30LDV07", "40LDT36", "40LDT27", "200LDV07", "20LDT57", "40LDT34", "600LDV05", "30LDT28", "540LDT03", "40LDT08", "20LDV03", "40LDT08", "40LDT53", "30LDV03", "40LDT13", "30LDT44", "540LDT02", "209LDT01", "20LDT43", "290LDT04", "30LDT18", "420LDV03", "40LDT51", "260LDV04", "20LDT15", "40LDT24", "40LDT10", "576LDV01", "590LDV06", "380LDV08", "40LDT31", "200LDT01", "260LDV06", "260LDV10", "20LDT65", "30LDT29", "30LDT18", "640LDV13", "40LDT01", "20LDT04", "40LDT26", "40LDT42", "30LDT18", "20LDT20", "40LDV10", "40LDT49", "570LDT14", "20LDT73", "40LDT42", "20LDT01", "20LDT11", "30LDT14", "30LDV22", "20LDT75", "640LDV12", "40LDT40", "440LDV02", "30LDT48", "30LDT29", "40LDV18", "40LDT50", "273LDT01", "570LDT02", "30LDT45", "20LDT51", "570LDT13", "20LDT26", "120LDV14", "640LDV09", "20LDT58", "640LDV11", "20LDT57", "178LDV05", "20LDT25", "570LDT10", "640LDV02", "260LDV03", "40LDV05", "20LDT57", "454LDV01", "30LDT01", "40LDT55", "640LDV05", "260LDT02", "40LDV06", "40LDT37", "196LDV04", "30LDV15", "30LDT45", "20LDT15", "570LDV02", "30LDT51", "600LDV01", "40LDT26", "40LDT53", "40LDT44", "380LDT01", "30LDT57", "40LDT12", "40LDT49", "30LDT50", "570LDV16", "30LDT05", "20LDV04", "30LDT47", "40LDT33", "261LDT02", "660LDV02", "40LDT08", "338LDT01", "200LDV08", "40LDV08", "570LDT15", "20LDT29", "20LDT29", "40LDT11", "220LDV01", "30LDT20", "265LDV02", "20LDT09", "20LDT57", "40LDT28", "20LDV07", "20LDT55", "178LDV04", "120LDV17", "120LDT02", "40LDV18", "20LDT57", "570LDV10", "570LDT02", "120LDV11", "380LDT06", "178LDV01", "20LDT69", "200LDV18", "40LDT24", "20LDV06", "40LDT06", "20LDT46", "20LDT65", "640LDV09", "40LDT46", "590LDV03", "380LDT08", "120LDV13", "570LDT01", "30LDT07", "40LDV17", "120LDV03", "40LDV03", "590LDV07", "40LDT54", "40LDT13", "20LDT18", "20LDT58", "40LDT51", "640LDV05", "30LDV04", "30LDT49", "40LDT28", "30LDT12", "40LDT48", "120LDV05", "30LDT14", "640LDV05", "570LDT03", "30LDT39", "540LVT01", "40LDT36", "590LDT01", "290LDT03", "30LDT27", "40LDT10", "570LDT04", "20LDT59", "40LDV07", "40LDT10"], ["5.29E-05", "0.0065027", "0.0176207", "0.0031178", "0.0067969", "0.0008933", "0.0122827", "0.002635", "0.0007362", "0.0006826", "0.0005316", "0.0065302", "0.0046682", "0.0045084", "0.0184021", "0.0005632", "7.76E-05", "0.0004198", "0.0125386", "0.0016639", "0.0054479", "0.0065302", "0.0003426", "0.0138224", "0.0001844", "0.0001246", "0.0004223", "0.0001851", "0.0004246", "0.0003089", "0.0002051", "0.0012333", "0.0002968", "0.0117311", "0.0060833", "0.003514", "0.0027701", "0.0004845", "0.0004502", "0.0060073", "0.002092", "9.62E-05", "0.0012291", "0.001791", "0.00017", "0.0007447", "0.0101059", "0.0129411", "0.002092", "0.0138224", "0.0008933", "0.0065254", "0.0171927", "0.0061743", "0.0002262", "0.0026485", "0.0051447", "0.0068939", "0.0007454", "0.0113544", "0.0014594", "0.0047845", "0.0003302", "0.0001867", "0.0006251", "0.0005674", "0.005288", "0.0027015", "0.0003146", "0.0059622", "0.0059622", "0.0001851", "0.0007931", "0.0002864", "0.0067355", "0.0014045", "0.0049935", "0.0045084", "0.0033503", "0.0004193", "0.000125", "0.0002495", "0.0002181", "0.0020268", "0.000608", "0.0065254", "0.0053133", "0.0047015", "0.0009364", "0.0001717", "0.0004473", "0.0007208", "0.0004502", "0.0001468", "0.0003945", "0.0031178", "0.0002856", "0.0033468", "0.0010316", "0.0007374", "0.0003025", "0.000517", "0.0044658", "0.0119214", "0.0059346", "0.0033707", "0.001381", "0.0053776", "0.006879", "0.0025761", "0.0062298", "0.0001738", "0.0224399", "0.0003513", "0.0031892", "0.0166539", "0.0059622", "0.0004779", "0.0004918", "0.0002571", "0.0003414", "0.0003417", "0.0002913", "0.0003316", "0.0001468", "0.0002155", "0.0009522", "0.0007926", "0.0043867", "0.000569", "0.0002155", "0.0023418", "0.0027401", "0.003", "0.0006977", "0.0088455", "0.0025025", "0.0025761", "0.0097217", "0.0001468", "0.0004227", "0.0038054", "0.0016969", "0.0003533", "0.0011869", "0.0001256", "0.0064799", "0.0054597", "0.0026485", "0.0025761", "0.0001882", "0.0002658", "0.0002043", "0.0001889", "0.0058328", "0.000402", "0.0025403", "0.0033936", "0.0012333", "0.0007201", "0.0084825", "0.0029625", "0.0061743", "0.0027701", "0.0005641", "0.0068712", "0.0004861", "0.0001495", "0.0004369", "0.0004683", "0.0009317", "0.0045084", "0.001435", "0.0003534", "0.0059267", "0.0009228", "0.0001903", "0.0005169", "0.1181877", "0.0025761", "0.0060173", "0.0031651", "0.0002323", "0.00188", "0.0089044", "0.0002011", "0.0005211", "0.0071199", "0.0104707", "0.0003054", "0.0005585", "0.0007375", "0.0001825", "4.89E-05", "0.0002526", "0.0061157", "0.0054596", "0.0046109", "0.0146786", "0.0004741", "0.0009062", "0.0002559", "0.0003669", "0.0025636", "0.0097217", "0.0055419", "0.0004272", "0.0004752", "0.0003567", "0.0004967", "0.0097217", "0.0095532", "0.0007926", "0.0052195", "0.0067969", "0.0068134", "0.0006191", "8.99E-05", "0.0004547", "0.0004912", "0.0044658", "0.0002526", "0.0204381", "0.0002147", "0.015251", "0.0024836", "0.003514", "0.0059173", "9.17E-05", "0.0001349", "0.0008229", "0.0014258", "0.0025696", "0.0008422", "7.21E-05", "0.0004754", "0.0069081", "0.0134455", "0.0073229", "0.0081963", "0.0025403", "0.0003945", "0.0001064", "0.004762", "0.0014344", "0.0019266", "0.0146786", "0.0001796", "0.0119214", "0.0003182", "0.0001738", "0.009947", "0.0095627", "0.0067449", "3.60E-05", "0.0007289", "0.0048406", "0.0033468", "0.024487", "0.0003202", "0.0003089", "0.0016092", "0.0004231", "0.0025403", "0.009947", "0.0005608", "0.0004223", "0.0007517", "0.0027701", "0.0005513", "0.0011869", "0.0006622", "0.0005067", "0.0028207", "0.0004502", "0.0001308", "0.004762", "0.0007396", "0.0089044", "0.0029055", "0.0055419", "0.0001796", "0.0002075", "0.0047845", "0.0088215", "0.001381", "0.0031028", "0.0002801", "0.0059622", "0.0010258", "0.0004015", "0.00302", "0.0004502", "0.0007451", "0.0069124", "0.0001064", "0.0014712", "0.0046109", "0.0079688", "0.0003741", "0.0002495", "0.0008229", "0.0103135", "0.0001477", "0.0004924", "0.0184021", "0.0012291", "0.0006329", "0.0077184", "0.0065027", "0.0002976", "0.0008867", "0.0146786", "0.014595", "0.0049014", "0.0014569", "0.0003203", "0.0017894", "0.0008296", "0.0004375", "0.0166539", "0.0055285", "0.0046682", "0.0023712", "0.0009062", "0.0007201", "0.0003945", "0.0025929", "0.0007085", "0.0007362"], ["30T2-22", "265T2-10", "1160HDV01", "380T2-02", "40HDV06", "40T2-17", "260T2-09", "40T2-37", "40HDV04", "20T2-07", "600T2-02", "305T2-04", "200T2-17", "40T2-05", "305T2-02", "40INT02", "570T2-12", "590T2-01", "40INT08", "20LDT37", "40HDV07", "40T2-02", "590T2-08", "30T2-13", "30HDV05", "1160HDV01", "40INT02", "40HDV04", "691T2-02", "380T2-05", "30T2-37", "30T2-01", "40HDV06", "30T2-26", "40HDV04", "40T2-03", "40INT07", "120T2-01", "40INT01", "30T2-14", "570T2-26", "40T2-27", "40INT09", "420T2-06", "196T2-04", "30INT15", "640T2-02", "380T2-01", "120T2-02", "40T2-10", "30HDV12", "30T2-19", "265T2-05", "30T2-38", "570T2-17", "1160HDV01", "30T2-19", "570T2-25", "220T2-01", "40T2-48", "40HDV08", "30INT01", "40INT15", "570T2-22", "20T2-20", "40INT02", "40T2-28", "30HDV11", "30T2-38", "20T2-14", "30HDV04", "30HDV18", "40INT10", "40INT02", "30INT11", "40INT07", "200T2-18", "570T2-12", "30HDV08", "30T2-21", "338T2-02", "380T2-06", "200T2-07", "20LDV38", "30T2-19", "30INT08", "20INT02", "420T2-02", "40INT13", "40T2-30", "20T2-20", "1160HDV02", "30T2-04", "20LDV03", "20INT04", "20HDV04", "338T2-07", "40INT05", "380T2-07", "30T2-02", "120T2-01", "1842T2-01", "1160HDV01", "30INT05", "460INT02", "30T2-31", "196T2-04", "200T2-05", "165T2-01", "196T2-03", "260T2-04", "560T2-04", "120T2-02", "30INT08", "30T2-27", "30T2-04", "40INT14", "640T2-05", "30T2-01", "40T2-42", "570T2-18", "338T2-11", "200T2-20", "200T2-19", "20T2-15", "40HDV06", "40INT07", "1160HDV02", "380T2-07", "165T2-02", "40T2-15", "40INT01", "20T2-33", "20LDT32", "570INT06", "20HDV04", "265T2-12", "570T2-03", "1095T2-01", "30T2-07", "660T2-08", "40HDV07", "40T2-38", "30HDV08", "40INT09", "570T2-20", "265T2-13", "20INT03", "30INT13", "640T2-05", "40HDV09", "380T2-08", "30INT13", "305T2-04", "380T2-20", "20T2-52", "380T2-06", "1160HDV01", "305T2-01", "40INT15", "40INT10", "120T2-03", "40INT07", "40INT15", "570T2-23", "20INT05", "40INT07", "420T2-02", "30HDV11", "1095T2-01", "200T2-09", "20LDT31", "640T2-02", "40HDV12", "20T2-05", "40INT03", "380T2-17", "600T2-05", "30T2-02", "200T2-08", "20LDV38", "600T2-01", "640T2-06", "30HDV16", "200T2-20", "20T2-15", "570T2-30", "420T2-03", "40T2-53", "30HDV10", "40LDV31", "30T2-31", "640T2-04", "30T2-24", "30INT01", "40INT13", "40T2-37", "20INT03", "40T2-24", "30HDV11", "305T2-04", "600T2-02", "570T2-23", "570T2-13", "30INT09", "30T2-20", "600T2-01", "40T2-24", "40T2-19", "20HDV06", "30T2-33", "570T2-30", "30LDT16", "20T2-01", "40HDV10", "40T2-57", "305T2-01", "120T2-09", "196T2-02", "20HDV01", "380T2-06", "338T2-08", "40T2-19", "640T2-07", "570INT06", "40T2-05", "1160HDV02", "196LDV02", "40T2-15", "640T2-04", "40INT06", "460T2-01", "120T2-01", "40HDV09", "640T2-04", "1160HDV01", "30HDV11", "20LDT57", "30T2-09", "460INT01", "40INT02", "40INT04", "40T2-58", "30T2-27", "40INT09", "120T2-09", "40T2-27", "200T2-20", "560T2-08", "40HDV11", "570T2-20", "40HDV08", "40T2-24", "560T2-06", "220T2-01", "20T2-20", "40INT14", "640T2-02", "30T2-18", "40T2-05", "40T2-27", "305T2-01", "570T2-29", "1160HDV02", "600T2-01", "1160HDV02", "120T2-03", "1160HDV02", "660T2-04", "40HDV06", "380T2-07", "40T2-27", "200T2-02", "1095T2-01", "20INT05", "30T2-31", "30T2-27", "40HDV04", "20T2-51", "30T2-27", "1160HDV01", "30T2-08", "20INT07", "40HDV05", "600T2-07", "20T2-29", "20T2-57", "40HDV04", "30HDV03", "1842T2-01", "20T2-55", "20T2-56", "40INT15", "40INT05", "40INT15", "20T2-29", "40HDV07", "30HDV16", "200HDV01", "560T2-01", "40T2-11", "30HDV10", "200T2-16", "40T2-37", "570T2-03", "40T2-56", "1160HDV01", "420T2-02", "120T2-01", "40T2-31", "265T2-03", "40T2-19", "570T2-24", "570T2-25", "40INT13", "40T2-14", "338T2-03", "30INT08", "30T2-04", "40T2-20", "560T2-11", "200T2-13", "380T2-09", "40HDV04", "20T2-32", "20T2-27", "40INT08", "380T2-04", "660T2-08", "120T2-01", "40T2-19", "196T2-02", "380T2-10", "560T2-12", "640T2-01", "40T2-27", "40HDV06", "265T2-08", "20T2-26", "30T2-19", "30T2-13", "200T2-20", "420T2-06", "380T2-07", "30T2-05", "40INT06", "40HDV03", "40T2-14", "30INT06", "570INT01", "540T2-01", "40T2-02", "30INT14", "30T2-05", "570T2-27", "30T2-09", "20INT05", "200T2-02", "30INT16", "1160HDV01", "40T2-19", "40HDV08", "600T2-02", "40INT01", "590T2-03", "30T2-38", "40T2-17", "40T2-14", "30HDV08", "338T2-07", "40T2-28", "30T2-24", "200T2-16", "40T2-57", "260T2-08", "1160HDV01", "30T2-38", "30HDV09", "260T2-12", "40T2-38", "40INT07", "40T2-19", "1340T2-01", "120INT01", "40T2-03", "120T2-01", "640T2-04", "380T2-07", "20T2-26", "20T2-30", "40T2-14", "1160HDV01", "30HDV09", "338T2-12", "30T2-38", "40INT09", "30T2-20", "120T2-11", "200T2-17", "40T2-27", "576T2-01", "305T2-03", "570T2-04", "20T2-31", "260T2-03", "30T2-16", "660T2-03", "570T2-14", "265LDV10", "260T2-08", "640T2-06", "20T2-44", "420T2-07", "30INT08", "40HDV11", "40T2-48", "30T2-04", "20T2-33", "260T2-14", "30INT05", "540T2-03", "30INT14", "420T2-02", "40T2-27", "590T2-08", "30HDV10", "640T2-01", "20T2-57", "600T2-04", "40INT07", "20HDV03", "260T2-13", "570T2-26", "1160HDV01", "40T2-42", "1385T2-01", "590T2-03", "560T2-10", "30T2-04", "570T2-01", "444T2-01", "20T2-49", "20T2-28", "570INT02", "40T2-51", "691T2-02", "420T2-01", "200T2-20", "30INT03", "600T2-03", "30T2-03", "560LDV08", "40T2-37", "40HDV01", "30INT08", "1160HDV02", "200T2-19", "380T2-07", "265T2-14", "40T2-26", "40T2-19", "30T2-06", "40INT02", "20HDV02", "40HDV11", "40T2-02", "560LDV11", "570T2-04", "590T2-05", "30HDV05", "20T2-05", "30INT12", "30T2-10", "40HDV04", "40T2-59", "40T2-20", "265T2-06", "30HDV14", "540T2-03", "40T2-05", "265T2-14", "40INT09", "30T2-04", "20LDV04", "30T2-23", "20T2-54", "40T2-22", "265T2-06", "120T2-01", "30T2-10", "640T2-05", "40T2-53", "305T2-01", "40INT15", "20LDT56", "30INT06", "120T2-10", "30T2-31", "30T2-32", "20T2-07"], ["29.402958", "NA", "NA", "31.232416", "32.688625", "26.748089", "27.005173", "32.806602", "30.237644", "28.434832", "33.67322", "25.913542", "31.226646", "30.861763", "26.472708", "31.236713", "27.967785", "28.14442", "25.642706", "NA", "27.712923", "32.551872", "28.500706", "28.840319", "27.74165", "30.148552", "28.5274", "28.55693", "31.374584", "29.802277", "27.409012", "27.693829", "26.856003", "30.384993", "17.286062", "28.174639", "27.219522", "27.223476", "NA", "29.999577", "33.21363", "29.191568", "27.453524", "27.858654", "26.429806", "28.949335", "30.87511", "26.9591", "27.039955", "26.355377", "27.45782", "27.550467", "29.79547", "15.62615", "28.90881", "32.661346", "32.828033", "27.308105", "26.79938", "27.501083", "32.701046", "26.955475", "28.630484", "27.887865", "26.678125", "26.744991", "28.563894", "30.55847", "31.252792", "32.91362", "26.57685", "27.20723", "NA", "NA", "26.596869", "28.456276", "28.185043", "27.380514", "28.009605", "26.209745", "26.248348", "25.889166", "26.329115", "26.855185", "31.382467", "27.520782", "32.805134", "26.480164", "37.140423", "27.943716", "28.92896", "27.791712", "27.155933", "27.62445", "28.388803", "26.41911", "27.584654", "26.310295", "26.5552", "27.959179", "27.043005", "26.911821", "32.698883", "26.970293", "27.383402", "28.795464", "26.746769", "30.179935", "28.260773", "27.221273", "31.673687", "26.441448", "30.536486", "32.3693", "27.001884", "26.89889", "32.58707", "NA", "26.751133", "30.59077", "27.722607", "27.312883", "31.41421", "28.686008", "26.574036", "28.417355", "26.779758", "27.59118", "30.436914", "27.594063", "29.588356", "29.578516", "26.71108", "31.806389", "27.305319", "26.34907", "26.324179", "NA", "29.374495", "28.187284", "26.823004", "28.229418", "27.671824", "31.750177", "30.749199", "28.293894", "28.361343", "26.760538", "28.520447", "26.715973", "27.343151", "31.15785", "NA", "27.47897", "27.661402", "29.194935", "NA", "26.560995", "31.702517", "27.575853", "26.361835", "28.58941", "27.604025", "26.80506", "27.071613", "27.32635", "27.174347", "26.242464", "29.366146", "26.362423", "30.509373", "28.36258", "26.247734", "26.751575", "26.218323", "29.011747", "27.508581", "26.451803", "25.980066", "26.922575", "27.495094", "30.129293", "14.733095", "33.16641", "27.884928", "26.473545", "28.561035", "28.563046", "25.785322", "28.84615", "26.483349", "30.86209", "27.349524", "30.845636", "30.943", "28.56082", "29.98528", "27.509426", "26.43528", "27.156084", "29.808697", "26.807564"], ["29.50471", "24.913733", "27.271965", "28.613409", "27.654121", "25.404644", "25.652643", "28.194668", "25.585468", "29.432766", "30.936808", "24.617804", "24.923178", "26.099127", "24.574112", "NA", "24.541153", "25.252417", "23.382498", "NA", "26.615786", "27.250462", "25.737272", "26.376133", "25.04448", "25.81809", "27.990479", "25.538267", "26.751482", "25.562456", "24.680822", "26.947193", "24.716696", "25.990492", "24.794172", "NA", "24.63603", "35.06188", "26.386368", "NA", "23.872889", "25.502546", "25.074766", "26.025862", "25.46766", "23.997814", "24.241547", "26.954853", "27.50133", "26.71712", "23.968454", "24.326107", "25.841116", "24.89452", "26.551394", "37.092472", "24.758507", "23.100462", "25.916803", "24.295149", "23.699177", "24.944529", "28.355185", "29.564335", "25.547943", "25.584381", "26.898548", "25.8486", "27.513184", "25.401028", "27.663122", "NA", "28.719746", "NA", "31.776138", "24.194696", "26.804916", "23.644695", "24.781363", "28.792923", "26.819494", "29.678854", "NA", "25.15999", "26.977629", "27.717064", "24.866116", "26.54028", "25.290236", "28.856825", "24.557493", "25.259985", "25.029211", "24.90753", "NA", "23.990942", "26.512396", "NA", "25.48471", "29.661383", "31.85531", "27.52989", "25.485527", "34.034122", "27.756428", "23.857744", "25.304718", "27.07598", "25.544228", "23.866941", "25.574295", "24.328419", "24.636791", "27.227804", "26.534712", "28.931524", "25.876383", "24.806744", "23.631826", "14.50948", "24.914902", "25.536526", "NA", "32.694515", "33.12877", "24.757334", "25.626352", "27.988327", "27.259611", "23.867542", "25.271797", "27.379408", "33.176754", "NA", "24.14065", "25.49919", "26.668669", "28.85961", "24.858633", "29.361034", "NA", "23.768473", "25.19682", "25.70069", "24.532097", "37.44922", "24.009167", "33.2266", "24.285133", "29.157068", "26.077763", "29.122665", "25.043743", "26.9531", "26.640491", "28.302345", "28.27034", "23.743483", "23.655352", "24.420979", "27.749609", "26.535206", "24.697193", "25.796362", "30.146996", "30.530693", "23.416307", "26.67796", "31.399647", "29.773987", "26.84777", "32.120285", "24.662592", "25.434885", "24.859922", "27.02176", "25.202024", "35.72656", "24.661484", "13.341577", "28.57131", "24.854502", "26.562595", "25.613033", "NA", "24.990786", "27.32265", "24.968605", "28.713778", "23.713066", "30.531069", "28.923588", "30.334263", "25.444387", "24.519388", "NA", "25.161455", "24.236446", "24.88599", "30.290634", "22.810083", "26.648798"], ["21.949484", "24.909857", "22.08759", "28.316767", "28.621683", "23.441309", "24.844038", "28.439913", "22.85009", "30.606184", "NA", "21.71924", "25.169855", "20.699175", "25.69156", "24.272022", "28.92125", "23.430906", "26.917255", "20.640356", "33.240925", "22.177519", "22.685982", "27.220339", "26.8942", "24.179968", "25.036428", "26.730783", "31.925615", "24.814838", "25.351408", "19.634857", "24.888412", "28.659494", "29.671103", "21.935547", "22.89741", "23.001026", "25.778492", "28.083277", "22.53393", "23.558422", "24.468021", "25.024641", "22.467216", "22.302837", "20.806023", "22.930058", "24.471268", "21.872595", "29.080309", "22.542437", "25.403519", "23.05653", "21.751429", "22.400545", "20.776777", "27.689953", "NA", "21.987577", "21.868956", "24.171743", "29.227844", "22.099218", "23.906082", "21.360361", "NA", "24.76878", "23.199873", "28.195765", "23.28834", "22.591816", "20.393503", "NA", "21.328096", "24.092436", "21.405352", "20.464262", "26.314455", "20.427017", "NA", "NA", "22.449268", "24.509182", "23.883665", "NA", "26.639843", "21.548351", "21.620224", "21.891018", "31.868116", "25.34371", "22.77989", "22.26176", "29.815672", "25.78989", "28.391878", "26.761703", "22.994997", "22.64044", "22.926813", "21.796906", "24.783575", "24.748732", "23.239527", "23.560587", "21.309322", "24.900156", "20.30335", "23.669628", "24.965248", "21.698185", "22.579973", "NA", "21.453743", "24.940477", "22.341818", "22.893486", "24.763163", "23.029919", "21.244701", "25.80471", "21.5119", "27.174116", "27.758942", "27.766417", "24.92641", "24.496748", "27.80428", "24.870352", "24.379982", "NA", "27.788355", "20.382341", "23.66059", "26.657005", "22.834496", "21.25463", "26.475056", "21.246956", "24.59505", "NA", "26.743153", "21.717335", "28.554012", "24.948406", "29.84453", "24.37253", "27.255573", "26.156586", "25.821405", "NA", "29.605036", "21.45829", "NA", "NA", "22.750498", "24.498936", "25.43742", "NA", "22.258204", "23.352442", "23.758413", "22.808084", "22.371443", "22.763239", "28.210758", "27.46932", "22.750818", "22.18936", "22.122877", "20.978067", "21.85603", "23.396948", "24.509794", "24.665316", "23.255331", "23.569244", "27.199125", "27.909836", "22.47723", "28.341606", "21.815845", "27.088606", "25.683409", "29.51157"], ["3136G4LC5", "3136G4NW9", "3136G4NP4", "3135G0S46", "3136G4KZ5", "3136G4MY6", "3136G4LA9", "3136G4MG5", "3136G4LF8", "3136G4NG4", "3136G4KQ5", "3136G4NY5", "3136G4NB5", "3136G4MB6", "3136G4ML4", "3136G4MZ3", "3136G4MQ3", "3136G4MV2", "3136G4KS1", "3136G4LV3", "3136G4KW2", "3136G4MU4", "3136G4MW0", "3136G4LS0", "3135G0S53", "3136G4NC3", "3136G4NH2", "3136G4NL3", "3136G4NS8", "3136G4LU5", "3136G4KR3", "3136G4KU6", "3136G4NX7", "3136G4PA5", "3136G4KT9", "3136G4LQ4", "3136G4NE9", "3136G4MK6", "3136G4NF6", "3135G0S87", "3136G4LN1", "3136G4ME0", "3136G4LM3", "3136G4NZ2", "3136G4LP6", "3136G4NK5", "3136G4KY8", "3136G4MJ9", "3136G4NV1", "3136G4NT6", "3136G4LK7", "3135G0T37", "3136G4KM4", "3136G4MS9", "3136G4LW1", "3136G4LB7", "3136G4MF7", "3135G0S95", "3136G4PB3", "3136G4LG6", "3136G4LD3", "3136G4NQ2", "3136G4PC1", "3136G4MX8", "3136G4NA7", "3136G4MD2", "3136G4LY7", "3136G4LT8", "3136G4LE1", "3136G4LH4", "3136G4LJ0", "3136G4NR0", "3136G4KX0", "3135G0S79", "3136G4MC4", "3136G4NK5", "3136G4LX9", "3135G0S61", "3136G4MM2", "3136G4MR1", "3136G4ND1", "3136G4MA8", "3136G4NM1", "3136G4MP5", "3136G4NU3", "3136G4MN0", "3136G4MH3", "3136G4LL5", "3136G4KV4", "3136G4MT7", "3136G4NJ8", "3135G0T52", "3136G4LZ4", "3136G4NN9", "3136G4LR2"], ["zvujsm7ib", "2bedq008s", "0kp6uu5yk", "46htofla8", "fvdirxprd", "zvujsm7ib", "o19mdn5d7", "1dez096ol", "1dez096ol", "mrgnou0m2", "y9vx07g58", "f69pr4ok2", "3nyp999fq", "idb1k6s6g", "n06ov6th2", "taabqbm9m", "rdfq0pmo2", "bkq5ty5hk", "272zh06t5", "b3yiioamr", "x04buscsp", "t65ipl7lr", "kdh6nko1i", "rdfq0pmo2", "7gjlnqpdg", "x4md3dikm", "46htofla8", "jyk8vqquo", "mmf2ljvyx", "g7br1vsco", "n06ov6th2", "o19mdn5d7", "85n2iy1xr", "fvdirxprd", "1xn153mwi", "t2auq9axo", "b3yiioamr", "dn7for0mx", "r33vvdpe8", "40s1hv3xn", "7yhhbzew7", "1dez096ol", "g7br1vsco", "i93ozgctz", "dn7for0mx", "g7br1vsco", "ebhyl99z8", "ffcal8r3k", "n06ov6th2", "vxxmmwd6b", "5puvoea77", "k0z73otlj", "cd115bhjp", "t1ajvnwdq", "3nyp999fq", "k0z73otlj", "0kp6uu5yk", "46htofla8", "5puvoea77", "wsrx6g3by", "40s1hv3xn", "i93ozgctz", "qakf9z4af", "2qm9xoxar", "ebhyl99z8", "t1ajvnwdq", "ls1jl81lq", "juen5jdo2", "idb1k6s6g", "w3lwkvhuk", "g7br1vsco", "vei2b0oln", "hgxif985f", "zwyn27soc", "w3lwkvhuk", "qakf9z4af", "nc5326767", "o19mdn5d7", "kdrnz2gqi", "6797ur0gj", "wsrx6g3by", "v74cesr5t", "k0z73otlj", "wncm1k6zu", "2n3l3jmiu", "07614cqm3", "p4hhwxjji", "zvujsm7ib", "ffcal8r3k", "b3yiioamr", "mrgnou0m2", "2qm9xoxar", "wsrx6g3by", "5rvmi6rbt", "cvuwgu90z", "ffcal8r3k", "rdfq0pmo2", "lai6ku80p", "wsrx6g3by", "6nb0jwyr4", "6nb0jwyr4", "v74cesr5t", "mrgnou0m2", "t65ipl7lr", "qakf9z4af", "4bvhvpgwf", "5ppx9cikl", "wsrx6g3by", "t1ajvnwdq", "mroelm4yf", "lxqsmwjr2", "bkq5ty5hk", "nc5326767", "taabqbm9m", "ffcal8r3k", "1xn153mwi", "zwyn27soc", "4bvhvpgwf", "mmf2ljvyx", "kdrnz2gqi", "f69pr4ok2", "t1ajvnwdq", "k0z73otlj", "wre569f9i", "ls1jl81lq", "t2auq9axo", "ffcal8r3k", "40s1hv3xn", "ttkp0u72x", "oaomqoa8e", "kdrnz2gqi", "x4md3dikm", "7gjlnqpdg", "wncm1k6zu", "l43jnl5r1", "x4md3dikm", "lxqsmwjr2", "qs07oogr7", "0kp6uu5yk", "qs07oogr7", "n7q2jxn3w", "oaomqoa8e", "p5jiqxdn4", "p5jiqxdn4", "cvuwgu90z", "272zh06t5", "vei2b0oln", "idb1k6s6g", "ttkp0u72x", "oaomqoa8e", "wsrx6g3by", "nc5326767", "rdfq0pmo2", "rdfq0pmo2", "ffcal8r3k", "n06ov6th2", "cd115bhjp", "n06ov6th2", "woarlew1q", "hgxif985f", "ffcal8r3k", "t65ipl7lr", "7yhhbzew7", "wncm1k6zu", "85n2iy1xr", "lxqsmwjr2", "6nb0jwyr4", "jyoz5t1qo", "2n3l3jmiu", "k0z73otlj", "2n3l3jmiu", "7nii1obt9", "p4hhwxjji", "5ppx9cikl", "5puvoea77", "n06ov6th2", "62jthxq7o", "k0z73otlj", "85n2iy1xr", "t65ipl7lr", "t1ajvnwdq", "jyoz5t1qo", "272zh06t5", "i93ozgctz", "5ppx9cikl", "hbdpofk5s", "3nyp999fq", "wre569f9i", "ffcal8r3k", "wsrx6g3by", "2wqiwdqwp", "19b8mj7zo", "hgt5j7hdy", "vei2b0oln", "zez9yfy7y", "lai6ku80p", "bkq5ty5hk", "ttkp0u72x", "t1ajvnwdq", "07614cqm3", "taabqbm9m", "ttkp0u72x", "jyk8vqquo", "0xwjyez37", "mrgnou0m2", "62jthxq7o", "0xwjyez37", "cd115bhjp", "lxqsmwjr2", "19b8mj7zo", "zez9yfy7y", "fvdirxprd", "t2auq9axo", "qakf9z4af", "62jthxq7o", "eu4zw20g0", "lai6ku80p", "5ppx9cikl", "kdrnz2gqi", "t65ipl7lr", "qakf9z4af", "plkv693sx", "0xwjyez37", "1xn153mwi", "woarlew1q", "o12amdwp0", "w3lwkvhuk", "idb1k6s6g", "lxqsmwjr2", "plkv693sx", "i93ozgctz", "wncm1k6zu", "nc5326767", "85n2iy1xr", "xgpnq3j18", "dn7for0mx", "o19mdn5d7", "7gjlnqpdg", "85n2iy1xr", "oaomqoa8e", "mroelm4yf", "r33vvdpe8", "wre569f9i", "eu4zw20g0", "lai6ku80p", "1dez096ol", "taabqbm9m", "cd115bhjp", "hz8buhf3q", "oaomqoa8e", "taabqbm9m", "jyoz5t1qo", "kpy79vz81", "7nii1obt9", "ttkp0u72x", "62jthxq7o", "g7br1vsco", "hz8buhf3q", "kdh6nko1i", "wncm1k6zu", "p4hhwxjji", "v4mrc6lu0", "5ppx9cikl", "xgpnq3j18", "0kp6uu5yk", "40s1hv3xn", "1dez096ol", "2wqiwdqwp", "hgxif985f", "zwyn27soc", "idb1k6s6g", "2n3l3jmiu", "kdh6nko1i", "19b8mj7zo", "o19mdn5d7", "wre569f9i", "w3lwkvhuk", "t1ajvnwdq", "mrgnou0m2", "n7q2jxn3w", "7nii1obt9", "hgxif985f", "nc5326767", "i93ozgctz", "f69pr4ok2", "mrgnou0m2", "g7br1vsco", "46htofla8", "plkv693sx", "o19mdn5d7", "lai6ku80p", "2wqiwdqwp", "2n3l3jmiu", "juen5jdo2", "2bedq008s", "lxqsmwjr2", "idb1k6s6g", "eu4zw20g0", "y9vx07g58", "taabqbm9m", "vei2b0oln", "xgpnq3j18", "n06ov6th2", "jyoz5t1qo", "nc5326767", "y9vx07g58", "h3ypqoxrn", "ls1jl81lq", "2n3l3jmiu", "5rvmi6rbt", "ls1jl81lq", "62jthxq7o", "1dez096ol", "bkq5ty5hk", "jyk8vqquo", "1xn153mwi", "wre569f9i", "lxqsmwjr2", "w3lwkvhuk", "0xwjyez37", "v74cesr5t", "b3yiioamr", "3nyp999fq", "y9vx07g58", "idb1k6s6g", "b3yiioamr", "6nb0jwyr4", "cd115bhjp", "y9vx07g58", "hgt5j7hdy", "wsrx6g3by", "x4md3dikm", "v4mrc6lu0", "lai6ku80p", "4bvhvpgwf", "f69pr4ok2", "ttkp0u72x", "ebhyl99z8", "ffcal8r3k", "2qm9xoxar", "zez9yfy7y", "rdfq0pmo2", "kpy79vz81", "hydkp1rph", "zvujsm7ib", "woarlew1q", "5ppx9cikl", "7gjlnqpdg", "5rvmi6rbt", "g7br1vsco", "mmf2ljvyx", "juen5jdo2", "l43jnl5r1", "ls1jl81lq", "r33vvdpe8", "n06ov6th2", "zez9yfy7y", "2bedq008s", "qakf9z4af", "7nii1obt9", "fvdirxprd", "ls1jl81lq", "5rvmi6rbt", "3nyp999fq", "kpy79vz81", "2bedq008s", "2wqiwdqwp", "n7q2jxn3w", "o12amdwp0", "mmf2ljvyx", "woarlew1q", "vei2b0oln", "7nii1obt9", "mroelm4yf", "taabqbm9m", "2wqiwdqwp", "3nyp999fq", "w3lwkvhuk", "hz8buhf3q", "i93ozgctz", "g7br1vsco", "ffcal8r3k", "woarlew1q", "f69pr4ok2", "ls1jl81lq", "rdfq0pmo2", "1xn153mwi", "kpy79vz81", "nc5326767", "2wqiwdqwp", "mroelm4yf", "zvujsm7ib", "ffcal8r3k", "t2auq9axo", "46htofla8", "2bedq008s", "eu4zw20g0", "07614cqm3", "woarlew1q", "n7q2jxn3w", "ebhyl99z8", "p5jiqxdn4", "h3ypqoxrn", "5rvmi6rbt", "g7br1vsco", "lai6ku80p", "qakf9z4af", "ffcal8r3k", "o12amdwp0", "wsrx6g3by", "cvuwgu90z", "y9vx07g58", "ttkp0u72x", "cd115bhjp", "hydkp1rph", "qakf9z4af", "1dez096ol", "i93ozgctz", "ebhyl99z8", "0xwjyez37", "jyk8vqquo", "ebhyl99z8", "mmf2ljvyx", "hbdpofk5s", "46htofla8", "woarlew1q", "5rvmi6rbt", "mroelm4yf", "p5jiqxdn4", "w3lwkvhuk", "nc5326767", "rdfq0pmo2", "o12amdwp0", "plkv693sx", "v74cesr5t", "2bedq008s", "v4mrc6lu0", "t2auq9axo", "n7q2jxn3w", "r33vvdpe8", "eu4zw20g0", "6nb0jwyr4", "1dez096ol", "0xwjyez37", "vei2b0oln", "mrgnou0m2", "o19mdn5d7", "r33vvdpe8", "xgpnq3j18", "hz8buhf3q", "plkv693sx", "g7br1vsco", "f69pr4ok2", "n7q2jxn3w", "g7br1vsco", "hgxif985f", "5ppx9cikl", "mrgnou0m2", "eu4zw20g0", "0kp6uu5yk", "nc5326767", "w3lwkvhuk", "xgpnq3j18", "ebhyl99z8", "bkq5ty5hk", "hz8buhf3q", "2qm9xoxar", "5ppx9cikl", "hz8buhf3q", "jyoz5t1qo", "x4md3dikm", "l43jnl5r1", "wre569f9i", "2qm9xoxar", "f69pr4ok2", "wncm1k6zu", "vxxmmwd6b", "jyoz5t1qo", "lxqsmwjr2", "07614cqm3", "zwyn27soc", "o19mdn5d7", "0kp6uu5yk", "cvuwgu90z", "rdfq0pmo2", "woarlew1q", "juen5jdo2", "1xn153mwi", "bkq5ty5hk", "o19mdn5d7", "n7q2jxn3w", "272zh06t5", "hgt5j7hdy", "ls1jl81lq", "qs07oogr7", "6nb0jwyr4", "lai6ku80p", "idb1k6s6g", "4bvhvpgwf", "y9vx07g58"], ["ERS839051", "ERS839026", "ERS839017", "ERS838941", "ERS838976", "ERS838966", "ERS839031", "ERS839027", "ERS838997", "ERS839011", "ERS838936", "ERS838986", "ERS839021", "ERS839049", "ERS839019", "ERS838945", "ERS838989", "ERS838965", "ERS838961", "ERS838971", "ERS838894", "ERS839006", "ERS838985", "ERS838931", "ERS839043", "ERS839048", "ERS838963", "ERS839042", "ERS839047", "ERS839032", "ERS839046", "ERS839039", "ERS839028", "ERS839038", "ERS838947", "ERS839030", "ERS838991", "ERS839052", "ERS839022", "ERS838943", "ERS839003", "ERS838995", "ERS838929", "ERS839013", "ERS838951", "ERS838969", "ERS839016", "ERS839024", "ERS838957", "ERS838949", "ERS839029", "ERS839010", "ERS838953", "ERS839007", "ERS838999", "ERS839040", "ERS838927", "ERS838972", "ERS838958", "ERS839033", "ERS838993", "ERS839036", "ERS838934", "ERS838980", "ERS838983", "ERS839025", "ERS838988", "ERS839023", "ERS839041", "ERS838978", "ERS839050", "ERS839015", "ERS839034", "ERS839045", "ERS839001", "ERS838939", "ERS838938"], ["2650.0000", "2400.0000", "1350.0000", "350.0000", "2600.0000", "850.0000", "2550.0000", "650.0000", "2450.0000", "750.0000", "3000.0000", "1000.0000", "1750.0000", "1650.0000", "1150.0000", "2950.0000", "1450.0000", "2100.0000", "2150.0000", "2200.0000", "1800.0000", "950.0000", "450.0000", "1250.0000", "1950.0000", "600.0000", "700.0000", "1550.0000", "2050.0000", "1600.0000", "1850.0000", "500.0000", "1100.0000", "900.0000", "1700.0000", "200.0000", "550.0000", "1900.0000", "2850.0000", "400.0000", "2700.0000", "250.0000", "2000.0000", "2900.0000", "1200.0000", "300.0000", "2250.0000", "3050.0000", "1400.0000", "1500.0000", "2300.0000", "3100.0000", "2500.0000", "2800.0000", "2750.0000", "1300.0000", "2350.0000", "1050.0000", "150.0000", "100.0000", "800.0000"], ["103040026", "105163127", "103040278", "105040157", "105161741", "105161957", "105162001", "104040280", "105161355", "105160370", "104040142", "104040068", "105162076", "105161650", "105162472", "103040428", "105163133", "105161794", "102040229", "103040421", "104040309", "105160284", "105163049", "108040220", "105161960", "103040030", "103040160", "102040234", "105160597", "103040429", "109040233", "105160524", "103040035", "104040070", "105040101", "105161670", "105160879", "104040059", "103040110", "105163073", "104040074", "105161429", "103040569", "105160340", "105040339", "104040312", "107040052"], ["511214.03", "513760.05", "511352.54", "511127.6", "513617.35", "514735.61", "514402.4", "511333.34", "514192.8", "511333.94", "514841.12", "513602.11", "511369.26", "514789.65", "514055.09", "514852.7", "511284.26", "513717.73", "511257.96", "513830.56", "514534.68", "511309.27", "513647.22", "511042.6", "511505.05", "514735.66", "514306.73", "514528.04", "510927.21", "514528.07", "513613.79", "511305.88", "511188.26", "511208.9", "511291.97", "511444.64", "511056.02", "514646.19", "511349.53", "514310.23", "514065.09", "514859.3", "511456.59", "514869.62", "514856.2", "514593.66"], ["6-Jun-12", "12-Sep-14", "12-Sep-14", "12-Sep-14", "12-Sep-14", "27-Jan-04", "12-Sep-14", "12-May-07", "23-Jan-04", "12-Feb-04", "15-Jul-05", "12-Sep-14", "1-Feb-04", "2-Feb-04", "22-Jan-04", "10-Nov-05", "8-May-09", "17-Jun-06", "12-Feb-15", "20-Jan-04", "12-Dec-11", "12-Sep-14", "6-Feb-08", "14-Aug-06", "30-Jan-04", "13-Feb-14", "26-Oct-05", "25-Nov-05", "12-Sep-14", "12-Sep-14", "28-Jun-04", "22-Feb-06", "18-Apr-12", "9-Jul-15", "21-Jan-08", "6-Feb-04", "12-Sep-14", "12-Sep-14", "24-Jan-04", "20-Jun-06", "23-Apr-06", "13-Jun-08", "20-Jan-04", "12-Feb-08", "7-Feb-04", "12-Sep-14", "20-Jun-06", "7-Feb-04", "7-Jan-15", "26-Jan-04", "4-Feb-04", "28-Jan-04"], ["21-Apr-13", "Feb-15", "5-May-13", "4-Apr-13", "Apr-15", "May-15", "Jan-15", "Apr-15", "16-Apr-13", "Jan-15", "Apr-15", "Feb-14", "Apr-15", "May-15", "Mar-14", "29-Apr-13", "21-Dec-13", "Apr-15", "May-15", "29-Mar-13", "Feb-14", "Jun-14", "Dec-14", "5-May-13", "Apr-15", "Feb-15", "Dec-14", "Apr-15", "5-May-13", "23-Apr-13", "Nov-14", "Apr-15", "3-May-13", "Apr-15", "Feb-14", "26-Apr-13", "Feb-15", "Apr-15", "May-15", "Jan-15", "Apr-15", "14-Apr-13", "May-14", "Apr-15", "Apr-15", "Apr-14", "Apr-14", "May-15", "6-Aug-14", "Apr-15", "Apr-15", "Nov-14", "Feb-14", "Feb-15", "Apr-14", "Dec-14", "Feb-14", "May-15", "4-Apr-13", "Feb-15", "Dec-14", "Apr-15", "15-Apr-13", "Dec-14", "May-14", "Apr-15", "5-May-13", "13-Jan-15"], ["Hunan", "Hunan", "Tibet", "Guangxi", "Tibet", "Hunan", "Guangdong", "Tibet", "Guangxi", "Qinghai", "Yunnan", "Henan", "Guizhou", "Guangdong", "Hunan", "Tibet", "Ningxia", "Yunnan", "Shanxi", "Qinghai", "Guangdong", "Guizhou", "Guangdong", "Guangdong", "Guangxi", "Guangdong", "Hunan", "Guangdong", "Anhui", "Shanxi", "Anhui", "Hubei", "Jiangxi", "Shanxi", "Zhejiang", "Jiangxi", "Qinghai", "Hubei", "Shanxi", "Jiangsu", "Hunan", "Hunan", "Yunnan", "Yunnan", "Anhui", "Shanghai", "Guangxi", "Hunan", "Hunan", "Qinghai", "Gansu", "Guangxi"], ["Hunan", "Guangdong", "Jiangxi", "Zhejiang", "Anhui", "Jiangsu", "Jiangsu", "Zhejiang", "Zhejiang", "Guangdong", "Guangdong", "Shanghai", "Fujian", "Zhejiang", "Guangdong", "Guangdong", "Hubei", "Guangdong", "Guangdong", "Guangdong", "Jiangxi", "Jiangxi", "Zhejiang", "Guangdong", "Zhejiang", "Fujian", "Jiangxi", "Fujian", "Shanghai", "Hubei", "Zhejiang", "Jiangxi", "Fujian", "Guangdong", "Hunan", "Guangdong", "Shanghai", "Zhejiang", "Fujian", "Zhejiang", "Fujian", "Hunan", "Fujian", "Guangdong", "Shandong", "Hunan", "Guangdong", "Zhejiang", "Guangdong", "Zhejiang", "Guangdong", "Jiangsu", "Hunan", "Jiangsu", "Hunan", "Guangdong", "Shanghai", "Jiangsu", "Jiangsu", "Guangdong", "Fujian", "Henan", "Fujian", "Jiangsu", "Guangdong", "Qinghai", "Guangdong", "Guangdong"], ["1/1/2012", "1/1/2012", "1/1/2014", "7/1/2014", "1/1/2011", "1/1/2011", "1/1/2010", "1/1/2014", "1/1/2011", "1/1/2011", "1/1/2014", "1/1/2012", "1/1/2014", "1/1/2014", "1/1/2014", "1/1/2013", "1/1/2011", "1/1/2012", "1/1/2011", "1/1/2013", "5/8/2012", "7/1/2011", "1/1/2012", "1/1/2014", "1/1/2011", "7/1/2014", "1/1/2014", "1/1/2014", "1/1/2012", "1/1/2013", "1/1/2011", "1/1/2012", "1/1/2012", "1/1/2014", "1/1/2011", "1/1/2014", "1/1/2012", "1/1/2014", "1/1/2014", "1/1/2012", "1/1/2012", "1/1/2014", "1/1/2012", "1/1/2014", "1/1/2014", "1/1/2014", "1/1/2012", "1/1/2011", "1/1/2012", "7/1/2014", "7/1/2013", "1/1/2013", "7/1/2013", "1/1/2013", "1/1/2011", "1/1/2012", "1/1/2014", "1/1/2014", "1/1/2011", "7/1/2013", "1/1/2014", "1/1/2013", "1/1/2014", "5/15/2014", "1/1/2012", "1/1/2011", "1/1/2012", "5/18/2012", "1/1/2012", "7/1/2014", "1/1/2014", "1/1/2011", "1/1/2014", "1/1/2014", "1/1/2014", "1/1/2011", "1/1/2011", "1/1/2011", "1/1/2012", "7/1/2011", "1/1/2012", "7/1/2014", "1/1/2014", "5/1/2011", "1/1/2012", "7/1/2014", "1/1/2012", "1/1/2014", "1/1/2014", "7/1/2012", "1/1/2012", "1/1/2012", "1/1/2014", "1/1/2012", "1/1/2014", "1/1/2011", "6/1/2012", "1/1/2014", "1/1/2013", "7/1/2012", "5/1/2011", "1/1/2014", "1/1/2012", "1/1/2012", "7/1/2014", "1/1/2011", "1/1/2014", "1/1/2014", "1/1/2014", "1/1/2011", "1/1/2014", "5/1/2012", "1/1/2011", "1/1/2012", "1/1/2011", "1/1/2012", "1/1/2011", "1/1/2014", "1/1/2011", "1/1/2014", "1/1/2011", "1/1/2012", "1/1/2014", "1/1/2014", "1/1/2014", "1/1/2012", "1/1/2012", "1/1/2011", "7/1/2014", "1/1/2012", "1/1/2014", "5/1/2014", "5/21/2011", "1/1/2014", "5/18/2012", "1/1/2014", "1/1/2014", "1/1/2014", "1/1/2012", "1/1/2014", "1/1/2014", "1/1/2011", "1/1/2013", "1/1/2011", "7/1/2014", "1/1/2011", "1/1/2011", "1/1/2014", "1/1/2014", "1/1/2014", "1/1/2012", "1/1/2012", "1/1/2014", "7/1/2013", "1/1/2014", "1/1/2014", "1/1/2014", "1/1/2014", "7/1/2014", "1/1/2014", "1/1/2011", "1/1/2014", "1/1/2012", "1/1/2013", "1/1/2014", "1/1/2011", "1/1/2012", "1/1/2011", "1/1/2014", "1/1/2014", "1/1/2014", "1/1/2014", "1/1/2011", "1/1/2012", "7/1/2014", "1/1/2012", "1/1/2012", "1/1/2014", "1/1/2014", "1/1/2011", "1/1/2014", "1/1/2012", "1/1/2014", "1/1/2012", "1/1/2014", "1/1/2012", "7/1/2014", "1/1/2014", "1/1/2011", "1/1/2014", "1/1/2014", "1/1/2012", "1/1/2012", "7/1/2012", "1/1/2014", "1/1/2012", "1/1/2014", "1/1/2014", "1/1/2014", "1/1/2014", "7/1/2012", "1/1/2012", "7/1/2014", "1/1/2012", "1/1/2013", "1/1/2011", "1/1/2013", "1/1/2014", "1/1/2012", "1/1/2014", "5/20/2013", "1/1/2012", "1/1/2014", "1/1/2011", "1/1/2011", "1/1/2012", "1/1/2011", "1/1/2012", "1/1/2014", "1/1/2014", "1/1/2014", "1/1/2014", "5/1/2011", "1/1/2012", "1/1/2014", "1/1/2011", "7/1/2014", "1/1/2011", "1/1/2012", "1/1/2014", "1/1/2014", "1/1/2014", "5/18/2013", "1/1/2014", "1/1/2013", "1/1/2014", "1/1/2012", "1/1/2014", "1/1/2014", "7/1/2014", "1/1/2014", "1/1/2011", "1/1/2014", "1/1/2014", "7/1/2012", "1/1/2012", "1/1/2013", "1/1/2012", "1/1/2012", "1/1/2013", "1/1/2013", "7/1/2011", "1/1/2012", "1/1/2010", "1/1/2011", "1/1/2013", "1/1/2014", "5/16/2011", "1/1/2011", "1/1/2014", "5/20/2013", "1/1/2013", "1/1/2012", "1/1/2014", "1/1/2011", "1/1/2014", "7/1/2014", "1/1/2014", "7/1/2011", "1/1/2012", "1/1/2012", "1/1/2012", "1/1/2014", "1/1/2011", "1/1/2012", "1/1/2012", "1/1/2013", "7/1/2013", "1/1/2011", "1/1/2012", "7/1/2014", "1/1/2012", "1/1/2014", "1/1/2011", "1/1/2012", "1/1/2012", "1/1/2012", "1/1/2012", "1/1/2014", "1/1/2014", "1/1/2010", "1/1/2012", "1/1/2014", "1/1/2013", "1/1/2012", "5/1/2013", "1/1/2014", "1/1/2014", "1/1/2012", "1/1/2011", "1/1/2014", "1/1/2012", "1/1/2012", "1/1/2012", "1/1/2014", "1/1/2014", "1/1/2011", "1/1/2012", "5/1/2014", "5/20/2013", "1/1/2012", "1/1/2014", "1/1/2014", "1/1/2014", "1/1/2012", "1/1/2012", "1/1/2012", "1/1/2014", "1/1/2011", "1/1/2012", "1/1/2014", "7/1/2012", "1/1/2012", "1/1/2014", "1/1/2014", "1/1/2014", "1/1/2012", "1/1/2011", "1/1/2014", "1/1/2012", "1/1/2014", "1/1/2012", "1/1/2014", "1/1/2012", "1/1/2014", "1/1/2011", "1/1/2012", "1/1/2014", "1/1/2012", "1/1/2011", "1/1/2012", "1/1/2014", "1/1/2011", "1/1/2014", "1/1/2014", "1/1/2014", "1/1/2012", "1/1/2014", "1/1/2014", "1/1/2012", "1/1/2011", "1/1/2011", "1/1/2014", "1/1/2014", "7/1/2014", "1/1/2014", "1/1/2012", "1/1/2014", "1/1/2014", "1/1/2013", "1/1/2012", "1/1/2014", "1/1/2014", "1/1/2013", "1/1/2012", "1/1/2013", "1/1/2012", "1/1/2011", "1/1/2011", "1/1/2011", "1/1/2014", "5/16/2013", "1/1/2014", "1/1/2012", "1/1/2014", "1/1/2011", "1/1/2011", "1/1/2011", "1/1/2014", "1/1/2014", "1/1/2014", "1/1/2014", "1/1/2012", "1/1/2014", "1/1/2013", "1/1/2014", "1/1/2014", "1/1/2011", "1/1/2014", "1/1/2014", "1/1/2012", "1/1/2014", "1/1/2014", "1/1/2012", "1/1/2014", "1/1/2014", "1/1/2012", "1/1/2011", "1/1/2012", "1/1/2012", "1/1/2014", "1/1/2011", "5/14/2012", "1/1/2014", "1/1/2012", "1/1/2014", "1/1/2012", "1/1/2014", "1/1/2012", "1/1/2014", "1/1/2012", "1/1/2012", "1/1/2014", "7/1/2014", "1/1/2011", "1/1/2014", "1/1/2012", "1/1/2014", "1/1/2012", "1/1/2011", "1/1/2014", "1/1/2014", "1/1/2013", "1/1/2012", "1/1/2012", "1/1/2014", "1/1/2012", "1/1/2013", "1/1/2014", "1/1/2014", "1/1/2011", "1/1/2012", "1/1/2014", "1/1/2011", "1/1/2012", "1/1/2011", "1/1/2012", "1/1/2012", "1/1/2011", "1/1/2012", "1/1/2012", "1/1/2011", "7/1/2014", "1/1/2014", "1/1/2014", "1/1/2012", "7/1/2014", "1/1/2014", "1/1/2013", "1/1/2014", "5/21/2012", "1/1/2012", "1/1/2014", "1/1/2014", "7/1/2014", "1/1/2012", "1/1/2014", "1/1/2014", "1/1/2011", "1/1/2012", "1/1/2012", "1/1/2011", "1/1/2012", "1/1/2014", "1/1/2012", "1/1/2013", "1/1/2014", "1/1/2012", "1/1/2012", "1/1/2014", "1/1/2012", "1/1/2011", "1/1/2011", "1/1/2014", "1/1/2014", "1/1/2014", "1/1/2012", "1/1/2012", "1/1/2014", "1/1/2012", "1/1/2012", "1/1/2012", "1/1/2013", "5/1/2011", "1/1/2012", "1/1/2013", "1/1/2012", "1/1/2014", "1/1/2012", "1/1/2014", "7/1/2014", "1/1/2014", "5/1/2013", "1/1/2012", "7/1/2013", "5/11/2013", "1/1/2011", "1/1/2014", "1/1/2012", "1/1/2012"], ["1/1/2012", "1/1/2015", "1/1/2012", "1/1/2015", "1/1/2014", "1/1/2015", "1/1/2015", "5/16/2015", "1/1/2012", "7/1/2014", "1/1/2015", "1/1/2015", "1/1/2014", "1/1/2015", "1/1/2012", "1/1/2015", "1/1/2014", "1/1/2015", "1/1/2013", "1/1/2012", "1/1/2012", "1/1/2015", "1/1/2014", "7/1/2014", "1/1/2015", "1/1/2015", "1/1/2015", "7/1/2015", "1/1/2015", "1/1/2015", "1/1/2012", "1/1/2015", "1/1/2015", "1/1/2014", "1/1/2015", "1/1/2012", "1/1/2013", "1/1/2014", "1/1/2015", "1/1/2015", "1/1/2014", "7/1/2014", "1/1/2013", "1/1/2014", "1/1/2012", "5/1/2015", "1/1/2015", "1/1/2015", "1/1/2015", "1/1/2012", "1/1/2015", "1/1/2015", "1/1/2012", "1/1/2011", "1/1/2015", "1/1/2015", "1/1/2012", "1/1/2015", "1/1/2015", "1/1/2014", "1/1/2015", "7/1/2012", "1/1/2014", "1/1/2015", "1/1/2015", "1/1/2012", "1/1/2012", "1/1/2015", "1/1/2012", "1/1/2012", "1/1/2015", "1/1/2014", "1/1/2015", "7/1/2012", "1/1/2015", "1/1/2013", "1/1/2013", "1/1/2015", "1/1/2015", "1/1/2012", "7/1/2014", "7/1/2014", "1/1/2012", "1/1/2015", "1/1/2015", "1/1/2015", "1/1/2015", "1/1/2012", "1/1/2015", "1/1/2012", "1/1/2015", "1/1/2015", "1/1/2015", "1/1/2014", "1/1/2015", "1/1/2015", "5/8/2012", "5/1/2012", "1/1/2015", "1/1/2013", "1/1/2014", "1/1/2011", "1/1/2015", "1/1/2015", "1/1/2015", "1/1/2015", "5/15/2015", "1/1/2012", "1/1/2012", "1/1/2012", "1/1/2014", "1/1/2012", "1/1/2013", "1/1/2012", "7/1/2013", "7/1/2014", "1/1/2013", "1/1/2014", "1/1/2015", "1/1/2015", "1/1/2015", "1/1/2015", "1/1/2013", "1/1/2012", "1/1/2012", "1/1/2014", "1/1/2015", "1/1/2015", "1/1/2015", "1/1/2015", "1/1/2015", "1/1/2012", "1/1/2015", "1/1/2012", "1/1/2012", "1/1/2015", "1/1/2015", "1/1/2015", "1/1/2015", "1/1/2015", "5/1/2013", "1/1/2015", "1/1/2015", "5/1/2015", "1/1/2012", "1/1/2014", "1/1/2012", "1/1/2015", "1/1/2012", "1/1/2015", "1/1/2012", "1/1/2012", "1/1/2015", "1/1/2015", "1/1/2015", "1/1/2015", "1/1/2013", "7/1/2012", "6/1/2012", "1/1/2013", "1/1/2014", "1/1/2013", "1/1/2012", "1/1/2012", "1/1/2015", "1/1/2012", "1/1/2013", "1/1/2012", "1/1/2015", "1/1/2015", "1/1/2012", "1/1/2013", "1/1/2015", "1/1/2015", "1/1/2015", "1/1/2015", "1/1/2012", "1/1/2012", "1/1/2012", "1/1/2012", "1/1/2015", "1/1/2012", "1/1/2015", "1/1/2014", "1/1/2015", "1/1/2015", "1/1/2015", "1/1/2012", "5/16/2013", "1/1/2013", "1/1/2015", "1/1/2015", "1/1/2015", "1/1/2015", "1/1/2013", "7/1/2012", "1/1/2015", "1/1/2014", "1/1/2014", "7/1/2013", "1/1/2011", "1/1/2012", "5/1/2015", "1/1/2015", "1/1/2015", "1/1/2015", "1/1/2015", "1/1/2012", "7/1/2014", "1/1/2012", "1/1/2015", "1/1/2012", "1/1/2015", "1/1/2015", "1/1/2012", "1/1/2012", "1/1/2015", "1/1/2015", "1/1/2015", "1/1/2015", "1/1/2012", "1/1/2014", "1/1/2012", "1/1/2015", "1/1/2015", "1/1/2015", "1/1/2012", "1/1/2015", "1/1/2015", "1/1/2015", "7/1/2012", "7/1/2014", "1/1/2012", "1/1/2015", "1/1/2015", "1/1/2015", "1/1/2012", "1/1/2012", "1/1/2015", "1/1/2015", "1/1/2015", "1/1/2012", "1/1/2015", "1/1/2015", "1/1/2015", "1/1/2016", "1/1/2015", "1/1/2015", "1/1/2014", "1/1/2012", "7/1/2014", "1/1/2015", "1/1/2015", "1/1/2015", "1/1/2014", "1/1/2015", "1/1/2014", "1/1/2014", "1/1/2015", "7/1/2015", "1/1/2015", "1/1/2015", "5/1/2014", "1/1/2012", "1/1/2015", "1/1/2015", "1/1/2015", "1/1/2012", "5/21/2012", "1/1/2014", "5/20/2013", "1/1/2015", "1/1/2015", "1/1/2012", "1/1/2015", "1/1/2012", "1/1/2015", "1/1/2012", "1/1/2012", "1/1/2012", "5/20/2013", "1/1/2015", "1/1/2014", "7/1/2015", "7/1/2014", "1/1/2015", "6/1/2012", "1/1/2012", "7/1/2012", "1/1/2013", "1/1/2015", "1/1/2015", "1/1/2014", "5/8/2012", "1/1/2015", "1/1/2012", "1/1/2015", "1/1/2015", "1/1/2012", "1/1/2012", "5/14/2012", "5/2/2015", "1/1/2015", "1/1/2012", "1/1/2015", "1/1/2012", "1/1/2015", "1/1/2012", "1/1/2012", "1/1/2015", "1/1/2015", "1/1/2015", "5/1/2015", "1/1/2012", "1/1/2015", "7/1/2015", "1/1/2015", "1/1/2015", "5/1/2014", "1/1/2012", "1/1/2012", "1/1/2015", "1/1/2012", "1/1/2012", "7/1/2015", "1/1/2012", "1/1/2015", "1/1/2015", "1/1/2015", "1/1/2015", "1/1/2011", "5/11/2013", "1/1/2015", "1/1/2012", "1/1/2013", "1/1/2012", "1/1/2014", "1/1/2015", "1/1/2012", "1/1/2015", "1/1/2015", "1/1/2012", "1/1/2015", "1/1/2012", "1/1/2015", "1/1/2012", "1/1/2015", "1/1/2012", "1/1/2012", "1/1/2015", "1/1/2012", "1/1/2015", "1/1/2015", "1/1/2015", "1/1/2015", "1/1/2012", "1/1/2012", "7/1/2014", "1/1/2012", "1/1/2012", "1/1/2012", "1/1/2012", "1/1/2012", "7/1/2013", "1/1/2012", "1/1/2015", "1/1/2012", "1/1/2012", "1/1/2015", "1/1/2015", "1/1/2015", "1/1/2015", "1/1/2012", "1/1/2015", "1/1/2015", "1/1/2014", "1/1/2013", "1/1/2015", "1/1/2012", "1/1/2015", "1/1/2015", "1/1/2012", "7/1/2015", "7/1/2014", "1/1/2014", "1/1/2015", "1/1/2015", "1/1/2013", "1/1/2013", "1/1/2012", "1/1/2015", "1/1/2014", "1/1/2012", "1/1/2015", "1/1/2013", "1/1/2015", "1/1/2015", "1/1/2012", "1/1/2012", "7/1/2015", "1/1/2015", "1/1/2012", "1/1/2015", "1/1/2012", "1/1/2012", "7/1/2014", "1/1/2013", "1/1/2015", "1/1/2012", "1/1/2015", "1/1/2015", "1/1/2014", "1/1/2012", "7/1/2015", "1/1/2012", "1/1/2015", "1/1/2015", "1/1/2015", "1/1/2014", "1/1/2012", "1/1/2015", "1/1/2013", "7/1/2013", "1/1/2013", "1/1/2015", "1/1/2015", "1/1/2012", "1/1/2014", "1/1/2014", "1/1/2014", "1/1/2011", "1/1/2015", "1/1/2015", "1/1/2015", "1/1/2012", "1/1/2015", "1/1/2012", "1/1/2012", "1/1/2012", "1/1/2014", "1/1/2015", "5/15/2014", "1/1/2015", "1/1/2012", "1/1/2015", "1/1/2015", "7/1/2011", "7/1/2013", "1/1/2015", "1/1/2014", "7/1/2013", "1/1/2012", "1/1/2014", "1/1/2014", "1/1/2015", "1/1/2012", "1/1/2012", "1/1/2012", "1/1/2012", "1/1/2015", "1/1/2015", "1/1/2015", "1/1/2015", "1/1/2012", "1/1/2015", "1/1/2013", "1/1/2012", "1/1/2015", "1/1/2012", "1/1/2015", "1/1/2013", "1/1/2014", "1/1/2015", "1/1/2015", "1/1/2012", "5/15/2013", "1/1/2012", "1/1/2012", "1/1/2015", "1/1/2012", "5/20/2013", "1/1/2015", "7/1/2014", "1/1/2015", "1/1/2015", "1/1/2012", "7/1/2015", "1/1/2015", "1/1/2013", "7/1/2014", "1/1/2015", "1/1/2015", "1/1/2015", "1/1/2012", "1/1/2012", "1/1/2012", "1/1/2012", "1/1/2015", "1/1/2015", "1/1/2012"], ["Signature", "Silver", "Gold", "Signature", "Platinum", "Platinum", "Silver", "Gold", "Signature", "Gold", "Signature", "Silver", "Signature", "Silver", "Gold", "Platinum", "Silver", "Silver", "Silver", "Signature", "Gold", "Signature", "Gold", "Silver", "Gold", "Platinum", "Silver", "Gold", "Platinum", "Platinum", "Silver", "Silver", "Platinum", "Gold", "Signature", "Gold", "Silver", "Silver", "Signature", "Gold", "Signature", "Platinum", "Silver", "Gold", "Silver", "Gold", "Gold", "Silver", "Silver", "Silver", "Gold", "Platinum", "Platinum", "Gold", "Silver", "Gold", "Platinum", "Platinum", "Silver", "Platinum", "Gold", "Platinum", "Signature", "Silver", "Platinum", "Platinum", "Silver", "Platinum", "Gold", "Silver", "Silver", "Silver", "Silver", "Gold", "Signature", "Silver", "Silver", "Silver", "Signature", "Signature", "Gold", "Signature", "Silver", "Gold", "Silver", "Silver", "Platinum", "Signature", "Silver", "Silver", "Gold", "Signature", "Gold", "Silver", "Silver", "Signature", "Signature", "Silver", "Signature", "Signature", "Silver", "Signature", "Signature", "Signature", "Gold", "Platinum", "Signature", "Platinum", "Silver", "Signature", "Silver", "Gold", "Platinum", "Gold", "Silver", "Silver", "Silver", "Platinum", "Signature", "Platinum", "Silver", "Signature", "Gold", "Gold", "Signature", "Silver", "Silver", "Gold", "Silver", "Platinum", "Signature", "Silver", "Signature", "Signature", "Platinum", "Gold", "Platinum", "Platinum", "Platinum", "Gold", "Signature", "Platinum", "Signature", "Gold", "Signature", "Platinum", "Gold", "Signature", "Platinum", "Signature", "Platinum", "Platinum", "Platinum", "Gold", "Signature", "Platinum", "Platinum", "Platinum", "Silver", "Signature", "Platinum", "Signature", "Signature", "Signature", "Signature", "Silver", "Signature", "Gold", "Silver", "Platinum", "Gold", "Platinum", "Platinum", "Silver", "Signature", "Gold", "Gold", "Gold", "Platinum", "Signature", "Gold", "Platinum", "Silver", "Silver", "Gold", "Gold", "Signature", "Signature", "Gold", "Signature", "Silver", "Platinum", "Platinum", "Signature", "Platinum", "Gold", "Silver", "Signature", "Signature", "Gold", "Gold", "Silver", "Gold", "Signature", "Gold", "Platinum", "Gold", "Silver", "Silver", "Gold", "Gold", "Signature", "Gold", "Signature", "Gold", "Signature", "Signature", "Signature", "Silver", "Signature", "Gold", "Signature", "Gold", "Silver", "Silver", "Signature", "Signature", "Gold", "Signature", "Gold", "Gold", "Platinum", "Silver", "Platinum", "Platinum", "Platinum", "Gold", "Gold", "Silver", "Platinum", "Gold", "Signature", "Platinum", "Silver", "Platinum", "Silver", "Platinum", "Silver", "Signature", "Silver", "Gold", "Gold", "Platinum", "Gold", "Silver", "Silver", "Signature", "Gold", "Gold", "Gold", "Platinum", "Gold", "Platinum", "Signature", "Silver", "Signature", "Gold", "Silver", "Signature", "Platinum", "Gold", "Platinum", "Gold", "Silver", "Platinum", "Gold", "Gold", "Gold", "Silver", "Gold", "Platinum", "Signature", "Signature", "Silver", "Silver", "Silver", "Silver", "Gold", "Platinum", "Platinum", "Platinum", "Silver", "Gold", "Silver", "Gold", "Gold", "Signature", "Silver", "Silver", "Signature", "Platinum", "Signature", "Platinum", "Signature", "Silver", "Silver", "Platinum", "Signature", "Silver", "Signature", "Silver", "Gold", "Gold", "Signature", "Platinum", "Silver", "Platinum", "Silver", "Silver", "Silver", "Platinum", "Silver", "Silver", "Platinum", "Gold", "Signature", "Signature", "Signature", "Platinum", "Signature", "Platinum", "Signature", "Silver", "Silver", "Silver", "Signature", "Signature", "Silver", "Platinum", "Gold", "Gold", "Silver", "Signature", "Silver", "Gold", "Signature", "Signature", "Platinum", "Gold", "Silver", "Platinum", "Signature", "Platinum", "Silver", "Signature", "Platinum", "Platinum", "Silver", "Gold", "Platinum", "Silver", "Silver", "Gold", "Signature", "Signature", "Gold", "Gold", "Signature", "Platinum", "Signature", "Signature", "Platinum", "Gold", "Platinum", "Platinum", "Signature", "Platinum", "Signature", "Signature", "Gold", "Platinum", "Platinum", "Silver", "Signature", "Signature", "Silver", "Silver", "Signature", "Gold", "Signature", "Silver", "Gold", "Signature", "Platinum", "Platinum", "Silver", "Signature", "Silver", "Platinum", "Signature", "Silver", "Gold", "Signature", "Signature", "Platinum", "Signature", "Silver", "Platinum", "Signature", "Signature", "Silver", "Gold", "Gold", "Signature", "Signature", "Platinum", "Platinum", "Silver", "Silver", "Gold", "Platinum", "Silver", "Platinum", "Signature", "Gold", "Signature", "Platinum", "Signature", "Silver", "Gold", "Silver", "Gold", "Silver", "Signature", "Platinum", "Platinum", "Signature", "Silver", "Platinum", "Signature", "Silver", "Silver", "Silver", "Silver", "Silver", "Silver", "Gold", "Gold", "Gold", "Silver", "Gold", "Signature", "Silver", "Platinum", "Silver", "Signature", "Platinum", "Signature", "Platinum", "Silver", "Silver", "Signature", "Signature", "Platinum", "Signature", "Platinum", "Platinum", "Silver", "Silver", "Signature", "Gold", "Platinum", "Gold", "Gold", "Silver", "Platinum", "Signature", "Gold", "Signature", "Platinum", "Silver", "Gold", "Platinum", "Gold", "Gold", "Gold", "Signature", "Gold", "Gold", "Signature", "Signature", "Silver", "Gold", "Platinum", "Silver", "Signature", "Platinum", "Signature", "Gold", "Platinum"], ["Bronx", "Bronx", "Bronx", "Bronx", "Brooklyn", "Bronx", "Bronx", "Queens", "Bronx", "Bronx", "Brooklyn", "Bronx", "Bronx", "Bronx", "Bronx", "Brooklyn", "Bronx", "Bronx", "Bronx", "Brooklyn", "Bronx", "Brooklyn", "Brooklyn", "Bronx", "Brooklyn", "Bronx", "Bronx", "Bronx", "Manhattan", "Brooklyn", "Bronx", "Manhattan", "Bronx", "Brooklyn", "Brooklyn", "Queens", "Bronx", "Manhattan", "Bronx", "Manhattan", "Bronx", "Brooklyn", "Bronx", "Manhattan", "Brooklyn", "Brooklyn", "Brooklyn", "Bronx", "Bronx", "Brooklyn", "Brooklyn", "Bronx", "Manhattan", "Bronx", "Bronx", "Bronx", "Brooklyn", "Manhattan", "Manhattan", "Queens", "Bronx", "Bronx", "Bronx", "Manhattan", "Manhattan", "Bronx", "Bronx", "Brooklyn", "Bronx", "Bronx", "Brooklyn", "Bronx", "Brooklyn", "Bronx", "Manhattan", "Brooklyn", "Brooklyn", "Brooklyn", "Brooklyn", "Brooklyn", "Bronx", "Brooklyn", "Manhattan", "Bronx", "Brooklyn", "Manhattan", "Brooklyn", "Bronx", "Manhattan", "Brooklyn", "Bronx", "Brooklyn", "Bronx", "Brooklyn", "Brooklyn", "Brooklyn", "Bronx", "Brooklyn", "Manhattan", "Queens", "Brooklyn", "Brooklyn", "Brooklyn", "Manhattan", "Brooklyn", "Brooklyn", "Brooklyn", "Bronx", "Brooklyn", "Queens", "Manhattan", "Manhattan", "Queens", "Brooklyn", "Bronx", "Bronx", "Bronx", "Manhattan", "Brooklyn", "Bronx", "Bronx", "Bronx", "Bronx", "Bronx", "Bronx", "Bronx", "Bronx", "Bronx", "Bronx", "Bronx", "Manhattan", "Brooklyn", "Queens", "Bronx", "Manhattan", "Manhattan", "Brooklyn", "Manhattan", "Bronx", "Bronx", "Brooklyn", "Bronx", "Bronx", "Bronx", "Bronx", "Brooklyn", "Brooklyn", "Bronx", "Brooklyn", "Bronx", "Manhattan", "Bronx", "Brooklyn", "Queens", "Brooklyn", "Bronx", "Brooklyn", "Bronx", "Bronx", "Manhattan", "Manhattan", "Brooklyn", "Brooklyn", "Bronx", "Manhattan", "Manhattan", "Manhattan", "Queens", "Bronx", "Manhattan", "Manhattan", "Brooklyn", "Manhattan", "Queens", "Brooklyn", "Bronx", "Brooklyn", "Manhattan", "Bronx", "Manhattan", "Brooklyn", "Brooklyn", "Brooklyn", "Manhattan", "Brooklyn", "Bronx", "Bronx", "Manhattan", "Brooklyn", "Bronx", "Bronx", "Brooklyn", "Brooklyn", "Manhattan", "Bronx", "Bronx", "Bronx", "Bronx", "Brooklyn", "Brooklyn", "Brooklyn", "Bronx", "Bronx", "Brooklyn", "Manhattan", "Brooklyn", "Manhattan", "Bronx", "Manhattan", "Manhattan", "Brooklyn", "Bronx", "Brooklyn", "Bronx", "Bronx", "Manhattan", "Bronx", "Bronx", "Bronx", "Bronx", "Bronx", "Bronx", "Bronx", "Bronx", "Brooklyn", "Brooklyn", "Bronx", "Manhattan", "Bronx", "Bronx", "Bronx", "Bronx", "Brooklyn", "Bronx", "Brooklyn", "Brooklyn", "Brooklyn", "Bronx", "Bronx", "Brooklyn", "Bronx", "Brooklyn", "Bronx", "Manhattan", "Bronx", "Manhattan", "Bronx", "Brooklyn", "Brooklyn", "Bronx", "Bronx", "Bronx", "Bronx", "Manhattan", "Bronx", "Brooklyn", "Brooklyn", "Bronx", "Brooklyn", "Manhattan", "Brooklyn", "Brooklyn", "Brooklyn", "Manhattan", "Manhattan", "Bronx", "Brooklyn", "Brooklyn", "Bronx", "Bronx", "Bronx", "Brooklyn", "Brooklyn", "Bronx", "Bronx", "Brooklyn", "Bronx", "Bronx", "Bronx", "Brooklyn", "Bronx", "Manhattan", "Brooklyn", "Manhattan"], ["+00:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+02:00:00", "+00:00:00", "+02:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+02:00:00", "+02:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+02:00:00", "+00:00:00", "+00:00:00", "+03:00:00", "+00:00:00", "+02:00:00", "+00:00:00", "+00:00:00", "+22:00:00", "+00:00:00", "+02:00:00", "+02:00:00", "+00:00:00", "+03:00:00", "+03:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+03:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+23:00:00", "+00:00:00", "+00:00:00", "+04:00:00", "+03:00:00", "+00:00:00", "+03:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+03:00:00", "+00:00:00", "+03:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+02:00:00", "+00:00:00", "+03:00:00", "+00:00:00", "+02:00:00", "+00:00:00", "+00:00:00", "+02:00:00", "+03:00:00", "+03:00:00", "+00:00:00", "+03:00:00", "+00:00:00", "+01:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+01:00:00", "+00:00:00", "+03:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+01:00:00", "+00:00:00", "+00:00:00", "+03:00:00", "+00:00:00", "+02:00:00", "+03:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+02:00:00", "+02:00:00", "+00:00:00", "+00:00:00", "+03:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+03:00:00", "+00:00:00", "+00:00:00", "+03:00:00", "+00:00:00", "+02:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+02:00:00", "+03:00:00", "+00:00:00", "+02:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+02:00:00", "+00:00:00", "+00:00:00", "+02:00:00", "+03:00:00", "+00:00:00", "+00:00:00", "+03:00:00", "+00:00:00", "+02:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+03:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+03:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+04:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+04:00:00", "+00:00:00", "+02:00:00", "+03:45:00", "+00:00:00", "+03:00:00", "+00:00:00", "+03:00:00", "+03:00:00", "+02:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+01:00:00", "+04:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+03:00:00", "+00:00:00", "+00:00:00", "+03:00:00", "+02:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+00:01:00", "+03:00:00", "+00:00:00", "+00:00:00", "+03:00:00", "+03:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+03:00:00", "+04:00:00", "+01:00:00", "+00:00:00", "+00:00:00", "+02:00:00", "+02:00:00", "+02:00:00", "+03:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+02:00:00", "+02:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+02:00:00", "+02:30:00", "+00:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+03:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+03:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+04:00:00", "+03:00:00", "+03:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+03:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+03:00:00", "+00:00:00", "+03:00:00", "+04:00:00", "+00:00:00", "+00:00:00", "+03:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+02:00:00", "+03:00:00", "+03:00:00", "+00:00:00", "+04:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+02:00:00", "+00:00:00", "+00:00:00", "+04:00:00", "+00:00:00", "+04:00:00", "+00:00:00", "+03:00:00", "+02:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+03:00:00", "+03:00:00", "+02:00:00", "+03:00:00", "+01:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+02:00:00", "+00:00:00", "+02:00:00", "+00:00:00", "+03:00:00", "+00:00:00", "+03:00:00", "+03:00:00", "+03:00:00", "+00:00:00", "+02:00:00", "+03:00:00", "+00:00:00", "+00:00:00", "+02:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+03:00:00", "+00:00:00", "+04:00:00", "+00:00:00", "+02:00:00", "+00:00:00", "+03:00:00", "+00:00:00", "+00:00:00", "+04:00:00", "+02:00:00", "+00:00:00", "+02:00:00", "+04:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+03:00:00", "+04:00:00", "+02:00:00", "+00:00:00", "+00:00:00", "+04:00:00", "+02:00:00", "+00:00:00", "+02:00:00", "+02:00:00", "+02:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+00:01:00", "+00:00:00", "+03:00:00", "+02:00:00", "+00:00:00", "+00:00:00", "+02:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+03:00:00", "+02:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+00:00:00", "+00:00:00"], ["Quarterly", "One time", "One time", "Quarterly", "Quarterly", "One time", "Quarterly", "One time", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "One time", "Quarterly", "Quarterly", "One time", "Quarterly", "Quarterly", "Quarterly", "One time", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "One time", "One time", "Quarterly", "One time", "Quarterly", "Quarterly", "One time", "Quarterly", "Quarterly", "Quarterly", "One time", "Quarterly", "Quarterly", "One time", "One time", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "One time", "Quarterly", "One time", "Quarterly", "One time", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "One time", "One time", "Quarterly", "Quarterly", "One time", "Quarterly", "Quarterly", "Quarterly", "One time", "Quarterly", "Quarterly", "Quarterly", "One time", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "One time", "One time", "One time", "One time", "One time", "Quarterly", "Quarterly", "Quarterly", "One time", "One time", "One time", "Quarterly", "Quarterly", "One time", "Quarterly", "Quarterly", "One time", "Quarterly"], ["freehold", "freehold", "leasehold", "freehold", "freehold", "FREEHOLD", "freehold", "freehold", "freehold", "FREEHOLD", "freehold", "FREEHOLD", "freehold", "FREEHOLD", "FREEHOLD", "freehold", "freehold", "freehold", "FREEHOLD", "leasehold", "freehold", "freehold", "freehold", "freehold", "FREEHOLD", "FREEHOLD", "FREEHOLD", "freehold", "freehold", "freehold", "freehold", "FREEHOLD", "freehold", "freehold", "freehold", "freehold", "freehold", "FREEHOLD", "freehold", "freehold", "freehold", "FREEHOLD", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "FREEHOLD", "FREEHOLD", "freehold", "FREEHOLD", "FREEHOLD", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "FREEHOLD", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "leasehold", "freehold", "freehold", "freehold", "freehold", "FREEHOLD", "FREEHOLD", "freehold", "FREEHOLD", "freehold", "freehold", "freehold", "FREEHOLD", "FREEHOLD", "freehold", "FREEHOLD", "freehold", "FREEHOLD", "freehold", "freehold", "freehold", "FREEHOLD", "freehold", "freehold", "freehold", "freehold", "freehold", "FREEHOLD", "FREEHOLD", "freehold", "FREEHOLD", "freehold", "FREEHOLD", "freehold", "freehold", "freehold", "freehold", "FREEHOLD", "freehold", "freehold", "freehold", "freehold", "FREEHOLD", "FREEHOLD", "freehold", "FREEHOLD", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "FREEHOLD", "FREEHOLD", "FREEHOLD", "FREEHOLD", "freehold", "FREEHOLD", "freehold", "FREEHOLD", "freehold", "freehold", "FREEHOLD", "FREEHOLD", "FREEHOLD", "freehold", "freehold", "leasehold", "FREEHOLD", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "FREEHOLD", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "FREEHOLD", "FREEHOLD", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "FREEHOLD", "freehold", "freehold", "freehold", "freehold", "freehold", "FREEHOLD", "freehold", "freehold", "FREEHOLD", "freehold", "FREEHOLD", "freehold", "FREEHOLD", "freehold", "freehold", "freehold", "freehold", "freehold", "FREEHOLD", "FREEHOLD", "FREEHOLD", "FREEHOLD", "freehold", "FREEHOLD", "freehold", "freehold", "freehold", "freehold", "FREEHOLD", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "FREEHOLD", "freehold", "freehold", "freehold", "freehold", "freehold", "FREEHOLD", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "FREEHOLD", "freehold", "freehold", "FREEHOLD", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "FREEHOLD", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "FREEHOLD", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "FREEHOLD", "freehold", "freehold", "FREEHOLD", "FREEHOLD", "freehold", "freehold", "FREEHOLD", "FREEHOLD", "freehold", "freehold", "FREEHOLD", "FREEHOLD", "freehold", "FREEHOLD", "FREEHOLD", "freehold", "freehold", "freehold", "FREEHOLD", "FREEHOLD", "freehold", "freehold", "freehold", "FREEHOLD", "freehold", "freehold", "freehold", "freehold", "freehold", "FREEHOLD", "freehold", "freehold", "freehold", "freehold", "freehold", "FREEHOLD", "FREEHOLD", "freehold", "FREEHOLD", "freehold", "FREEHOLD", "freehold", "freehold", "freehold", "freehold", "freehold", "FREEHOLD", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "FREEHOLD", "FREEHOLD", "freehold", "FREEHOLD", "freehold", "freehold", "leasehold", "freehold", "freehold", "freehold", "freehold", "freehold", "leasehold", "freehold", "freehold", "freehold", "freehold", "FREEHOLD", "freehold", "FREEHOLD", "freehold", "freehold", "FREEHOLD", "freehold", "freehold", "freehold", "freehold", "FREEHOLD", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "FREEHOLD", "freehold", "freehold", "FREEHOLD", "freehold", "freehold", "freehold", "freehold", "freehold", "FREEHOLD", "freehold", "freehold", "freehold", "freehold", "FREEHOLD", "freehold", "freehold", "freehold", "FREEHOLD", "freehold", "freehold", "FREEHOLD", "freehold", "freehold", "freehold", "freehold", "freehold", "FREEHOLD", "freehold", "freehold", "freehold", "freehold", "leasehold", "freehold", "freehold", "freehold", "freehold", "FREEHOLD", "freehold", "freehold", "FREEHOLD", "freehold", "freehold", "freehold", "freehold", "freehold", "FREEHOLD", "freehold", "FREEHOLD", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "FREEHOLD", "FREEHOLD", "FREEHOLD", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "FREEHOLD", "FREEHOLD", "FREEHOLD", "FREEHOLD", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "FREEHOLD", "freehold", "freehold", "freehold", "freehold", "freehold", "FREEHOLD", "FREEHOLD", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "FREEHOLD", "freehold", "freehold", "FREEHOLD", "freehold", "freehold", "freehold", "freehold", "freehold", "freehold", "FREEHOLD", "freehold", "FREEHOLD", "FREEHOLD", "FREEHOLD", "freehold"], ["not_mowed", "mowed", "not_mowed", "not_mowed", "mowed", "not_mowed", "not_mowed", "mowed", "not_mowed", "not_mowed", "not_mowed", "not_mowed", "mowed", "not_mowed", "not_mowed", "mowed", "not_mowed", "not_mowed", "not_mowed", "mowed", "not_mowed", "not_mowed", "not_mowed", "not_mowed", "not_mowed", "mowed", "not_mowed", "not_mowed", "not_mowed", "not_mowed", "not_mowed", "mowed", "not_mowed", "not_mowed", "mowed", "mowed", "not_mowed", "not_mowed", "not_mowed", "not_mowed", "not_mowed", "not_mowed", "not_mowed", "not_mowed", "not_mowed", "not_mowed", "not_mowed"], ["090432527", "NA", "NA", "NA", "NA", "NA", "090432527", "NA", "NA", "NA", "090432527", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "090432527", "090432527", "NA", "NA", "090432527", "NA", "NA", "NA", "NA", "NA", "NA", "090432527", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "090432527", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "090432527", "NA", "NA", "NA", "NA", "090432527", "NA", "NA", "NA", "NA"], ["679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "678834176", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "678834176", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "676171776", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "678834176", "679718912", "678834176", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "678834176", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "678834176", "679718912", "679718912", "679718912", "679718912", "679718912", "678834176", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "678834176", "679391232", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912", "679718912"], ["CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CRANKCASE", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CRANKCASE", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER", "CANISTER"], ["761670562", "931655509", "757445301", "932347066", "875080149", "1123133435", "740404554", "1205251320", "751006421", "744152542", "1055126754", "755956449", "1123244768", "875296416", "1212442704", "1039624832", "757185287", "745496360", "1123060210", "1123431507", "755074234", "1039632111", "932045444", "1062129429", "1123301242", "760104696", "1055168778", "931695026", "748263452", "968065016", "932096367", "595631095", "1062126107", "856107579", "932000990", "931795641", "761492603", "859603262", "759363085", "1169378608", "912000419", "1123208697", "742212519", "931708199", "763250913", "452994431", "931910574", "715215387", "931881114", "859603547", "856284782", "70339064", "759470964", "751957343", "1123082792", "737360740", "1062125566", "997419075", "1123165695", "758274545", "931973901", "763548661", "1123208488", "951053341", "1206280175", "997915374", "453001977", "758022859", "758336551", "1062068268", "754985916", "1190728111", "932184717", "1090398288", "1242629784", "739695265", "856182751", "757135300", "453042911", "757619557", "1062068434", "1242591181", "759445030", "931612197", "893490036", "453042905", "70337791", "1205251297", "752138079", "743142317", "745345497", "894698896", "837852440", "1062126177", "760175563", "1036534299", "196730554", "761663211", "875304143", "1142007247", "746723592", "739492004", "1062107202", "1123719165", "931871399", "1123488377", "1055128282", "758019680", "931800818", "753369300", "1201869406", "762394535", "1123208135", "1062081199", "595576392", "737909585", "932410951", "859588727", "922875134", "744151006", "757221332", "743206830", "931737892", "742541314", "755072912", "931709864", "779863849", "196730508", "763838507", "931825656", "757547848", "763617203", "1188379943", "751610737", "772840899", "1062146182", "856262154", "1243915997", "932571831", "753908131", "1181408750", "758801021", "715824244", "773019754", "931563514", "758022781", "837843006", "595626672", "1212427732", "1062133274", "932345318", "736729125", "896120072", "595308453", "740337090", "743138578", "753824452", "758021962", "932136567", "723422673", "875277198", "931715032", "788321309", "1065027520", "1051443256", "747497773", "1123133096", "758669937", "1243957093", "1062126791", "932010920", "1202632201", "1062143458", "747646774", "1182975876", "736927972", "1062109603", "757748640", "922864805", "765001585", "723186591", "1123180252", "1319591832", "1242202526", "1062129393", "931820025", "758369492", "931690086", "736414921", "734925681", "452986792", "932286239", "746216668", "763577133", "997709262", "747304255", "1273334076", "1062138008", "750625912", "1062130128", "1201562308", "757221471", "1123418926", "1062118597", "758021976", "1039648510", "1239944889", "856316440", "856345185", "736481079", "1123087445", "931732945", "861646807", "1062148202", "196730510", "759611937", "1062126010", "736956886", "453002020", "1244936275", "895965647", "748805022", "840226468", "757903865", "739106404", "747143291", "758021805", "744141241", "931854568", "1062129621", "931729435", "741844333", "856264605", "932108501", "875036422", "739227288", "1123414745", "723416345", "1189662667", "1062147254", "737044241", "736482460", "737386657", "1123208302", "453036817", "758847864", "861685549", "1062068478", "1123149161", "758501957", "1123708576", "737344389", "196730442", "931872245", "931804683", "754492185", "788899722", "764286609", "931871700", "763638035", "1171700192", "922852077", "1169434056", "452751537", "754852328", "895629727", "723429956", "448917880", "742385506", "757595971", "1123132935", "758576016", "757255508", "1062122918", "761011513", "450871838", "932329314", "1062130009", "1245253465", "753623363", "751590627", "758021224", "1243944298", "749729932", "1062068157", "452984391", "1123060054", "742173535", "979959784", "1062125323", "751691819", "856160034", "737927789", "452916907", "759365225", "931815937", "758254917", "933450194", "1246602960", "1237667670", "741541724", "931838233", "196730517", "1046589695", "736335331", "763784415", "856118355", "1062050438", "931719901", "1123086630", "931833825", "1321909587", "759004938", "196730459", "856260757", "755736216", "1058416824", "757143658", "931815941", "1123122750", "739673385", "753850730", "196730503", "997732796", "1245266662", "748336641", "760049031", "932080700", "736460071", "951632272", "741776475", "453002022", "750771290", "743527632", "1208906153", "875391983", "932346424", "739454867", "750874597", "740950738", "856378609", "766978464", "758367726", "759378032", "739051082", "70298539", "757346931", "856457625", "737801260", "753422362", "1062067349", "758369802", "453075328", "746668012", "932110329", "1050221563", "1062112194", "757368750", "746287702", "932044464", "1176602087", "932029822", "453001982", "740035668", "760355125", "754632385", "736532101", "764139643", "1062144582", "759643317", "196730443", "740951752", "757148972", "757994411", "1062145918", "1132432091", "763497032", "1062129399", "756057028", "997877008", "773047919", "736730438", "751287126", "743656292", "745942604", "1039597573", "741263520", "998006238", "856213501", "755174083", "761454071", "932142093", "758741374", "1062108813", "895916068", "686329188", "755899730", "932630702", "970952982", "932108969", "750268752", "452994398", "1202643512", "932235354", "743917912", "1235745113", "737493227", "759967830", "1065757502", "758290123", "1123431152", "875288973", "931835975", "931729556", "960836293", "452777854", "740613385", "895786537", "931711813", "1212968620", "737273208", "747925644", "595269109", "747892291", "931738523", "755465638", "837851839", "747871563", "747449159", "747242615", "757669405", "931856060", "740585059", "741194698", "753910520", "1123432857", "737228119", "763797030", "754589813", "1062129957", "931722280", "931746986", "761600597", "1036714304", "874810532", "734593166", "932329895", "713044610", "1149066130", "757031936", "762729158", "1123106505", "931631116", "932133626", "728295167", "757546430", "932125037", "1188921299", "741594903", "750067021", "761524234", "761426398", "758021457", "861685547", "875160310", "932318442", "932096849", "759254873", "875257099", "1062080653", "751905923", "931770458", "756656903", "746047856", "932135254", "738365881", "932261056", "856115149", "1237158530", "932172173", "755478390", "875319846", "932266721", "749376443", "1123086482", "861650749", "752189419", "758789926", "1051389970", "738265319", "751728718", "741662124", "1123502078", "1062108947", "453005271", "761876730", "931837147", "1273685095", "932011229", "737789309"], ["171,427", "261,782", "983,605", "804,304", "10,951,220", "576,677", "2,687,597", "774,278", "2,265,218", "320,764", "484,660", "33,198", "2,137,152", "87,413", "786,770", "58,869", "1,148,313", "56,068", "300,590", "305,064", "2,992,054", "2,944,029", "361,524", "303,638", "875,650", "853,322", "8,744", "947,481", "1,091,780", "155,062", "3,318,600", "369,538", "127,276", "135,624", "81,139", "41,545", "3,368,069", "2,467,377", "17,394", "2,199,269", "705,911", "2,340,831", "963,961", "150,548", "255,250", "6,039,308", "634,782", "53,764", "261,626", "5,616,758", "1,957,004", "6,869,066", "956,484", "3,083,270", "479,300", "879,188", "379,332", "86,263", "146,061", "28,750,700", "788,534", "301,477", "130,159", "3,870,138", "2,186,588", "883,073", "136,806", "43,457", "184,676", "1,766,073", "255,407", "197,098", "418,038", "349,318", "15,002,568", "202,706", "1,376,338", "62,553", "401,905", "102,396", "1,645,174", "804", "236,092", "84,261", "333,718", "99,679", "3,710", "397,366", "1,920,402", "689,809", "3,879,212", "87,531", "121,766", "7,260,547", "144,220", "193,325", "241,142", "479,390", "816,121", "539,677", "451,678", "74,763", "2,842,204", "262,998", "11,908,608", "903,351", "403,443", "181,947", "278,993", "81,870", "219,985", "1,044,761", "403,382", "3,849,589", "496,490", "319,587", "3,085,852", "13,650,875", "1,730,419", "51,656", "41,522", "830,718", "269,289", "5,715,641", "128,373", "104,917", "60,099", "263,551", "136,377", "555,049", "547,383", "1,895,309", "411,069", "288,713", "1,570,637", "65,738", "192,101", "1,455,295", "37,434", "654,659", "1,574,281", "2,902,100", "301", "152,759", "56,261", "995,159", "11,917", "4,757,862", "54,986", "6,434,667", "1,745,488", "76,856", "71,702", "9,895", "150,121", "535,380", "1,068,276", "247,270", "2,298", "2,374,927", "2,073,358", "5,700", "4,098", "693,014", "2,034,121", "415,675", "671,916", "77,336", "343,614", "1,218,755", "4,233,929", "935,219", "1,638,322", "563,974", "14,991,396", "431,627", "293,142", "200,280", "504,881", "1,104,514", "137,671", "460,953", "111,552", "194,835", "824,192", "2,833,769", "4,976", "530,417", "3,588,218", "923,361", "953,824", "80,381", "258,359", "239,022", "417,889", "2,313", "2,737,189", "142,145", "1,316,092", "118,907", "7,417,538", "1,135,283", "55,279", "4,894", "2,162,749", "4,999,012", "24,584", "268,208", "1,580,289", "3,856,740", "325,072", "1,159,118", "42,965", "4,225,771", "1,237,555", "26,875", "202,597", "32,074", "335,398", "317,870", "986,119", "1,259,797", "344,526", "150,922", "38,615,011", "635,879", "17,199", "155,035", "2,713,379", "164,847", "739,093", "141,215", "188,226", "194,242", "605,225", "1,782,384", "875,226", "19,482", "2,065,924", "267,855", "812,020", "509,133", "79,580", "850,678", "1,060,209", "1,502,513", "2,452,421", "12,073", "1,454,366", "1,028,771", "5,551,774", "168,250", "115,533", "645,040", "2,869,705", "10,749", "2,150,251", "126,559", "40,563", "644,454", "1,517,507", "152,489", "3,999,231", "257,182", "5,601,425", "571,746", "123,852", "724,998", "1,616,985", "1,175,968", "459,921", "86,574", "328,772", "87,124", "172,948", "302,758", "678,258", "203,940", "5,459,382", "818,169", "1,149,348", "240,446", "3,246,368", "479,107", "828,563", "3,423,136", "215,544", "98,083", "956,346", "1,186,298", "54,449", "200,698", "1,003,221", "848,007", "476,559", "413,708", "17,051", "342,780", "1,419,650", "14,525", "65,032", "448,759", "60,321", "645,045", "58,371,111", "2,179,877", "1,872,740", "124,817", "111,596", "272,379", "1,405,788", "174,061", "309,466", "324,502", "66,844", "2,091,971", "99,505", "1,647,333", "337,129", "130,814", "812,820", "3,343,237", "761", "51,675", "365,380", "1,114,502", "762,299", "237,988", "60,188", "8,629,407", "314,875", "247,140", "207,411", "210,417", "99,612", "23,484", "1,106,323", "452,921", "35,085", "396,409", "2,045,536", "2,439,762", "40,998", "729,209", "11,132", "596,554", "111,767", "70,588", "324,134", "1,025,725", "5,183,033", "444,164", "1,646,403", "1,500,749", "388,655", "1,412,542", "1,790,184", "1,783,261", "94,867", "185,801", "814,747", "256,136", "78,786", "7,412,990", "139,634", "2,297,859", "846,657", "4,304,506", "795,476", "33,737", "2,767,360", "41,241", "343,353", "191,971", "1,131,068", "2,668,021", "615,460", "186,234", "182,127", "1,753,071", "1,691,969", "3,314,571", "2,046,539", "509,560", "6,489,637", "585,048", "27,255", "1,261,718", "66,786", "71,743", "1,910,679", "84,752", "206,017", "73,840", "278,445", "3,001,234", "82,351", "879", "45,679", "130,573", "1,022,483", "1,522,997", "15,769", "1,342,068", "18,512,021", "1,975,447", "410,356", "4,565,748", "800,153", "1,464,952", "119,064", "49,952", "69,064", "1,900,861", "51,639", "504,096", "8,998,391", "2,285,954", "449,988", "281,831", "568,591", "1,260,891", "416,385", "205,834", "241,402", "213,056", "260,866", "519,674", "3,003,906", "748,181", "123,542", "60,483", "199,655", "486,203", "1,847,787", "9,617,240", "382,036", "745,924", "9,309,112", "368,821", "1,704,646", "391,790", "92,096", "304,735", "54,373", "282,727", "473,837", "567,281", "3,790", "11,702,184", "603,746", "517,975", "5,084,590", "22", "473,089", "132,297", "309,743", "1,357,946", "9,814", "833,345", "520,131", "550,886", "69,439", "567,152", "1,250", "11,840,676", "245,573", "413,724", "528,322", "110,611", "689,380", "182,222", "46,226", "1,232,568", "310,162", "815,455", "245,333", "421,590", "639,347", "32,994", "33,196", "9,170,393", "64,471", "1,007,375", "360,140", "5,469,904", "1,516,379", "77,780", "508,185", "1,516,196", "138,756", "2,301,140", "696,657", "140,615", "1,370,167", "208,936", "458,441", "329,664", "72,570", "446,090"], ["7154266155", "8069953581", "3173387000", "9895843131", "6128634000", "7854212121", "5806254551", "5094347000", "9406573535", "5052874446", "8437242954", "9098659500", "6177736100", "5309341818", "5742316800", "6627205000", "9566667100", "3183321339", "4017694100", "8308762424", "8603644228", "8288742251", "9707313700", "8708985011", "5742233141", "2077435933", "8149438164", "8702973726", "8152885531", "2155396000", "9858099888", "9408642621", "5187258621", "7123622631", "2393484000", "8434792881", "3088724100", "3373646923", "3523517200", "7135286800", "5705014000", "8325221000", "4137730211", "7014482331", "3184730010", "7632366000", "9417926611", "9897768000", "4067758739", "2602489301", "7182701000", "5016865000", "5152822200", "5072475521", "5633822911", "4054781717", "7012847500", "2699453451", "6413223121", "4026855601", "4177812727", "9407643055", "9892246881", "5624017022", "2626562368", "6608867431", "4105215995", "8644874271", "2153452200", "3135937125", "4014573042", "6017355151", "4354387102", "3095825301", "5078361277", "5012022000", "3027331000", "9104573800", "3158241100", "2146234400", "8458875530", "4797545454", "3306684040", "6416842300", "7187803000", "5806541050", "9736256000", "7876204747", "5036741122", "5755228641", "4046055000", "2763781200", "5594338000", "9088596700", "6623777176", "9186478161", "7347123791", "7189185000", "2197562100", "6206296291", "4343928811", "6417545151", "9196201078", "5086930410", "3044368461", "4024849090", "7122792010", "5134542222", "7323814200", "3302638100", "9184775000", "8507182620", "2187515430", "5058637000", "8285261200", "2065262000", "2626874011", "6145669978", "4063462161", "8705417100", "9018207050", "7063351101", "2315474024", "7014773161", "9858674447", "9798366173", "7123643311", "2157627000", "8585543600", "5072237277", "3073473221", "3076342273", "6059952000", "5626026751", "8034324311", "3044722000", "8655411101", "9015164014", "6073771300", "2185467000", "7344753911", "2087432511", "3026296611", "2057552500", "9204330111", "3072833501", "3082844011", "4149616800", "3256536741", "3186814215", "3093443161", "6066666000", "6037884911", "6416283150", "2094686000", "4794714300", "2569742200", "6057214700", "4023872800", "3126335896", "3176218063", "6622834114", "9544365000", "5417685111", "7858894272", "7013854296", "6177545800", "6057195000", "2072553356", "6035361120", "4103280313", "8125477011", "3182833601", "3615951661", "4053753141", "9312433581", "5808323339", "4066536500", "2606724050", "7607248411", "7174853155", "9035414500", "2515753111", "3044877260", "6418435000", "2182819200", "3343614267", "5747721100", "7659327513", "3187284181", "6184637300", "4139676211", "9196848111", "8605455000", "7707205298", "4108716900", "9137545000", "2699665600", "4329432511", "5124767111", "5015523000", "4438492000", "5173646182", "7155973121", "6186352200", "3096552000", "2547242111", "7878522424", "2053874000", "8179603500", "2547718600", "6828854000", "4784543550", "6182823831", "6607472500", "3182406000", "7877875151", "3604919480", "6206626000", "9545875010", "7178512345", "2565435200", "8173454100", "2293365284", "5135696141", "4065572500", "8152233300", "4082595000", "5408397000", "5747537541", "4233394132", "3205891313", "9207945000", "9183426777", "5034137682", "5708935000", "9402200600", "3615725113", "7319864461", "9189683571", "4066574000", "4437777850", "2766799174", "7158318130", "2183474500", "6109543850", "2762368181", "9516882211", "7278192929", "8476181000", "5416867274", "8002513627", "9318154101", "7042105000", "4056028100", "8158752811", "2513449630", "5097862222", "8473604000", "8122320021", "6073354111", "3043677100", "8106065000", "6506965270", "7023832000", "7244305000", "5107521000", "7156724211", "5203843541", "4057177999", "5409948300", "6035697500", "7012658461", "8122753331", "5135232111", "7123966000", "6034483121", "6019812611", "4153536000", "2535302050", "8436816122", "7707512500", "9093363651", "3374746370", "3374685261", "2293827120", "5036922182", "8175492364", "2134847111", "8648823351", "2143246100", "2123125000", "7157356621", "7317724110", "8167817200", "8056525011", "6172436000", "2154839900", "7182626000", "5013374911", "9196632113", "4125614900", "3867199000", "6622277000", "4022692011", "8163481236", "4023991900", "5802252511", "9186423291", "2106175300", "6186622131", "4015966000", "7077781111", "2766667200", "7876526045", "9702441329", "4799636101", "9792456383", "6419322134", "7163661111", "8013504111", "5172795400", "7076511000", "3252475040", "7168621000", "8036373174", "5807953384", "3048475682", "3145251000", "9184261800", "8644427200", "7852431234", "7856753281", "8124822345", "2316723901", "2563321611", "5078351210", "6065281212", "8042251700", "2604163023", "6627724000", "3367518100", "5175456000", "6017984711", "7208487800", "9149644444", "3073223636", "5123527611", "5415751311", "2703893030", "8508621111", "8708926000", "4352511000", "9206232200", "4105358239", "2186433000", "2546758322", "9708747681", "9783742000", "2813413000", "2293124068", "8433951100", "6512327000", "7313525344", "6269638411", "6602592203", "7076244000", "5072753134", "4356768811", "3089952211", "7732719040", "4062332600", "8068722183", "6166855000", "5803632311", "2122637300", "8139322222", "3254281000", "3376438300", "5855931100", "9037988000", "7877540909", "6014836211", "9186892535", "8046755000", "7865961960", "8066877777", "3154485111", "6606461480", "6784747000", "5073732384", "7703075210", "9063413200", "5758874570", "7403808000", "9096258300", "8103762835", "6613166000", "6204926250", "2197576100", "7017747400", "2154566090", "4157592300", "4193346617", "3207327210", "2148200111", "2529754100", "8136343301", "3082621616", "8062444571", "5043842200", "8567573500", "5109705000", "7122433250", "4355287246", "9038564520", "3078643121", "9286845421", "2293331020", "6056688000", "9857856242", "7817445100", "3048722891", "3523334100", "9366348311", "3044571760", "6052253300", "2524438000", "3132955253", "3193697211", "2815407700", "6102504076", "4137940000", "9259393000", "5803272800", "3374758100", "9169735000", "9167844000", "5758351140", "4014562000", "7063421667", "7064537331", "5415488131", "8453382500", "7603792681", "2568823100", "3607362803", "5078312400", "6172329500", "4196361131", "3017547000", "6103277000", "4403124500", "7156855500", "2483385000", "3152871000", "2077778100", "3602991300", "5048978246", "7655210890", "4805432000", "6176652300", "7857312231", "6067893511", "6413422184", "2148793758", "6035243211", "2816377000", "2164442200", "8477232210", "6018762122", "7137947100", "6623783783", "7158383311", "4066355511", "5056624201", "9035415000", "9406925888", "6012887000", "7046389000", "5025874011", "7853922122", "3365992121", "4698548000", "8005766266", "9123757781", "4344473151", "6028706060", "9854475500", "2769888700", "7135275019", "3604352133", "4237751121", "7346713800", "9207382000", "8594981220", "8285248411", "3094672371", "6018835000", "9125766401"], ["07457", "07022", "08742", "07060-1720", "07641", "07666-4599", "07201", "07033-1696", "08848", "08505-1100", "07825-3324", "07757", "08096", "08722", "08055-2750", "08060-5642", "08217", "07020", "08050-3329", "08008", "08072-0065", "08071", "08225-2201", "07822", "07832-2526", "07650", "07031-6036", "07830", "08087-1885", "08828", "08028-2539", "07801", "07029-1752", "08902", "08241", "07030-4556", "07044", "07724-1571", "07974", "07075-2344", "08089", "08085-1286", "08079-1408", "07882-1417", "08534", "08808-0547", "07109", "07508", "07648", "08008", "08056-1232", "08880-1407", "08742", "08754", "07461-2305", "07823", "07719-9570", "08247", "08901-2113", "07054-1277", "07094", "07869", "08731", "08758", "07024-4705", "08323-0064", "08562-2106", "07302-3610", "08075", "07627", "07730-0371", "08648", "08512-3257", "08079", "08215-1599", "08016-4503", "07921-2587", "07050", "07073-1701", "08088", "07885", "08110", "08087-2618", "08043-1493", "08844", "07716-2913", "07764-1504", "07465", "07630-1891", "07734-1441", "07746", "07423-1594", "08093-1148", "07087", "07644-1632", "08805-2017", "08021", "08098", "07731", "07657", "08562", "07724-2964", "08049", "08501-1607", "07066-1704", "08108", "08751-2127", "08060-4379", "08030", "07879", "08006", "08403", "07070-2310", "07444-1744", "07508-2041", "08016", "08215-4707", "08210", "07963-0914", "07042-3401", "07045-8934", "08825-1131", "08848-0507", "08012-8988", "08221", "07046-1527", "08244", "07403-1236", "07032", "08012-1106", "07405-2336", "07704", "08865", "07728-2114", "08088", "07506", "08077", "07065-5022", "07480-1338", "07748", "08505", "08033", "07924", "08054", "08224", "08302-1492", "07621", "08302-2646", "08525-1820", "07866", "07002-3878", "08053-2652", "07642", "07735", "08079", "08055-2411", "07026-2621", "08730-1448", "07620-1095", "08008", "07860-1823", "07647", "07871-1903", "08205", "07801-0798", "07604-1920", "07860-2746", "08318-2756", "08009", "08401", "07874-2626", "07036-6608", "08038", "08318-3031", "07649", "08067", "08865", "08107", "08527", "08036", "08835-1346", "08062", "07950", "07844-0284", "08092", "08014", "08723-2807", "07747-2300", "07660-2500", "08059-1721", "07838", "08026-1432", "08068-0261", "07090", "08608", "08733-3017", "07830", "07848-4605", "08850", "08021-2006", "08816-1081", "07675", "08555", "07093-2222", "08070-1750", "08099-0368", "08060", "07505-1414", "07068", "07110-2786", "08085-3180", "08827-0418", "07735-1241", "07029-2718", "08260-2221", "08560-1410", "07803", "07481", "07945", "07646-3043", "08530-3203", "07851", "08063", "08341", "08021-6399", "08502-4012", "07452", "07760-2286", "08852-0190", "08869-1809", "08260-1729", "07728-3064", "07719", "08884", "08204-1214", "07652-2728", "07733", "08096", "08330-1859", "07508", "07711", "07442-1729", "07410", "07028", "08068-1539", "08065", "07719", "07675", "07760", "08101-5120", "08320", "08803-0199", "08873-7700", "08083", "08402-2301", "07006-4213", "08882-1247", "08202-1706", "08012", "08535", "07726", "07080-3531", "08250", "08317", "08514", "07072", "07711-1049", "08030", "08829", "07461-3327", "07933", "07624-2645", "08008-0319", "07606", "08691", "07740", "07446-1807", "08520", "07407-1407", "07102", "07940-2575", "08349-3348", "07057", "08827", "07820", "07041", "08520-3249", "07424-2945", "07856-1004", "07424", "07010", "07095", "07640-1500", "08270", "07720", "07874", "08312-1698", "08750-2604", "07632-2911", "07901-2607", "08540-3400", "08742-4998", "08084", "07853-3199", "08802", "07027", "07762-2093", "07849", "08857", "08345-2131", "07823-1321", "08738-0247", "07732", "08759", "07205", "07821", "07016-0000", "07931", "07976-0666", "07727-1202", "08007", "07021-1312", "08886", "07631", "08826", "08045-1597", "07828-0450", "07204", "08037-9141", "07111-2412", "07450-3236", "07005", "07092-2605", "07628", "08353", "08022", "07035", "08735-2336", "07019", "08553", "07834-2122", "08344", "07203-1218", "07857", "08075", "08530-2038", "07860", "07863", "07083-3597", "08243-1831", "08757", "08260", "07436-1827", "08833-0000", "08251-1397", "08310", "08051", "07462-0343", "07512", "08039", "08048-4516", "07004-2425", "07926", "08550-5333", "08021", "08536", "07977", "07722-1673", "08088-3514", "08511", "08505", "08741", "07936", "07059", "07882", "07656", "07023", "08008", "08010-1546", "08077", "07419-1414", "08083-1018", "08559-0377", "07608", "08515", "08721-2778", "07013", "08066", "07928", "07439-1254", "08090-1800", "08002-2638", "08106", "07076", "08876", "08812-1203", "07663-4899", "08804", "08551", "08889", "07470", "07401", "07723-0056", "08846", "07405-1348", "07838-2355", "08046", "07750", "07006-6704", "07981-0250", "07008-3046", "07825-9624", "08069", "08069", "07675", "07930", "08831-1672", "07827-3122", "07712", "07458-3040", "08010", "08831-1900", "08078", "07006-5103", "08226", "07843", "08327", "08865-1698", "08086-0089", "08872", "08057-2480", "07701", "08302", "08807-2801", "08362-1508", "07881-0000", "07670-2016", "07852-9726", "08041", "08406-2734", "07055-5815", "07747", "07754-1125", "08037", "07601-4202", "07456-1703", "08311-0697", "07712", "07739", "07003-3470", "08844", "07005", "07603-1099", "07645-1847", "08234-8321", "07430", "08106", "08867", "08840", "07047-2779", "07060-4895", "07826-0840", "07675-4731", "07724", "07417", "07074", "08732", "08319", "08027", "08879-1647", "08203-2147", "07093", "07081", "08701-0000", "07087", "07865-4020", "07932-1799", "07930", "08075", "08109", "08854", "07662-3105", "07463", "08201", "07840", "08809", "08740", "07866", "08302", "07860-5158", "08318-0882", "08097", "08848", "07922", "08557", "08035", "07419-2607", "07677-7921", "07607-2015", "08736-3004"], ["23/08/2007", "17/02/2009", "25/04/2013", "18/10/2013", "05/03/2009", "15/06/2016", "22/03/2016", "09/12/2016", "16/05/2008", "06/05/2016", "07/11/2014", "03/01/2012", "20/03/2008", "03/12/2014", "21/01/2016", "27/07/2015", "26/11/2007", "02/12/2010", "24/08/2015", "16/07/2007", "27/03/2012", "26/04/2011", "01/07/2013", "30/06/2015", "14/06/2016", "12/05/2011", "21/08/2012", "03/08/2015", "10/03/2010", "12/06/2008", "21/11/2007", "23/06/2015", "28/04/2016", "14/08/2014", "06/03/2015", "08/06/2015", "28/11/2016", "16/07/2014", "17/10/2012", "15/05/2013", "26/03/2008", "08/01/2008", "16/06/2016", "13/07/2010", "03/02/2014", "05/05/2011", "16/09/2015", "10/11/2011", "20/07/2015", "12/11/2015", "12/05/2014", "16/06/2009", "07/05/2014", "11/05/2015", "26/06/2015", "26/03/2015", "12/01/2009", "30/09/2016", "25/06/2012", "22/03/2016", "05/04/2016", "20/11/2007", "12/03/2013", "16/06/2016", "07/08/2008", "16/08/2016", "01/10/2014", "02/02/2016", "23/04/2010", "02/04/2013", "07/03/2011", "12/06/2009", "07/02/2013", "13/12/2010", "08/05/2008", "08/10/2012", "12/09/2014", "19/12/2012", "09/03/2015", "28/08/2008", "28/04/2014", "21/06/2011", "09/01/2015", "25/07/2016", "30/03/2016", "11/05/2009", "28/04/2011", "17/08/2016", "07/11/2007", "26/02/2014", "20/01/2009", "12/05/2011", "24/07/2007", "14/05/2012", "26/05/2015", "30/11/2011", "04/01/2016", "05/03/2010", "16/05/2011", "15/02/2011", "03/11/2011", "25/07/2016", "19/12/2007", "04/07/2011", "17/12/2007", "10/12/2013", "09/05/2016", "18/06/2015", "26/07/2012", "05/09/2016", "26/08/2009", "14/04/2011", "03/05/2012", "24/04/2008", "21/05/2008", "14/05/2009", "21/04/2010", "21/11/2008", "14/04/2016", "09/07/2014", "21/01/2013", "07/06/2010", "03/08/2009", "05/02/2015", "25/05/2011", "06/10/2013", "29/04/2008", "29/04/2009", "24/09/2007", "01/06/2007", "15/03/2010", "13/09/2016", "16/09/2013", "09/08/2007", "25/01/2013", "04/10/2012", "28/04/2011", "20/01/2012", "21/04/2015", "09/06/2008", "09/06/2016", "08/09/2009", "29/10/2007", "06/12/2016", "14/11/2012", "20/05/2015", "24/04/2013", "12/08/2008", "04/04/2014", "12/02/2009", "05/06/2015", "17/09/2010", "04/04/2013", "11/03/2009", "29/01/2008", "25/03/2008", "04/10/2012", "15/01/2008", "04/03/2008", "27/06/2016", "11/08/2010", "19/03/2009", "29/09/2015", "07/08/2013", "20/01/2016", "27/02/2014", "05/10/2011", "27/08/2014", "08/05/2009", "25/06/2009", "05/11/2014", "28/10/2016", "07/07/2016", "28/03/2012", "21/08/2007", "10/12/2014", "28/01/2009", "20/09/2012", "18/04/2012", "11/08/2014", "05/10/2011", "21/05/2008", "21/09/2010", "09/07/2014", "19/06/2015", "24/07/2008", "10/10/2012", "26/11/2010", "30/06/2014", "08/07/2011", "22/07/2013", "16/12/2013", "30/05/2007", "21/04/2009", "03/08/2011", "04/04/2011", "08/06/2009", "24/12/2015", "19/09/2008", "21/11/2013", "27/05/2011", "20/12/2016", "18/11/2008", "08/01/2016", "11/05/2011", "23/11/2015", "23/03/2015", "28/04/2010", "14/05/2009", "22/05/2012", "08/09/2008", "02/07/2013", "18/11/2014", "12/08/2008", "23/11/2012", "07/10/2016", "18/02/2015", "25/07/2008", "20/02/2013", "15/05/2012", "08/01/2010", "12/03/2009", "13/08/2014", "01/09/2008", "12/08/2016", "15/02/2012", "27/02/2008", "10/01/2008", "29/06/2007", "16/10/2009", "20/02/2017", "18/10/2016", "20/03/2013", "04/05/2012", "20/05/2009", "24/08/2010", "24/11/2015", "31/03/2010", "21/05/2009", "13/12/2011", "15/04/2010", "23/06/2014", "01/04/2009", "09/06/2015", "29/06/2011", "22/10/2009", "23/07/2007", "04/01/2017", "14/10/2014", "15/08/2007", "07/01/2015", "28/01/2013", "04/09/2008", "16/12/2009", "20/05/2009", "08/10/2007", "18/07/2013", "05/02/2016", "09/05/2013", "29/09/2010", "02/06/2014", "17/05/2007", "18/11/2016", "10/02/2015", "04/08/2014", "23/02/2015", "28/08/2012", "01/07/2013", "24/10/2008", "26/11/2007", "02/08/2010", "15/12/2008", "05/01/2017", "06/07/2010", "12/01/2017", "11/07/2007", "04/01/2012", "06/07/2012", "08/08/2012", "21/02/2013", "26/05/2015", "04/02/2009", "22/09/2008", "12/10/2016", "21/04/2016", "04/04/2013", "05/03/2008", "04/05/2010", "17/08/2012", "15/11/2013", "09/12/2015", "12/02/2010", "03/11/2014", "24/04/2008", "27/05/2015", "19/09/2016", "12/07/2016", "03/08/2007", "11/08/2016", "27/07/2010", "22/05/2013", "02/02/2017", "18/08/2016", "04/05/2016", "16/10/2015", "14/06/2016", "28/01/2008", "23/12/2008", "21/05/2013", "11/03/2013", "30/05/2007", "23/12/2014", "30/05/2008", "27/06/2014", "13/05/2009", "18/07/2016", "23/06/2008", "21/09/2007", "05/03/2012", "17/10/2007", "15/12/2010", "09/06/2008", "07/02/2013", "08/04/2016", "19/09/2013", "18/06/2014", "30/04/2013", "27/09/2016", "12/01/2016", "02/07/2007", "27/07/2016", "31/01/2013", "25/09/2008", "17/05/2007", "22/04/2008", "27/06/2011", "17/01/2008", "24/07/2008", "06/04/2016", "13/07/2010", "10/12/2014", "13/05/2009", "30/07/2008", "02/11/2010", "08/06/2015", "22/07/2015", "25/06/2012", "12/04/2011", "06/10/2008", "06/11/2009", "04/04/2013", "03/05/2016", "19/01/2011", "28/11/2008", "10/07/2009", "25/06/2012", "01/05/2014", "11/09/2013", "01/09/2008", "17/09/2007", "04/12/2016", "23/01/2008", "02/08/2016", "24/04/2012", "19/04/2010", "03/10/2011", "11/04/2008", "28/06/2013", "22/11/2012", "24/11/2015", "06/05/2015", "13/05/2014", "30/07/2015", "22/06/2015", "14/08/2008", "07/06/2013", "04/09/2007", "28/08/2008", "18/04/2013", "10/07/2007", "15/08/2013", "21/11/2016", "15/04/2015", "20/07/2012", "27/11/2014", "04/12/2012", "06/11/2014", "07/09/2010", "08/09/2008", "29/05/2012", "12/02/2009", "14/09/2009", "05/06/2007", "05/09/2012", "14/12/2013", "07/12/2013", "16/07/2007", "23/05/2011", "29/04/2014", "24/07/2015", "14/09/2009", "18/05/2009", "19/02/2015", "24/09/2013", "06/10/2011", "24/05/2010", "01/12/2009", "20/03/2009", "03/01/2017", "08/08/2011", "21/07/2008", "13/12/2012", "02/04/2015", "07/09/2015", "02/09/2008", "06/08/2012", "06/07/2011", "09/06/2016", "27/03/2008", "09/03/2011", "11/07/2008", "07/09/2007", "02/02/2017", "12/09/2011", "20/08/2013", "28/07/2008", "18/07/2011", "30/08/2011", "20/02/2014", "27/03/2008", "25/06/2015", "16/12/2009", "09/12/2016", "29/09/2011", "05/09/2011", "17/04/2015", "22/10/2015", "07/12/2015", "18/09/2008", "08/09/2008", "15/04/2008", "24/02/2012", "08/04/2016", "30/06/2014", "25/04/2012", "08/09/2014", "12/09/2008", "11/07/2011", "22/11/2012", "23/10/2014", "28/07/2010", "21/01/2008", "08/10/2012", "24/10/2007", "10/05/2010", "26/09/2007", "04/08/2008", "25/01/2008", "06/05/2009", "16/06/2015", "17/02/2009", "19/06/2013", "30/08/2013", "07/10/2008", "17/06/2008", "17/04/2012", "16/07/2007", "17/04/2013", "06/01/2017", "16/01/2014", "09/04/2014", "17/09/2008", "03/03/2015", "15/06/2007", "26/11/2007", "07/01/2014", "03/08/2016", "18/06/2014", "07/08/2015", "13/06/2016", "13/10/2010", "02/06/2010", "26/06/2015", "14/09/2015", "04/07/2013", "27/06/2014", "21/05/2013", "11/08/2009", "25/06/2012", "24/09/2007", "30/04/2013", "09/01/2017", "12/05/2011", "20/09/2016", "11/08/2015", "07/04/2014", "04/03/2008", "08/06/2009", "02/02/2015", "03/07/2008"], ["2013-12-20", "2015-03-01", "2015-01-08", "2013-06-25", "2013-03-14", "2013-01-09", "2014-08-27", "2014-04-09", "2014-07-28", "2014-11-29", "2014-09-01", "2013-05-05", "2013-05-07", "2014-08-11", "2013-04-15", "2016-03-21", "2013-01-12", "2013-02-17", "2014-09-13", "2013-10-18", "2013-02-12", "2013-10-26", "2014-02-03", "2013-05-16", "2013-05-15", "2015-06-17", "2014-12-21", "2013-10-28", "2015-11-03", "2015-02-20", "2014-06-01", "2013-03-03", "2013-01-16", "2014-09-04", "2014-07-15", "2015-07-02", "2013-07-12", "2013-06-17", "2013-10-22", "2013-11-19", "2013-03-11", "2013-01-27", "2013-04-14", "2014-02-01", "2014-08-31", "2014-05-24", "2014-01-23", "2013-08-02", "2014-11-08", "2015-07-07", "2014-10-19", "2013-04-18", "2013-08-10", "2014-10-13", "2013-02-20", "2013-02-25", "2013-12-18", "2013-12-26", "2014-01-04", "2013-11-11", "2013-11-08", "2015-06-30", "2013-02-27", "2015-11-03", "2013-11-14", "2014-07-05", "2013-04-02", "2015-02-18", "2014-01-13", "2015-03-19", "2014-02-25", "2013-05-06", "2013-12-16", "2013-12-25", "2014-02-18", "2013-04-29", "2013-03-30", "2013-10-05", "2014-01-26", "2013-01-24", "2013-11-16", "2013-08-11", "2013-07-29", "2014-12-05", "2015-05-06", "2013-06-29", "2015-05-07", "2014-12-11", "2013-05-21", "2013-07-01", "2014-09-24", "2014-11-02", "2013-11-06", "2013-09-20", "2013-11-02", "2015-03-03", "2013-01-26", "2013-09-02", "2014-02-13", "2013-11-16", "2013-09-14", "2014-01-11", "2014-03-19", "2013-12-13", "2013-05-31", "2014-04-05", "2013-11-21", "2013-09-25", "2013-12-04", "2014-02-17", "2014-09-30", "2014-08-01", "2016-01-13", "2013-03-01", "2013-12-22", "2013-12-18", "2015-09-11", "2013-05-28", "2014-05-27", "2013-06-18", "2014-10-11", "2013-08-25", "2013-06-01", "2014-03-08", "2013-07-16", "2013-10-31", "2013-12-22", "2013-01-21", "2015-01-12", "2013-07-05", "2014-02-28", "2013-12-24", "2013-11-27", "2015-07-10", "2013-02-28", "2013-12-16", "2013-10-10", "2013-05-05", "2014-01-08", "2014-03-22", "2015-07-21", "2013-12-15", "2013-12-28", "2013-08-28", "2013-03-01", "2013-10-08", "2013-09-12", "2013-11-29", "2013-11-13", "2016-02-06", "2014-08-12", "2014-08-09", "2013-03-20", "2013-10-05", "2015-07-26", "2015-08-26", "2014-11-16", "2014-01-17", "2013-03-11", "2015-01-04", "2013-04-07", "2015-02-08", "2014-01-14", "2013-03-14", "2013-11-26", "2013-06-14", "2013-05-03", "2013-10-07", "2013-05-30", "2013-05-08", "2013-09-08", "2013-09-22", "2013-03-17", "2013-06-24", "2013-12-07", "2013-08-10", "2013-06-17", "2013-01-15", "2013-08-27", "2014-01-13", "2013-09-05", "2013-08-04", "2013-10-15", "2014-01-03", "2013-03-01", "2013-12-17", "2013-09-07", "2014-01-05", "2016-02-14", "2013-02-05", "2015-10-01", "2013-12-25", "2016-03-13", "2014-03-17", "2013-10-16", "2013-07-25", "2014-01-28", "2014-01-06", "2015-09-22", "2013-09-25", "2013-08-21", "2013-03-12", "2014-10-30", "2013-07-11", "2014-07-17", "2013-09-30", "2014-03-04", "2013-01-16", "2013-05-12", "2013-02-04", "2013-07-11", "2013-04-28", "2013-10-22", "2013-10-18", "2015-11-09", "2013-08-12", "2015-10-21", "2016-03-08", "2015-02-09", "2013-01-12", "2015-06-09", "2013-01-16", "2013-06-20", "2015-06-07", "2014-04-22", "2013-03-22", "2014-08-26", "2013-09-14", "2013-05-11", "2013-02-26", "2014-02-04", "2014-03-13", "2013-02-07", "2015-01-22", "2013-02-18", "2014-01-09", "2013-08-29", "2013-09-30", "2013-11-20", "2013-08-24", "2013-05-25", "2013-10-09", "2013-08-18", "2013-01-17", "2013-02-09", "2014-08-14", "2015-09-08", "2013-03-23", "2013-12-15", "2015-06-11", "2015-01-30", "2013-04-29", "2014-09-12", "2013-08-02", "2013-11-02", "2014-03-23", "2015-12-30", "2015-11-14", "2013-09-08", "2013-10-19", "2014-12-29", "2014-12-16", "2013-01-17", "2014-01-24", "2013-05-23", "2013-01-25", "2013-09-07", "2014-04-10", "2013-01-03", "2014-06-07", "2014-06-07", "2015-06-22", "2014-01-28", "2013-03-02", "2013-04-14", "2013-11-04", "2014-07-25", "2013-09-11", "2013-04-08", "2013-09-08", "2015-01-08", "2014-10-18", "2013-03-14", "2014-01-12", "2013-02-16", "2016-02-07", "2016-02-13", "2014-03-07", "2015-02-05", "2014-01-11", "2014-08-23", "2014-04-11", "2014-02-12", "2014-06-08", "2014-12-31", "2013-10-28", "2013-03-25", "2014-09-16", "2014-12-07", "2014-03-05", "2013-11-03", "2013-09-26", "2013-12-12", "2014-11-03", "2013-01-14", "2015-10-05", "2013-08-29", "2014-06-11", "2013-05-01", "2013-05-01", "2015-05-06", "2015-02-13", "2014-02-28", "2014-11-24", "2013-12-05", "2014-01-31", "2013-04-05", "2013-02-20", "2014-03-08", "2013-04-03", "2013-11-02", "2013-08-09", "2013-09-13", "2014-03-06", "2013-10-11", "2013-02-18", "2013-03-19", "2013-11-17", "2015-09-27", "2014-03-09", "2014-07-15", "2013-11-20", "2014-06-21", "2013-09-05", "2013-11-10", "2015-03-24", "2015-01-01", "2015-01-13", "2015-06-17", "2013-01-18", "2014-06-27", "2014-11-20", "2013-04-04", "2013-08-20", "2013-02-14", "2013-04-25", "2013-09-23", "2014-03-26", "2013-04-17", "2014-12-05", "2013-08-15", "2016-03-01", "2013-12-01", "2015-02-23", "2013-09-30", "2013-04-29", "2013-07-08", "2014-05-21", "2013-09-01", "2013-11-12", "2013-04-01", "2013-01-20", "2015-12-22", "2014-05-31", "2014-07-02", "2013-12-28", "2013-02-27", "2014-08-27", "2013-05-22", "2014-10-02", "2015-04-07", "2015-10-09", "2013-12-28", "2014-01-31", "2013-08-16", "2013-07-27", "2014-12-13", "2013-10-25", "2014-01-13", "2013-10-22", "2015-04-08", "2013-01-03", "2013-08-08", "2013-08-17", "2013-10-29", "2014-11-03", "2013-02-13", "2014-01-04", "2014-12-11", "2015-03-07", "2013-02-12", "2014-01-22", "2013-05-04", "2013-01-03", "2013-11-14", "2014-01-23", "2013-05-30", "2015-07-07", "2014-11-17", "2014-02-01", "2013-10-30", "2014-04-07", "2013-04-06", "2013-01-26", "2013-03-03", "2013-03-18", "2014-02-15", "2014-01-16", "2014-02-19", "2013-05-17", "2014-11-05", "2015-08-09", "2013-09-15", "2013-08-03", "2013-09-29", "2013-12-06", "2015-07-05", "2013-08-14", "2015-05-12", "2013-11-30", "2015-05-15", "2015-04-30", "2015-09-17", "2013-08-21", "2014-10-16", "2013-11-19", "2015-01-17", "2013-07-18", "2015-04-07", "2013-04-24", "2013-04-16", "2013-01-22", "2015-10-24", "2013-04-14", "2014-10-10", "2014-01-29", "2013-02-18", "2013-04-29", "2015-07-05", "2013-05-22", "2014-10-05", "2014-03-13", "2013-05-01", "2013-03-05", "2014-10-14", "2013-05-20", "2015-09-24", "2013-02-03", "2013-12-05", "2013-12-17", "2014-01-31", "2014-02-24", "2013-11-25", "2013-04-17", "2013-12-05", "2013-01-26", "2016-01-28", "2013-12-16", "2015-05-08", "2013-03-06", "2013-03-02", "2014-02-21", "2013-03-24", "2014-02-02", "2015-03-11", "2013-02-24", "2014-06-28", "2013-04-28", "2013-04-01", "2014-04-07", "2013-04-29", "2014-04-29", "2014-03-17", "2013-08-23", "2013-07-08", "2014-07-28", "2013-08-07", "2013-05-09", "2013-03-16", "2013-10-20", "2014-02-05", "2013-05-29", "2014-01-04", "2013-07-08", "2013-11-10", "2014-05-20", "2013-05-06", "2013-04-06", "2014-09-07", "2013-01-18", "2013-04-28", "2013-11-12", "2014-02-02", "2014-04-10", "2013-10-27", "2014-10-30", "2016-01-05", "2016-03-24", "2014-11-22", "2015-01-27"], ["16/06/2012", "10/11/2015", "15/01/2010", "29/05/2009", "18/10/2013", "17/03/2015", "07/02/2014", "27/10/2007", "22/09/2007", "07/06/2012", "29/11/2013", "17/04/2016", "23/08/2013", "24/11/2005", "17/12/2009", "22/11/2008", "28/06/2015", "06/06/2009", "28/08/2010", "11/02/2011", "16/07/2011", "08/06/2014", "21/12/2007", "21/04/2007", "08/12/2007", "29/05/2009", "19/04/2013", "23/11/2012", "23/04/2015", "01/12/2007", "02/03/2007", "25/08/2012", "19/07/2009", "11/09/2011", "27/06/2014", "10/10/2014", "20/08/2009", "01/11/2008", "15/09/2012", "30/05/2011", "21/06/2008", "12/09/2006", "13/07/2013", "24/07/2010", "25/08/2012", "02/02/2008", "24/11/2005", "01/10/2011", "07/12/2007", "14/06/2013", "28/08/2009", "15/09/2007", "17/10/2015", "03/12/2010", "23/12/2013", "07/12/2013", "13/10/2012", "19/08/2011", "27/06/2015", "13/07/2013", "09/04/2011", "05/08/2015", "19/12/2013", "10/03/2007", "05/04/2014", "19/06/2016", "14/09/2007", "01/10/2010", "24/05/2007", "24/11/2005", "18/04/2009", "07/04/2007", "28/07/2012", "17/07/2015", "05/07/2013", "09/12/2012", "24/01/2009", "02/01/2009", "08/05/2013", "24/11/2005", "12/08/2012", "13/12/2005", "23/04/2016", "21/06/2008", "03/12/2011", "15/03/2008", "05/10/2007", "20/03/2009", "10/05/2014", "20/12/2005", "27/05/2011", "24/11/2005", "20/07/2013", "28/05/2011", "25/06/2011", "13/02/2009", "19/06/2015", "07/11/2015", "01/03/2014", "10/10/2009", "26/09/2009", "18/12/2010", "06/12/2005", "03/05/2014", "09/04/2012", "31/12/2010", "11/08/2007", "17/07/2015", "07/03/2009", "17/11/2007", "26/10/2012", "16/05/2015", "21/11/2009", "04/06/2016", "05/04/2014", "29/06/2013", "28/05/2011", "28/05/2007", "28/04/2007", "27/06/2009", "01/01/2015", "17/03/2012", "06/07/2013", "24/11/2005", "17/07/2008", "19/09/2015", "19/09/2010", "17/01/2007", "13/06/2016", "19/04/2006", "01/08/2009", "16/08/2014", "20/03/2015", "14/09/2013", "04/10/2014", "11/12/2015", "05/02/2013", "24/11/2005", "17/06/2011", "24/08/2013", "17/10/2014", "30/05/2008", "19/12/2013", "30/06/2012", "08/11/2008", "12/12/2013", "24/11/2005", "24/11/2005", "28/02/2014", "27/12/2013", "02/07/2011", "11/11/2015", "23/06/2007", "15/10/2011", "09/11/2012", "10/03/2012", "22/02/2014", "06/12/2014", "24/11/2005", "28/06/2007", "24/11/2005", "08/08/2009", "20/11/2015", "17/06/2010", "24/06/2007", "26/04/2014", "21/05/2011", "18/07/2014", "21/04/2012", "20/05/2011", "17/07/2009", "02/07/2015", "06/07/2007", "27/11/2008", "13/11/2010", "10/07/2010", "25/03/2016", "30/04/2016", "04/08/2008", "24/11/2005", "07/09/2009", "04/07/2015", "03/06/2012", "02/10/2009", "15/11/2008", "27/11/2013", "12/09/2014", "27/11/2013", "31/05/2014", "27/11/2015", "05/12/2009", "03/11/2010", "03/10/2015", "02/07/2010", "04/04/2008", "14/07/2007", "24/04/2010", "29/11/2014", "31/07/2010", "18/07/2013", "20/06/2015", "30/05/2010", "07/05/2016", "24/11/2005", "15/12/2007", "05/09/2015", "15/08/2015", "19/06/2016", "29/12/2009", "10/05/2015", "16/09/2016", "27/04/2012", "23/08/2008", "08/07/2012", "29/06/2014", "30/11/2014", "14/11/2009", "27/02/2015", "17/10/2014", "16/06/2012", "06/12/2014", "15/07/2007", "07/10/2012", "11/06/2011", "09/08/2014", "26/11/2010", "02/05/2014", "17/05/2008", "03/07/2016", "16/05/2008", "24/11/2005", "12/11/2015", "05/07/2008", "21/05/2011", "29/04/2011", "22/03/2013", "13/06/2013", "26/10/2013", "03/03/2012", "11/02/2010", "24/05/2015", "18/06/2009", "01/11/2015", "20/03/2016", "07/11/2009", "09/09/2011", "15/02/2013", "28/07/2012", "01/08/2015", "02/03/2012", "03/08/2008", "05/11/2010", "13/12/2008", "08/01/2013", "14/07/2007", "08/04/2016", "25/06/2011", "27/05/2008", "27/11/2010", "02/06/2012", "12/05/2007", "28/03/2015", "04/07/2008", "12/07/2013", "01/09/2007", "11/09/2008", "23/08/2013", "24/11/2005", "18/06/2011", "16/08/2015", "06/09/2009", "01/11/2008", "20/05/2016", "30/01/2010", "06/01/2009", "08/06/2009", "08/01/2011", "28/06/2009", "24/11/2005", "19/07/2009", "11/01/2014", "12/05/2007", "20/07/2013", "02/05/2015", "03/06/2012", "08/07/2012", "01/12/2007", "07/07/2012", "06/12/2007", "27/07/2007", "20/04/2016", "20/05/2011", "26/12/2012", "17/10/2009", "13/06/2009", "12/08/2010", "14/07/2013", "26/04/2010", "04/07/2014", "12/07/2009", "24/11/2005", "24/04/2010", "03/11/2012", "09/05/2009", "02/03/2012", "07/02/2009", "05/07/2014", "19/01/2012", "05/07/2014", "04/08/2009", "30/11/2007", "15/09/2011", "01/04/2011", "01/11/2014", "22/06/2013", "13/02/2015", "25/06/2014", "31/05/2015", "15/06/2016", "05/10/2007", "24/04/2016", "02/12/2011", "13/09/2012", "29/06/2008", "29/05/2016", "10/07/2011", "10/12/2010", "09/02/2007", "11/08/2012", "07/05/2009", "24/11/2005", "08/08/2009", "19/09/2009", "28/06/2014", "01/11/2013", "23/07/2011", "24/11/2005", "26/05/2012", "01/02/2008", "24/10/2008", "13/04/2008", "16/08/2009", "03/07/2010", "23/11/2012", "16/06/2009", "02/06/2012", "11/07/2014", "14/03/2015", "06/02/2014", "03/08/2013", "06/08/2014", "19/06/2010", "27/06/2007", "24/05/2014", "10/05/2013", "05/11/2011", "12/12/2009", "19/01/2013", "14/04/2007", "21/11/2008", "15/11/2011", "16/05/2010", "22/07/2012", "19/06/2016", "01/04/2014", "12/02/2010", "25/10/2008", "16/12/2011", "28/09/2007", "24/11/2005", "13/05/2012", "03/10/2010", "09/12/2008", "13/07/2007", "20/08/2016", "20/08/2011", "26/09/2008", "10/09/2007", "24/11/2005", "22/12/2011", "29/06/2007", "18/06/2016", "18/11/2011", "19/02/2015", "24/11/2005", "20/12/2015", "06/12/2013", "07/05/2010", "08/01/2011", "01/02/2013", "08/04/2015", "30/10/2007", "24/08/2012", "03/07/2011", "24/11/2005", "20/09/2014", "17/10/2008", "13/03/2010", "28/06/2015", "15/06/2006", "13/09/2008", "31/07/2011", "21/03/2006", "23/08/2008", "01/01/2013", "29/03/2016", "14/02/2013", "02/07/2016", "07/03/2009", "19/02/2010", "09/05/2014", "27/08/2011", "25/06/2016", "27/03/2009", "05/02/2011", "24/11/2005", "22/02/2007", "26/02/2011", "10/12/2010", "23/05/2015", "06/06/2009", "24/11/2005", "19/09/2011", "18/12/2014", "13/12/2013", "13/03/2008", "13/07/2013", "25/09/2009", "27/08/2009", "29/09/2012", "15/04/2016", "25/12/2011", "07/06/2014", "27/10/2012", "14/03/2015", "08/06/2013", "26/02/2012", "15/07/2007", "18/11/2010", "20/09/2008", "03/03/2007", "28/07/2012", "17/05/2015", "01/08/2015", "08/05/2014", "26/07/2008", "24/11/2005", "15/09/2007", "01/05/2010", "13/04/2008", "05/08/2008", "24/11/2005", "25/10/2014", "01/04/2006", "30/01/2007", "23/08/2014", "04/02/2015", "13/07/2012", "15/06/2013", "09/01/2014", "12/07/2008", "15/09/2012", "14/02/2007", "19/09/2007", "24/11/2005", "11/10/2008", "17/04/2010", "24/03/2012", "16/07/2016", "26/03/2015", "11/03/2016", "16/08/2008", "13/12/2013", "15/10/2008", "11/08/2013", "12/03/2010", "21/11/2015", "13/07/2013", "22/05/2010", "30/06/2010", "23/11/2013", "17/11/2012", "08/06/2016", "26/12/2014", "25/09/2015", "07/08/2015", "03/05/2008", "14/08/2010", "19/09/2014", "13/07/2013", "16/01/2013", "21/11/2008", "13/02/2013", "03/08/2014", "17/07/2008", "19/01/2010", "08/03/2012", "31/12/2010", "25/06/2016", "21/03/2015"], ["18.02.2017", "13.05.2017", "08.08.2016", "18.08.2017", "29.07.2012", "06.03.2009", "10.06.2015", "01.04.2013", "23.10.2011", "01.05.2007", "26.02.2013", "23.04.2014", "04.01.2016", "18.05.2017", "28.10.2016", "01.04.2016", "07.12.2015", "01.02.2010", "13.04.2016", "01.06.2007", "01.04.1995", "08.01.2016", "16.03.2015", "25.06.2015", "07.03.2016", "08.04.2016", "25.09.2016", "01.04.2015", "01.04.2010", "01.04.2012", "25.03.2010", "02.02.2016", "01.12.2008", "13.01.2017", "10.04.2017", "08.02.2017", "05.07.2016", "16.05.2013", "28.02.2017", "05.11.2013", "22.11.2012", "04.06.2010", "30.09.2016", "30.05.2014", "07.03.2017", "12.10.2012", "01.04.2017", "14.01.2014", "24.12.2014", "18.04.2017", "18.07.2014", "12.01.2009", "20.10.2010", "01.04.2007", "01.04.2013", "18.07.2016", "31.12.2015", "19.04.2017", "31.10.2013", "01.01.2011", "28.02.2017", "31.10.2013", "22.07.2015", "02.08.2012", "11.12.2015", "01.04.2014", "02.12.2014", "08.12.2016", "28.02.2017", "18.11.2016", "23.02.2016", "18.06.2015", "01.01.2015", "01.03.2016", "17.12.2015", "01.04.2015", "01.02.2010", "14.10.2014", "22.08.2013", "07.03.2017", "25.12.2013", "16.07.2016", "07.07.2017", "01.04.2015", "09.07.2014", "21.11.2008", "16.07.2013", "30.04.2015", "15.10.2014", "10.07.2011", "30.07.2012", "11.02.2016", "07.05.2014", "23.12.2016", "04.06.2014", "01.04.2007", "01.01.2015", "29.06.2016", "11.12.2015", "02.11.2012", "01.06.2017", "20.02.2013", "16.06.2016", "01.04.2010", "14.04.2013", "24.03.2017", "11.12.2015", "11.01.2016", "23.07.2010", "20.07.2009", "21.06.2015", "04.11.2015", "27.03.2017", "01.03.2008", "27.01.2008", "30.09.2014", "30.08.2013", "29.08.2016", "12.01.2015", "29.08.2013", "24.03.2013", "25.06.2011", "03.11.2015", "16.02.2006", "06.10.2014", "20.11.2015", "01.04.1995", "01.09.2016", "01.02.2017", "13.07.2015", "30.05.2016", "05.08.2016", "23.10.2015", "30.05.2014", "25.04.2010", "13.09.2012", "22.05.2007", "30.08.2016", "29.08.2016", "13.01.2017", "11.03.2015", "04.10.2012", "03.06.2014", "19.08.2015", "26.02.2016", "01.07.2013", "04.07.2016", "12.07.2014", "15.01.2016", "28.04.2017", "01.02.2012", "03.02.2014", "01.04.2015", "10.07.2016", "01.04.2000", "01.04.2013", "01.04.2015", "18.01.2017", "13.01.2017", "28.04.2017", "23.08.2010", "01.04.2007", "01.04.2015", "18.05.2009", "06.10.2014", "03.06.2015", "13.06.2014", "01.01.2015", "11.12.2015", "01.02.2017", "07.05.2014", "13.04.2010", "31.03.2011", "12.10.2015", "30.06.2016", "26.10.2008", "12.01.2009", "31.08.2014", "08.01.2016", "24.12.2016", "14.01.2013", "28.09.2013", "18.05.2016", "01.04.2006", "14.12.2016", "30.11.2016", "16.02.2011", "25.11.2016", "16.08.2013", "24.11.2016", "23.06.2014", "31.07.2015", "29.09.2013", "24.03.2017", "30.06.2015", "01.12.2015", "06.06.2017", "27.03.2011", "01.04.2012", "29.09.2016", "22.02.2013", "29.11.2015", "01.04.2008", "31.10.2013", "02.01.2015", "28.10.2014", "30.10.2015", "11.01.2013", "04.01.2005", "12.08.2014", "24.12.2016", "06.10.2016", "08.10.2015", "27.07.2016", "05.11.2013", "23.06.2015", "19.11.2012", "01.04.2017", "01.04.2016", "01.04.2015", "14.12.2015", "12.12.2016", "28.11.2016", "01.06.2011", "01.09.2016", "14.12.2016", "10.07.2015", "28.02.2015", "01.06.2013", "28.10.2014", "01.04.2013", "12.04.2017", "17.02.2017", "25.05.2016", "26.10.2009", "31.05.2017", "13.09.2016", "05.10.2015", "06.03.2017", "01.02.2013", "01.04.2013", "10.04.2014", "20.02.2017", "18.04.2017", "25.02.2013", "28.08.2015", "08.01.2016", "14.01.2015", "16.06.2017", "01.04.2014", "08.10.2009", "29.04.2016", "17.02.2017", "21.05.2015", "19.09.2013", "27.05.2016", "26.05.2016", "29.03.2016", "07.02.2017", "11.12.2015", "01.04.2015", "26.08.2010", "30.04.2016", "02.12.2016", "29.09.2016", "01.09.2014", "11.02.2008", "01.01.2015", "12.08.2016", "10.01.2017", "01.04.2016", "15.08.2016", "01.04.2016", "03.01.2017", "11.11.2010", "01.02.2015", "31.12.2013", "14.12.2016", "05.06.2014", "12.09.2008", "19.10.2015", "01.04.2007", "23.12.2016", "02.03.2017", "09.07.2014", "04.05.2009", "31.07.2016", "01.04.2007", "22.05.2013", "27.02.2017", "24.08.2015", "01.04.2015", "29.04.2015", "07.05.2014", "21.07.2014", "01.01.2016", "30.05.2014", "10.01.2017", "01.04.2015", "11.11.2015", "10.11.2003", "16.10.2012", "12.08.2008", "20.02.2014", "25.03.2017", "06.01.2017", "04.04.2016", "11.06.2016", "20.03.2017", "30.08.2013", "01.06.2012", "06.10.2014", "26.05.2016", "31.03.2015", "11.11.2015", "01.04.2003", "31.07.2014", "02.02.2016", "17.06.2016", "01.04.2017", "31.03.2015", "25.12.2016", "15.01.2014", "23.12.2016", "15.05.2008", "17.03.2015", "04.10.2005", "01.04.2015", "20.02.2016", "01.09.2015", "29.06.2015", "20.02.2016", "01.04.2007", "28.02.2014", "01.05.2015", "01.04.2010", "19.06.2017", "27.01.2017", "01.02.2016", "30.06.2017", "10.06.2002", "13.04.2017", "01.04.1995", "23.02.2016", "13.02.2015", "15.09.2016", "01.04.2016", "16.05.2016", "31.10.2013", "22.04.2016", "17.04.1997", "14.02.2012", "02.06.2017", "01.04.2007", "01.12.2016", "25.12.2013", "18.04.2008", "01.04.2008", "03.01.2014", "30.09.2007", "01.03.2017", "01.10.2015", "31.03.2015", "02.01.2016", "01.04.2015", "08.11.2016", "21.02.1998", "01.04.2010", "01.04.1996", "14.12.2016", "12.07.2014", "17.05.2017", "01.04.2007", "01.04.2016", "31.10.2014", "09.06.2017", "01.04.2015", "01.04.1995", "21.05.2015", "22.07.2016", "22.07.2013", "08.11.2016", "31.03.2017", "04.04.2017", "16.09.2010", "28.02.2017", "01.10.2007", "01.04.2015", "28.06.2016", "26.08.2010", "08.06.2017", "29.04.2015", "09.06.2012", "01.07.2017", "19.03.2017", "28.02.2015", "07.12.2016", "01.04.2015", "14.01.2017", "01.04.2014", "01.04.2012", "14.04.2017", "12.01.2016", "14.01.2015", "01.01.2015", "01.10.2016", "30.01.2014", "02.05.2017", "13.05.2017", "01.10.2004", "01.07.1997", "26.01.2016", "01.04.2011", "20.07.2016", "23.07.2015", "21.11.2016", "27.02.2015", "23.11.2015", "23.04.2014", "01.04.2007", "08.01.2016", "08.05.2015", "01.12.2011", "31.12.2014", "01.07.2017", "06.04.2017", "01.03.2017", "09.08.2016", "01.04.2015", "20.02.2016", "18.05.2017", "31.12.2015", "24.08.2015", "01.04.2002", "28.02.2017", "31.10.2013", "19.02.2016", "06.09.2006", "01.04.2000", "22.03.2016", "21.02.2015", "06.10.2007", "31.07.2014", "01.11.2006", "09.10.2012", "20.11.2016", "24.05.2010", "18.01.2017", "01.04.2015", "19.11.2016", "28.09.2016", "20.02.2016", "01.04.2015", "30.04.2010", "09.12.2011", "01.04.2016", "04.04.2017", "07.02.2017", "24.03.2017", "01.04.2011", "21.09.2015", "06.10.2016", "30.03.2016", "01.06.2015", "30.05.2012", "01.05.2015", "26.07.2016", "23.12.2016", "24.08.2015", "04.06.2009", "30.05.2014", "24.12.2016", "30.11.2014", "01.04.2015", "01.04.2007", "22.11.2015", "01.01.2017", "26.06.2017", "08.01.2016", "23.04.2015", "06.06.2017", "20.12.2016", "10.03.2017", "14.08.2016", "05.09.2012", "04.08.2008", "30.04.2008", "15.12.2011", "22.04.2016", "01.04.2015", "05.05.2014", "01.04.2007", "01.04.2007", "01.10.2012", "01.04.2015", "01.06.2010", "03.04.2015", "01.04.2007", "12.02.2009", "27.04.2017"], ["2014-02-19", "2013-08-07", "2013-08-07", "2013-11-25", "2014-01-04", "2013-04-08", "2013-04-05", "2013-01-03", "2013-05-03", "2013-08-05", "2013-12-06", "2013-08-03", "2013-12-23", "2013-05-28", "2013-02-26", "2013-05-20", "2013-03-25", "2013-04-12", "2013-03-10", "2014-01-23", "2013-02-01", "2013-02-22", "2013-11-08", "2013-05-03", "2013-05-06", "2013-05-09", "2013-12-23", "2014-02-20", "2013-01-07", "2013-03-24", "2013-01-31", "2014-03-13", "2013-04-06", "2013-01-27", "2013-11-18", "2014-07-17", "2014-02-25", "2013-03-18", "2013-05-16", "2014-03-16", "2013-02-20", "2013-01-30", "2013-03-04", "2014-02-24", "2013-08-19", "2014-03-12", "2013-03-28", "2014-02-28", "2013-01-27", "2013-04-16", "2013-03-29", "2013-12-27", "2013-03-27", "2014-09-08", "2013-01-23", "2013-04-22", "2013-09-27", "2013-03-07", "2013-02-21", "2013-05-13", "2013-03-20", "2013-01-17", "2013-06-05", "2013-05-25", "2013-08-22", "2013-05-06", "2013-03-27", "2014-04-01", "2013-01-20", "2014-10-14", "2014-06-18", "2014-03-28", "2013-11-09", "2013-05-09", "2014-01-24", "2013-10-15", "2013-11-27", "2013-01-07", "2014-03-11", "2013-05-10", "2013-04-19", "2013-09-17", "2013-05-07", "2013-04-20", "2013-12-03", "2013-12-13", "2014-03-10", "2013-09-06", "2013-08-12", "2014-07-03", "2013-04-27", "2013-01-01", "2013-03-20", "2013-11-19", "2013-03-17", "2014-01-25", "2013-01-21", "2013-12-31", "2014-02-25", "2013-08-22", "2013-04-08", "2013-08-22", "2013-08-28", "2013-09-12", "2013-02-24", "2013-05-09", "2013-10-06", "2013-05-26", "2013-04-27", "2013-07-15", "2013-03-08", "2013-03-23", "2013-11-12", "2013-03-02", "2013-04-10", "2014-01-06", "2013-02-12", "2013-02-18", "2014-02-02", "2013-09-08", "2013-08-01", "2013-01-03", "2013-04-25", "2014-05-16", "2014-02-06", "2013-02-21", "2013-09-06", "2013-12-28", "2013-10-03", "2013-05-29", "2014-01-08", "2013-10-10", "2013-07-16", "2013-11-08", "2014-04-01", "2013-03-09", "2013-12-18", "2013-04-01", "2013-10-20", "2013-10-18", "2013-11-05", "2013-10-24", "2013-10-09", "2014-01-14", "2013-09-08", "2013-03-15", "2013-02-25", "2013-10-15", "2013-02-13", "2013-11-08", "2013-10-07", "2013-07-01", "2013-05-22", "2014-01-09", "2013-03-06", "2013-02-13", "2013-03-28", "2014-01-14", "2014-04-01", "2013-12-22", "2013-05-10", "2014-02-07", "2013-12-18", "2013-05-12", "2013-09-30", "2013-06-13", "2014-02-21", "2013-06-27", "2013-01-05", "2014-02-10", "2014-03-17", "2014-01-17", "2013-04-18", "2013-04-09", "2013-08-23", "2013-05-13", "2013-05-08", "2013-04-24", "2013-11-07", "2014-07-06", "2013-04-17", "2014-03-05", "2013-04-20", "2014-03-12", "2013-05-26", "2013-10-07", "2013-04-24", "2013-09-10", "2014-03-01", "2013-09-11", "2013-07-18", "2013-11-08", "2014-01-20", "2013-08-09", "2014-09-17", "2013-10-31", "2013-12-31", "2013-08-08", "2013-01-30", "2013-02-08", "2013-11-09", "2013-03-18", "2013-02-27", "2013-10-14", "2014-02-20", "2013-05-29", "2013-10-03", "2014-01-19", "2013-09-27", "2013-08-15", "2013-04-29", "2013-04-06", "2013-02-09", "2013-09-09", "2013-08-01", "2013-03-28", "2013-06-17", "2013-03-14", "2013-05-14", "2013-08-21", "2013-08-27", "2013-01-26", "2013-02-20", "2014-02-25", "2013-11-25", "2013-01-11", "2014-11-28", "2013-04-25", "2014-02-05", "2013-08-24", "2013-08-19", "2013-12-09", "2013-08-27", "2014-02-26", "2014-01-21", "2013-05-26", "2013-08-09", "2013-12-02", "2013-02-08", "2013-07-29", "2014-01-13", "2013-04-25", "2013-05-25", "2013-04-29", "2013-09-03", "2014-01-19", "2014-01-02", "2013-08-23", "2014-03-10", "2013-01-23", "2014-05-08", "2013-08-07", "2013-01-15", "2014-03-22", "2013-09-07", "2013-03-04", "2013-05-05", "2014-02-17", "2013-11-07", "2013-04-17", "2014-02-19", "2013-09-14", "2014-01-19", "2014-04-01", "2013-01-27", "2013-10-07", "2013-02-03", "2013-01-22", "2014-03-26", "2013-09-22", "2014-05-19", "2014-03-27", "2013-02-19", "2013-02-27", "2013-02-01", "2013-02-17", "2013-01-27", "2013-10-09", "2013-04-22", "2013-12-20", "2013-05-02", "2013-04-20", "2013-05-26", "2013-05-28", "2013-03-21", "2013-04-18", "2013-01-19", "2013-09-25", "2014-03-09", "2013-04-30", "2013-08-14", "2014-03-12", "2013-05-06", "2013-11-22", "2013-08-16", "2014-02-03", "2013-04-22", "2013-04-10", "2013-05-04", "2014-02-02", "2014-01-02", "2013-12-17", "2013-04-09", "2013-05-02", "2013-02-06", "2013-11-26", "2013-01-19", "2013-04-05", "2013-05-10", "2014-01-10", "2014-09-04", "2013-10-21", "2014-03-03", "2014-03-19", "2014-02-07", "2013-12-14", "2013-09-07", "2013-05-23", "2013-12-30", "2013-05-06", "2013-10-03", "2013-09-16", "2014-04-17", "2013-08-15", "2014-11-05", "2013-05-25", "2014-04-04", "2013-03-01", "2013-02-22", "2013-04-12", "2013-08-28", "2013-05-27", "2013-04-06", "2013-10-15", "2014-01-17", "2013-11-24", "2014-11-14", "2013-12-04", "2013-11-02", "2013-01-29", "2014-10-04", "2013-05-29", "2013-01-18", "2013-01-25", "2013-03-07", "2013-05-10", "2013-04-30", "2013-12-15", "2013-01-31", "2013-06-20", "2013-08-23", "2014-01-02", "2014-01-17", "2013-08-22", "2014-02-28", "2013-02-21", "2014-08-19", "2013-12-19", "2013-12-12", "2013-10-22", "2013-09-22", "2013-04-02", "2013-03-01", "2013-10-09", "2014-03-01", "2013-03-11", "2013-04-17", "2013-10-31", "2013-11-26", "2013-02-19", "2014-02-06", "2014-02-20", "2013-05-15", "2013-03-14", "2013-10-29", "2013-12-06", "2013-02-02", "2013-03-25", "2013-08-28", "2014-05-06", "2013-11-27", "2013-04-18", "2013-03-31", "2013-01-27", "2013-03-19", "2013-10-31", "2013-09-07", "2013-03-10", "2013-08-14", "2014-02-07", "2013-08-22", "2013-05-16", "2013-09-21", "2013-04-15", "2013-02-07", "2013-11-25", "2013-04-08", "2014-02-03", "2013-01-21", "2013-12-26", "2013-02-13", "2014-09-29", "2013-08-15", "2013-10-10", "2014-01-27", "2013-02-04", "2013-02-13", "2013-03-15", "2013-09-21", "2013-03-15", "2013-08-27", "2014-04-06", "2013-05-09", "2013-03-21", "2013-06-28", "2013-01-19", "2013-02-14", "2013-02-27", "2013-08-20", "2013-01-17", "2013-04-08", "2013-03-24", "2014-01-31", "2014-02-09", "2013-02-05", "2013-01-27", "2013-09-10", "2013-12-27", "2013-08-23", "2013-05-23", "2013-09-20", "2013-08-14", "2013-04-22", "2014-01-03", "2014-03-10", "2013-05-04", "2013-12-23", "2013-03-06", "2013-06-21", "2013-02-27", "2014-02-25", "2013-08-02", "2013-09-29", "2013-12-27", "2014-05-09", "2013-09-10", "2013-02-21", "2013-08-25", "2013-02-12", "2013-02-11", "2013-10-27", "2013-10-20", "2013-08-25", "2014-04-10", "2013-08-20", "2013-03-29", "2013-01-02", "2014-03-23", "2013-07-29", "2014-02-28", "2013-08-14", "2013-11-28", "2013-12-15", "2013-11-19", "2013-05-05", "2014-01-05", "2014-04-05", "2014-01-13", "2014-01-12", "2014-09-10", "2013-10-23", "2014-08-06", "2013-03-15", "2013-03-01", "2014-01-04", "2013-08-09", "2013-09-21", "2013-05-05", "2013-05-25", "2013-02-09", "2013-09-15", "2013-05-16", "2013-04-18", "2013-03-08", "2014-03-31", "2013-03-27", "2013-03-28", "2013-06-25", "2013-05-26", "2014-04-04", "2013-12-16", "2013-01-22", "2013-03-20", "2013-09-26", "2013-01-25", "2013-04-15", "2013-01-17", "2014-02-24", "2013-02-23", "2014-01-07"], ["1788-12-18", "1832-03-05", "1867-11-16", "1761-12-29", "1822-05-18", "1764-07-22", "1822-01-31", "1805-08-11", "1909-06-26", "1776-11-19", "1770-11-06", "1903-04-25", "1867-11-16", "1833-09-04", "1799-09-14", "1762-01-05", "1893-12-24", "1880-04-25", "1848-03-07", "1822-07-13", "1842-04-30", "1776-10-04", "1798-02-19", "1895-02-23", "1905-08-16", "1883-10-08", "1841-08-24", "1788-05-29", "1818-05-31", "1861-06-02", "1848-10-29", "1822-04-16", "1808-12-02", "1754-03-04", "1819-11-15", "1822-07-13", "1870-11-27", "1771-06-24", "1811-01-19", "1824-12-13", "1792-06-12", "1713-04-16", "1878-10-12", "1786-11-09", "1750-07-22", "1816-10-13", "1910-04-13", "1811-01-19", "1886-10-30", "1798-02-19", "1849-06-03", "1894-06-02", "1906-11-04", "1850-11-29", "1832-01-03", "1859-11-25", "1896-09-19", "1775-09-26", "1804-04-03", "1763-08-01", "1903-06-09", "1770-11-06", "1886-08-28", "1753-07-02", "1785-12-14", "1810-10-31", "1862-06-12", "1754-02-26", "1847-11-27", "1868-12-25", "1835-01-03", "1821-00-00", "1849-06-03", "1824-11-28", "1905-04-22", "1891-05-18", "1870-04-30", "1878-12-25", "1822-05-18", "1812-02-08", "1823-11-11", "1819-05-16", "1713-04-16", "1776-10-04", "1824-12-13", "1882-03-11", "1878-12-25", "1802-09-08", "1760-05-25", "1846-04-30", "1873-11-08", "1802-09-08", "1887-12-17", "1780-02-14", "1870-11-27", "1825-01-02", "1786-11-09", "1864-07-17", "1808-12-26", "1833-09-04", "1811-05-27", "1812-02-08", "1796-05-02", "1775-09-26", "1722-07-01", "1764-07-22", "1857-09-16", "1788-05-29", "1877-12-01", "1803-12-19", "1918-06-15", "1780-02-16", "1883-10-06", "1883-10-06", "1874-11-21", "1758-10-24", "1909-09-18", "1803-06-19", "1798-01-01", "1800-08-04", "1877-06-16", "1803-01-08", "1808-12-26", "1887-10-15", "1803-12-19", "1792-06-12", "1775-10-12", "1810-12-22", "1762-10-13", "1715-08-26", "1915-02-03", "1762-01-05", "1770-06-12", "1758-10-24", "1826-04-19", "1802-10-13", "1802-10-13", "1763-08-01", "1770-01-23", "1808-12-02", "1878-03-05", "1912-06-05", "1872-02-05", "1832-06-11", "1811-01-19", "1810-10-31", "1825-11-14", "1870-04-30", "1898-08-27", "1824-11-21", "1802-12-06", "1761-11-09", "1882-09-30", "1832-06-11", "1827-10-17", "1820-12-04", "1775-09-26", "1747-12-06", "1821-00-00", "1811-11-17", "1903-03-28", "1912-11-10", "1826-10-16", "1855-10-14", "1824-01-21", "1775-01-26", "1851-10-05", "1801-10-15", "1879-12-15", "1753-07-02", "1758-10-19", "1835-01-03", "1770-10-09", "1875-10-16", "1760-12-23", "1775-01-26", "1788-12-18", "1760-12-23", "1879-02-01", "1887-10-15", "1764-07-22", "1874-10-18", "1865-01-22", "1825-01-02", "1867-11-16", "1819-12-25", "1874-11-21", "1780-02-17", "1775-10-12", "1776-05-13", "1873-11-08", "1903-09-13", "1849-01-11", "1825-11-05", "1804-03-21", "1788-05-29", "1860-08-01", "1805-08-11", "1802-07-16", "1884-07-12", "1810-10-31", "1780-11-11", "1876-11-30", "1754-02-26", "1897-11-13", "1776-10-14", "1877-06-16", "1903-04-25", "1761-11-09", "1822-06-16", "1808-11-23", "1810-12-22", "1862-06-12", "1824-11-28", "1802-09-08", "1770-06-12", "1811-05-27", "1809-05-10", "1735-09-29", "1918-06-15", "1773-02-01", "1832-01-03", "1765-04-28", "1904-02-06", "1770-06-12", "1770-11-06", "1815-10-13", "1811-11-17", "1802-10-13", "1902-01-25", "1837-12-25", "1905-04-22", "1879-02-01", "1743-00-00", "1821-11-18", "1906-07-08", "1751-11-21", "1776-11-19", "1802-12-06", "1788-05-29", "1765-10-15", "1773-02-01", "1818-09-21", "1870-04-30", "1819-11-15", "1762-01-05", "1910-11-09", "1819-05-16", "1767-10-06", "1802-05-27", "1916-06-05", "1816-04-16", "1807-10-15", "1780-02-15", "1812-06-13", "1897-11-06", "1777-10-23", "1824-11-21", "1900-07-28", "1763-08-01", "1811-10-19", "1761-11-09", "1776-10-04", "1823-11-11", "1903-12-26", "1900-12-08", "1883-10-06", "1878-10-12", "1780-11-11", "1776-10-14", "1913-06-07", "1812-06-13", "1917-05-08", "1854-08-13", "1799-09-14", "1895-05-04", "1778-03-01", "1901-06-01", "1873-03-15", "1776-10-14", "1895-02-23", "1786-11-09", "1812-06-13", "1913-06-07", "1876-11-30", "1802-12-06", "1891-06-10", "1819-05-25", "1758-10-19", "1895-05-04", "1822-02-09", "1867-11-16", "1723-04-17", "1720-10-26", "1796-05-02", "1777-10-23", "1824-12-13", "1912-11-10", "1829-11-29", "1803-12-19", "1917-07-14", "1901-06-01", "1807-10-15", "1834-05-31", "1770-10-09", "1805-08-11", "1747-12-06", "1760-05-25", "1809-05-10", "1788-12-24", "1870-09-04", "1811-05-27", "1907-06-19", "1886-05-17", "1773-08-05", "1822-02-09", "1883-10-06", "1810-12-22", "1800-11-04", "1731-11-11", "1805-08-11", "1910-11-09", "1754-03-04", "1802-07-16", "1903-09-13", "1817-11-08", "1894-06-02", "1780-11-19", "1816-04-16", "1870-09-04", "1910-04-13", "1802-05-27", "1788-12-24", "1887-12-17", "1749-10-08", "1865-06-28", "1769-12-15", "1817-10-19", "1880-03-08", "1912-11-23", "1848-10-29", "1799-03-25", "1817-11-08", "1776-05-13", "1907-07-17", "1867-01-06", "1780-11-19", "1832-03-11", "1803-06-19", "1765-10-15", "1803-01-08", "1812-02-08", "1809-11-13", "1761-12-29", "1863-10-17", "1765-10-15", "1762-10-13", "1821-08-18", "1775-09-26", "1821-00-00", "1775-01-26", "1834-05-31", "1810-10-31", "1715-11-13", "1826-10-07", "1906-11-04", "1767-10-06", "1848-03-07", "1863-10-17", "1818-10-15", "1760-05-25", "1808-11-23", "1770-11-06", "1822-04-16", "1818-10-24", "1809-05-10", "1882-09-30", "1765-04-28", "1814-08-28", "1833-09-04", "1805-02-13", "1802-08-22", "1872-02-05", "1775-10-23", "1819-05-25", "1798-01-01", "1897-11-06", "1880-06-16", "1743-05-26", "1802-10-13", "1851-10-05", "1773-08-05", "1767-10-06", "1897-11-13", "1802-08-22", "1802-08-22", "1855-10-14", "1904-02-06", "1811-01-19", "1912-06-05", "1801-10-15", "1743-05-26", "1811-01-00", "1841-08-24", "1809-11-13", "1891-05-18", "1798-02-19", "1893-12-24", "1808-11-23", "1873-03-15", "1773-02-01", "1773-08-05", "1877-12-01", "1760-12-23", "1800-08-04", "1804-04-03", "1850-10-12", "1788-12-18", "1898-08-27", "1808-12-02", "1843-10-22", "1916-01-20", "1820-04-15", "1873-11-08", "1900-12-08", "1811-10-19", "1902-01-25", "1785-12-14", "1886-10-30", "1827-10-17", "1894-09-29", "1880-04-25", "1916-07-24", "1802-09-08", "1760-05-25", "1808-11-23", "1860-08-01", "1916-06-05", "1761-11-09", "1861-11-02", "1808-12-26", "1853-03-06", "1775-10-23", "1826-10-16", "1812-06-13", "1750-07-22", "1769-12-15", "1798-01-01", "1803-01-08", "1917-07-14", "1845-11-23", "1867-08-04", "1846-04-30", "1796-05-02", "1770-01-23", "1807-10-15", "1777-10-23", "1905-08-16", "1814-08-28", "1853-03-06", "1822-06-16", "1798-02-19", "1910-03-27", "1731-10-08", "1878-10-12", "1825-11-05", "1807-10-15", "1802-05-27", "1804-03-21", "1915-02-03", "1805-02-13", "1778-03-01", "1854-10-21", "1880-06-16", "1884-07-12", "1854-10-21", "1770-10-09", "1878-10-23", "1720-10-26", "1804-03-21", "1898-08-27", "1855-11-24", "1861-06-02", "1776-11-19", "1818-10-15", "1771-06-24", "1913-12-27", "1776-10-04", "1846-11-22", "1881-02-02", "1804-04-03", "1775-10-12", "1811-05-27", "1878-03-05", "1801-10-15", "1780-11-19", "1912-08-04", "1847-10-16", "1878-10-12", "1827-09-06"], ["26/02/2011", "01/04/1995", "15/11/1997", "01/04/2008", "01/04/1995", "16/12/2015", "05/10/2015", "30/11/2016", "09/07/2010", "09/09/2015", "01/01/2017", "01/06/2014", "01/04/1995", "22/07/2002", "01/04/1995", "31/10/1997", "29/11/2007", "20/05/2013", "01/04/2015", "20/02/2015", "29/09/2016", "01/07/2015", "01/05/2013", "14/12/2016", "15/07/2015", "12/01/2017", "26/11/2002", "01/01/2015", "05/09/2011", "06/02/2015", "30/09/2015", "07/05/2017", "11/05/2012", "01/02/2013", "01/01/2017", "01/04/1995", "01/04/1995", "01/04/1995", "24/05/2017", "01/07/2008", "01/04/2010", "05/09/2016", "26/06/2013", "23/11/2016", "17/10/2012", "24/03/2017", "31/05/2012", "15/10/2012", "01/07/1995", "07/08/2006", "09/10/1996", "01/01/2002", "14/05/2009", "05/12/2016", "01/04/2010", "01/08/2013", "01/04/1995", "01/04/2015", "01/02/2017", "21/07/1997", "20/02/2017", "29/03/2012", "13/08/2012", "01/04/1995", "01/02/2015", "24/02/2014", "01/07/2002", "01/04/1995", "01/06/2017", "01/03/2013", "01/04/1999", "01/08/2015", "01/04/2015", "01/04/2009", "02/10/2012", "01/04/2017", "01/04/2004", "01/10/2014", "16/10/2015", "18/08/2014", "27/01/2016", "01/04/2005", "01/05/2015", "05/10/2015", "01/04/2005", "09/04/2010", "03/09/2009", "30/09/2016", "16/01/2007", "05/08/2016", "01/10/2016", "01/04/1995", "26/12/2012", "01/12/2010", "26/07/2013", "01/08/2016", "10/02/2011", "01/04/2011", "31/10/1996", "26/05/2016", "01/04/1995", "01/04/2011", "31/10/1996", "20/09/2002", "28/09/2009", "10/10/2002", "01/12/2014", "01/04/2014", "01/04/2015", "16/08/2010", "09/02/2009", "30/03/2015", "01/06/2011", "03/01/2013", "01/04/1996", "01/04/1995", "02/10/2008", "06/05/2009", "01/04/2013", "01/04/1995", "05/12/2011", "24/10/2011", "01/01/2013", "10/11/1997", "01/04/1995", "01/04/2001", "01/10/2010", "01/04/2009", "01/10/2015", "23/10/2000", "21/12/2012", "01/04/1995", "01/08/2013", "01/11/2011", "01/04/2000", "05/02/2008", "19/07/2004", "19/08/2013", "01/11/2016", "01/04/1995", "01/04/1995", "21/01/2006", "24/07/2015", "01/01/2009", "01/06/2005", "01/04/2010", "11/05/2016", "09/12/2016", "12/07/2013", "19/04/2013", "01/10/2013", "11/11/2015", "01/11/2014", "01/04/2010", "01/04/2016", "18/04/2013", "12/07/2014", "01/04/2004", "10/03/2014", "12/02/2009", "24/11/2016", "04/08/2016", "01/04/2014", "01/04/1995", "01/04/2003", "12/03/2015", "01/04/1995", "30/04/2010", "05/07/2013", "31/08/1998", "01/04/2015", "09/07/2014", "16/08/2000", "01/04/1995", "01/04/2010", "01/04/2002", "17/07/2009", "01/04/2010", "01/04/2011", "01/02/2000", "01/12/2015", "28/01/2011", "22/12/2008", "19/12/2007", "15/08/2005", "19/06/2014", "12/04/2013", "05/05/2001", "01/03/2016", "15/02/2006", "07/07/2014", "01/05/2011", "01/04/1995", "15/10/2012", "11/06/2015", "25/05/2016", "17/11/2014", "30/09/2014", "01/06/2014", "28/03/2017", "19/09/1999", "11/04/2005", "01/12/2011", "01/04/1995", "01/04/2014", "01/07/2014", "29/06/2013", "01/08/2012", "11/07/2015", "01/03/2015", "01/04/2008", "01/03/2016", "01/09/2002", "01/06/2016", "01/07/2013", "01/04/2011", "01/04/1995", "01/04/2005", "31/08/2016", "20/08/2014", "21/10/2002", "12/06/2014", "01/11/2012", "30/06/2000", "01/09/2016", "24/02/2010", "01/04/1995", "01/04/2010", "01/11/2016", "31/10/1996", "17/02/2017", "05/01/2016", "01/10/2014", "21/08/2000", "01/04/2016", "01/04/2015", "05/01/2009", "26/07/2007", "01/07/2000", "01/04/1995", "01/06/2015", "01/05/2015", "01/07/2013", "20/01/2017", "01/02/2016", "15/08/2015", "01/04/1995", "15/07/2016", "25/01/2016", "01/07/2014", "01/04/1995", "01/04/2014", "01/04/1995", "01/04/1995", "18/07/2009", "01/02/2016", "18/04/2016", "04/07/2016", "01/04/1995", "01/04/1995", "01/04/1995", "01/04/2013", "01/11/2016", "10/02/2017", "22/12/2012", "01/04/2012", "01/04/1995", "02/04/2012", "01/12/2016", "17/01/2003", "01/11/2015", "01/04/2014", "16/10/2015", "01/04/2017", "01/04/1995", "19/03/2017", "01/04/2000", "01/11/2013", "16/06/2017", "04/04/2014", "01/02/2002", "12/06/2014", "01/04/2016", "01/06/2017", "01/04/2015", "01/04/2005", "01/06/2016", "01/08/2011", "01/10/2013", "31/12/1996", "01/05/2014", "18/06/2003", "01/02/1999", "04/09/1995", "01/03/2010", "16/09/2005", "01/04/1995", "29/04/2013", "20/07/2015", "01/01/2016", "01/06/2017", "01/07/2014", "18/05/2015", "22/02/2013", "01/04/2004", "01/08/2006", "01/04/1997", "01/01/2012", "01/12/2016", "10/10/2014", "01/04/2001", "01/11/2015", "27/07/2016", "15/12/2011", "01/04/2010", "22/03/1999", "16/06/2014", "08/11/2011", "01/04/1995", "21/04/2016", "01/04/1995", "15/11/2015", "01/04/1995", "03/01/2017", "01/04/1995", "01/04/1995", "23/12/2008", "18/03/2017", "01/05/2014", "22/05/2012", "31/08/2016", "16/07/2009", "01/01/2013", "31/08/2016", "23/03/2016", "01/05/2014", "14/11/2016", "01/10/2014", "01/03/2013", "15/06/1999", "01/04/2015", "01/12/2014", "01/04/1995", "29/01/2016", "01/04/1995", "08/08/2015", "01/09/2013", "28/05/2016", "13/03/2017", "01/02/2017", "02/11/2007", "01/06/2016", "13/05/2014", "01/05/2016", "01/04/1999", "01/11/2016", "01/04/2010", "01/11/2016", "31/12/2016", "01/04/2015", "01/04/1995", "20/02/2007", "12/12/2013", "15/09/2003", "01/04/1995", "30/09/2016", "01/08/2016", "01/10/2012", "01/02/2017", "01/04/2003", "10/08/2016", "01/04/2010", "08/02/2013", "03/01/2017", "01/09/2012", "12/01/2016", "01/03/2017", "01/06/2016", "15/07/2013", "11/10/2013", "15/05/2007", "21/10/2015", "21/05/2013", "11/04/2017", "01/04/2015", "01/03/2013", "01/04/2003", "08/04/2009", "24/11/2016", "10/05/2009", "23/02/2017", "18/04/2016", "24/10/1998", "30/07/2000", "01/06/2017", "25/12/2016", "11/04/2014", "01/04/2016", "01/04/2009", "01/04/1995", "01/04/2011", "04/01/2016", "09/05/2014", "23/05/2017", "01/11/2016", "03/02/2014", "04/04/2011", "12/04/2017", "17/06/1998", "01/04/1996", "01/07/2015", "19/04/2012", "29/08/1997", "14/11/2013", "15/07/2014", "01/04/2006", "22/01/2016", "29/09/2014", "19/08/2000", "01/04/1995", "01/11/1996", "23/10/2015", "01/04/2014", "01/04/1995", "31/10/2003", "22/12/2008", "06/08/2015", "30/09/2014", "01/04/2012", "02/05/2017", "01/04/1995", "01/12/2015", "14/01/2015", "29/06/2012", "01/04/2005", "01/04/2010", "27/10/2006", "07/09/2015", "04/12/2015", "01/03/2014", "06/02/2007", "25/07/1997", "01/04/2014", "08/07/2013", "01/09/2015", "01/06/2013", "16/07/2016", "21/06/2016", "01/05/2016", "01/10/1996", "01/01/2014", "01/04/2000", "01/09/2014", "08/01/2003", "31/03/2000", "14/01/2011", "01/04/1995", "04/07/2001", "23/01/2006", "01/07/2010", "01/08/1996", "01/07/2017", "02/01/2015", "01/04/1995", "18/12/2015", "03/11/2014", "01/06/2017", "01/04/1995", "25/10/2012", "16/10/2012", "01/04/2008", "01/04/2017", "20/07/2015", "01/06/2007", "01/08/2015", "01/04/1995", "01/11/1998", "15/06/2006", "01/03/2015", "02/12/2014", "01/04/2010", "25/11/2013", "13/07/2016", "01/04/1995", "01/03/2017", "06/07/2015", "18/10/2016", "18/01/2014", "26/11/2016", "01/04/2000", "08/07/1998", "01/05/2001", "26/11/2016", "08/01/2016", "20/07/2015", "01/04/1999", "02/10/2012", "31/05/2015", "21/04/2011", "26/01/2008"], ["05/08/2016", "06/04/2012", "01/04/1995", "17/08/2015", "01/09/2011", "20/07/2015", "23/03/2012", "29/11/2004", "01/07/2003", "01/04/1995", "12/03/2012", "01/04/2010", "01/03/2014", "01/04/1995", "21/05/2012", "02/11/2009", "01/06/2016", "01/04/1995", "01/04/2005", "10/01/1997", "08/05/2009", "01/04/2003", "31/05/2017", "01/11/2012", "01/11/2016", "01/04/2015", "05/09/2006", "17/04/2012", "01/04/2013", "01/04/2015", "01/07/2011", "09/12/2013", "14/10/2015", "01/04/2015", "01/03/2015", "12/02/2010", "07/03/2014", "01/04/1995", "01/04/1995", "01/02/2014", "26/09/2006", "01/02/2003", "04/05/2010", "01/08/2011", "01/04/2017", "29/10/2016", "07/09/2003", "01/04/1995", "01/04/2007", "01/04/1995", "02/08/2002", "01/09/2015", "03/07/1996", "29/04/2014", "13/07/2015", "01/03/2012", "01/04/2014", "06/06/2013", "08/10/2007", "20/09/2015", "01/05/2017", "01/04/2013", "01/04/1995", "04/05/2012", "01/06/2009", "01/04/1995", "16/11/2016", "01/07/2016", "17/02/2013", "01/06/2016", "01/07/2016", "01/04/1995", "07/02/2011", "27/05/2016", "08/03/2010", "01/04/1995", "01/04/1995", "15/07/2013", "15/09/2014", "15/03/2016", "01/07/2015", "01/04/2016", "01/11/2010", "01/03/2016", "21/03/2014", "01/07/2015", "01/05/2017", "14/02/2017", "01/04/1995", "01/06/2016", "05/07/2013", "11/04/2015", "12/12/2002", "12/01/2016", "15/07/2016", "14/03/2011", "01/04/2014", "16/09/2009", "13/01/2010", "29/09/2016", "05/06/1995", "13/04/2008", "01/04/1995", "01/04/1995", "21/03/2016", "27/10/2011", "01/11/2016", "01/04/2014", "01/10/2012", "16/09/2005", "01/08/2016", "01/04/2012", "06/10/2014", "01/04/2011", "31/03/2015", "26/06/2015", "01/07/2013", "01/04/2010", "23/05/2014", "21/10/2002", "24/10/2016", "01/10/2013", "13/10/2006", "01/04/2013", "19/03/2009", "01/04/2003", "01/04/2015", "08/08/2008", "23/06/1996", "01/04/1995", "14/12/2007", "01/11/2016", "29/04/2009", "30/10/2009", "01/04/1995", "01/04/2010", "01/01/2009", "14/10/1996", "01/04/2005", "11/04/2007", "01/04/2000", "01/07/2014", "09/01/2014", "04/09/2015", "15/03/2017", "01/04/1995", "08/06/2010", "01/01/2013", "01/08/1998", "01/04/2015", "01/12/2014", "29/09/2009", "01/12/2005", "01/12/2005", "01/07/2015", "01/06/2010", "07/09/2004", "01/10/2016", "17/12/2012", "19/11/2012", "01/09/2001", "01/02/2012", "19/04/2011", "29/06/2012", "01/04/2002", "08/06/2016", "30/06/2015", "06/04/2010", "17/04/2003", "27/04/2016", "01/04/2014", "01/05/2015", "02/10/2012", "18/07/2016", "01/04/2013", "01/07/2011", "01/04/2005", "01/04/1995", "01/01/2015", "29/06/2015", "01/04/2000", "01/04/2010", "14/06/2014", "01/04/1995", "16/06/2005", "14/09/2011", "16/03/2016", "01/10/2016", "12/01/2009", "01/04/2017", "15/04/2012", "29/11/2012", "01/10/2016", "01/06/2014", "10/03/2014", "29/06/2012", "07/04/2006", "01/04/2015", "01/04/1995", "01/09/2012", "01/05/2015", "01/04/2008", "10/05/2016", "01/04/1995", "01/04/1995", "21/03/2013", "04/01/2016", "01/05/2009", "15/04/2017", "10/09/2014", "16/11/2015", "01/10/2010", "10/08/2011", "05/12/2016", "01/11/1996", "20/08/2014", "02/04/2014", "01/07/2014", "01/05/2012", "01/04/2015", "16/05/2000", "01/10/2007", "13/01/2014", "05/01/2015", "01/10/2013", "01/04/1995", "03/04/2017", "01/07/2011", "01/10/2014", "01/04/1995", "01/07/2015", "12/01/2009", "20/11/2007", "01/04/1995", "01/11/2013", "01/04/2016", "12/10/2015", "01/09/2015", "29/08/2003", "01/08/2016", "26/02/2011", "01/02/2016", "01/10/2014", "01/01/2009", "29/10/2007", "03/07/2012", "19/03/2007", "15/11/2013", "09/09/2011", "01/12/2012", "14/03/2017", "01/04/1995", "01/04/1995", "01/04/1997", "01/03/2016", "01/04/1995", "09/08/2010", "19/07/2011", "01/04/1995", "01/06/2014", "19/11/2015", "04/10/2014", "21/08/2000", "20/05/2009", "13/04/2015", "05/10/2013", "01/04/1995", "25/05/2004", "12/10/2015", "01/11/2011", "01/09/2016", "01/01/2010", "01/04/1995", "09/05/2014", "01/11/2013", "01/10/2014", "01/04/1995", "03/09/2014", "01/04/2004", "01/10/2014", "19/01/2015", "08/06/2017", "01/04/1995", "01/04/1995", "01/07/2016", "09/02/2016", "21/04/2016", "01/04/2003", "01/12/2015", "01/04/1995", "01/04/2010", "01/04/1995", "14/02/2017", "02/11/2014", "05/11/2012", "10/07/2015", "01/09/2015", "01/04/1995", "01/12/2014", "17/08/2013", "13/07/2016", "09/03/2015", "20/08/2015", "01/08/2011", "01/01/2009", "01/09/2015", "21/02/1997", "03/09/2009", "02/03/2017", "01/04/1999", "01/11/2015", "01/01/2010", "01/04/2016", "16/05/2016", "01/04/1995", "01/01/2015", "01/05/2014", "09/09/2013", "01/10/2014", "07/04/2015", "01/01/2010", "28/09/2009", "01/12/2011", "01/04/2015", "01/05/2015", "01/01/2015", "01/04/2010", "05/10/2015", "01/02/1998", "16/03/2014", "15/05/2017", "01/08/2005", "14/01/2014", "01/12/2008", "28/09/2015", "16/07/1999", "31/03/2012", "01/04/1995", "01/01/2013", "01/04/1995", "28/03/2008", "01/09/2002", "01/04/1995", "01/04/2011", "23/03/2016", "12/05/2011", "01/01/2014", "03/03/2015", "25/07/2011", "26/05/2011", "01/06/2014", "04/12/2013", "08/03/2016", "01/10/2013", "11/07/2014", "31/10/2007", "01/04/2002", "01/07/2015", "15/03/2013", "08/09/2015", "01/10/2014", "22/12/2008", "01/05/2011", "11/04/2015", "07/05/2010", "01/10/2016", "16/01/2008", "09/01/2012", "06/06/2006", "15/11/2015", "29/07/2016", "01/08/2013", "01/04/2005", "01/04/1995", "01/07/2014", "28/10/2016", "08/02/2012", "13/03/2006", "04/10/2005", "14/11/2016", "01/12/2011", "01/09/2003", "01/09/2011", "01/01/2010", "15/11/2008", "04/12/2015", "15/03/2016", "01/07/2013", "23/03/2015", "01/04/1995", "01/07/2015", "01/04/1995", "01/04/1995", "01/04/2010", "18/11/2002", "12/12/2012", "01/10/2010", "04/08/2012", "31/10/2016", "01/07/2012", "01/04/2014", "01/04/2010", "14/01/2010", "01/04/1995", "01/03/2009", "01/07/2000", "22/04/2016", "08/02/2010", "01/03/2016", "01/04/1995", "01/04/1995", "01/04/2002", "01/10/1997", "14/11/1997", "02/06/2015", "01/04/2013", "24/06/2008", "02/01/2006", "03/08/2010", "01/09/2011", "01/10/2011", "01/03/2013", "24/12/2005", "01/03/2017", "01/04/2001", "01/04/2017", "01/12/2015", "21/10/2004", "01/02/2013", "01/04/2003", "30/09/2016", "01/04/1995", "30/07/2000", "16/03/2015", "28/06/2014", "30/01/2008", "12/04/2017", "21/05/2016", "01/11/1997", "01/04/1995", "20/06/2011", "01/09/2015", "28/11/1998", "03/09/2014", "01/04/2014", "01/04/2010", "01/06/2012", "05/06/2015", "14/11/2011", "01/12/2009", "01/01/2014", "20/09/2006", "30/09/2008", "27/12/2011", "27/04/2015", "01/04/2017", "16/03/2016", "01/04/2005", "18/01/2014", "15/10/2016", "03/10/2011", "07/09/2016", "22/07/2016", "13/01/2015", "01/03/2011", "01/04/2014", "20/02/2016", "01/04/1995", "16/09/2015", "08/01/2015", "01/04/1995", "01/04/2017", "31/10/2011", "28/06/2013", "01/04/2008", "01/04/2000", "27/04/2015", "01/12/1999", "01/05/2010", "03/07/2014", "01/03/2013", "01/09/2014", "01/12/2009", "01/04/1995", "01/04/1995", "01/04/1995", "01/04/1995", "21/10/2016", "01/04/1995", "28/08/2004", "28/08/2008", "01/04/1995", "01/09/2002", "18/10/2004", "01/11/2015", "01/05/2017", "01/04/1995", "11/08/2016", "01/02/2017", "06/03/2017"], ["12/27/2018", "10/29/2018", "12/30/2019", "11/13/2018", "03/18/2025", "02/27/2019", "04/29/2030", "11/23/2027", "10/29/2018", "05/18/2018", "09/28/2018", "05/27/2021", "11/25/2020", "09/30/2020", "05/24/2019", "11/23/2020", "10/19/2018", "02/27/2019", "01/30/2018", "02/19/2020", "09/30/2030", "12/28/2018", "05/27/2020", "09/28/2018", "02/20/2020", "01/29/2018", "08/18/2022", "01/30/2018", "09/30/2019", "05/18/2018", "10/28/2019", "10/14/2025", "02/27/2030", "09/28/2018", "05/25/2018", "02/27/2020", "09/30/2030", "05/30/2019", "02/27/2020", "10/26/2018", "10/29/2019", "05/27/2020", "07/30/2020", "04/28/2020", "11/28/2018", "06/30/2020", "05/20/2021", "05/18/2018", "09/30/2030", "11/27/2019", "01/22/2020", "04/29/2020", "10/28/2019", "11/27/2019", "03/18/2020", "04/03/2030", "02/11/2021", "10/26/2018", "05/13/2020", "11/16/2018", "11/27/2018", "11/19/2021", "04/27/2018", "10/29/2018", "10/27/2023", "06/03/2020", "03/29/2018", "04/15/2021", "10/26/2018", "12/28/2018", "04/13/2018", "07/26/2019", "01/30/2019", "02/22/2019", "01/02/2019", "12/03/2018", "03/02/2018", "11/25/2030", "09/30/2020", "05/27/2020", "12/24/2020", "10/30/2018", "11/10/2020", "11/02/2018", "10/29/2018", "11/25/2022", "11/25/2020", "04/30/2018", "02/05/2020", "08/27/2018", "01/29/2020", "10/29/2018", "10/15/2020", "11/25/2020", "05/20/2019", "07/27/2018", "06/10/2019", "02/19/2021", "10/29/2018", "12/28/2018", "01/30/2018", "10/29/2018", "11/27/2020", "04/29/2019", "11/23/2021", "02/20/2020", "02/12/2020", "10/28/2020", "11/25/2019", "05/03/2019", "01/15/2020", "07/27/2020", "11/23/2020", "11/27/2020", "03/18/2030", "05/20/2019", "12/14/2020", "10/21/2021", "02/27/2019", "11/27/2018", "10/28/2025", "02/24/2020", "09/30/2030", "02/20/2020", "08/27/2018", "06/28/2019", "05/27/2020", "10/28/2025", "11/27/2020", "02/27/2020", "02/27/2030", "12/18/2018", "10/29/2018", "11/18/2025", "11/25/2020", "11/25/2020", "10/29/2018", "10/29/2020", "03/11/2020", "12/30/2030", "04/20/2020", "02/27/2019", "09/22/2020", "04/27/2018", "08/17/2018", "09/30/2019", "03/18/2020", "10/29/2020", "11/25/2019", "10/19/2018", "02/12/2018", "05/25/2018", "04/01/2030", "04/29/2020", "02/11/2020", "11/27/2020", "11/20/2020", "09/28/2018", "05/18/2020", "10/26/2018", "10/26/2018", "11/16/2018", "10/21/2019", "11/20/2018", "03/29/2019", "12/02/2019", "10/29/2019", "01/30/2020", "11/19/2020", "01/30/2019", "01/28/2022", "01/30/2030", "03/30/2020", "11/20/2018", "09/14/2018", "08/20/2018", "09/30/2030", "05/26/2021", "11/16/2018", "11/20/2018", "11/30/2018", "11/27/2019", "05/27/2020", "10/29/2018", "12/30/2020", "10/19/2021", "09/25/2019", "04/28/2020", "10/29/2018", "12/28/2018", "09/30/2021", "06/29/2018", "09/28/2018", "08/17/2018", "02/12/2020", "05/24/2019", "12/30/2020", "11/25/2019", "10/22/2020", "05/27/2020", "10/29/2018", "10/29/2018", "11/25/2020", "12/30/2030", "10/28/2020", "04/29/2020", "10/29/2019", "12/27/2018", "08/20/2019", "09/30/2020", "03/30/2021", "11/27/2020", "12/30/2022", "09/28/2018", "10/28/2030", "04/29/2020", "11/20/2019", "11/23/2018", "05/26/2020", "11/23/2018", "02/26/2019", "06/30/2020", "01/29/2020", "10/26/2018", "10/29/2018", "09/28/2018", "05/18/2021", "11/18/2030", "11/23/2018", "02/12/2030", "09/30/2020", "11/25/2019", "11/04/2019", "10/26/2018", "02/27/2019", "06/11/2018", "11/25/2019", "09/30/2019", "10/29/2018", "01/28/2019", "05/23/2019", "05/27/2020", "09/30/2020", "01/29/2020", "09/30/2020", "02/26/2030", "01/28/2019", "06/28/2019", "05/18/2018", "04/27/2018", "01/30/2020", "02/10/2020", "03/29/2019", "10/29/2018", "05/27/2022", "11/27/2019", "10/28/2025", "08/25/2022", "04/27/2018", "09/28/2018", "02/24/2020", "09/30/2030", "03/30/2020", "12/27/2019", "10/29/2019", "09/28/2018", "12/10/2020", "11/27/2018", "10/26/2018", "10/29/2018", "01/30/2020", "08/24/2018", "05/27/2020", "05/24/2019", "11/27/2018", "12/30/2020", "04/29/2030", "05/25/2018", "05/27/2025", "12/23/2020", "02/13/2018", "12/23/2021", "11/13/2020", "05/25/2018", "02/12/2021", "09/28/2018", "01/08/2018", "01/30/2020", "02/26/2021", "11/20/2020", "01/20/2021", "04/27/2018", "05/18/2020", "03/29/2019", "10/27/2020", "10/29/2020", "01/30/2018", "10/28/2019", "02/27/2020", "09/30/2030", "11/02/2018", "06/24/2021", "03/02/2020", "04/27/2018", "11/27/2020", "09/30/2021", "05/27/2020", "02/20/2025", "01/13/2023", "11/27/2020", "08/06/2019", "04/30/2018", "12/30/2030", "12/14/2021", "01/15/2020", "11/27/2018", "02/12/2020", "12/17/2018", "02/13/2019", "04/01/2030", "04/30/2018", "10/29/2018", "11/19/2020", "03/18/2030", "12/02/2020", "05/24/2019", "02/13/2020", "11/27/2019", "05/18/2020", "09/30/2019", "05/20/2020", "11/23/2018", "11/30/2027", "05/11/2018", "05/25/2018", "09/24/2018", "11/25/2030", "11/25/2020", "02/26/2020", "10/21/2020", "11/28/2018", "04/29/2020", "02/19/2020", "04/02/2018", "02/19/2020", "04/30/2020", "10/26/2018", "05/27/2020", "11/23/2018", "02/26/2018", "02/26/2021", "11/16/2018", "11/27/2019", "07/30/2018", "05/20/2019", "01/30/2019", "08/27/2019", "08/26/2020", "11/13/2018", "11/13/2018", "09/24/2020", "07/30/2018", "12/17/2019", "10/29/2018", "11/25/2019", "04/29/2027", "05/18/2018", "03/30/2018", "05/22/2030", "11/27/2020", "03/30/2020", "05/20/2020", "05/26/2020", "09/30/2020", "11/18/2030", "10/29/2018", "02/27/2018", "10/29/2018", "09/28/2018", "11/23/2018", "05/25/2018", "04/22/2020", "05/19/2020", "05/20/2019", "10/15/2019", "02/25/2022", "02/25/2021", "04/28/2020", "04/30/2018", "11/27/2018", "10/15/2018", "05/24/2019", "05/06/2019", "12/28/2018", "11/20/2019", "02/12/2030", "09/23/2021", "09/03/2021", "08/24/2020", "02/17/2022", "11/25/2020", "02/27/2020", "01/15/2021", "09/30/2021", "04/29/2027", "02/18/2022", "10/29/2018", "10/30/2018", "11/27/2018", "10/29/2020", "03/16/2028", "03/29/2019", "02/13/2020", "08/24/2020", "11/20/2018", "10/28/2030", "02/26/2020", "11/13/2020", "11/23/2018", "11/27/2018", "02/13/2020", "04/28/2020", "06/30/2021", "01/30/2018", "04/28/2020", "02/12/2018", "11/27/2019", "11/25/2019", "10/29/2018", "11/25/2020", "05/26/2020", "05/20/2020", "09/30/2020", "12/14/2020", "10/29/2018", "11/27/2020", "02/04/2020", "11/27/2020", "10/26/2018", "11/27/2018", "04/28/2020", "02/12/2020", "08/26/2020", "04/15/2019", "08/24/2018", "09/29/2021", "11/27/2020", "02/26/2030", "01/30/2018", "04/27/2018", "04/26/2018", "11/27/2019", "02/10/2020", "06/28/2019", "11/30/2018", "10/29/2020", "10/08/2020", "01/29/2019", "02/12/2020", "09/18/2020", "11/20/2018", "02/26/2020", "10/07/2020", "05/25/2021", "10/28/2030", "11/25/2019", "09/30/2022", "11/20/2018", "10/27/2023", "09/17/2021", "01/30/2018", "05/16/2019", "03/09/2020", "10/21/2020", "08/27/2018", "08/17/2018", "04/28/2020", "11/25/2020", "12/30/2020", "10/29/2020", "11/26/2018", "11/27/2020", "11/27/2018", "05/22/2018", "09/30/2030", "04/29/2020", "09/28/2018", "10/27/2028", "09/17/2018", "12/09/2019", "02/27/2019", "05/26/2020", "10/29/2020", "10/15/2020", "05/24/2019", "05/27/2025", "05/18/2018", "11/23/2018", "01/04/2019", "09/28/2018"], ["01.04.2000", "04.05.2012", "30.04.2008", "01.04.2016", "01.04.1995", "01.04.1995", "01.08.2010", "04.09.2005", "04.06.2007", "19.05.2008", "13.07.2015", "01.06.2016", "08.05.2002", "07.07.2006", "15.04.2013", "18.05.2008", "01.04.2017", "01.04.1995", "31.05.2013", "31.08.2012", "14.01.2009", "01.06.2010", "31.05.2013", "25.09.2012", "01.04.2015", "01.04.1995", "01.04.1995", "01.04.2005", "22.03.2013", "01.04.2002", "01.04.1995", "01.04.1995", "01.04.2000", "15.06.2016", "01.04.1995", "05.09.2016", "01.04.1995", "14.06.2002", "01.09.2006", "01.04.1995", "10.05.2016", "01.04.1995", "01.04.1995", "13.02.2006", "01.04.2001", "01.03.2013", "09.10.2015", "01.04.2015", "06.08.2008", "01.04.1995", "03.03.2008", "01.04.1996", "01.06.2016", "01.09.1998", "23.07.2014", "02.01.2004", "08.10.2012", "06.12.2011", "10.02.2017", "01.04.1995", "02.04.1995", "01.04.2005", "01.06.2000", "01.04.1995", "22.05.1998", "01.04.2012", "01.04.2002", "23.12.2003", "01.04.1995", "27.03.2000", "01.04.2015", "01.09.2015", "18.01.2008", "18.12.2000", "25.11.2013", "01.06.2016", "01.04.2005", "01.04.1995", "01.09.2010", "01.04.1995", "13.12.2011", "24.05.2002", "06.10.2014", "01.06.2016", "01.07.2006", "13.05.2010", "01.04.2005", "15.04.2013", "17.10.2001", "31.01.2014", "01.04.2015", "01.04.2015", "17.03.2015", "01.06.2009", "01.04.2017", "01.04.2015", "01.11.2012", "14.01.2015", "01.04.1999", "04.01.2011", "01.01.2013", "01.04.1999", "04.11.2013", "01.04.2009", "01.04.2008", "26.04.2017", "01.04.2016", "01.04.1995", "14.06.2004", "29.04.2015", "01.04.1995", "11.09.2012", "06.07.2012", "15.10.2012", "01.04.1995", "01.04.1999", "09.09.2016", "02.03.2009", "01.11.2007", "01.04.2001", "23.06.2007", "01.04.2000", "12.12.1995", "29.03.1999", "01.06.2011", "19.03.2007", "01.04.1995", "01.04.2006", "30.05.2013", "09.07.2014", "01.04.2006", "01.04.1995", "25.03.2012", "18.04.2016", "01.12.2000", "01.02.2013", "20.07.2009", "01.07.1999", "01.04.1995", "01.04.2008", "06.04.1999", "01.07.2016", "12.09.2014", "01.04.1995", "02.01.2010", "10.10.2005", "01.04.1995", "01.09.2010", "25.12.2015", "01.08.2012", "01.04.2017", "01.04.1995", "01.05.2015", "01.04.1995", "01.04.2015", "07.06.2013", "01.04.2013", "01.08.1997", "01.04.1995", "02.03.2009", "01.04.1995", "11.01.2010", "02.04.1995", "01.04.2015", "12.04.2005", "26.06.2013", "01.04.2000", "01.04.2004", "20.12.2013", "19.11.2002", "01.04.2010", "19.08.2016", "30.04.2015", "01.04.2005", "03.09.2012", "01.04.1995", "01.04.2001", "30.11.2011", "28.08.2012", "01.04.1995", "01.11.2011", "24.06.2015", "01.04.1995", "01.04.2008", "23.08.2016", "01.04.1998", "02.02.2015", "01.09.2014", "01.04.2015", "01.04.2015", "01.07.2002", "01.04.2013", "28.09.2015", "22.06.2014", "01.04.2013", "19.04.2011", "01.06.2016", "16.10.2015", "01.09.2014", "20.03.2015", "08.02.2013", "18.06.2015", "01.07.2008", "01.04.2011", "01.04.2000", "31.05.2006", "01.04.2012", "05.05.1995", "20.12.2013", "07.04.2015", "01.04.1995", "01.04.2015", "15.10.2012", "01.04.1995", "01.04.1995", "01.10.1998", "01.04.1995", "10.09.2012", "01.04.2015", "01.04.2001", "01.12.2014", "01.04.2007", "01.04.2010", "17.05.2017", "01.04.1999", "01.04.2011", "15.11.2011", "20.05.2015", "01.04.2009", "15.03.2008", "18.04.2011", "19.05.2008", "01.05.2015", "01.04.2007", "20.11.2012", "01.04.2010", "01.09.2014", "01.04.2012", "22.04.2012", "30.05.2016", "01.04.2008", "13.02.2012", "01.04.2013", "01.04.2006", "02.06.2008", "01.04.1995", "23.06.2014", "31.01.2010", "01.04.1999", "01.11.2004", "05.05.2009", "01.04.2013", "15.10.2012", "14.02.2016", "11.06.2014", "16.12.2015", "03.07.2014", "01.04.2001", "02.05.2015", "02.10.2002", "16.08.2004", "01.09.2012", "01.04.1999", "05.01.2014", "01.08.2008", "01.04.1995", "23.08.2016", "11.03.2014", "01.04.1995", "01.08.2016", "01.04.1995", "01.04.1999", "01.04.2015", "01.09.2014", "30.06.2014", "01.04.2015", "01.04.2011", "01.04.2010", "01.08.2015", "01.01.2013", "17.08.1996", "10.12.2001", "01.01.2013", "05.08.2011", "01.04.2014", "20.06.2003", "01.04.2017", "01.11.2006", "28.09.2005", "01.09.2003", "28.05.2013", "31.05.2010", "01.04.2001", "30.10.2002", "01.04.1995", "13.08.2008", "01.04.2007", "01.04.1995", "01.04.1995", "01.04.2014", "10.09.2012", "01.04.2016", "01.04.2010", "02.11.2009", "15.10.2012", "01.04.2009", "01.04.2015", "01.04.2001", "21.12.2006", "01.04.2014", "01.04.2001", "11.11.2013", "14.09.2016", "27.10.2011", "15.10.2012", "01.04.2015", "01.12.2003", "03.01.2007", "01.04.2010", "01.11.2013", "01.04.2014", "01.04.1995", "01.04.2005", "01.04.1995", "29.07.2015", "01.04.1995", "01.04.2016", "02.04.1995", "01.10.2015", "13.07.2005", "29.05.2014", "24.10.2002", "01.02.2008", "01.09.2003", "01.04.2013", "01.04.1999", "20.12.2013", "01.04.1995", "15.01.2007", "01.01.2008", "01.05.2001", "01.04.2013", "23.02.2017", "01.04.2010", "21.06.2010", "21.11.2005", "01.04.1999", "01.07.2016", "01.06.2013", "22.01.2016", "01.04.2015", "01.04.2015", "01.04.1995", "01.09.2013", "01.04.2013", "01.03.2013", "01.04.2013", "29.06.1998", "01.04.2014", "01.04.2005", "10.03.2011", "01.03.2009", "01.04.2005", "01.04.2007", "01.12.2016", "01.04.2010", "01.04.1995", "01.04.2011", "01.07.2015", "01.04.2001", "16.11.1998", "01.07.2012", "15.04.2010", "21.12.2015", "25.12.2014", "08.11.2009", "07.08.2015", "16.11.2012", "01.04.1999", "16.09.2011", "01.12.2015", "01.04.2012", "01.04.2015", "31.07.2014", "01.04.2009", "01.04.1995", "24.04.2002", "21.01.2013", "01.04.1999", "01.04.1995", "16.07.2012", "01.04.1995", "01.04.1995", "01.04.2004", "20.12.2013", "01.04.1998", "26.01.2015", "01.09.2014", "01.05.2014", "03.04.2012", "01.04.2015", "04.01.2016", "01.09.2012", "01.04.1996", "01.09.2010", "16.01.2017", "01.09.2016", "01.04.2014", "26.06.2015", "23.12.2013", "12.07.2010", "01.04.2017", "01.12.2014", "01.04.2007", "20.05.2009", "01.04.1998", "01.04.1995", "01.11.2004", "23.09.2010", "22.06.2009", "01.04.1995", "01.07.1996", "01.08.2016", "22.12.2015", "15.03.2012", "13.07.2007", "27.07.2012", "06.01.1997", "10.08.2005", "31.05.2013", "23.10.1997", "01.08.2013", "09.11.2012", "26.06.2015", "26.12.2012", "01.07.2011", "01.04.2001", "28.02.2012", "20.12.2013", "21.01.2005", "15.08.2016", "22.12.2011", "01.04.1995", "17.02.2016", "01.04.2002", "06.04.1999", "01.04.1995", "31.01.2010", "01.04.1995", "01.04.1995", "01.04.2002", "12.11.2009", "14.03.2011", "15.08.2016", "29.09.2015", "07.04.2008", "01.04.2000", "29.04.2015", "01.01.2016", "01.04.2001", "01.04.2015", "05.07.2005", "01.06.2011", "01.04.1995", "01.04.2015", "17.02.2006", "01.04.1995", "01.04.1995", "06.07.1998", "01.09.2013", "01.04.1995", "12.06.2012", "01.04.1997", "20.11.1997", "01.07.2008", "01.04.1999", "01.04.2005", "05.06.2014", "01.04.2014", "01.04.2002", "12.01.2004", "01.04.2010", "01.07.2008", "01.04.2000", "01.11.2015", "27.08.1998", "01.04.1995", "26.04.2017", "01.04.2012", "01.04.2001", "25.01.2017", "01.01.2013", "01.01.2016", "01.04.1995", "07.01.2011", "01.06.2012", "01.04.1995", "04.02.2013", "01.04.1995", "16.12.2015"], ["09/11/2028", "11/27/2018", "08/06/2038", "08/12/2019", "08/17/2021", "04/05/2022", "11/18/2024", "02/28/2020", "10/03/2033", "02/01/2019", "03/28/2018", "02/19/2019", "01/26/2019", "05/21/2018", "01/21/2020", "02/26/2021", "10/19/2018", "09/12/2019", "06/23/2025", "01/28/2028", "02/15/2018", "01/11/2018", "09/15/2017", "01/05/2022", "02/28/2019", "03/21/2018", "10/01/2029", "01/28/2019", "04/24/2026", "05/15/2024", "09/14/2018", "10/05/2017", "11/12/2027", "09/24/2026", "02/22/2028", "07/15/2037", "12/29/2017", "06/01/2021", "02/08/2018", "11/15/2017", "01/23/2018", "07/27/2026", "11/15/2030", "06/13/2025", "05/15/2026", "07/01/2018", "06/01/2020", "05/15/2029", "02/26/2019", "09/27/2017", "07/20/2018", "06/20/2019", "01/21/2028", "09/08/2017", "01/15/2030", "03/08/2019", "05/15/2019", "12/15/2034", "09/01/2028", "02/14/2025", "03/23/2028", "11/15/2030", "12/28/2020", "11/26/2019", "11/28/2017", "01/30/2020", "03/17/2031", "10/26/2017", "09/06/2024", "05/06/2021", "06/22/2020", "10/09/2019", "12/07/2028", "11/20/2017", "12/14/2018", "09/01/2021", "12/20/2017", "08/02/2019", "04/01/2019", "01/10/2025", "11/15/2024", "12/20/2027", "04/17/2028", "10/07/2021", "10/08/2027", "08/28/2019", "07/30/2020", "06/07/2021", "11/26/2027", "02/12/2018", "05/29/2026", "07/01/2037", "05/15/2023", "04/30/2021", "05/15/2025", "08/07/2028", "05/15/2030", "12/30/2027", "10/24/2019", "06/10/2020", "09/27/2027", "11/30/2020", "04/30/2026", "09/18/2018", "12/15/2033"], ["SIOUX", "JOHNSON", "MONROE", "JACKSON", "FRANKLIN", "LEE", "WINNESHIEK", "CLAY", "STATE TOT", "EMMET", "IOWA", "MARSHALL", "O BRIEN", "DES MOINES", "BENTON", "BUENA VIST", "HARRISON", "MARION", "CLAYTON", "CLINTON", "POLK", "MAHASKA", "PAGE", "WAPELLO", "HENRY", "HARDIN", "BUTLER", "TAMA", "WEBSTER", "SCOTT", "PALO ALTO", "STORY", "WASHINGTON", "POTTAWATTA", "APPANOOSE", "HAMILTON", "OSCEOLA", "CASS", "KOSSUTH", "ADAIR", "TAYLOR", "VAN BUREN", "MUSCATINE", "UNION", "HOWARD", "CLARKE", "CHICKASAW", "WINNEBAGO", "SHELBY", "AUDUBON", "RINGGOLD", "FREMONT", "POWESHIEK", "MITCHELL", "GREENE", "DELAWARE", "JASPER", "MILLS", "MONONA", "PLYMOUTH", "HUMBOLDT", "WAYNE", "CERRO GORD", "ALLAMAKEE", "LUCAS", "LOUISA", "CALHOUN", "DECATUR", "GRUNDY", "CRAWFORD", "FLOYD", "HANCOCK", "CARROLL", "CENT. OFF", "BREMER", "CEDAR", "MADISON", "DAVIS", "WORTH", "KEOKUK", "DALLAS", "WARREN", "WOODBURY", "BOONE", "SAC", "CHEROKEE", "FAYETTE", "MONTGOMERY", "DICKINSON", "GUTHRIE", "DUBUQUE", "WRIGHT", "JONES", "LINN", "LYON", "POCAHONTAS", "BUCHANAN", "JEFFERSON", "ADAMS", "IDA"], ["$31,658", "$4,526", "$1,013", "$2,554", "$17,030", "$6,641", "$616", "$8,982", "$3,227", "$93,839", "$4,237", "$1,269", "$3,869", "$203", "$915", "$507", "$747", "$4,849", "$2,782", "$17,126", "$14,205", "$86,642", "$23,768", "$7,894", "$2,344", "$2,313", "$55,545", "$97,590", "$831", "$152,596", "$53,394", "$93,542", "$101,559", "$19,152", "$106", "$36,514", "$12,229", "$7,204", "$182,378", "$2,088", "$5,304", "$10,874", "$3,729", "$1,260", "$174", "$8,821", "$33,174", "$5,936", "$1,968", "$1,191", "$3,308", "$67,084", "$1,699", "$1,720", "$1,579", "$19,618", "$45,059", "$362,064", "$6,650", "$15,606", "$2,244", "$107,104", "$85,262", "$63,021", "$3,504", "$25,351", "$3,848", "$62,503", "$13,936", "$1,743", "$2,459", "$4,402", "$0", "$23,108", "$16,282", "$18,045", "$401,523", "$4,885", "$4,401", "$1,919", "$23,912", "$1,224", "$26,552", "$568", "$1,095", "$2,519", "$399", "$2,935", "$8,733", "$204,201", "$3,052", "$220,063", "$3,356,440", "$61,264", "$3,945", "$3,391", "$4,054", "$11,115", "$1,066", "$2,314"], ["$339", "$344,817", "$68,936", "$49,048", "$7,038", "$47,954", "$3,288", "$1,082", "$447", "$43,691", "$82,383", "$672", "$936", "$6,526", "$9,145", "$496", "$15,520", "$180", "$2,457", "$2,105", "$4,232", "$63,730", "$6,090", "$5,688", "$2,617", "$2,742", "$41,813", "$4,917", "$78,473", "$10,779", "$16,821", "$1,021", "$2,666", "$4,768", "$1,343", "$3,292", "$11,660", "$306", "$9,064", "$1,218", "$85,156", "$77-", "$42,203", "$16,557", "$6,353", "$1,479", "$134,109", "$205", "$10,283", "$1,098", "$323,131", "$9,129", "$48,119", "$3,935-", "$201,911", "$44,412", "$12,397", "$0", "$2,332", "$57,372", "$16,413", "$3,189", "$2,432", "$665", "$100,950", "$1,189", "$24,211", "$204,384", "$1,280", "$3,006", "$72,925", "$2,977", "$20,762", "$26,710", "$27,689", "$8,083", "$25,195", "$9,894", "$358", "$3,608", "$123,243", "$3,391", "$4,735", "$6,960", "$87,864", "$1,984", "$8,301", "$1,015", "$1,217", "$13,760", "$769,734", "$32,674", "$3,172", "$110", "$4,069,413", "$223,431", "$757", "$1,428", "$10,399", "$3,797"], ["14/03/2016", "23/05/2016", "21/04/2016", "16/03/2016", "25/05/2016", "06/06/2016", "20/05/2016", "31/05/2016", "27/05/2016", "01/06/2016", "30/03/2016", "24/05/2016", "03/06/2016", "16/03/2016", "08/03/2016", "02/06/2016", "11/04/2016", "12/04/2016", "09/03/2016", "24/06/2016", "28/04/2016", "11/03/2016", "27/06/2016", "17/05/2016", "24/06/2016", "21/06/2016", "20/05/2016", "11/04/2016", "21/03/2016", "30/03/2016", "14/06/2016", "17/03/2016", "17/06/2016", "20/04/2016", "16/03/2016", "05/03/2016", "18/03/2016", "29/06/2016", "05/04/2016", "24/03/2016", "03/05/2016", "21/04/2016", "15/06/2016", "20/06/2016", "05/04/2016", "16/03/2016", "29/03/2016", "16/03/2016", "20/06/2016", "18/05/2016", "09/05/2016", "29/05/2016", "12/04/2016", "20/03/2016", "04/05/2016", "30/03/2016", "23/06/2016", "15/06/2016", "26/05/2016", "01/03/2016", "08/06/2016", "23/03/2016", "29/04/2016", "20/03/2016", "18/03/2016", "19/05/2016", "19/05/2016", "12/04/2016", "16/05/2016", "07/06/2016", "27/05/2016", "23/06/2016", "29/06/2016", "14/06/2016", "10/06/2016", "13/05/2016", "15/04/2016", "31/05/2016", "20/05/2016", "21/04/2016", "29/04/2016", "14/03/2016", "19/05/2016", "29/03/2016", "28/06/2016", "14/03/2016", "05/05/2016", "05/05/2016", "10/06/2016", "20/04/2016", "22/04/2016", "18/03/2016", "27/04/2016", "28/05/2016", "20/04/2016", "10/06/2016", "04/03/2016", "30/03/2016", "21/05/2016", "25/05/2016", "02/06/2016", "20/04/2016", "27/06/2016", "10/03/2016", "17/05/2016", "10/06/2016", "16/05/2016", "31/05/2016", "03/05/2016", "06/04/2016", "03/06/2016", "04/04/2016", "29/03/2016", "25/05/2016", "09/03/2016", "12/05/2016", "18/03/2016", "14/04/2016", "08/06/2016", "11/05/2016", "06/04/2016", "17/03/2016", "14/03/2016", "11/04/2016", "02/03/2016", "03/03/2016", "16/03/2016", "21/03/2016", "15/06/2016", "20/04/2016", "11/05/2016", "16/05/2016", "12/05/2016", "20/04/2016", "17/05/2016", "21/03/2016", "15/04/2016", "16/03/2016", "13/05/2016", "28/04/2016", "31/03/2016", "03/05/2016", "18/03/2016", "21/04/2016", "21/03/2016", "02/03/2016", "11/05/2016", "07/06/2016", "09/05/2016", "17/06/2016", "05/05/2016", "30/05/2016", "27/06/2016", "25/04/2016", "11/04/2016", "11/03/2016", "23/03/2016", "10/06/2016", "10/03/2016", "28/04/2016", "13/06/2016", "20/06/2016", "08/06/2016", "29/06/2016", "14/04/2016", "28/04/2016", "10/05/2016", "31/05/2016", "13/05/2016", "27/04/2016", "26/04/2016", "09/05/2016", "20/05/2016", "03/05/2016", "19/04/2016", "01/04/2016", "15/04/2016", "08/03/2016", "24/06/2016", "08/04/2016", "04/05/2016", "19/05/2016", "08/03/2016", "20/05/2016", "08/04/2016", "15/03/2016", "14/06/2016", "04/03/2016", "01/03/2016", "11/04/2016", "27/04/2016", "03/05/2016", "12/05/2016", "05/04/2016", "01/03/2016", "17/06/2016", "05/05/2016", "03/03/2016", "01/04/2016", "27/04/2016", "19/05/2016", "21/04/2016", "16/05/2016", "18/03/2016", "08/04/2016", "09/05/2016", "25/05/2016", "24/03/2016", "16/05/2016", "13/06/2016", "19/04/2016", "15/03/2016", "29/02/2016", "22/03/2016", "14/06/2016", "24/03/2016", "25/05/2016", "20/05/2016", "01/06/2016", "14/06/2016", "09/06/2016", "15/04/2016", "07/04/2016", "10/06/2016", "19/04/2016", "29/06/2016", "20/03/2016", "22/04/2016", "27/06/2016", "09/03/2016", "18/05/2016", "07/03/2016", "07/04/2016", "15/06/2016", "24/03/2016", "16/05/2016", "15/06/2016", "11/03/2016", "29/04/2016", "23/06/2016", "19/04/2016", "04/04/2016", "11/05/2016", "10/06/2016", "10/03/2016", "28/06/2016", "11/05/2016", "11/04/2016", "29/04/2016", "31/05/2016", "25/05/2016", "08/03/2016", "16/06/2016", "22/03/2016", "29/06/2016", "02/03/2016", "30/04/2016", "04/04/2016", "27/05/2016", "01/06/2016", "04/05/2016", "18/05/2016", "09/06/2016", "15/03/2016", "08/06/2016", "12/04/2016", "27/05/2016", "27/05/2016", "21/04/2016", "06/04/2016", "13/05/2016", "14/03/2016", "16/03/2016", "23/06/2016", "09/05/2016", "01/04/2016", "30/03/2016", "29/06/2016", "06/06/2016", "06/04/2016", "13/05/2016", "07/03/2016", "29/03/2016", "28/06/2016", "08/03/2016", "01/03/2016", "01/06/2016", "28/06/2016", "06/06/2016", "02/03/2016", "28/06/2016", "25/05/2016", "26/05/2016", "23/03/2016", "28/06/2016", "10/06/2016", "24/05/2016", "16/03/2016", "31/05/2016", "14/03/2016", "11/03/2016", "24/03/2016", "02/03/2016", "18/05/2016", "16/03/2016", "21/04/2016", "20/05/2016", "04/05/2016", "04/05/2016", "16/06/2016", "21/04/2016", "21/04/2016", "30/03/2016", "04/03/2016", "21/04/2016", "03/03/2016", "11/03/2016", "18/05/2016", "21/06/2016", "14/03/2016", "24/03/2016", "09/03/2016", "31/05/2016", "07/06/2016", "01/06/2016", "17/06/2016", "23/03/2016", "08/06/2016", "21/06/2016", "17/03/2016", "06/06/2016", "21/03/2016", "08/06/2016", "07/06/2016", "16/05/2016", "17/05/2016", "29/03/2016", "17/05/2016", "23/03/2016", "08/04/2016", "13/05/2016", "14/04/2016", "31/05/2016", "04/03/2016", "08/04/2016", "23/06/2016", "13/05/2016", "25/05/2016", "21/03/2016", "05/04/2016", "16/05/2016", "26/03/2016", "26/05/2016", "02/03/2016", "20/06/2016", "22/03/2016", "13/05/2016", "22/03/2016", "07/03/2016", "08/03/2016", "12/05/2016", "17/06/2016", "08/06/2016", "31/05/2016", "04/05/2016", "11/05/2016", "07/03/2016", "09/03/2016", "29/02/2016", "01/04/2016", "15/04/2016", "22/06/2016", "26/04/2016", "24/06/2016", "23/03/2016", "17/05/2016", "22/06/2016", "06/05/2016", "06/04/2016", "17/05/2016", "14/04/2016", "11/05/2016", "24/03/2016", "09/05/2016", "15/04/2016", "12/04/2016", "27/05/2016", "18/05/2016", "13/06/2016", "25/03/2016", "21/04/2016", "29/06/2016", "28/06/2016", "09/03/2016", "22/04/2016", "18/05/2016", "07/03/2016", "31/05/2016", "07/04/2016", "01/03/2016", "28/04/2016", "07/03/2016", "09/06/2016", "07/03/2016", "31/05/2016", "29/02/2016", "02/03/2016", "14/03/2016", "15/06/2016", "08/03/2016", "10/03/2016", "03/06/2016", "17/05/2016", "16/06/2016", "18/05/2016", "22/04/2016", "21/06/2016", "24/06/2016", "01/06/2016", "08/04/2016", "18/05/2016", "27/04/2016", "02/06/2016", "04/03/2016", "22/04/2016", "17/03/2016", "17/06/2016", "12/04/2016", "08/03/2016", "22/04/2016", "20/04/2016", "20/05/2016", "10/06/2016", "04/04/2016", "11/04/2016", "01/04/2016", "01/04/2016", "20/06/2016", "29/04/2016", "27/05/2016", "21/03/2016", "24/05/2016", "31/05/2016", "19/03/2016", "25/05/2016", "24/05/2016", "14/06/2016", "07/06/2016", "26/05/2016", "19/04/2016", "17/06/2016", "09/06/2016", "29/04/2016", "19/04/2016", "11/03/2016", "20/05/2016", "29/04/2016", "17/03/2016", "09/06/2016", "12/04/2016", "28/06/2016", "02/03/2016", "28/06/2016", "06/06/2016", "20/04/2016", "10/04/2016", "06/05/2016", "07/06/2016", "14/04/2016", "16/03/2016", "30/03/2016", "11/04/2016", "14/06/2016", "27/06/2016", "26/05/2016", "20/04/2016", "07/04/2016", "13/04/2016", "15/03/2016", "20/05/2016", "13/04/2016", "30/04/2016", "28/02/2016", "14/03/2016", "12/05/2016", "07/04/2016", "02/03/2016", "25/04/2016", "13/03/2016", "16/03/2016", "11/04/2016", "17/06/2016", "10/03/2016", "15/04/2016", "08/04/2016", "02/06/2016", "10/06/2016", "18/03/2016", "22/06/2016", "16/05/2016"], ["19.09.2014", "24.06.2016", "02.08.2011", "01.04.2004", "01.01.2017", "01.04.2016", "22.03.2016", "01.04.2009", "01.04.2017", "05.10.2014", "21.03.2013", "08.08.2016", "06.03.2017", "01.04.2007", "01.04.2007", "22.02.2013", "01.12.2016", "30.09.2016", "01.10.2009", "01.04.2015", "28.11.2016", "08.06.2016", "17.10.2016", "01.04.2014", "18.05.2009", "01.02.2016", "01.04.2012", "24.12.2011", "01.04.2013", "25.04.2017", "24.10.2011", "14.11.2016", "01.04.2015", "23.11.2016", "17.12.2007", "01.04.2011", "01.04.2017", "02.08.2015", "01.04.2016", "01.04.2007", "01.04.2011", "14.08.2014", "29.04.2016", "16.01.2013", "22.02.2013", "01.04.2015", "30.04.2010", "01.04.2008", "15.05.2014", "01.04.2012", "01.04.2014", "03.06.2015", "01.04.2015", "15.12.2015", "01.11.2006", "01.04.2016", "29.07.2016", "01.04.2011", "01.08.2014", "01.04.2014", "28.09.2016", "01.04.2016", "09.11.2015", "21.06.2017", "01.04.2015", "15.08.2016", "03.06.2015", "01.04.2016", "25.03.2014", "01.04.2015", "01.04.2014", "15.05.2015", "01.04.2015", "01.04.2015", "18.03.2016", "01.04.2015", "03.12.2015", "30.11.2016", "01.04.2017", "01.04.2015", "01.04.2008", "25.03.2014", "01.04.2016", "04.04.2017", "01.10.2004", "22.02.2013", "01.04.2017", "01.04.2014", "13.07.2011", "30.05.2016", "05.05.2015", "14.11.2016", "17.12.2017", "08.05.2017", "13.08.2010", "01.04.2014", "31.03.2015", "01.02.2017", "01.04.2013", "01.04.2008", "01.12.2014", "01.04.2004", "01.04.2012", "01.04.2017", "31.07.2015", "01.04.2016", "01.04.2017", "12.08.2016", "01.04.2014", "01.04.2014", "26.07.2017", "01.04.2013", "01.04.2014", "22.09.2016", "19.06.2010", "01.04.2010", "01.04.2017", "21.10.2015", "01.04.2016", "19.05.2017", "01.04.2008", "01.04.2015", "27.07.2008", "30.10.2009", "18.11.2015", "24.09.2006", "01.04.2017", "07.06.2010", "01.04.2013", "14.08.2010", "01.04.2011", "01.04.2007", "17.04.2017", "31.05.2016", "31.05.2016", "01.04.2015", "04.07.2014", "22.03.2016", "01.12.2015", "06.12.2016", "04.06.2017", "01.04.2007", "02.07.2013", "25.07.2016", "01.04.2012", "22.12.2016", "01.09.2015", "13.10.2016", "01.04.2014", "01.04.2011", "02.12.2014", "27.04.2017", "10.05.2017", "15.12.2014", "31.03.2017", "01.04.2016", "01.04.2015", "08.06.2017", "01.04.2015", "03.12.2015"], ["2016-04-11", "2015-01-26", "2016-08-18", "2014-12-01", "2014-12-01", "2016-01-26", "2014-11-14", "2015-09-30", "2017-04-19", "2016-01-06", "2016-09-20", "2015-04-20", "2015-12-28", "2017-03-17", "2016-12-13", "2014-09-12", "2014-10-28", "2014-09-24", "2015-07-02", "2015-05-14", "2017-03-28", "2016-08-02", "2015-03-31", "2015-08-11", "2015-08-06", "2016-06-28", "2015-03-05", "2016-06-07", "2016-05-03", "2015-12-22", "2015-03-21", "2015-05-12", "2016-11-28", "2016-02-11", "2015-03-20", "2014-09-18", "2016-11-30", "2016-11-01", "2014-11-06", "2016-04-26", "2014-10-24", "2015-10-15", "2014-10-13", "2015-11-03", "2015-02-24", "2015-01-13", "2016-09-23", "2016-02-08", "2017-01-24", "2017-01-26", "2016-10-20", "2015-06-02", "2015-12-18", "2015-08-27", "2016-03-16", "2017-03-07", "2015-08-13", "2014-11-10", "2016-08-24", "2015-12-15", "2015-09-22", "2014-09-02", "2015-04-03", "2016-03-08", "2016-11-15"], ["-0.42103", "-0.28564", "-0.315299", "-0.192", "-0.416126", "-0.398792", "0.02726", "-0.28215", "0.02127", "-0.334353", "0.03395", "0.21807", "-0.134167", "-0.1854", "-0.44913", "-0.37161", "0.08413", "-0.560681", "-0.336861", "-0.32335", "0.00754", "-0.35143", "-0.14463", "-0.30262", "0.04575", "-0.16428", "-0.35188", "-0.28953", "-0.35564", "-0.25002", "-0.17886", "0.10297", "-0.3461444", "-0.19389", "0.08832", "0.09148", "-0.06053", "-0.13231", "-0.44066", "-0.438257", "-0.51599", "-0.21004", "0.09059", "-0.42445", "-0.4234027", "0.046005", "-0.294625", "0.05468", "-0.411099", "-0.39736", "0.02848", "-0.43267", "0.09272", "-0.040585", "-0.386198", "0.11344", "-0.2129"], ["0.041024", "0.0430336", "0.0425868", "0.0435417", "0.00913138", "0.0324549", "0.0257728", "0.0337141", "0.0100725", "0.0363565", "0.0156132", "0.0403216", "0.0363565", "0.0109518", "0.0102305", "0.0160552", "0.027129", "0.0313153", "0.0191448", "0.00580707", "0.047128", "0.0307474", "0.0347175", "0.0435417", "0.0301335", "0.0324549", "0.0257728", "0.027129", "0.0485433", "0.0363565", "0.0363565", "0.0160342", "0.0382925", "0.00829649", "0.0244417", "0.00418451", "0.0382925", "0.0100725", "0.027129", "0.0220742", "0.00535696", "0.0363565", "0.0109518", "0.0363565", "0.028145", "0.0347175", "0.0174272", "0.00580707", "0.0170296", "0.0408624", "0.0363565", "0.0363565", "0.027129", "0.0228039", "0.00272267", "0.0349173", "0.0435417", "0.0352009", "0.0324549", "0.0126642", "0.0207237", "0.027129", "0.0207237", "0.0347175", "0.0235853", "0.0415465", "0.021588", "0.0435417", "0.0430336", "0.00800137", "0.0111083", "0.0408624", "0.0115885", "0.0443795", "0.00953376", "0.0160552", "0.0425868", "0.028145", "0.0363565", "0.0347175", "0.0156132", "0.0342309", "0.00418451", "0.0324549", "0.0486287", "0.0486287", "0.0382925", "0.0260272", "0.0430336", "0.0228039", "0.027129", "0.0347175", "0.0477793", "0.0363565", "0.0160552", "0.0156132", "0.0430336", "0.0342309", "0.0101489", "0.0382925", "0.0115885", "0.0430336", "0.0363565", "0.0324549", "0.0349173", "0.0238063", "0.0412039", "0.0412039", "0.0382925", "0.00913138", "0.0486287", "0.0289176", "0.0301335", "0.0465851", "0.00580707", "0.0363565", "0.0382925", "0.0347175", "0.027129", "0.0485433", "0.0102305", "0.027129", "0.0430336", "0.0438394", "0.0435417", "0.0324549", "0.0399794", "0.00418451", "0.0289176", "0.0191448", "0.0347175", "0.00742868", "0.0437991", "0.0156132", "0.0403216", "0.00995495", "0.0486287", "0.0100725", "0.0435417", "0.0485433", "0.0363565", "0.0303876", "0.0160342", "0.0426733", "0.0109518", "0.0485433", "0.0170296", "0.00652958", "0.0425868", "0.0322986", "0.0160552", "0.0363565", "0.0101247", "0.00580707", "0.0342309", "0.0382621", "0.00418451", "0.0465851", "0.0485433", "0.021588", "0.0174272", "0.00418451", "0.0363565", "0.047128", "0.0322986", "0.0363565", "0.0322986", "0.0415465", "0.0201549", "0.0435417", "0.00299232", "0.00535696", "0.0238063", "0.0382925", "0.027129", "0.0170296", "0.0147468", "0.00829649", "0.0349173", "0.0102305", "0.0403216", "0.0109518", "0.0430336", "0.0131255", "0.0430336", "0.0235853", "0.0403216", "0.0408624", "0.0174272", "0.0363565", "0.0430336", "0.021588", "0.00800137", "0.0235348", "0.0430336", "0.0486287", "0.0486287", "0.00535696", "0.0425868", "0.0435417", "0.0399794", "0.0139991", "0.0189861", "0.0270539", "0.0109518", "0.0485433", "0.00580707", "0.0102305", "0.0403216", "0.0235348", "0.0342309", "0.0415465", "0.0313153", "0.021588", "0.0313153", "0.0126642", "0.0412039"], ["5147290.17", "5149018.49", "5150358.46", "5146972.26", "5146910.77", "5146852.17", "5147345.88", "5149097.47", "5147269.57", "5150734.83", "5146868.25", "5149135.5", "5146901.6", "5148964.61", "5146867.85", "5148839.44", "5147015.5", "5146868.09", "5149218.2", "5149671.9", "5147187.23", "5148558.23", "5149515.98", "5147059.92", "5146927.73", "5148663.36", "5147108.78", "5148282.7", "5146920.45", "5150623.91", "5146984.69", "5148752.04", "5150157.28", "5146899.7", "5150255.36", "5150711.26", "5149172.42", "5149695.89", "5147292.31", "5146889.14", "5148282.73", "5148726.27", "5149219.44", "5150625.7", "5150399.57", "5148943.13"], ["02/28/2020", "10/27/2020", "03/14/2022", "08/28/2020", "04/27/2020", "08/21/2020", "08/14/2020", "01/28/2020", "02/23/2021", "07/27/2020", "02/24/2021", "02/14/2020", "02/28/2022", "08/10/2020", "08/24/2020", "11/24/2020", "08/10/2020", "01/17/2020", "04/06/2020", "04/13/2020", "07/28/2020", "03/13/2020", "02/14/2022", "09/29/2020", "02/28/2020", "08/23/2022", "02/28/2022", "07/24/2020", "03/27/2020", "01/27/2020", "02/28/2022", "09/16/2020", "08/21/2020", "02/16/2021", "02/28/2022", "01/27/2021", "05/22/2020", "02/28/2020", "01/27/2020", "08/28/2020", "05/28/2020", "08/14/2020", "05/01/2020", "03/29/2022", "05/22/2020", "03/25/2020", "08/23/2022", "02/23/2022", "05/27/2022", "04/27/2020", "12/22/2020", "02/28/2020", "05/28/2021", "02/28/2022", "12/28/2021", "11/24/2020", "04/27/2020", "02/23/2021", "12/29/2020", "08/28/2020", "01/27/2021", "05/17/2021", "05/28/2021", "03/14/2022", "02/26/2021", "02/14/2020", "08/28/2020", "01/31/2022", "06/29/2020", "03/30/2021", "03/28/2022", "05/24/2021", "05/28/2021", "08/21/2020", "01/17/2020", "04/18/2022", "02/07/2020", "03/27/2020", "07/24/2020", "08/23/2022", "01/27/2020", "02/28/2022", "03/13/2020", "03/27/2020", "03/29/2021", "02/28/2020", "02/28/2022", "03/13/2020", "04/27/2022", "11/24/2020", "08/24/2022", "02/28/2022", "03/29/2022", "03/29/2021", "02/14/2020"], ["11/24/2017", "08/21/2017", "07/27/2017", "08/24/2018", "08/28/2017", "08/28/2017", "02/26/2018", "10/27/2017", "10/13/2017", "10/06/2017", "03/16/2018", "10/18/2017", "08/23/2017", "08/28/2017", "02/28/2018", "09/13/2017", "02/28/2018", "08/24/2017", "02/14/2018", "07/27/2017", "02/28/2018", "08/28/2017", "02/28/2018", "08/07/2017", "09/27/2017", "02/23/2018", "10/27/2017", "08/17/2017", "02/21/2018", "01/24/2018", "02/28/2019", "08/10/2018", "03/14/2019", "07/27/2018", "02/28/2018", "08/24/2017", "09/29/2017", "10/27/2017", "02/23/2018", "09/29/2017", "01/17/2018", "09/14/2017", "09/29/2017", "02/23/2018", "03/29/2018", "09/13/2017", "09/28/2017", "07/31/2017", "11/27/2017", "08/28/2017", "08/14/2017", "02/28/2018", "03/29/2018", "07/27/2017", "02/28/2018", "09/29/2017", "03/27/2018", "07/17/2017", "07/27/2017", "08/24/2017", "08/24/2017", "07/27/2017", "08/10/2018", "03/30/2018", "03/25/2019", "02/28/2018", "03/13/2019", "05/22/2018", "02/23/2018", "09/22/2017", "05/01/2019", "02/22/2018", "08/14/2017", "02/28/2019", "08/28/2017", "10/27/2017", "08/28/2017", "02/28/2018", "08/14/2017", "03/29/2018", "02/28/2019", "07/28/2017", "02/14/2018", "02/23/2018", "02/28/2018", "04/27/2018", "08/16/2018", "09/28/2018", "02/14/2018", "08/24/2017", "08/28/2017", "02/21/2018", "07/28/2017", "01/24/2018", "03/27/2018"], ["0.0511602", "0.128697", "0.0169538", "0.109872", "0.109872", "0.0303117", "0.121765", "0.0450162", "0.0204885", "0.0309805", "0.0536907", "0.259231", "0.107869", "0.00851843", "0.0638026", "0.521782", "0.0262442", "0.00966313", "0.00429685", "0.0101595", "0.00415197", "0.00962336", "0.0299573", "0.0450162", "0.0361886", "0.0143454", "0.121767", "0.00543017", "0.487267", "0.00444395", "0.0262442", "0.0265051", "0.0155969", "0.176127", "0.0598007", "0.10696"], ["0.20086", "0.0548184", "0.65495", "0.328715", "0.0451113", "1.31486", "2.62972", "0.0802094", "0.0119442", "0.65495", "0.0972372", "0.0119442", "0.191193", "0.516423", "0.20917", "0.0079953", "0.0802094", "0.0238883", "0.20917", "0.106269", "0.106269", "0.012956", "0.657431", "0.0962169", "0.212538", "0.0348023", "0.01796", "0.194474", "0.00602088", "0.425076", "0.0621465", "0.0477766", "0.0231759", "1.52955", "0.425076", "0.0396837"], ["-151.39949", "-151.33291", "-151.33418", "-151.39382", "-151.51462", "-151.33204", "-151.33204", "-151.20937", "-151.33418", "-151.41408", "-151.48972", "-151.48972", "-151.33291", "-151.25519", "-151.56612", "-151.41408", "-151.32963", "-151.52027", "-151.32963", "-151.35951", "-151.58345", "-151.33204", "-151.37441", "-151.3427", "-151.33418", "-151.42126", "-151.33652", "-151.3427", "-151.33652", "-151.48972", "-151.41408", "-151.22665", "-151.32963", "-151.39949", "-151.3427", "-151.35929", "-151.6412", "-151.41408", "-151.33204", "-151.25519", "-151.33652", "-151.32963", "-151.33291", "-151.33652", "-151.41408", "-151.60429", "-151.33291", "-151.35929", "-151.33652", "-151.33652", "-151.33652", "-151.42952", "-151.35202", "-151.32963", "-151.33652", "-151.3427", "-151.33418", "-151.41408", "-151.20888", "-151.35464", "-151.3427", "-151.33204", "-151.41408", "-151.33204", "-151.33291", "-151.33291", "-151.33418", "-151.33652", "-151.32963", "-151.33652", "-151.60429", "-151.33204", "-151.32963", "-151.33291", "-151.33418", "-151.35202", "-151.33418", "-151.32963", "-151.33418", "-151.48972", "-151.33652", "-151.39949", "-151.33418", "-151.33291", "-151.42952", "-151.33291", "-151.39949", "-151.39949", "-151.39949", "-151.32963", "-151.33291", "-151.33204", "-151.33652", "-151.33652", "-151.3427", "-151.25519", "-151.32963", "-151.52027", "-151.20937", "-151.3427", "-151.33291", "-151.41408", "-151.33291", "-151.3427", "-151.33652", "-151.39949", "-151.33652", "-151.33204", "-151.33291", "-151.51462", "-151.32963", "-151.32963", "-151.33418", "-151.33652", "-151.35929", "-151.35202", "-151.33291", "-151.39949", "-151.65754", "-151.33291", "-151.33418", "-151.35202", "-151.33204", "-151.32963", "-151.39949", "-151.35929", "-151.33204", "-151.33291", "-151.35929", "-151.33291", "-151.32963", "-151.33652", "-151.4537", "-151.33652", "-151.25519", "-151.54306", "-151.44504", "-151.3427", "-151.12917", "-151.33291", "-151.33652", "-151.42952", "-151.33652", "-151.33204", "-151.3427", "-151.3427", "-151.22665", "-151.35929", "-151.47526", "-151.47526", "-151.47526", "-151.33418", "-151.32963", "-151.3427", "-151.58345", "-151.33204", "-151.33652", "-151.55302", "-151.33652", "-151.33291", "-151.33291", "-151.35055", "-151.52241", "-151.33291", "-151.32963", "-151.33291", "-151.33652", "-151.33652", "-151.33204", "-151.39949", "-151.48972", "-151.35464", "-151.39949", "-151.67152", "-151.32963", "-151.32963", "-151.33418", "-151.3427", "-151.32963", "-151.3427", "-151.35202", "-151.3427", "-151.32963", "-151.33291", "-151.39949", "-151.33291", "-151.32963", "-151.22665", "-151.33291", "-151.32963", "-151.3427", "-151.33652", "-151.33291", "-151.33652", "-151.33418", "-151.33291", "-151.52027", "-151.61108", "-151.49198", "-151.33418", "-151.35929", "-151.33204", "-151.32963", "-151.32963", "-151.37441", "-151.33291", "-151.33204", "-151.3427", "-151.35929", "-151.33652", "-151.35464", "-151.32963", "-151.20888", "-151.33291", "-151.20888", "-151.33204", "-151.33418", "-151.3427", "-151.35202", "-151.33204", "-151.20937", "-151.42952", "-151.33652", "-151.33652", "-151.33291", "-151.35464", "-151.35951", "-151.39949", "-151.3427", "-151.35929", "-151.57573", "-151.20888", "-151.61108", "-151.33418", "-151.61406", "-151.33291", "-151.36212", "-151.46152", "-151.32963", "-151.33652", "-151.33291", "-151.33652", "-151.41408", "-151.33291", "-151.33204", "-151.33291", "-151.33204", "-151.12917", "-151.35202", "-151.16347", "-151.32963", "-151.32963", "-151.58345", "-151.35929", "-151.16445", "-151.12917", "-151.33204", "-151.16347", "-151.16347", "-151.32963", "-151.12917", "-151.32963", "-151.33418", "-151.35202", "-151.33204", "-151.33652", "-151.3427", "-151.33652", "-151.67152", "-151.32963", "-151.25519", "-151.41408", "-151.36212", "-151.33291", "-151.35202", "-151.16445", "-151.20937", "-151.32963", "-151.33204", "-151.33652", "-151.39949", "-151.41408", "-151.39949", "-151.33652", "-151.48972", "-151.33652", "-151.33204", "-151.33652", "-151.44504", "-151.35202", "-151.3427", "-151.33204", "-151.41408", "-151.48972", "-151.3427", "-151.33204", "-151.33652", "-151.33204", "-151.33418", "-151.65754", "-151.3427", "-151.35464", "-151.33652", "-151.39949", "-151.33204", "-151.33204", "-151.33652", "-151.20937", "-151.33652", "-151.32963", "-151.33418", "-151.33652", "-151.33418", "-151.33291", "-151.35202", "-151.35929", "-151.33291", "-151.58345", "-151.20937", "-151.37441", "-151.33652", "-151.33204", "-151.33652", "-151.33291", "-151.33291", "-151.46152", "-151.39949", "-151.25519", "-151.3427", "-151.33418", "-151.3427", "-151.33204", "-151.32963", "-151.39949", "-151.33652", "-151.33204", "-151.67152", "-151.39949", "-151.61042", "-151.3427", "-151.33652", "-151.48972", "-151.33652", "-151.33418", "-151.33652", "-151.33291", "-151.50559", "-151.33204", "-151.33291", "-151.48972", "-151.36212", "-151.3427", "-151.36212", "-151.33291", "-151.61108", "-151.33204", "-151.39949", "-151.32963", "-151.3427", "-151.35464", "-151.50559", "-151.33652", "-151.12065", "-151.39949", "-151.32963", "-151.33652", "-151.3427", "-151.58345", "-151.35464", "-151.32963", "-151.20937", "-151.33291", "-151.35464", "-151.3427", "-151.3427", "-151.35464", "-151.536", "-151.3427", "-151.33652", "-151.22665", "-151.35202", "-151.12917", "-151.35951", "-151.32963", "-151.5799", "-151.47526", "-151.35202", "-151.41408", "-151.3427", "-151.58075", "-151.35951", "-151.47526", "-151.41408", "-151.22665", "-151.33291", "-151.3427", "-151.39382", "-151.22665", "-151.25519", "-151.25519", "-151.35464", "-151.536", "-151.20888", "-151.33652", "-151.32963", "-151.20888", "-151.48972", "-151.33652", "-151.33291", "-151.33204", "-151.58075", "-151.3427", "-151.36212", "-151.3427", "-151.33291", "-151.32963", "-151.33652", "-151.35202", "-151.33652", "-151.39382", "-151.33291", "-151.33418", "-151.63108", "-151.55302", "-151.33652", "-151.39949", "-151.32963", "-151.25519", "-151.36212", "-151.32963", "-151.35464", "-151.3427", "-151.33291", "-151.42952", "-151.48972", "-151.55302", "-151.12917", "-151.20888", "-151.33291", "-151.32963", "-151.39949", "-151.33291", "-151.3427", "-151.32963", "-151.39949", "-151.32963", "-151.33204", "-151.48972", "-151.48972", "-151.33652", "-151.58075", "-151.37441", "-151.48972", "-151.33204", "-151.35464", "-151.39949", "-151.35951", "-151.35464", "-151.44504", "-151.41408", "-151.33291", "-151.33652", "-151.3427", "-151.58075", "-151.33204", "-151.35929", "-151.39949", "-151.39949", "-151.32963", "-151.3427", "-151.33204", "-151.3427", "-151.12917", "-151.32963", "-151.32963", "-151.33204", "-151.39949", "-151.35951", "-151.32963", "-151.20937", "-151.33291", "-151.48972", "-151.12917", "-151.41408", "-151.33652", "-151.44504", "-151.33291", "-151.32963", "-151.46152", "-151.47526", "-151.33418", "-151.20937", "-151.20888", "-151.33652", "-151.56612", "-151.33418", "-151.42952", "-151.41408", "-151.39949", "-151.3427"], ["subaru", "datsun", "plymouth", "saab", "dodge", "datsun", "dodge", "vw", "plymouth", "oldsmobile", "chrysler", "amc", "plymouth", "chev", "datsun", "toyota", "chev", "toyota", "oldsmobile", "chev", "toyota", "amc", "volvo", "plymouth", "plymouth", "fiat", "vw", "dodge", "ford", "buick", "oldsmobile", "plymouth", "mazda", "ford", "plymouth", "plymouth", "honda", "honda", "dodge", "datsun", "plymouth", "peugeot", "chev", "dodge", "plymouth", "dodge", "chev", "ford", "toyota", "fiat", "fiat", "buick", "amc", "toyota", "peugeot", "vw", "vw", "dodge", "mazda", "honda", "amc", "amc", "vw", "amc", "datsun", "toyota", "ford", "vw", "volvo", "oldsmobile", "vw", "mazda", "toyota", "dodge", "chev", "datsun", "buick", "chev", "chev", "chev", "opel", "oldsmobile", "toyota", "opel", "toyota", "vw", "datsun", "bmw", "fiat", "amc", "triumph", "chev", "nissan", "datsun", "toyota", "chev", "honda", "ford", "amc", "ford", "chrysler", "chev", "peugeot", "hi", "mercury", "datsun", "datsun", "vw", "volvo", "mercury", "plymouth", "amc", "pontiac", "buick", "ford", "toyota", "ford", "honda", "mercury", "amc", "opel", "ford", "fiat", "chev", "datsun", "plymouth", "datsun", "pontiac", "plymouth", "ford", "honda", "toyota", "ford", "plymouth", "ford", "vw", "chev", "datsun", "ford", "honda", "mazda", "buick", "chev", "toyota", "buick", "datsun", "chev", "dodge", "chev", "ford", "chev", "chrysler", "bmw", "chrysler", "ford", "vw", "ford", "vw", "toyota", "honda", "peugeot", "plymouth", "plymouth", "fiat", "ford", "peugeot", "ford", "amc", "chev", "chev", "mazda", "plymouth", "ford", "pontiac", "buick", "vw", "vw", "ford", "buick", "plymouth", "chev", "ford", "chev", "chev", "pontiac", "toyota", "volvo", "honda", "buick", "mercury", "subaru", "chev", "amc", "plymouth", "mercury", "amc", "ford", "honda", "amc", "mercury", "plymouth", "amc", "chev", "audi", "ford", "vw", "chev", "pontiac", "ford", "ford", "ford", "amc", "pontiac", "dodge", "buick", "toyota", "ford", "chev", "datsun", "mercedes", "chev", "toyota", "datsun", "toyota", "chev", "mazda", "ford", "buick", "buick", "audi", "renault", "audi", "dodge", "volvo", "ford", "datsun", "dodge", "dodge", "mazda", "chev", "plymouth", "chrysler", "ford", "pontiac", "pontiac", "pontiac", "ford", "ford", "plymouth", "mercury", "volvo", "chev", "mazda", "plymouth", "pontiac", "renault", "amc", "chev", "toyota", "dodge", "mercedes", "amc", "ford", "buick", "chrysler", "ford", "buick", "dodge", "renault", "amc", "vw", "datsun", "fiat", "toyota", "audi", "chev", "amc", "pontiac", "dodge", "amc", "ford", "plymouth", "ford", "dodge", "mercury", "ford", "ford", "plymouth", "chev", "mazda", "chev", "vw", "vw", "chev", "cadillac", "chev", "mercury", "datsun", "chev", "chev", "pontiac", "pontiac", "saab", "ford", "oldsmobile", "oldsmobile", "ford", "dodge", "audi", "vw", "ford", "toyota", "vw", "amc", "dodge", "saab", "peugeot", "ford", "dodge", "oldsmobile", "honda", "mazda", "dodge", "datsun", "datsun", "chev", "buick", "cadillac", "fiat", "peugeot", "honda", "dodge", "datsun", "vw", "ford", "amc", "dodge", "plymouth", "amc", "saab", "amc", "oldsmobile", "mercury", "ford", "toyota", "dodge", "toyota", "amc", "mercedes", "mercury", "pontiac", "toyota", "toyota", "datsun", "dodge", "chev", "amc", "ford", "dodge", "oldsmobile", "dodge", "mazda", "plymouth", "buick", "vw", "chev", "plymouth", "pontiac", "pontiac", "chev", "peugeot", "honda", "audi", "plymouth", "dodge", "chev", "mazda", "toyota", "ford", "audi", "plymouth", "buick", "ford", "opel", "ford", "chev", "plymouth", "chev", "chev", "ford"], ["09/16/2014", "09/02/14", "09/05/14", "09/13/2014", "09/13/2014", "09/04/14", "09/03/14", "09/06/14", "09/07/14", "09/14/2014", "08/28/2014", "09/08/14", "08/29/2014", "09/03/14", "09/13/2014", "08/28/2014", "09/07/14", "09/13/2014", "09/14/2014", "08/29/2014", "08/29/2014", "09/02/14", "08/30/2014", "09/16/2014", "08/29/2014", "09/02/14", "09/07/14", "09/02/14", "09/13/2014", "09/16/2014", "09/06/14", "09/05/14", "09/06/14", "08/29/2014", "09/17/2014", "09/17/2014", "09/13/2014", "09/07/14", "08/29/2014", "09/07/14", "09/16/2014", "09/08/14", "09/07/14", "09/07/14", "09/02/14", "09/16/2014", "09/01/14", "09/15/2014", "09/03/14", "08/30/2014", "08/29/2014", "09/12/14", "09/03/14", "09/15/2014", "08/29/2014", "09/02/14", "09/08/14", "09/03/14", "08/30/2014", "09/02/14", "09/02/14", "09/07/14", "08/29/2014", "09/14/2014", "08/29/2014", "08/29/2014", "09/07/14", "09/03/14", "08/29/2014", "08/29/2014", "09/07/14"], ["08/20/2014", "08/20/2014", "08/20/2014", "08/20/2014", "08/18/2014", "09/01/14", "08/13/2014", "08/17/2014", "08/28/2014", "08/13/2014", "08/18/2014", "08/23/2014", "08/31/2014", "08/13/2014", "08/28/2014", "08/14/2014", "08/20/2014", "08/29/2014", "08/28/2014", "08/14/2014", "08/13/2014", "08/20/2014", "08/18/2014", "08/28/2014", "08/28/2014", "08/13/2014", "08/23/2014", "08/13/2014", "09/01/14", "08/22/2014", "08/13/2014", "08/13/2014", "08/23/2014", "08/17/2014", "08/22/2014", "08/22/2014", "08/20/2014", "08/28/2014", "08/13/2014", "08/28/2014", "08/31/2014", "08/14/2014", "08/17/2014", "08/13/2014", "08/17/2014", "08/13/2014", "08/22/2014", "08/17/2014", "08/17/2014", "08/28/2014", "08/28/2014", "08/14/2014", "08/17/2014", "08/17/2014", "08/29/2014", "08/21/2014", "08/13/2014", "09/01/14", "08/19/2014", "08/31/2014", "08/16/2014", "08/20/2014", "08/20/2014", "08/22/2014", "08/29/2014", "08/13/2014", "08/28/2014", "08/13/2014", "08/17/2014", "08/23/2014", "08/18/2014"], ["$8,045", "$201", "$130,587", "$84,722", "$58-", "$289", "$694", "$126,193", "$0", "$0", "$0", "$0", "$25,845", "$0", "$73,083", "$0", "$51,582", "$1,822", "$0", "$0", "$0", "$0", "$0", "$0", "$33,388", "$0", "$0", "$0", "$0", "$118", "$0", "$0", "$0", "$0", "$2,668,913", "$3,935", "$0", "$0", "$0", "$0", "$0", "$0", "$0", "$0", "$0", "$0", "$72,404", "$7,962-", "$0", "$34,511", "$825", "$5,782", "$0", "$633,447", "$0", "$0", "$0", "$61,231", "$0", "$169,400", "$111,561", "$0", "$6,338", "$0", "$0", "$0", "$5,684", "$43,827", "$0", "$0", "$0", "$0", "$289", "$188,871", "$0", "$0", "$0", "$0", "$0", "$0", "$1,086", "$0", "$0", "$0", "$22,111", "$29,967", "$0", "$48,724", "$243,630", "$0", "$1,036", "$0", "$27,474", "$285,730", "$0", "$12,247", "$1,445", "$70,167", "$0", "$6,464"], ["$20000000", "$50000000", "$30000000", "$15000000", "$300000000", "$40000000", "$250000000", "$15000000", "$30000000", "$15000000", "$15000000", "$15000000", "$525000000", "$300000000", "$250000000", "$250000000", "$125000000", "$100000000", "$15000000", "$300000000", "$15000000", "$10000000", "$30000000", "$15000000", "$15000000", "$100000000", "$300000000", "$15000000", "$30000000", "$25000000", "$25000000", "$47600000", "$15000000", "$15000000", "$15000000", "$100000000", "$15000000", "$15000000", "$40000000", "$30000000", "$15000000", "$50000000", "$25000000", "$15000000", "$250000000", "$50000000", "$30000000", "$15000000", "$50000000", "$15000000", "$250000000", "$375000000", "$50000000", "$15000000", "$40000000", "$15000000", "$15000000", "$150000000", "$15000000", "$150000000", "$15000000", "$50000000", "$200000000", "$100000000", "$25000000", "$15000000", "$25000000", "$25000000", "$15000000", "$70000000", "$15000000", "$40000000", "$20000000", "$30000000", "$15000000", "$100000000", "$15000000", "$15000000", "$30000000", "$10000000", "$100000000", "$15000000", "$15000000", "$30000000", "$250000000", "$15000000", "$30000000", "$125000000", "$15000000", "$15000000", "$15000000", "$15000000", "$50000000", "$15000000", "$15000000"], ["$0", "$238", "$0", "$0", "$0", "$25,733", "$0", "$88,149", "$0", "$0", "$0", "$0", "$0", "$0", "$0", "$142,985", "$0", "$19,795", "$0", "$0", "$363", "$1,404-", "$0", "$66,378", "$0", "$0", "$3,354", "$0", "$107,056", "$0", "$4,889-", "$0", "$0", "$38,285", "$0", "$1,682", "$13,433", "$888-", "$0", "$0", "$0", "$26,360", "$31,835", "$41,832", "$1,692", "$0", "$0", "$45,507", "$0", "$0", "$0", "$2,077,164", "$0", "$0", "$155,142", "$0", "$76,700", "$0", "$0", "$0", "$0", "$0", "$0", "$0", "$6,327", "$3,034", "$153,256", "$0", "$11,497", "$0", "$0", "$0", "$17,720", "$0", "$12,086", "$0", "$0", "$17,096", "$1,817", "$0", "$0", "$243,952", "$94,190", "$0", "$0", "$0", "$0", "$0", "$0", "$0", "$8,207", "$1,417", "$0", "$453,846", "$0", "$0", "$0", "$53,504", "$2,066", "$0"], ["-64.75833", "-64.75833", "-64.960833", "-64.75833", "-64.75833", "0", "-64.75833", "-64.75833", "-64.75833", "-64.715833", "-64.75833", "0", "-64.960833", "-64.75833", "-64.960833", "-64.75833", "-64.75833", "-64.715833", "-64.715833", "0", "-64.75833", "-64.960833", "0", "0", "-64.75833", "-64.715833", "-64.75833", "0", "0", "-64.715833", "-64.715833", "0", "-64.75833", "-64.75833", "-64.75833", "-64.960833", "-64.960833", "-64.75833", "-64.960833", "-64.715833", "-64.75833", "-64.75833", "-64.75833", "-64.75833", "-64.75833", "-64.75833", "-64.75833", "-64.75833", "-64.75833", "-64.75833", "-64.960833", "-64.75833", "-64.75833", "0", "-64.75833", "-64.75833", "0", "-64.75833"], ["Let Out", "Investment", "Let Out", "Let Out", "Investment", "Investment", "Let Out", "Investment", "Let Out", "Investment", "Let Out", "Let Out", "Let Out", "Investment", "Let Out", "Let Out", "Live", "Investment", "Investment", "Investment", "Let Out", "Investment", "Investment", "Investment", "Live", "Live", "Investment", "Live", "Investment", "Investment", "Investment", "Investment", "Let Out", "Let Out", "Investment", "Investment", "Let Out", "Investment", "Let Out", "Let Out", "Let Out", "Let Out", "Let Out", "Investment", "Live", "Investment", "Investment", "Investment", "Live", "Investment", "Live", "Investment", "Let Out", "Investment", "Live", "Investment", "Investment", "Live", "Investment", "Let Out", "Live", "Investment", "Let Out", "Investment", "Let Out", "Let Out", "Let Out", "Let Out", "Live", "Investment", "Live", "Let Out", "Live", "Investment", "Let Out", "Investment", "Let Out", "Investment", "Investment", "Let Out", "Live", "Let Out", "Investment", "Live", "Live", "Investment", "Let Out", "Investment", "Investment", "Let Out", "Live", "Investment", "Live", "Investment", "Let Out", "Investment", "Let Out", "Let Out", "Investment", "Live", "Let Out", "Investment", "Investment", "Live", "Investment", "Live", "Investment", "Let Out", "Investment", "Live", "Investment", "Investment", "Investment", "Investment", "Investment", "Investment", "Investment", "Investment", "Investment", "Live", "Investment", "Investment", "Investment", "Live", "Investment", "Investment", "Let Out", "Investment", "Live", "Live", "Live", "Investment", "Let Out", "Investment", "Investment", "Let Out", "Investment", "Let Out", "Investment", "Live", "Live", "Let Out", "Investment", "Let Out", "Investment", "Let Out", "Let Out", "Let Out", "Live", "Investment", "Investment", "Let Out", "Let Out", "Live", "Investment", "Let Out", "Investment", "Investment", "Let Out", "Investment", "Investment", "Investment", "Investment", "Live", "Let Out", "Let Out", "Investment", "Investment", "Live", "Investment", "Let Out", "Let Out", "Let Out", "Let Out", "Investment", "Investment", "Let Out", "Investment", "Investment", "Investment", "Investment", "Investment", "Investment", "Let Out", "Live", "Let Out", "Let Out", "Live", "Investment", "Investment", "Investment", "Let Out", "Let Out", "Let Out", "Let Out", "Let Out", "Let Out", "Let Out", "Investment", "Let Out", "Let Out", "Investment", "Investment", "Investment", "Investment", "Investment", "Investment", "Investment", "Live", "Let Out", "Live", "Investment", "Investment", "Let Out", "Investment", "Let Out", "Let Out", "Investment", "Live", "Investment", "Let Out", "Live", "Investment", "Let Out", "Let Out", "Investment", "Live", "Investment", "Investment", "Investment", "Investment", "Let Out", "Let Out", "Let Out", "Let Out", "Live", "Investment", "Let Out", "Investment", "Investment", "Investment", "Investment", "Live", "Live", "Investment", "Investment", "Let Out", "Investment", "Let Out", "Let Out", "Investment", "Investment", "Investment", "Live", "Investment", "Investment", "Live", "Investment", "Investment", "Let Out", "Investment", "Investment", "Investment", "Let Out", "Investment", "Live", "Investment", "Investment", "Investment", "Let Out", "Investment", "Live", "Live", "Investment", "Let Out", "Investment", "Live", "Investment", "Investment", "Investment", "Investment", "Investment", "Investment", "Live", "Investment", "Investment", "Live", "Investment", "Let Out", "Investment", "Live", "Let Out", "Investment", "Investment", "Investment", "Investment", "Let Out", "Let Out", "Investment", "Investment", "Let Out", "Let Out", "Investment", "Let Out", "Investment", "Live", "Let Out", "Let Out", "Investment", "Let Out", "Live", "Let Out", "Investment", "Let Out", "Live", "Let Out", "Investment", "Investment", "Investment", "Investment", "Investment", "Let Out", "Investment", "Investment", "Live", "Investment", "Let Out", "Investment", "Investment", "Let Out", "Let Out", "Investment", "Investment", "Investment", "Live", "Live", "Investment", "Investment", "Investment", "Let Out", "Let Out", "Investment", "Let Out", "Investment", "Investment", "Let Out", "Investment", "Investment", "Investment", "Investment", "Investment", "Investment", "Let Out", "Investment", "Live", "Investment", "Investment", "Let Out", "Live", "Investment", "Investment", "Live", "Investment", "Investment", "Live", "Live", "Let Out", "Investment", "Investment", "Let Out", "Let Out", "Live", "Investment", "Investment", "Investment", "Investment", "Live", "Let Out", "Investment", "Investment", "Investment", "Investment", "Investment", "Investment", "Investment", "Investment", "Live", "Live", "Investment", "Let Out", "Let Out", "Investment", "Investment", "Investment", "Live", "Let Out", "Investment", "Investment", "Investment", "Investment", "Let Out", "Let Out", "Let Out", "Let Out", "Investment", "Let Out", "Investment", "Investment", "Investment", "Let Out", "Let Out", "Live", "Let Out", "Investment", "Let Out", "Investment", "Let Out", "Investment", "Investment", "Live", "Investment", "Let Out", "Live", "Investment", "Live", "Let Out", "Investment", "Let Out", "Investment", "Investment", "Investment", "Let Out", "Investment", "Investment", "Let Out", "Investment", "Let Out", "Live", "Let Out", "Let Out", "Investment", "Let Out", "Live", "Live", "Investment", "Investment", "Let Out", "Investment", "Let Out", "Investment", "Investment", "Investment", "Live", "Let Out", "Let Out", "Investment", "Investment", "Investment", "Live", "Live", "Investment", "Let Out", "Investment", "Investment", "Let Out", "Investment", "Live", "Live", "Live", "Investment", "Live", "Investment", "Let Out", "Investment", "Investment", "Let Out", "Investment", "Live", "Let Out", "Live", "Investment", "Let Out", "Investment", "Let Out", "Investment", "Investment", "Live", "Investment", "Investment", "Investment", "Investment", "Investment", "Live", "Investment", "Investment", "Let Out", "Let Out", "Investment", "Live", "Live"], ["Adult", "Junior", "Adult", "Junior", "Adult", "Adult", "Adult", "Adult", "Adult", "Junior", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Junior", "Adult", "Junior", "Adult", "Adult", "Wheelchair", "Adult", "Adult", "Junior", "Adult", "Adult", "Adult", "Junior", "Junior", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Junior", "Adult", "Adult", "Junior", "Adult", "Adult", "Adult", "Adult", "Junior", "Adult", "Adult", "Adult", "Adult", "Junior", "Adult", "Adult", "Adult", "Junior", "Adult", "Adult", "Adult", "Adult", "Junior", "Dog", "Junior", "Adult", "Adult", "Adult", "Adult", "Junior", "Adult", "Adult", "Adult", "Adult", "Adult", "Wheelchair", "Adult", "Adult", "Adult", "Adult", "Junior", "Adult", "Adult", "Adult", "Junior", "Adult", "Junior", "Adult", "Adult", "Adult", "Junior", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Junior", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Junior", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Junior", "Adult", "Adult", "Adult", "Adult", "Adult", "Junior", "Junior", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Junior", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Junior", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Junior", "Junior", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Junior", "Adult", "Adult", "Junior", "Adult", "Adult", "Junior", "Junior", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Junior", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Junior", "Adult", "Adult", "Junior", "Adult", "Adult", "Adult", "Adult", "Adult", "Dog", "Adult", "Adult", "Adult", "Adult", "Adult", "Junior", "Adult", "Adult", "Adult", "Adult", "Adult", "Junior", "Adult", "Adult", "Junior", "Adult", "Adult", "Adult", "Adult", "Adult", "Junior", "Adult", "Adult", "Adult", "Adult", "Adult", "Junior", "Junior", "Adult", "Adult", "Adult", "Adult", "Adult", "Junior", "Adult", "Adult", "Junior", "Junior", "Junior", "Adult", "Junior", "Adult", "Wheelchair", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Junior", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Junior", "Junior", "Adult", "Adult", "Junior", "Adult", "Junior", "Junior", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Junior", "Adult", "Adult", "Adult", "Junior", "Adult", "Adult", "Junior", "Junior", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Junior", "Adult", "Adult", "Junior", "Adult", "Junior", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Junior", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Junior", "Adult", "Junior", "Adult", "Adult", "Adult", "Adult", "Adult", "Junior", "Adult", "Adult", "Dog", "Junior", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Wheelchair", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Junior", "Adult", "Adult", "Junior", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Junior", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Junior", "Adult", "Adult", "Adult", "Junior", "Junior", "Junior", "Dog", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Junior", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Junior", "Adult", "Adult", "Adult", "Adult", "Adult", "Adult", "Junior", "Adult"], ["MOA report", "MOA report", "MOA report", "MOA report"], ["CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA", "CALIFORNIA"], ["736590", "735680.0267", "734165.0996", "735630.5292", "736081.4076", "737079.8491", "737017.3675", "736362.014", "736205.4368", "738809.2822", "736240.4289", "734851.7721", "735425", "733463.8546", "735549.3082", "733905.1429", "736748.3418", "737195", "733471", "736883.5535", "734493.3238", "732884", "738126.6784", "736184.5155", "736662.7041", "735743.4275", "737262", "736792", "736400.8829", "732944", "734135.6731", "737920.8624", "737278.0484", "735930.5646", "737980.1879", "735288.9568", "732436.1153", "735290.2161", "736913", "736541.0215", "738402.7137", "735543.0713", "737483.3051", "733746.0891", "736302.2705", "734313", "736295.0566", "735095.9623", "732649.1059", "732942.3802", "735136.8336", "733769", "735514.2461", "732857.0787", "737355.4301", "732759", "736561.7086", "737358.7705", "737416.2095", "735792.4472", "737234.1742", "736249.6027", "736046", "735130.1718", "734532.8314", "736501.1129", "733075.2565", "736403.4851", "736766.0298", "736363.1621", "736058.0461", "736443.8742", "733031.0376", "735661.6392", "738457.4698", "737761.4021", "735030.5573", "736405.5571", "738263.0996", "736905.3323", "733638.6521", "737123.4794", "734947.9689", "735147.9987", "738427.8638", "735814.4149", "733632.1201", "736267.1108", "735029.9569", "735847.1491", "736328.8021", "737884.0235", "737888.5989", "736847.3814", "737689.1687", "734309.4593", "736232.6644", "736011.162", "735664.327", "734805.7663", "734718.5776", "735384.822", "737376.6331", "735732.8066", "737802.8844", "734016.8299", "736059", "734327.8613", "734628.2488", "734437.4027", "738316.9343", "732533.1045", "731173", "738391.6749", "734913.4896", "737836.8668", "735544.9652", "736420.4251", "735026.8377", "735615.3404", "737735.9496", "733183.1746", "737014.4371", "734944.722", "735929.0373", "733554.4226", "732891.529", "736148.5065", "735199.5457", "735956.9271", "734421", "736202.7909", "736019.0492", "738264.5102", "734894.9325", "736463.3944", "736003.6906", "735866.9397", "734884.0351", "735179.4938", "735705.9145", "738343.0138", "734090.8302", "735627.8879", "733142.6076", "735118.2487", "738379.9362", "734778.0834", "732179.1875", "734861.4762", "736272.8693", "735936.4798", "737544.6297", "735272.2088", "733458.7643", "733128.3843", "736973.6471", "734866.9913", "735922.5433", "736584", "735378.8471", "736389.6842", "734303", "736698.4117", "734726.0265", "735605.4448", "738042.6536", "734688", "738071.7245", "737717.5337", "737568.1252", "735744.3832", "734935.5466", "737344.1258", "738205.6433", "736856.4184", "732678.8675", "737077.5436", "737478.4249", "736677.8194", "736342.1428", "736037.9644", "736136.9944", "735428.1348", "737010.693", "737294.8619", "734336.2677", "735921.6723", "734524.6612", "734762.205", "737119.7031", "734755.8956", "737819.9737", "737767.6246", "734128.9335", "732396.3774", "737358.16", "736692.4771", "734661.8561", "736043.1363", "737052.1811", "737025.935", "736041.5521", "735964.3464", "732853.7872", "736838.4437", "735863.3788", "734893.7771", "735477.6457", "737053.4242", "734772.243", "733547.4705", "735890.3941", "736210.4179", "735315.0837", "734848.0289", "737503.599", "736913.1408", "737024.9321", "733445.1298", "736501", "735434.8432", "738217.2742", "735199.0957", "736133.2923", "734227.7889", "735814.0934", "732594.322", "736559.3646", "737434.2092", "736606.2465", "736023.8115", "733256.1407", "736328", "735853.1108", "737185.9142", "732077.5438", "734313.8388", "738993.013", "738337.0975", "732259.6657", "737146.1365", "735626.5165", "735802.0677", "736771.3804", "736265.6846", "732602", "736984.5466", "735761.5245", "735521.0011", "736708.153", "734663.627", "733566.2422", "733819.4658", "735990.7953", "733824.6919", "736382.6103", "737550.994", "737700.278", "733007.0243", "736895.5145", "737912.1475", "733183.5752", "737979.4353", "733803", "736764.6021", "735275", "735709.8167", "737567.6855", "737068.2989", "734502.9822", "736246", "736818.5435", "736614.4749", "737315.3954", "737020.9219", "736071.0817", "736460.8234", "736555.2641", "734158.6927", "735069.7117", "737770.8924", "735465.3373", "739194.8383", "735005.4694", "734916.3665", "736152.1528", "735852.993", "733362.7288", "735247.2122", "734882.9352", "734006.013", "734669.7293", "735660.5964", "738026.5399", "735006.8911", "736350.6415", "733392.6764", "733162.3049", "735482.8386", "735952.0433", "736913.8026", "738011.891", "730683.019", "735174.6658", "735681.4481", "736530.8881", "734299.5397", "735370.343", "735339.6153", "733483.3395", "731277.4898", "737670.772", "733620.6716", "736427.1558", "737740.8678", "735182.628", "737440.1307", "736234.2036", "732490.1447", "733035.1227", "735236.8797", "736275.393", "735962.1623", "736827.9026", "737540.4545", "736381.9217", "734991.1622", "735831.6352", "730152.5441", "733273.2427", "733328.7269", "736544.9505", "738330.6925", "733757.874", "732357.7797", "738173.3657", "732604.7242", "737020.5277", "738114", "732586.049", "737895.0883", "735454.6483", "735320.0255", "735949.0492", "736466.2294", "736635", "738830.8291", "734841.2531", "737573.8656", "736366.1938", "735249.6257", "733501.6056", "733006.7187", "735798.3788", "735539.804", "734871", "738626.2725", "735483", "736843", "737274", "735801.7225", "735715.521", "736880", "733332.3378", "736374", "735475.6802", "737026.8017", "735922.1317", "738267.5557", "731974.8299", "734484.8303", "736443.8317", "735259.4044", "734242.5818", "736301.7652", "737173", "737281.431", "735891.6833", "736045.3583", "733036.1846", "736769.1206", "736310.4699", "737027.5624", "737381.2207", "736700.0174", "734594.4032", "736533.1694", "736961.9043", "733279.8301", "735346.4254", "733745.6795", "736845.4464", "736507.5953", "737190.9081", "737521.6104", "733690.7097", "732597.4759", "735799.4291", "733323.439", "737807.0537", "737975.5206", "732423.049", "736161.1582", "734343.7531", "735617", "736840.8662", "734693.2096", "733677", "735287.0163", "734062.7111", "732591.7329", "733825.5057", "737443.7493", "736464.9471", "733651.0586", "734956", "735961.0252", "736255.4818", "737199.6569", "735128.6293", "737500.0551", "735970", "735868.7909", "736748.2554", "736986.8726", "737317.4659", "736495.4801", "736917.3856", "733873.626", "736157.8746", "737088.0369", "737314.3764", "738087.0759", "735366.762", "737877", "735691.5047", "733603.6019", "737308.1636", "737519.1927", "738395.989", "737308.179", "736187.3861", "733357.3224", "735427.2284", "736638.9035", "735614.5033", "735618.9285", "736685.5043", "735493.5269", "733658.8803", "735902.5802", "736886.394", "736846.8328", "736831.967", "737541.6477", "735387.2357", "735287.6555", "737061.1809", "737665.6779", "734247.0602", "734978.2882", "734473.3475", "735029.1549", "733822.12", "735488.4267", "735680.7288", "736125.7055", "733580.4455", "735891.7654", "734577.2034", "737185.2895", "736588.0312", "737153.1698", "737289.0133", "731640.8358", "738057.4304", "734375.739", "735914.403", "736443.4478", "734812.2675", "735513.8515", "737840.0655", "737217.0246", "733673.7227", "737315", "736292.812", "736691.8321", "735577.7586", "735231.4484", "737388.8524", "736550.3641", "735428.2141", "733689.2812", "737806", "737336.1355", "731731.4136", "734689.5426", "733346.8456", "734503.035"], ["229.5321328", "93.10746479", "868.0159234", "828.2067151", "386.1898266", "721.2563122", "1620.282574", "551.7637171", "224.0412044", "911.5793058", "814.5213102", "722.9148935", "474.1791176", "717.015949", "1704.409313", "564.9386777", "604.38892", "1043.608754", "462.6655038", "747.3017923", "127.7220535", "472.914556", "651.3939323", "582.1429343", "496.1257792", "504.0369861", "533.5329925", "489.7832658", "229.8885675", "453.7343097", "960.4747906", "622.4782671", "817.5593674", "572.6973306", "66.40783086", "487.5469379", "139.5691203", "1416.282681", "1248.780154", "584.7662384", "703.9013856", "620.0594046", "511.5904783", "185.5312766", "318.7853632", "582.6914331", "905.5973337", "899.3502948", "724.7118655", "686.8089989", "506.4279931", "324.3523835", "179.7207796", "717.7789693", "1004.287364", "847.45466", "24.8394847", "490.3073649", "355.8541193", "54.64430437", "113.5649594", "53.40908575", "1258.545933", "231.7327721", "970.5106619", "407.8545731", "211.6202813", "113.6001761", "693.3961339", "760.0542337", "915.8942505", "292.7835461", "614.5423315", "308.1240867", "188.4708855", "652.6227324", "63.47854815", "175.7707995", "706.6596354", "872.5342285", "675.3648161", "253.2633062", "564.4221524", "920.0106048", "283.3396598", "234.6769882", "656.633486", "323.9693642", "1185.811408", "289.2734618", "324.8161383", "116.2497312", "387.6988702", "575.5024974", "888.900982", "275.4375064", "860.966981", "646.7504967", "301.2945538", "556.4969506", "656.9058259", "348.6231494", "384.8912112", "48.88899104", "614.2928006", "907.244928", "972.0136822", "672.0028447", "1233.914777", "586.1413395", "140.113279", "319.4184775", "649.8363989", "450.3815051", "835.7059527", "297.5701106", "1614.628546", "204.8998378", "411.2567115", "780.0403179", "1047.177829", "1127.705555", "499.0755048", "895.8169", "419.3532368", "346.8688494", "342.6800174", "245.9340219", "401.1106983", "584.4955949", "941.3859191", "788.7596895", "859.3694761", "564.1216042", "775.1269914", "1277.291107", "708.2148534", "385.7548219", "127.4862648", "578.1860534", "695.9916893", "528.4944499", "492.9497822", "496.5383723", "629.379731", "814.4179624", "272.7379695", "557.3112254", "90.74138013", "941.1256627", "548.8120039", "916.198764", "1121.409609", "678.6026091", "250.0066254", "362.0889073", "190.7278554", "341.1845454", "767.0993951", "600.164173", "741.264211", "408.3992456", "1227.216786", "51.03920062", "1098.478817", "1101.433773", "39.92492956", "424.4817907", "685.5535097", "672.7066058", "1258.719047", "237.5984007", "246.4864131", "75.93215371", "277.8929455", "873.3494393", "550.6102858", "144.3430757", "620.9819926", "1166.854137", "887.1927387", "716.6755133", "1144.334693", "374.3484561", "68.16486073", "317.8755478", "187.2965563", "979.6275781", "302.5890268", "643.3225348", "739.1955889", "754.2024131", "804.5477764", "860.0014396", "337.6907487", "875.0861426", "686.6917177", "599.7707896", "723.1927708", "96.17692031", "551.0812197", "882.106753", "359.0662841", "1135.940575", "15.62049935", "624.6886965", "178.3604784", "609.5498691", "668.09433", "162.605213", "296.2356054", "536.0067668", "453.6235189", "888.6086181", "90.78656383", "701.3554703", "704.1474204", "383.8452329", "366.4027082", "336.8299189", "349.9893335", "1060.601895", "770.5833268", "989.3454139", "603.2013379", "857.8543455", "872.5455797", "631.5640329", "712.4767202", "1049.746205", "845.3296432", "65.54640182", "1060.160051", "991.9659832", "1005.858258", "612.3787383", "876.2284348", "606.9182426", "1503.435951", "78.44743463", "330.1866849", "81.36219947", "128.6124982", "99.48532489", "522.5454349", "771.0736649", "1382.274132", "836.9515949", "1123.417015", "469.8859911", "755.1408266", "634.1141285", "114.8098404", "527.4391127", "923.8239349", "200.2498439", "522.7869054", "355.1098572", "209.3032546", "260.5260499", "559.5518053", "610.5030049", "398.0452236", "298.8417248", "348.8975718", "811.4540445", "924.0463985", "599.3483633", "472.8297791", "974.4701541", "675.5472008", "813.3719331", "240.1496242", "565.0789836", "512.805798", "886.5652405", "705.6130451", "13.34166406", "951.1068083", "851.6198668", "16.94367981", "1209.159735", "1684.924285", "42.63801121", "422.4822702", "376.2406145", "343.7518853", "1162.014008", "718.5183652", "312.0718323", "66.85057965", "306.9576862", "271.7862373", "1151.776651", "831.0643317", "230.6881011", "878.7280883", "2.236067977", "783.5055024", "753.9900993", "299.2164443", "209.1418625", "418.4792124", "1488.720405", "612.3957422", "438.1452382", "791.4488419", "807.640528", "673.7276285", "784.4774451", "1046.060881", "1245.138585", "706.6710787", "933.6035114", "1221.995958", "889.5452372", "20.61552813", "308.8529632", "613.3137349", "521.991211", "22.82542442", "756.5419228", "727.6018788", "16.2788206", "457.1163842", "137.0324305", "601.5764512", "538.1420216", "876.2608581", "1002.887225", "326.8625364", "877.0259557", "893.5369904", "303.6642883", "697.763861", "712.8712866", "849.7054454", "342.9180239", "307.2659339", "1634.706047", "335.0952637", "108.5034562", "773.5855948", "839.7401781", "1168.736438", "846.6649925", "56.8594759", "789.7565946", "941.240974", "1748.4254", "1661.345238", "255.6809479", "222.1816928", "398.2770172", "425.3086557", "644.1760346", "553.7278683", "242.8391713", "1449.913005", "824.1222275", "842.3893297", "632.7946772", "379.4482837", "638.7442602", "419.9542645", "604.8417566", "419.2256834", "305.5505186", "996.9119045", "137.6584232", "1248.451997", "342.4175342", "380.6894717", "606.5857131", "584.8677108", "165.6934379", "439.6145735", "46.06517123", "476.696745", "895.4435247", "413.4625923", "1233.257338", "489.2894796", "1222.78716", "638.8361054", "748.6187548", "305.0815994", "247.4206944", "209.7832818", "253.9704707", "1059.579089", "909.7862271", "489.0914673", "1089.704508", "497.3799267", "1369.814469", "998.9477724", "62.07253821", "1299.275649", "1455.773568", "864.892812", "453.53872", "435.3305448", "1624.341653", "917.9187433", "1128.664831", "231.9830106", "761.8342254", "854.7142206", "484.8867319", "333.4549611", "776.9177533", "693.4036943", "496.0862934", "1026.418105", "384.9639855", "1041.204812", "855.4987599", "155.1820956", "716.9146402", "37.65634077", "447.791454", "66.09841148", "1260.568422", "787.4264027", "138.168295", "810.0402923", "740.6372587", "302.6821586", "1626.166928", "642.6120727", "43.08131846", "62.03224968", "887.3190016", "684.2499441", "52.64674948", "550.9756432", "713.9674809", "729.8604513", "992.2323188", "1307.175219", "280.1680333", "45.01110974", "252.7735689", "550.6244642", "302.1855158", "30.01666204", "116.9144987", "387.4820327", "904.3088659", "847.668171", "325.9389037", "809.2305449", "344.9413902", "1211.295104", "569.567285", "909.6309999", "431.7369697", "1066.443753", "1134.480783", "738.1950755", "509.6424602", "372.1026433", "281.7498388", "689.4506529", "598.4242929", "301.8196792", "286.7746164", "245.0041006", "738.5287692", "1067.871207", "525.685501", "406.3351446", "1076.047085", "993.9294607", "612.8071557", "672.9675672", "18.97366596", "249.3794987", "399.7635672", "550.0751549", "32.55764119", "557.9483462", "881.051373", "1056.930246", "571.6537516", "380.6231732", "734.1506785", "359.4216276", "245.4170541", "226.5710466", "279.3937398", "649.0666329", "462.6651385", "458.4501829", "987.9142581", "818.6445402", "218.2235775", "758.2173977", "805.5215319"], ["90028650639", "94619670154", "03468980267", "92502040154", "92193840284", "97656290588", "95038600631", "04013540267", "80004970119", "01774200669", "98075790786", "01252620222", "92014170648", "00794360321", "04841700489", "90002800135", "91338700379", "80015790936", "01615450358", "82003790258", "03490800244", "92117740289", "02064090984", "06420740158", "04296870969", "01433050026", "91089330400", "91033350868", "80017440324", "93011670895", "02182150249", "97539940581", "10364550011", "91009280370", "90037000024", "02893610127", "91047760078", "02705860985", "92002290275", "04779001215", "02788300040", "91564660156", "93004980657", "01836240596", "91001040335", "97510250018", "92007160028", "97058720828", "02578770162", "80021270220", "90017850612", "01580630331", "90021400693", "97391110158", "91028030798", "92003010417", "92015630400", "02295830695", "03545780987", "92019530044", "95611850017", "02245870965", "91022120868", "01083490258", "01427560881", "97151130586", "90518200150", "00881500268", "00845910256", "90018200304", "93008900636", "01949950131", "80003490457", "81004690301", "90004440609", "94064360541", "01179230030", "97505930582", "92044880638", "03740620103", "93053200635", "02916500735", "02343900201", "93079690504", "03776070371", "92050160925", "06921511215", "90066960635", "92031990804", "83000970919", "92016180926", "10192031002", "91048430556", "80020910214", "03426030379", "93010810898", "96089850224", "00950150532", "91042490127", "02471790242", "03287671204", "93012070723", "97126420583", "80104250156", "90004850518", "02448300307", "97735720019", "92047970139", "80024140230", "97002040836", "08653531007", "02415230347", "80038610350", "93337470723", "93157210878", "92041230407", "80011760305", "01912380308", "90053890878", "08273780018", "01494810532", "92116010494", "94220350485", "80008660211", "92011260129", "80013520467", "91089670599", "91042270123", "80030840716", "92018050663", "90022560115", "03575530179", "01440820767", "01386980229", "92060120703", "00181500091", "91032950379", "93190100870", "08235810960", "92018160439", "94056480034", "92000130515", "02953540982", "01193810460", "02598120422", "93015900843", "92073800804", "01776040139", "94135610361", "95111950242", "95076720127", "93063060813", "02389990280", "95055500631", "02970200834", "92093470281", "91006300478", "92031220905", "91013150767", "97018100830", "94046770718", "90013750824", "97224760153", "03094420266", "80005460250", "02274460167", "85008630155", "06340870960", "01800860353", "01794590685", "04416190017", "92030250069", "90014340922", "97248050151", "94025620488", "84032640488", "01118190774", "93170890870", "90502230155", "93370630720", "98072920782", "01385120199", "01804640660", "03305720124", "01325260287", "92025480481", "01262330747", "07302021006", "91029180477", "93024090727", "04231720287", "90052330470", "09616071008", "95037690120", "80015330931", "01562990687", "81012420212", "90036800416", "93037390668", "93024020294", "91016010232", "03464780372", "92039030132", "95067780122", "85005690012", "01997760127", "02578620342", "97602580157", "10391620019", "92003600837", "02462211208", "97233310586", "80013270121", "92006670845", "93020760042", "01966770974", "02862080781", "90023120752", "91048810799", "93019140693", "95108310657", "91053720073", "94011260026", "80045650480", "00574450938", "92071950288", "92008170349", "97056680156", "01104430226", "91186160379", "03477360139", "01890730045", "02350210304", "90041690505", "07110630725", "92031100800", "12233380158", "02115160364", "90109010323", "94046350487", "84002430225", "01874280033", "03239940160", "92013040271", "03294670488", "83003950256", "92059430857", "01068170958", "03538230362", "94057970017", "80017770928", "03050770365", "97626450585", "01561630086", "92052220404", "92034350055", "02387450188", "02130290261", "90000890526", "81010290211", "00973020738", "97085340830", "01005510290", "90036560630", "95000820167", "09109681008", "90003320513", "02205090901", "01702740216", "02869430161", "91002500857", "92032080886", "80001320318", "80013180213", "83009130127", "94533290014", "00910530328", "97658880154", "03868470232", "93111840877", "09554580150", "01975010131", "01277700496", "02181810132", "91029030045", "01335500292", "95023380181", "92049990804", "92006830191", "06255791003", "94014460029", "02306060415", "97072770791", "02203610403", "91153910350", "02571470968", "97591740150", "01929470407", "92012640014", "90019510271", "97770060016", "90079560273", "03351900240", "01737020121", "01512580356", "91014050073", "01486140302", "85009540015", "92000690039", "81010710218", "92154710922", "01547450500", "90010350891", "82007130402", "02244820037", "92516680011", "01658920507", "03938970757", "94054300150", "95029080652", "97098420835", "91033610543", "80004820256", "04187640232", "94089600301", "93026020367", "12052660151", "94014860715", "00643850142", "92081220805", "03640020982", "02374990378", "03823650407", "02614240246", "91081200155", "92042860376", "09863161007", "94130270484", "01315510469", "90011190353", "12688030159", "01306570506", "02536440247", "94004130269", "02060790124", "06304740480", "01821240122", "03477880656", "08097521002", "02399280599", "02031200161", "05452510018", "00461860314", "90013170775", "80039910486", "93004800871", "03299580872", "94065100219", "92020360282", "92067350923", "01852300175", "97017950581", "91083430339", "97506720156", "92036960018", "92067910924", "01891620203", "91020560719", "96379560582", "92009930378", "01513480895", "96017920792", "03020290544", "01649660477", "94053090034", "90034710369", "10865420151", "92008950385", "81009280215", "01497690337", "01294310451", "90048090378", "03070870542", "02404660132", "01236540728", "01598620936", "97482570583", "90035480574", "94021270783", "92049780346", "01170050411", "00238530083", "03122581204", "90021390399", "02124970282", "92042970282", "06264890150", "92018860137", "02205500404", "01375640917", "97404790152", "02490330350", "90205460737", "97293280158", "80020130243", "01539600039", "02372140273", "01248550939", "94013370484", "02458420284", "02181100369", "03539630404", "82011080270", "90023260756", "02538680139", "90041450728", "90197660732", "01607690367", "01132330059", "01342560396", "01429830555", "90001390898", "04377690484", "02227440167", "04709110656", "80103730489", "98018540785", "94113280484", "91003880860", "81001540236", "80036750166", "97599490584", "91013050207", "97447840154", "04908270483", "01947410120", "92001650511", "01153660327", "01766550162", "97183510821", "92077270640", "02304750983", "90055620406", "92034030152", "80195510153", "80001320896", "80006860789", "01679910925", "94031310017", "01984420289", "92152840283", "96010790630", "92048230137", "91072860157", "04729170011", "91061310552", "98029720178", "91093840154", "90012170800", "02312010362", "01269090138", "97263690584", "00858270945", "03253810240", "90017300394", "02255600138", "94619410155", "86013090013", "02903980163", "01428910440", "02321350189", "91001680502", "02325500185", "01773190762", "02364620803", "02277490120", "94055500659", "92057120534", "91018720713", "04163500269", "04226740266", "92001040267", "01379940115", "94038070218", "03114410545", "04680860485", "00336990296", "90014520135", "96024900019", "03429110160", "91075590355", "80017450240", "96003280581", "80017680309", "02980150797", "92038300536", "93014370501", "95607430014", "02573670409", "01748811203"], ["4767722960", "4900003719", "7064000248", "1254770895", "3.01E+12", "2840007917", "4300020431", "7310212480", "8069295008", "7889887555", "50700209748", "7235910118", "7641090108", "916199077", "3400000239", "2840002815", "2390001426", "2829347431", "2050114724", "1284339324", "7160352900", "2190006337", "7468400102", "2190098174", "8814934101", "7064040110", "5272910113", "5965400200", "1330018501", "2840000950", "1258700070", "7827100305", "1628150722", "766074020", "7717051000", "7133171100", "7166200024", "4156500006", "1947400525", "7077000538", "4142000386", "2100065321", "4900002319", "8596708120", "1200002136", "3790099061", "5150001111", "2264897813", "2190006286", "7380000298", "2400001049", "2733100038", "7641090054", "7064030446", "1700000946", "7412911002", "7874236945", "7827100310", "1200003243", "1200080994", "7825000490", "1200000910", "67000512", "5210002743", "7257900202", "8814924003", "4000000032", "60916112011", "2430078106", "2840024337", "5070031746", "2260092050", "4900002392", "2840004320", "2840043774", "7874237352", "1820000962", "7512500306", "1300000124", "3.41E+11", "5070030183", "2840000764", "4900005691", "2840017251", "7064000355", "2840018024", "2840000979", "7309630003", "9518895591", "7310000137", "7199000007", "1230000025", "2840008991", "5100013797", "8079380505", "71084781450", "5070055654", "7230000666", "2796806120", "2829300290", "7286800015", "7309630004", "7273066039", "2429115037", "5200013514", "9044600032", "5070049855", "4300004582", "7956710032", "8113179201", "7273022202", "2610000662", "5210009550", "1820011047", "5100001293", "7940070020", "7615023248", "2590020087", "3500055100", "4650072403", "7874243304", "8137003513", "1090000010", "5200032585", "2400001026", "3755112444", "7940050730", "7273060042", "7874236999", "2800024630", "4603600664", "7641002110", "2840007083", "2840042055", "7281931001", "6414428243", "7641001029", "2840001226", "2720000253", "2829300523", "1090000024", "3160011311", "2840043966", "2840009824", "7225001148", "7641090319", "7084700972", "5410092502", "4420940593", "7825000464", "2700038246", "7373106002", "2840016213", "3549600659", "6233801479", "9255462001", "7874237308", "78250000461", "1254663756", "7756700396", "76653900422", "7360000700", "5070031631", "9392203850", "537204409", "3660081401", "4133366268", "3400000244", "2160320328", "7641009380", "3332217743", "3400000652", "2853412001", "2840043541", "4900000044", "4300005368", "4116710005", "7641009576", "8137004408", "7166200008", "4138822061", "2840016191", "4116710015", "7280600800", "7723100166", "3410000880", "7676827500", "2190001152", "2622977070", "7006200024", "72264897818", "7077000460", "7056085615", "7874210718", "2840016201", "5340035041", "4182001483", "4900005575", "5070029267", "4780000052", "9392201513", "1200050408", "6414404306", "7874202089", "2430080605", "5070055655", "7380000092", "2840014980", "4000000003", "7015514324", "3940002834", "7273021110", "2560008876", "2840044042", "60916184043", "7756713800", "8514141219", "7019535400", "7278510687", "7676811300", "8113177912", "6244683003", "7874222943", "7273029306", "2840000003", "7874236998", "2829300214", "4000000105", "7160312500", "2840003185", "8137004848", "7365099004", "7206008052", "2460001003", "2610080573", "4603600156", "7874201239", "2829388137", "8043210345", "7310000121", "3790099002", "1820025003", "7825000509", "2610000670", "7033070826", "7004920070", "2840016212", "7380000308", "2840002813", "5262412812", "2430088112", "7273066002", "1254661756", "1204434250", "2610000578", "2840008756", "7827100821", "2068570004", "4171000001", "2068507954", "7731241110", "4603600172", "2430083571", "8474640020", "7273066113", "7424927773", "2430083591", "7874222941", "7800000386", "4000042431", "51000138010", "7373100830", "2989273684", "4613512735", "2840002802", "3700028838", "7874207709", "1.20E+12", "5100014653", "1200081131", "1480058200", "2146699386", "2700042238", "916184043", "73798001014", "2840043392", "5210008690", "3700020437", "2840023676", "5006700082", "2840002279", "31254662970", "2500005394", "7064031050", "916126679", "472126194", "916112303", "5210008792", "6.94E+12", "85006700082", "2829360045", "4900005011", "7641009352", "2840016223", "24515005", "2840009119", "2264897804", "2610000128", "7874201432", "5070007476", "4856407403", "2430083546", "8298801002", "4900005816", "7874202656", "1200000013", "2264897805", "5070029261", "8066000002", "2840001192", "8113153531", "1330005201", "1820000135", "2610000657", "3980005745", "1820025014", "7800000165", "3010021768", "7301021409", "2100064001", "4000039412", "1254662872", "7199009511", "7756740441", "4370036012", "2430086579", "2190006339", "3800000120", "4815941667", "7273026203", "3160011811", "7115378573", "7206008709", "2840003492", "7874222942", "4143100265", "7615072105", "2190006353", "7206008058", "5210008793", "7313570121", "7225090064", "7940026620", "4220000065", "7512500106", "2430083521", "2840002249", "7587786012", "5250000191", "5070008802", "5070031556", "7097044616", "5100014879", "9392205920", "7940026570", "5100006187", "7133130124", "5070031112", "2829300797", "7827100217", "2840002763", "2840000360", "7235000008", "1254668501", "1600036800", "2560008877", "2430080711", "8814933001", "7811201746", "2264897844", "1200006145", "7013700023", "7225001748", "1300000269", "2190001146", "7003830949", "2840002473", "920000554", "7800008216", "2840026685", "5100013803", "2190006283", "8814921000", "2430073506", "7756701864", "2840004003", "7827100306", "7874237082", "2840002794", "7468400325", "7874236944", "7797501005", "8079380845", "4129497326", "2840018481", "7247798008", "4650000076", "2840023689", "2840009818", "5570812075", "7412912002", "4900002892", "1683765212", "7940020570", "2420009650", "3622751204", "7641090165", "7.86E+11", "2840009820", "4460002452", "1820000646", "1990000323", "2840043143", "7874236991", "2840000225", "7874237360", "2500004887", "7064030448", "4300095527", "1820000466", "4920005600", "4310063125", "4900005450", "7512500403", "2840019307", "2840018480", "3660082801", "5210007086", "3660083331", "2840007874", "2829380261", "2840004011", "5070055515", "2190006285", "2840009753", "4650018641", "2264897802", "8079380478", "7077001520", "5070030235", "8043280253", "2560008671", "7641009425", "2050114702", "1800000111", "5210000386", "5210008694", "2840021106", "2820015680", "4369503700", "7874208919", "3700034864", "4900000046", "7206008123", "4400002834", "7064040443", "916184237", "2430083526", "2829349109", "2500005801", "2190001170", "3700012343", "7235935018", "2190098145", "7940054900", "4878941265", "60916184236", "2820017365", "5210008787", "4000000263", "7641001073", "7273029333", "7084700402", "2840016542", "2829318521", "7077000114", "2840009748", "9392201510", "3120001605", "72264897802", "8390000385", "1941070001", "1200004170", "7827103", "2430083796", "7756700393", "28402009682", "7756700284", "7641001012", "4116817523"], ["249.1435626", "319.4609353", "101.9711427", "292.9427895", "40.14833576", "22.02727867", "239.6104939", "122.7590174", "144.0273906", "330.6332185", "279.627752", "18.53098235", "138.2384669", "314.7952595", "26.41848676", "127.0190011", "92.55890116", "180.5035921", "7.856121222", "60.46127963", "129.5288126", "315.9040365", "200.4147888", "168.2317111", "189.0763003", "195.194636", "153.0381776", "232.5928581", "322.9997892", "67.0861877", "271.4453348", "159.2402172", "64.88814239", "359.6182114", "77.09638948", "96.80972116", "311.5358074", "85.69769785", "83.82487097", "29.47945478", "312.7698712", "269.8224037", "70.89313497", "286.4314772", "214.1472274", "67.73414074", "335.6985667", "107.6796496", "83.82760246", "274.3987054", "330.2753412", "48.43869849", "97.46773702", "310.5150111", "359.6117395", "42.32817759", "174.2141235", "84.21382958", "127.3007327", "57.07185139", "181.4083757", "256.5887424", "62.08298536", "305.4822454", "110.6047693", "223.5085485", "181.8011155", "157.6771416", "185.7829912", "130.6453887", "86.88541529", "16.74898697", "349.6663082", "270.573845", "77.09118901", "104.564352", "137.6376356", "226.0024545", "119.4114767", "297.050597", "329.0648411", "233.5091169", "120.9637565", "74.89049812", "66.37709605", "20.23669152", "169.1144729", "175.9157171", "19.64494013", "120.1612295", "326.5708483", "303.4796611", "169.0762438", "27.21545613", "243.3358224", "31.58324777", "46.65705549", "80.98501914", "173.1909365", "75.01470678", "141.0492627", "288.0162687", "92.07129803", "18.69778868", "24.58282482", "48.70777602", "246.3793608", "18.03460361", "210.9091461", "82.08448688", "146.0381384", "131.9560368", "211.4883788", "46.69328894", "299.2955694", "136.8244117", "115.9918276", "276.129953", "55.85415515", "215.1053569", "86.43629456", "118.3672948", "337.2490237", "58.27517937", "90.09935883", "137.1634827", "204.7954743", "345.6438434", "102.9019434", "312.9364552", "272.2152784", "207.2230813", "353.9166935", "126.8135247", "239.2467093", "358.4814866", "175.7664186", "7.075100429", "300.7475273", "100.7656827", "317.4471439", "6.5668499", "164.1033041", "40.46761838", "127.3436344", "197.2966964", "41.78683648", "40.25141322", "191.0579493", "352.5543272", "186.8771262", "318.3547513", "342.4325031", "321.6489491", "40.76501166", "153.6921056", "255.9637565", "343.4170223", "285.7617834", "9.122367203", "267.5853435", "110.7591248", "81.24289518", "222.614056", "56.81823721", "170.539128", "340.1257033", "297.7526277", "279.7270209", "322.0346065", "79.83280024", "270.7150707", "342.883596", "318.3679998", "245.3550506", "212.3775659", "189.0338593", "290.0296721", "325.7659129", "190.8822088", "208.4050272", "117.0259649", "359.1885038", "59.985801", "36.65565882", "27.24174152", "240.892831", "156.0762208", "336.0090322", "161.4655175", "34.33111106", "275.7584391", "222.1561676", "145.9477435", "168.6242337", "198.4349488", "168.575987", "178.7372487", "57.95985494", "266.9931426", "84.70047559", "6.998755708", "329.9890712", "33.75324271", "179.1294496", "264.2391485", "167.344227", "67.13022262", "322.2953038", "144.2790482", "39.62368755", "3.50693414", "279.6936096", "291.2807655", "238.7536116", "269.9785524", "206.5650512", "338.1985905", "209.4524291", "45.12272414", "230.5695686", "292.381641", "237.6914335", "251.5182555", "5.597541304", "77.642332", "193.9508556", "169.9331739", "310.1863554", "47.72994211", "78.18073709", "322.8831393", "84.81675027", "111.3956843", "277.0663887", "159.9480409", "32.47718646", "135.0801178", "101.2989426", "154.4950365", "200.9231504", "278.9173247", "198.5898184", "8.295672918", "57.76805436", "54.45188957", "293.8577478", "138.3461433", "9.446781557", "110.3838328", "116.9115474", "117.8457218", "240.1724319", "126.2376525", "251.8208445", "268.7464001", "329.7404426", "258.6766604", "224.0103164", "192.7718575", "176.3458103", "141.5410486", "191.6943312", "149.5001668", "193.0631919", "355.0347098", "313.1880496", "61.26996883", "131.9885466", "47.47491902", "93.67045067", "136.4751631", "290.3206079", "296.8588365", "316.0786655", "93.13794944", "84.93203145", "66.95440186", "120.9838722", "229.8572975", "309.5074715", "193.1959045", "272.0675314", "125.6518765", "67.92266828", "322.955766", "309.5967455", "168.1384304", "359.6570534", "196.8805331", "337.7687024", "185.7284951", "333.4645464", "249.8303464", "351.7075871", "138.1719979", "164.2514125", "24.8831806", "28.40809131", "142.7059929", "349.643222", "245.1551034", "250.4364885", "253.2251767", "162.8554303", "163.6234432", "30.1889616", "314.0058426", "293.345462", "2.144932458", "197.2345648", "281.4968426", "335.0568837", "322.6248399", "247.5968029", "0.722026024", "127.1459735", "20.4304258", "193.7320398", "330.524111", "309.1592246", "122.306898", "34.93836377", "32.70333423", "244.6244191", "116.7554035", "1.271108072", "268.4447346", "161.6425082", "346.1352491", "244.2077499", "110.2542469", "219.9533756", "68.23020173", "334.4099085", "82.77734228", "275.4310251", "349.3803447", "321.0418605", "138.211555", "145.4786937", "127.8141702", "51.64128447", "190.4260161", "175.6669923", "17.16050304", "139.0013327", "114.9586805", "29.84579206", "69.34205071", "19.59761742", "177.0865784", "34.7012787", "10.83290175", "197.2658095", "189.6808642", "160.0121122", "325.4948526", "34.59848531", "340.6994176", "58.24651075", "129.5906149", "334.6565216", "338.7681058", "127.3758738", "292.1277513", "354.5520975", "234.794362", "223.917487", "73.78594114", "293.219165", "287.7004245", "67.31717359", "52.88303216", "356.107279", "126.2078641", "272.0170638", "313.0238689", "209.7384857", "124.8251672", "60.86370045", "121.7628989", "71.01044758", "80.44267849", "69.71331529", "152.893357", "209.1027503", "254.8497013", "128.7708149", "115.0315078", "115.2510959", "86.17217198", "12.9967784", "20.82642596", "315.7672811", "206.8000976", "192.8645607", "84.07434667", "34.19566613", "324.0926948", "206.4478465", "223.5313248", "308.5115539", "229.918232", "284.5145984", "331.4971783", "337.1116891", "52.08143396", "75.69985787", "221.4136949", "131.9598403", "271.4102284", "43.97938007", "30.22202988", "193.9172642", "50.75943357", "239.0379926", "277.586707", "24.02105751", "113.3354417", "281.916138", "60.15583109", "241.3114025", "306.5710599", "113.9526344", "141.009006", "271.8732684", "81.17522028", "200.6258982", "296.6002626", "195.5717953", "99.27757096", "146.2324913", "236.0035409", "183.3562818", "145.8303825", "297.6441817", "345.3544946", "324.5574757", "175.2695195", "7.431964064", "358.2648056", "356.6335393", "317.4824538", "351.7002831", "235.5394522", "199.5318187", "41.14471832", "223.6167344", "97.754566", "173.1118696", "345.6689266", "342.0938899", "253.0320784", "297.4575506", "140.5476599", "129.6764468", "81.33939633", "174.3517526", "54.88196938", "99.80633067", "176.6600263", "110.998573", "341.5387321", "78.89412808", "291.0508118", "299.8923143", "314.7707094", "103.2170209", "25.83744636", "2.21290525", "169.5189264", "340.820992", "72.25532837", "152.2672542", "335.0784559", "95.13654769", "187.2930959", "47.05488081", "12.6526602", "20.34323473", "117.0049148", "137.7810193", "338.8009659", "339.9543712", "101.5852043", "273.4459216", "244.5514415", "241.962255", "55.71680124", "46.29492383", "176.6188298", "16.86740273", "122.7256197", "245.1087631", "234.8684113", "37.35045824", "102.898254", "336.8683958", "355.0890107"], ["277131.15", "294302.0293", "281790.4502", "286380.0644", "279764.8937", "309316.8", "288062.1", "282944.3943", "277747.7061", "278667.65", "285883.4001", "278524.7752", "290751.95", "290044.5", "280396.7", "282959.8", "290362.4", "286314.3127", "289963.7", "289517.4501", "285649.65", "292784.9978", "285224.775", "294445.2595", "278502.8", "285515.3715", "278930.0939", "279182.1", "278163.4464", "279620.7551", "279677.7447", "286846.9", "292738.7125", "283994.6503", "282543.2251", "286259.375", "295219.1001", "279679.8772", "287678.8752", "284304.1", "290784.606", "277847.1724", "289197.775", "288533.1301", "278554.947", "285525.551", "292805.6563", "286626.2752", "290117.9216", "280238.8252", "290035.2626", "286986.15", "286719.075", "284206.7209", "286301.7385", "296607.9499", "284094.5973", "278893.25", "285040.325", "277251.3251", "286508.75", "286537.402", "294272.0101", "281382.9779", "291834.01", "289515.55", "286418.162", "289013.7885", "287754.35", "284195.6692", "281114.15", "289223.8095", "287067.0249", "284238.4", "292334.625", "278963.25", "287548.125", "296413.3", "284137.4802", "282303.3275", "278488.7702", "281757.6075", "287166.7252", "287226.125", "278582.3146", "298964.5003", "286239.525", "289310.2002", "279336.1999", "284170.0751", "278639.8251", "283850.8031", "283183.3752", "282849.2502", "281799.2551", "278264.8051", "286567.1752", "284972.4502", "289266.15", "286057.1", "293166.2487", "288937.7", "282973.975", "283943.1752", "279786.5375", "281657.5375", "278037.4051", "277624.8272", "288560.6127", "282844.925", "284255.446", "285412.8", "286890.83", "284109.1919", "282853.5953", "278916.7031", "277433.6998", "286945.6", "278806.55", "278771.7609", "286027.1875", "288709.65", "290420.887", "289959.4726", "286948.5636", "286826.8927", "285362.475", "293169.7309", "293230.0555", "290023.1", "291365.0942", "287036.8509", "281219.65", "288992.1", "287843.8752", "284345.0751", "289885.375", "287342.85", "280246.9271", "278482.9501", "283131.2731", "276733.7896", "276577.3", "277284.3668", "287245.4965", "282262.5789", "286210.5192", "282059.2001", "294028.225", "284861.782", "287852.3655", "281507.875", "276040.6371", "287978.7", "288994.0596", "277894.8735", "281136.4469", "288842.775", "281747.35", "287197.5002", "286922.1501", "294172.0831", "277776.3", "278939.1036", "285363.725", "281378.1779", "292718.0022", "286265.475", "284295.05", "287510.525", "292124.3499", "289430.875", "288856.975", "286634.8251", "287586.2", "287646.45", "289297.4187", "289897.7", "293868.7193", "295592.1", "287241.9", "275342.7948", "278787.575", "282224.7251", "285075.4272", "291535.45", "288858.9351", "288340.729", "289868.7901", "284218.0139", "292781.7357", "294940.1419", "285388.5658", "283013.925", "278975.1149", "290016.128", "287026.9249", "290401.8666", "278082.9346", "283824.925", "279195.8968", "288640.7558", "281732.0501", "291080.3", "278044.7", "287639.145", "286735.1531", "284006.075", "289726.5", "287160.324", "286398.3502", "278492.4251", "277926.755", "289620.2752", "296304.775", "288783.1008", "281161.2751", "288965.6", "284847.3096", "282702.7", "285613.8252", "278388.2502", "281507.275", "284192.0115", "291599.544", "285757.85", "281909.4", "281903.425", "285566.5252", "282749.4002", "284940.8251", "287194.175", "284812.9069", "292853.1999", "280230.1236", "277807.275", "283260.8502", "284380.4287", "290998.5", "288839.3002", "295420.2752", "292745.5364", "277766.2947", "288258.825", "294889", "278426.2", "284594.2502", "284637.225", "290318.3505", "283964.9422", "287976.6", "288933.05", "282636.925", "282053.425", "292972.565", "285738.3099", "296458.75", "287629.118", "280749.2501", "286252.825", "286473.325", "289277.775", "286575.939", "285009.7874", "283845.5061", "285399.0794", "287146.375", "281855.9495", "288284.1999", "279044.9981", "287602.3688", "292904.2752", "291915.8881", "283363.1", "288617.5501", "285307.0059", "278046.9306", "289231.8575", "287101.825", "287343.6338", "278559.1096", "278596.0749", "290614.4705", "291107.5", "279816.0135", "292106.4252", "277004.85", "282334.75", "278555.7", "282357.8", "283762.2711", "285669.6503", "292536.13", "277783.75", "283836.28", "278941.625", "296231.575", "284016.675", "278739.5912", "288767.25", "282977.6", "281009.7941", "299866.4", "283128.0324", "283438.4005", "291102.715", "284962.302", "281817.0789", "278303.7826", "279391.6325", "283377.8252", "282342.3297", "278142.3499", "285213.4429", "283980.0975", "282449.325", "288486.8924", "281578.65", "290156.37", "286637.85", "287183.75", "278664.275", "279633.225", "285968.2505", "286338.3397", "279941.6252", "295849.875", "277610.5252", "286741.3275", "292538.6576", "296840.182", "278825.1414", "278580.254", "287288.25", "281502.1237", "277706.002", "288976.55", "292991.35", "285731.8913", "289556.387", "282783.1502", "295692.524", "282681.0061", "292532.6", "288220.2492", "284797.5605", "288275.8689", "286761.325", "291081.7503", "284508.0252", "281324.8495", "289756.4629", "278116.4", "283613.1", "285787.831", "278495.225", "284603.5", "286366.856", "278538.2519", "294290.9032", "291018.25", "284107.275", "286858.0331", "283896.5415", "287928.275", "281414.3871", "288013.3", "287221.4147", "278905.1257", "282481.4973", "281755.2", "299771.2501", "282461.0625", "277606.9", "286626.8003", "287552.3602", "280065.83", "300398.1", "286257.8349", "286816.605", "284019.275", "284649.3021", "284922.425", "289916.2335", "279317.4", "289115.1004", "289364.9216", "289159.25", "284512.3749", "290715.7476", "283534.4708", "290062.4125", "285212.884", "295563.4066", "281851.705", "288694.625", "289375.7155", "278285.84", "284022.921", "289143.3", "287991.6952", "292486.1249", "287634.3503", "296547.1705", "285108.75", "288160.45", "292262.7886", "277864.7673", "284820.525", "278249.3", "289620.571", "284680.6462", "288279.925", "286489.975", "291687.2676", "285961.025", "278613.65", "286508.0882", "287464.8298", "277395.9251", "278437.475", "289929.4751", "277712.6762", "297042.4502", "278970.7245", "288204.1", "291268.925", "286434.1502", "289840.8", "278895.7939", "285296.75", "278913.525", "283795.175", "286895.9752", "279070.4", "277943.2752", "280499.6965", "287738.5642", "288838.0251", "291376.8475", "290473.7355", "296635.9501", "292257.025", "286743.6252", "285759.875", "282686.35", "290672.551", "285260.7385", "277988.2249", "289500.5995", "295758.8749", "289893.3252", "291501.95", "283158.1708", "288820.4915", "288619.6108", "286723.0301", "290556.45", "283652.3996", "284452.8924", "288702.405", "289908.95", "296255.4701", "288581.4001", "277665.4046", "291657.1", "285507.9415", "281405.0788", "285366.925", "286850.175", "292925.3948", "287413.9602", "278897.025", "285858.6751", "286619.7752", "287169.9", "278853.75", "285360.8502", "286899.875", "286811.6502", "288390.975", "299076.4535", "290017.2003", "284321.8051", "287501.4003", "278453.325", "280158.95", "284017.9068", "280821.3965", "283082.1", "285914.875", "289312.16", "289425.675", "279306.1142", "290053.8", "281987.55", "278796.0252", "279039.7998", "280249.9", "289864.3475"], ["0.055059665", "0.034857952", "0.030366298", "0.039327912", "0.021350234", "0.04863752", "0.013526427", "0.036849555", "0.021689421", "0.032298447", "0.028846839", "0.039178732", "0.084382248", "0.083913269", "0.048100006", "0.020224924", "0.06613758", "0.050286012", "0.027991148", "0.039392224", "0.024796637", "0.009934639", "0.100679422", "0.080440809", "0.032634398", "0.041996704", "0.219122873", "0.134388755", "0.033745225", "0.032839007", "0.099049597", "0.049119472", "0.042350586", "0.095337583", "0.042860522", "0.041114721", "0.041377019", "0.039956606", "0.017204007", "0.043295411", "0.024346109", "0.03424363", "0.026453732", "0.018318094", "0.032163637", "0.045259229", "0.029676563", "0.040983513", "0.005231458", "0.046162569", "0.089771781", "0.03090392", "0.016838921", "0.016907986", "0.039045746", "0.236066841", "0.248414352", "0.035665114", "0.031876751", "0.079067166", "0.039442723", "0.03832502", "0.196266502", "0.04517617", "0.047910454", "0.022306596", "0.040088283", "0.026557178", "0.030692791", "0.02840292", "0.055047669", "0.151054985", "0.03361445", "0.028454897", "0.013675679", "0.101972472", "0.121036454", "0.318072431", "0.047180687", "0.159516018", "0.028128872", "0.047349734", "0.139695469", "0.031586714", "0.032066241", "0.037078706", "0.029139447", "0.026615219", "0.092450143", "0.086893119", "0.016865304", "0.085102732", "0.027968637", "0.053862343", "0.073898821", "0.135854043", "0.054594665", "0.035778147", "0.030178592", "0.02710802", "0.036383459", "0.033928691", "0.063301172", "0.077718292", "0.028769806", "0.039840695", "0.148691091", "0.047243265", "0.107615618", "0.046747021", "0.070722338", "0.029319075", "0.034399784", "0.232892359", "0.041458336", "0.035913772", "0.187095625", "0.029415707", "0.08812364", "0.023868191", "0.113398807", "0.08903291", "0.016046618", "0.009745351", "0.026166706", "0.072735591", "0.039636457", "0.233504483", "0.033983437", "0.034909262", "0.025576489", "0.033288309", "0.131774115", "0.023191449", "0.022644038", "0.05550326", "0.036418858", "0.070621822", "0.273055813", "0.067343661", "0.035601141", "0.025865657", "0.015694085", "0.025076737", "0.032900606", "0.043336878", "0.030744171", "0.126199099", "0.034514314", "0.119657455", "0.051589293", "0.024200092", "0.044352001", "0.041745387", "0.034404275", "0.04990176", "0.034100986", "0.049212053", "0.024921395", "0.040162744", "0.072214153", "0.050385092", "0.029030609", "0.056324757", "0.031878726", "0.041889212", "0.034436459", "0.031625867", "0.007128865", "0.094839433", "0.012274285", "0.062492109", "0.040281408", "0.033123765", "0.04865058", "0.073615692", "0.134880225", "0.096226956", "0.021947023", "0.021575401", "0.036569742", "0.035702679", "0.034151389", "0.088102569", "0.04508337", "0.030006465", "0.046267415", "0.026363919", "0.054415994", "0.04775587", "0.049832147", "0.035714519", "0.041157618", "0.056155716", "0.044997395", "0.023869587", "0.047900267", "0.074862732", "0.041532726", "0.032263639", "0.047328467", "0.083561712", "0.028502726", "0.004342807", "0.133740364", "0.029518856", "0.040279073", "0.020042002", "0.032957653", "0.128742422", "0.044236746", "0.179008409", "0.028831288", "0.025821149", "0.020560342", "0.035259597", "0.030372875", "0.022577299", "0.037609906", "0.10547337", "0.006422733", "0.05611353", "0.056460067", "0.060510409", "0.017708886", "0.027708622", "0.008745343", "0.038132943", "0.029101285", "0.010095686", "0.066474553", "0.018906693", "0.025048548", "0.021198429", "0.099479295", "0.08622624", "0.03224281", "0.045402347", "0.032651615", "0.125404483", "0.043335828", "0.106558996", "0.104082021", "0.178174649", "0.03342703", "0.044619923", "0.043653395", "0.044920758", "0.033312316", "0.063387349", "0.022809362", "0.032150229", "0.22146624", "0.020350361", "0.0453731", "0.034777138", "0.030849435", "0.059379486", "0.036678349", "0.042709612", "0.036963766", "0.289166068", "0.040430566", "0.017320881", "0.006666592", "0.030331472", "0.02410561", "0.058025602", "0.014266746", "0.053015693", "0.035724904", "0.026344434", "0.027126754", "0.164098297", "0.043969093", "0.049501147", "0.021996204", "0.03620593", "0.027529257", "0.125663223", "0.03743524", "0.052855056", "0.075601458", "0.040618754", "0.017908782", "0.066513227", "0.031016203", "0.256827096", "0.018549643", "0.069581298", "0.094669995", "0.093664795", "0.028865683", "0.021687842", "0.033081004", "0.161106132", "0.122419953", "0.062010126", "0.089267953", "0.121451521", "0.01666757", "0.06477247", "0.031929073", "0.429099827", "0.056980156", "0.069836741", "0.026760315", "0.079005415", "0.044273251", "0.14411439", "0.11080376", "0.031120362", "0.107860429", "0.07645285", "0.053406505", "0.061747213", "0.011081604", "0.064975688", "0.033512505", "0.034283465", "0.034460414", "0.021649509", "0.056018666", "0.005546269", "0.022028205", "0.048652615", "0.034375039", "0.047198519", "0.030210449", "0.055231127", "0.047117845", "0.053410626", "0.076847532", "0.0352061", "0.036492226", "0.030076675", "0.060955357", "0.01960497", "0.041464213", "0.064160337", "0.104476648", "0.021513232", "0.030251672", "0.167830921", "0.030021142", "0.067505792", "0.04048229", "0.035792473", "0.05825239", "0.101358406", "0.023314646", "0.022960175", "0.034540014", "0.042721048", "0.026330352", "0.042443287", "0.032737519", "0.02372749", "0.064887039", "0.101345735", "0.031955705", "0.027362244", "0.023776971", "0.043448512", "0.171708505", "0.050144651", "0.044638187", "0.066665457", "0.038258456", "0.077466351", "0.033654693", "0.03250494", "0.013824992", "0.062353558", "0.071248598", "0.03586189", "0.037677433", "0.033668759", "0.047635296", "0.032132093", "0.030512131", "0.070420608", "0.141316511", "0.060761723", "0.157867527", "0.048159259", "0.071374301", "0.035005171", "0.0164363", "0.048989993", "0.04074538", "0.050660825", "0.055953862", "0.027095246", "0.042350422", "0.053907078", "0.031787153", "0.044474726", "0.088522415", "0.077179828", "0.021731762", "0.025598664", "0.067342424", "0.027984312", "0.02329894", "0.035110624", "0.0202687", "0.05088558", "0.040178802", "0.060954127", "0.068039385", "0.052083356", "0.024654693", "0.062554991", "0.038634282", "0.034118666", "0.035521462", "0.034945726", "0.024480631", "0.048904581", "0.038597757", "0.092370489", "0.099438355", "0.130925537", "0.027477472", "0.047382726", "0.039697196", "0.274550074", "0.033701835", "0.113689083", "0.040298576", "0.024332482", "0.121673231", "0.007462934", "0.029337669", "0.142837433", "0.079877976", "0.077885565", "0.028350746", "0.043423771", "0.048746742", "0.034064956", "0.040013282", "0.041826679", "0.038930295", "0.027021955", "0.04527664", "0.142399888", "0.034546483", "0.028859373", "0.029591068", "0.08830692", "0.023812566", "0.164310664", "0.044708819", "0.027506369", "0.051278969", "0.05502824", "0.499764779", "0.024985294", "0.034318577", "0.022879224", "0.04262208", "0.028830883", "0.046884003", "0.094170463", "0.023304363", "0.06989437", "0.038696928", "0.031655223", "0.151044427", "0.023665293", "0.143350234", "0.09267113", "0.079118559", "0.026657435", "0.049549995", "0.128419828", "0.055718379", "0.019232313", "0.243962908", "0.050443712", "0.021620377", "0.093639831", "0.074554376", "0.016142712", "0.036810543", "0.032467683", "0.004291826", "0.030437343", "0.035708374", "0.054497054", "0.061621462", "0.02879192", "0.059752976", "0.074909247", "0.120145842", "0.072712307", "0.092078735", "0.023054056"], ["39711.90072", "72499", "44220", "1711641", "13791.96552", "25777", "294223.5", "322689.8599", "250564.5", "4128", "113278", "877191", "804573", "6335", "2319532", "11206", "4392", "44686.55495", "15491", "87915.78021", "711404", "8559", "624564", "336129", "5130", "231243", "22092", "8844", "7077", "61342", "3585", "8841", "142635", "39258", "40322.56586", "91756", "25232", "24714", "150052", "6698", "241937", "208886", "23842", "160417", "12157.30294", "8928", "86422", "163689", "339923.1502", "14490", "9668", "5908.5", "552476", "142407", "14584", "790155", "107722", "668625", "14995.96251", "1629808", "2112445.5", "37454", "58596", "92359.7691", "20348", "110317.0575", "8488", "1148", "1124585.189", "1498699", "749", "210646", "40615", "447920", "115078", "9942", "341880", "37399.9065", "37035", "20509", "8389", "1692", "18714.61988", "6668", "404485", "27641", "311438", "594328", "34425", "25314.60338", "184454.2055", "59666", "160897", "2078671", "78", "654263", "2677", "291507", "51032", "114", "142871", "262071", "35683", "30973.2559", "6267", "1268964", "15324411", "560", "21936", "123875", "15426", "4538114", "319865", "390724", "275905", "143164.9754", "395492", "2569984", "60609.18181", "232294", "152456", "130106", "64038", "24063.93984", "830", "29556", "117543.7061", "58137", "26689", "68386", "3258", "1812204", "43256", "272316", "100665", "38375", "9080", "299982", "37642.5", "126021", "14327", "77309.14006", "226985", "355951.1101", "392433", "2770085", "20744", "241", "26325.26752", "626408", "220554", "354804", "473528", "11291", "11535", "246595", "10164", "1157.33044", "628413", "45845", "179180", "6022", "317996", "21603", "83788", "34136", "120181", "15222", "74752", "31912", "61742", "19791.95052", "270006", "527", "1370330", "19986", "738127", "87236", "12860", "2709", "565", "354608", "315064.5", "420982", "62429", "1665", "24540", "728", "66956", "1938761", "117362", "433401", "109886", "131359", "59689", "58295", "40338", "6172", "76", "142071", "287224", "691981", "80991", "492156", "87037", "35768", "83251", "962716", "133974", "249588", "39503.90124", "1547.99613", "88908", "29588", "141476", "677731", "524", "1934708", "33622", "96196", "25306.6034", "5722", "34589", "79069.5", "91690", "713198", "78282", "36347", "22004", "715200", "11164", "3434", "206131.4847", "266279", "19719", "196553", "10533", "78331", "8395", "1719.9957", "197099", "56080.5", "320", "4085", "71034", "119683", "2104", "176796.8913", "80452", "20919.9477", "21610", "88575", "114406.5", "28456", "2808", "121849", "37706.5724", "7299.98175", "382478", "15633.29425", "10141", "41588", "754328", "703540", "800586", "1013046", "823", "7253.3152", "603822", "231335.4217", "371297", "56390.52569", "22224", "37225.5", "20325", "2126", "246748", "641", "92918.43437", "44727", "288734", "7936", "143576.9744", "361546", "1853", "87152", "671", "27986.5967", "78935.80266", "130656", "11239", "294003", "468462", "41195", "126028", "381540", "232296", "94086", "8967.97758", "17150", "185512", "40615.89846", "42772", "52504", "379641", "18218770", "16035", "5580", "81198", "1143", "15090.62894", "104996", "490.66544", "8534", "131750", "124664", "5092", "133", "2854", "14728", "103194", "197520.8395", "29702.59241", "61450", "35112", "137443", "21123", "23227.94193", "36341", "197018", "484570.5", "75836", "107505", "71051", "81677", "2653.5", "121565", "6791.98302", "102769.0764", "38656.5", "35020", "955139", "4772", "639947.7335", "876169.5", "71595", "268257", "21603", "4080", "673010", "298579", "461.33218", "50618", "5835", "85234.45358", "1714892", "59967.85008", "322651", "138876.9861", "144593", "405672", "2712", "9420", "150182", "48406", "186794", "4032", "3794", "404872", "7016", "128410", "2748", "28108", "137726", "179692", "82829.12626", "42576", "734236.5", "775", "36390", "1157.33044", "4096568", "437368", "654", "11495", "11563", "562644", "20570", "238", "440", "748.5", "34676", "584233.5", "101783", "3204371", "50355.87411", "29391", "4931", "51890.53694", "78346", "87406", "100950.4143", "15428", "583023", "47715", "2910", "62378", "4352", "420468", "188484", "50032", "82153.12795", "4742.65481", "576028", "106126", "456741", "10760", "107190", "69756", "229397", "188439", "49188", "4581", "131275", "172841", "206678.15", "708345", "1012134", "455458", "27996", "61876", "33979", "88594", "413386", "115240", "38606", "33778", "101", "477427", "382", "34617", "20601", "39799", "11345.30497", "46689", "5248", "28318", "15950.62679", "39066", "680852.9645", "538679", "73961", "784425", "78092", "86409", "2317838", "124774", "93373", "166622", "8845", "9514", "18899.95275", "6133", "2696", "4613", "1355", "84162", "387865", "112276", "349.33246", "65225", "137346", "851", "209747", "31791.92052", "33168", "161814", "1585923", "89020.5", "66832.5", "110799", "110063.7248", "882", "18598", "59098", "155.99961", "329749.5", "135711", "115516", "2231023.5", "637729.5", "1726459", "72687", "9223135", "3159", "17591", "76236", "17811", "1954", "4473"], ["1090", "49410.54314", "3622.5", "3884", "909.33106", "5046", "91382", "19389", "2186", "186", "1011", "1585.32937", "18693", "22636", "782", "13997", "51846", "158", "29", "13288", "23145.27547", "275101.5", "110548", "114874.5", "13098", "14602", "16124", "245758", "18125", "21795.94551", "107", "198", "2131", "2971", "6992", "36010", "17608", "504", "448", "8335", "350.66579", "346", "22", "80968", "36136", "2897", "1517", "10123", "2029", "19", "946", "5858", "22574", "595", "4015.98996", "4631.98842", "520.5", "4590", "2517.32704", "1793", "20236", "363", "7774", "412", "2542", "9279.9768", "375", "4656", "1980", "98106", "4254.65603", "6333", "1755", "13945", "11892", "138", "21909", "16", "376", "6555", "2424", "37895", "27545.26447", "11070", "226", "780", "13546", "8311", "476", "5860", "55634", "969", "19584", "37534", "11386", "140540", "1367", "532", "79417", "109", "13", "3063", "893", "1632", "2169", "1709.32906", "27401", "4112", "5389", "351", "8792", "2185.32787", "653", "879", "17827", "1702", "318.66587", "790", "8952", "909", "435", "19140", "7680", "4783.98804", "2525", "12073", "4562.65526", "214", "6317", "89877", "21", "959.9976", "7745", "12475.5", "19328", "1234.5", "3546", "3967", "2246.66105", "5520", "12679.9683", "146521", "13325", "330", "35728", "940", "18321.28753", "9798.64217", "7029.31576", "13942", "336", "4274", "291", "2949", "354", "2497", "87", "19947.95013", "332", "23841", "1033", "65049.17071", "3025", "57148", "182.66621", "5484", "5606", "189320", "23902", "3349", "1879", "297", "1612", "6276", "12949.30096", "3723", "348", "1805", "11456", "1729", "580", "538", "4245.32272", "874", "39", "12204", "68", "207472", "1802", "9551", "283", "615", "688", "831", "304", "4534.65533", "222.66611", "28924", "62", "409.33231", "200", "1032", "458", "47660", "738", "599.9985", "686", "537", "517", "111", "774", "429", "3238.5", "910", "9560", "13838", "40", "56399.859", "18402", "17768", "32580", "515.99871", "3756", "50975", "6653", "14176", "456", "2743", "11815", "1945", "58.66652", "1909", "2721", "25", "3867", "2167", "1632", "1872", "1124", "33196", "5541.31948", "2462", "11494", "2346", "525", "19249", "1791", "55227", "1084", "3739", "8571", "2285", "112866", "1309.33006", "366", "542", "17391", "57722", "13565", "66", "606", "1022", "1696.5", "140", "9239.9769", "1117", "9308", "248", "5448", "74375.81406", "3282", "4269.32266", "1973.3284", "41764", "9651", "4552", "2825", "9214", "1667.99583", "625.33177", "24054", "60", "827", "630", "3748", "331", "187", "972", "11115", "11013", "3073", "9385.30987", "668", "4237", "27042.59906", "299", "13399", "445", "7113", "2762.65976", "3443.99139", "389", "23749.27396", "4207", "4514", "1704", "3603", "573", "4496", "19603", "13514.63288", "1845.32872", "34854", "7014", "14038.5", "5345", "320", "340076", "17888", "530", "25712", "1030", "280", "745.33147", "22961", "4898", "5547", "11064", "418", "4185", "22092", "292.5", "12607", "5576", "277.5", "192", "759", "382", "410", "7460", "12003", "581", "498", "2508", "10555", "21276", "2321", "9794", "35028", "1860", "1346", "51259", "9250", "7086.64895", "2204", "102826", "757.33144", "12966", "835", "268", "26240", "11149.5", "13072", "22202", "574", "9008", "5388", "13149", "1141", "7678", "1572", "23930", "3015", "23032", "528", "17362", "154", "463", "280", "671", "8061", "14373.2974", "2442", "77.33314", "5817.31879", "17214", "69075", "112", "46012", "3498", "1624", "5.33332", "26250", "68", "1008", "361", "6248", "635.99841", "2790.65969", "431", "74", "631", "16913.29105", "49563.87609", "9586", "14203432", "1643", "7245.31522", "4206.65615", "3072", "3973", "21890", "147", "2261", "1567.99608", "1042", "7364", "101", "30653", "2696", "36957.24094", "4230.65609", "97", "4082", "279166", "176", "258034.5", "19006", "247968", "270", "262", "2100", "814", "5656", "9810", "28666", "1739", "9", "22429.27726", "942.66431", "493", "512", "2182", "25237.27024", "1343", "564", "4483.5", "39330", "3121", "668", "5274", "1413", "4282", "246", "1996.5", "1294", "1569411", "262", "2341", "14328", "149", "276", "102", "5283", "2800", "23636", "82", "284198", "1856", "804", "18134", "1234", "3817.32379", "6323", "219", "914", "2720", "16", "3734.65733", "601", "133874", "7492", "171", "2071", "30172", "1222", "16611", "442.5", "8395", "963", "195", "9506", "228", "3292", "27387", "298", "29138", "80769", "6926", "8195.97951"], ["5.85011E-07", "5.89356E-07", "5.89566E-07", "5.86448E-07", "5.86461E-07", "5.86707E-07", "5.89428E-07", "5.83188E-07", "5.86036E-07", "5.85432E-07", "5.85349E-07", "5.86422E-07", "5.86197E-07", "5.84902E-07", "5.86729E-07", "5.86213E-07", "5.86088E-07", "5.8507E-07", "5.8622E-07", "5.85208E-07", "5.84815E-07", "5.74098E-07", "5.86164E-07", "5.85491E-07", "5.89471E-07", "5.86431E-07", "5.8603E-07", "5.85361E-07", "5.86749E-07", "5.88926E-07", "5.86221E-07", "5.88894E-07", "5.88872E-07", "5.86447E-07", "5.85589E-07", "5.84671E-07", "5.84784E-07", "5.84883E-07", "5.86364E-07", "5.74432E-07", "5.79042E-07", "5.86656E-07", "5.86399E-07", "5.8637E-07", "5.86544E-07", "5.81133E-07", "5.85156E-07", "5.85748E-07", "5.81687E-07", "5.85273E-07", "5.88718E-07", "5.73803E-07", "5.88386E-07", "5.89566E-07", "5.86997E-07", "5.88193E-07", "5.8639E-07", "5.75272E-07", "5.86633E-07", "5.78244E-07", "5.8685E-07", "5.86311E-07", "5.8905E-07", "5.84331E-07", "5.89289E-07", "5.82716E-07", "5.85573E-07", "5.86248E-07", "5.85548E-07", "5.79027E-07", "5.73823E-07", "5.8507E-07", "5.85072E-07", "5.86615E-07", "5.86245E-07", "5.85044E-07", "5.73532E-07", "5.74187E-07", "5.87356E-07", "5.86423E-07", "5.86277E-07", "5.74017E-07", "5.8624E-07", "5.89174E-07", "5.872E-07", "5.85198E-07", "5.77425E-07", "5.78875E-07", "5.86349E-07", "5.75519E-07", "5.86553E-07", "5.75333E-07", "5.85088E-07", "5.84909E-07", "5.84967E-07", "5.894E-07", "5.84158E-07", "5.85614E-07", "5.85099E-07", "5.85448E-07", "5.86532E-07", "5.86671E-07", "5.88398E-07", "5.73921E-07", "5.85376E-07", "5.7929E-07", "5.85331E-07", "5.86191E-07", "5.8605E-07", "5.86182E-07", "5.82483E-07", "5.803E-07", "5.86278E-07", "5.83867E-07", "5.85021E-07", "5.76743E-07", "5.89121E-07", "5.89496E-07", "5.78899E-07", "5.85287E-07", "5.88007E-07", "5.85413E-07", "5.8664E-07", "5.89547E-07", "5.75636E-07", "5.8532E-07", "5.89408E-07", "5.75678E-07", "5.85566E-07", "5.78577E-07", "5.89308E-07", "5.74889E-07", "5.89516E-07", "5.74569E-07", "5.89274E-07", "5.85194E-07", "5.86142E-07", "5.85241E-07", "5.74162E-07", "5.88142E-07", "5.85305E-07", "5.86169E-07", "5.89441E-07", "5.85727E-07", "5.88235E-07", "5.86579E-07", "5.86413E-07", "5.84437E-07", "5.84087E-07", "5.77597E-07", "5.85539E-07", "5.73869E-07", "5.89454E-07", "5.84682E-07", "5.84978E-07", "5.89174E-07", "5.87131E-07", "5.87628E-07", "5.74117E-07", "5.73358E-07", "5.73747E-07", "5.85101E-07", "5.86642E-07", "5.89424E-07", "5.88332E-07", "5.88774E-07", "5.86775E-07", "5.74724E-07", "5.77367E-07", "5.86429E-07", "5.89275E-07", "5.85009E-07", "5.86814E-07", "5.85197E-07", "5.85115E-07", "5.86573E-07", "5.86808E-07", "5.86387E-07", "5.86195E-07", "5.7777E-07", "5.86205E-07", "5.89471E-07", "5.74207E-07", "5.85194E-07", "5.78837E-07", "5.86091E-07", "5.86173E-07", "5.86485E-07", "5.74068E-07", "5.89169E-07", "5.85112E-07", "5.8591E-07", "5.88555E-07", "5.89376E-07", "5.89214E-07", "5.87036E-07", "5.84075E-07", "5.85503E-07", "5.85098E-07", "5.84651E-07", "5.86241E-07", "5.85885E-07", "5.88217E-07", "5.8518E-07", "5.75852E-07", "5.73707E-07", "5.8517E-07", "5.89462E-07", "5.8897E-07", "5.89417E-07", "5.8488E-07", "5.87026E-07", "5.85087E-07", "5.8395E-07", "5.85272E-07", "5.75436E-07", "5.78706E-07", "5.88579E-07", "5.85411E-07", "5.85053E-07", "5.74008E-07", "5.89088E-07", "5.84977E-07", "5.85508E-07", "5.85796E-07", "5.862E-07", "5.85992E-07", "5.86216E-07", "5.83319E-07", "5.84796E-07", "5.85078E-07", "5.85301E-07", "5.89381E-07", "5.73604E-07", "5.86171E-07", "5.85812E-07", "5.86112E-07", "5.86347E-07", "5.89113E-07", "5.84209E-07", "5.86308E-07", "5.86975E-07", "5.86232E-07", "5.89277E-07", "5.73554E-07", "5.89162E-07", "5.8614E-07", "5.86634E-07", "5.74427E-07", "5.8497E-07", "5.73449E-07", "5.77219E-07", "5.78184E-07", "5.88049E-07", "5.86424E-07", "5.8631E-07", "5.86473E-07", "5.8639E-07", "5.85301E-07", "5.86172E-07", "5.85295E-07", "5.7606E-07", "5.86588E-07", "5.8306E-07", "5.86964E-07", "5.86307E-07", "5.85266E-07", "5.86694E-07", "5.84614E-07", "5.85231E-07", "5.78021E-07", "5.81071E-07", "5.864E-07", "5.86419E-07", "5.74082E-07", "5.75802E-07", "5.87758E-07", "5.8081E-07", "5.88042E-07", "5.76483E-07", "5.8578E-07", "5.86949E-07", "5.86932E-07", "5.84668E-07", "5.85169E-07", "5.84894E-07", "5.74093E-07", "5.85846E-07", "5.74236E-07", "5.83384E-07", "5.86432E-07", "5.89233E-07", "5.85284E-07", "5.86286E-07", "5.85274E-07", "5.89264E-07", "5.7415E-07", "5.88262E-07", "5.86383E-07", "5.87509E-07", "5.88742E-07", "5.78767E-07", "5.73671E-07", "5.86729E-07", "5.85463E-07", "5.8633E-07", "5.89312E-07", "5.85354E-07", "5.80609E-07", "5.85363E-07", "5.85925E-07", "5.8913E-07", "5.85912E-07", "5.86975E-07", "5.86397E-07", "5.74275E-07", "5.86557E-07", "5.86628E-07", "5.89129E-07", "5.74133E-07", "5.85138E-07", "5.89494E-07", "5.86673E-07", "5.89376E-07", "5.73683E-07", "5.85235E-07", "5.89421E-07", "5.85482E-07", "5.85689E-07", "5.8502E-07", "5.85398E-07", "5.73878E-07", "5.85598E-07", "5.86382E-07", "5.86455E-07", "5.89416E-07", "5.85582E-07", "5.85934E-07", "5.86548E-07", "5.85592E-07", "5.87903E-07", "5.84818E-07", "5.85338E-07", "5.74144E-07", "5.88576E-07", "5.89144E-07", "5.86165E-07", "5.74491E-07", "5.77198E-07", "5.80854E-07", "5.86323E-07", "5.86588E-07", "5.7411E-07", "5.8558E-07", "5.87627E-07", "5.86339E-07", "5.86579E-07", "5.77717E-07", "5.73917E-07", "5.86167E-07", "5.8643E-07", "5.86026E-07", "5.8898E-07", "5.88505E-07", "5.85997E-07", "5.8535E-07", "5.87534E-07", "5.8917E-07", "5.89346E-07", "5.86812E-07", "5.85177E-07", "5.85041E-07", "5.89632E-07", "5.85684E-07", "5.85267E-07", "5.75639E-07", "5.86489E-07", "5.81284E-07", "5.87569E-07", "5.85509E-07", "5.89299E-07", "5.86227E-07", "5.86225E-07", "5.8493E-07", "5.73981E-07", "5.74031E-07", "5.89196E-07", "5.89463E-07", "5.86486E-07", "5.8937E-07", "5.89119E-07", "5.89154E-07", "5.88931E-07", "5.87084E-07", "5.88496E-07", "5.86305E-07", "5.85484E-07", "5.85147E-07", "5.7448E-07", "5.88056E-07", "5.85484E-07", "5.82922E-07", "5.83866E-07", "5.86609E-07", "5.7387E-07", "5.74243E-07", "5.85711E-07", "5.89468E-07", "5.78447E-07", "5.85319E-07", "5.85454E-07", "5.74672E-07", "5.7376E-07", "5.85618E-07", "5.85133E-07", "5.74503E-07", "5.87041E-07", "5.75522E-07", "5.87598E-07", "5.85202E-07", "5.88637E-07", "5.86417E-07", "5.85446E-07", "5.85447E-07", "5.88905E-07", "5.78554E-07", "5.78051E-07", "5.86096E-07", "5.89388E-07", "5.85746E-07", "5.86246E-07", "5.85332E-07", "5.86626E-07", "5.79312E-07", "5.73596E-07", "5.85245E-07", "5.86081E-07", "5.87977E-07", "5.86401E-07", "5.8517E-07", "5.89194E-07", "5.73904E-07", "5.74407E-07", "5.88566E-07", "5.78949E-07", "5.88063E-07", "5.86959E-07", "5.86353E-07", "5.8682E-07", "5.86589E-07", "5.73697E-07", "5.89404E-07", "5.87447E-07", "5.88401E-07", "5.85288E-07", "5.86174E-07", "5.73083E-07", "5.87247E-07", "5.86079E-07", "5.89433E-07", "5.81355E-07", "5.89246E-07", "5.84814E-07", "5.86337E-07", "5.89273E-07", "5.85145E-07", "5.86973E-07", "5.89466E-07", "5.73929E-07", "5.89308E-07", "5.86272E-07", "5.89503E-07", "5.86492E-07", "5.85977E-07", "5.86476E-07", "5.86276E-07", "5.86409E-07", "5.86189E-07", "5.89504E-07", "5.84536E-07", "5.86509E-07", "5.89063E-07", "5.89168E-07", "5.85902E-07", "5.8533E-07", "5.86273E-07", "5.85526E-07", "5.85368E-07", "5.89338E-07", "5.89158E-07", "5.75572E-07", "5.85393E-07", "5.85604E-07", "5.89429E-07", "5.85473E-07", "5.89173E-07", "5.73807E-07", "5.84902E-07", "5.79046E-07", "5.89272E-07"], ["-96.866669", "-97.003029", "-97.00312", "-97.012497", "-97.396667", "-96.988327", "-96.978333", "-95.155197", "-101.1147", "-101.318298", "-97.002502", "-97.011673", "-102.221703", "-103.256699", "-96.721657", "-97.022667", "-97.001999", "-96.695", "-97.475998", "-97.445671", "-97", "-101.296303", "-101.567703", "-97.085999", "-97.421333", "-97.383003", "-96.875", "-96.957657", "-97.229156", "-96.98333", "-101.047699", "-96.994957", "-97.380333", "-96.986328", "-101.408302", "-101.708199", "-96.848343", "-102.4217", "-97.0075", "-97.004997", "-101.3657", "-96.798332", "-97.503326", "-96.95829", "-96.952667", "-96.814667", "-97.010002", "-96.775673", "-96.981987", "-97.003754", "-97.009331", "-97.279167", "-96.999649", "-101.047897", "-97.006668", "-101.0933", "-97.169662", "-97.025002", "-96.970001", "-96.546669", "-97.407669", "-97.209328", "-96.563332", "-101.867699", "-97.119499", "-97.008331", "-101.066803", "-97", "-97.600403", "-97.008331", "-96.984657", "-101.849197", "-97.000832", "-97.001877", "-97.002609", "-103.160004", "-96.975998", "-97.168167", "-96.998329", "-96.672501", "-101.9813", "-96.859657", "-101.747002", "-101.940002", "-101.782204", "-96.827667", "-101.052002", "-96.995667", "-96.450996", "-97.32917", "-101.168198", "-97.573936", "-97.520973", "-103.263298", "-97.077499", "-97.393997", "-101.211304", "-102.32", "-97.591583", "-101.641197", "-97.316673", "-96.688332", "-103.179199", "-105.301697", "-97.004173", "-96.987999", "-103.166702", "-97.189499", "-95.1455", "-97.002037", "-105.335999", "-102.049301", "-96.829002", "-97.001358", "-96.632004", "-97.007668", "-97.047997", "-96.521667", "-101.307297", "-101.045898", "-97.529747", "-97.001297", "-101.067299", "-101.055702", "-101.354301", "-97.512154", "-97.466667", "-96.529999", "-97.001663", "-97.410667", "-101.967003", "-96.685997", "-96.995827", "-96.99263", "-97.577049", "-96.985611", "-102.436699", "-101.330299", "-97.582764", "-97.268784", "-102.129799", "-96.986", "-102.239197", "-97.0065", "-97", "-101.067802", "-101.1577", "-97.24897", "-102.256699", "-103.224998", "-96.571671", "-101.1763", "-96.771004", "-96.990288", "-97.003502", "-97.005829", "-95.179001", "-101.958", "-102.388298", "-102.083298", "-97.482437", "-97.178673", "-96.6185", "-101.068298", "-97.008003", "-105.385696", "-96.990044", "-101.048302", "-101.529999", "-97.565132", "-97.342003", "-101.048302", "-97.220657", "-101.197304", "-105.345497", "-101.059303", "-96.840668", "-96.971649", "-96.983673", "-101.050598", "-97.003326", "-97", "-97.001991", "-103.25", "-96.801666", "-101.903999", "-97.48967", "-102.098801", "-102.4067", "-97.561279", "-97.010002", "-96.538338", "-103.146698", "-97.004997", "-101.049202", "-97.006332", "-96.788673", "-97.355667", "-97.003662", "-96.984329", "-101.418297", "-96.977501", "-96.883926", "-96.955132", "-101.0466", "-101.083298", "-102.451698", "-102.553703", "-96.998001", "-96.967003", "-96.901733", "-101.693703", "-97.010834", "-103.269997", "-97.369331", "-96.726501", "-97.005333", "-97.111343", "-101.4608", "-96.433327", "-101.103699", "-103.276703", "-96.853668", "-97.149834", "-101.830704", "-102.571701", "-102.032303", "-97.366669", "-97.001663", "-97.308479", "-96.778748", "-105.419998", "-96.985832", "-97.060669", "-101.886002", "-97.087997", "-101.249702", "-96.708328", "-102.3517", "-105.430702", "-96.736656", "-101.7276", "-96.993332", "-101.125702", "-96.9645", "-96.699501", "-96.503998", "-97.014168", "-96.605003", "-96.697998", "-96.993362", "-101.183296", "-97.035332", "-101.2043", "-96.945", "-97.354172", "-97.291672", "-97.231171", "-97.005661", "-105.318001", "-97.000664", "-97.189171", "-96.986656", "-97.26667", "-96.6455", "-105.446701", "-96.707657", "-96.989487", "-96.986656", "-97.098663", "-97.045998", "-96.996681", "-96.747749", "-96.755501", "-105.377998", "-102.2052", "-97.098503", "-96.76767", "-96.752327", "-97.004333", "-97.348831", "-96.972931", "-105.435997", "-103.204201", "-97.000832", "-96.555", "-101.3423", "-96.588333", "-101.495003", "-101.045197", "-97.376167", "-97.001251", "-97.592819", "-97.389832", "-101.051697", "-97.001022", "-96.938332", "-97.0355", "-101.261703", "-97.199669", "-102.188698", "-97.007477", "-101.285301", "-96.936996", "-97.001961", "-101.225304", "-101.1903", "-97.003326", "-97.056503", "-96.763237", "-97.124001", "-97.435013", "-96.844337", "-102.32", "-101.2183", "-102.288002", "-102.066299", "-97.498207", "-97.438667", "-103.191704", "-95.166", "-96.984001", "-102.150803", "-101.766701", "-103.283302", "-97.003326", "-97.362503", "-101.073303", "-101.548203", "-96.831337", "-97.067001", "-97.002724", "-101.587196", "-96.782997", "-97.210167", "-103.153297", "-101.428299", "-97.431671", "-96.580002", "-97.004372", "-102.32", "-101.659698", "-96.737", "-96.714996", "-97.005997", "-102.535698", "-96.987953", "-96.937332", "-103.263298", "-97.009117", "-97.529793", "-97.341667", "-97.545509", "-96.990501", "-105.425301", "-96.983994", "-101.512497", "-96.786499", "-101.948997", "-102.015297", "-105.362701", "-97.547501", "-102.481697", "-102.466698", "-97.328331", "-97.007332", "-97.00238", "-96.866127", "-97.556313", "-96.468674", "-97.147163", "-97.513977", "-105.3703", "-97.004997", "-96.924004", "-102.370003", "-96.9515", "-96.985329", "-101.2323", "-97.000832", "-96.99073", "-96.995163", "-103.25", "-101.0653", "-96.98333", "-96.997307", "-101.797699", "-96.981339", "-103.139999", "-102.5177", "-101.387703", "-101.062302", "-96.726997", "-103.269997", "-96.813667", "-96.985657", "-96.749657", "-96.486343", "-101.444603", "-101.998299", "-96.916344", "-97.000343", "-101.6297", "-96.797333", "-105.398697", "-97.006668", "-97.006668", "-97.129997", "-96.964973", "-97.007004", "-97.424667", "-97.073334", "-102.300003", "-105.403999", "-96.895668", "-102.32", "-97.000679", "-97.010002", "-97.002502", "-96.880997", "-102.3358", "-96.994003", "-101.047203", "-96.596672", "-96.909668", "-101.606697", "-97.001701", "-101.147202", "-97.254173", "-97.014999", "-101.681702", "-105.309998", "-105.355003", "-96.762657", "-105.414703", "-97.136673", "-96.658997", "-102.172203", "-96.95163", "-101.813202", "-96.971001", "-97.157669", "-96.739998", "-101.376701", "-101.136703", "-96.895332", "-96.919533", "-97.013344", "-103.256699", "-97.304169", "-96.958", "-96.990829", "-97.459671", "-97.005829", "-101.618202", "-101.273697", "-103.276703", "-96.985001", "-96.717331", "-105.409302", "-97.288643", "-102.2742", "-97.448669", "-96.997002", "-101.477501", "-97.000633", "-97.109001", "-102.141296", "-96.712997", "-105.393303", "-97.241669", "-97.403671", "-105.441299", "-101.921997", "-105.3265", "-97.003326", "-97.452667", "-102.160301", "-97.006668", "-102.499702", "-97.008293", "-102.114304", "-101.3983", "-97.462334", "-97.538628", "-97.012497", "-96.814331", "-102.311996", "-96.701668", "-96.992332", "-103.133301", "-97.335167", "-97.012169", "-97.417671", "-101.239304"], ["407.3087032", "384.5786413", "408.9696229", "260.2009398", "419.0604768", "482.081855", "418.0628611", "371.0460975", "443.9179943", "382.4725305", "483.5401227", "366.7939894", "378.3799673", "347.3182213", "345.0912595", "450.7508207", "489.9579239", "351.5007664", "452.4340977", "464.9236188", "461.0091755", "432.2210302", "455.6371704", "494.8203553", "332.6323384", "385.2314633", "455.2876452", "434.7192062", "336.4258096", "403.0452439", "452.8110268", "399.079491", "411.1024788", "316.7378131", "442.8286888", "458.3696664", "450.6268724", "417.9187513", "381.3716164", "503.8998181", "409.7465079", "485.1242253", "392.7835676", "487.2071748", "513.2309666", "359.8247352", "311.3732434", "463.1549225", "317.8013838", "401.2289862", "492.8051886", "278.4183905", "452.9315685", "407.8490247", "277.2138081", "499.4706555", "399.1845639", "518.8027044", "483.5462488", "495.2906633", "435.6583381", "406.2423224", "444.1127234", "461.6150252", "500.8972419", "462.8641407", "424.0770401", "399.8711778", "428.3120598", "326.183723", "491.8779073", "370.1448876", "356.6452914", "402.5946696", "401.9288478", "488.5225441", "517.6929603", "432.6596344", "523.6849973", "435.5281167", "370.4706477", "295.3233412", "506.9905516", "386.5239639", "366.0884678", "476.763614", "446.6768175", "402.6265247", "343.6149749", "414.3666712", "340.5939213", "483.9264475", "354.8662421", "374.7831778", "467.5963897", "523.3066906", "460.1822525", "371.5106282", "381.9326548", "460.1242811", "367.2607928", "500.8087353", "486.7612587", "500.6003922", "426.8180801", "476.4646316", "503.5446696", "302.6254893", "361.6630765", "296.4652798", "507.8718649", "429.0457083", "513.2789255", "415.8301345", "377.4932894", "497.7338926", "445.9822187", "443.3995443", "503.1857693", "499.0204512", "476.7486834", "352.424211", "344.7762228", "477.3174095", "470.0896688", "494.6666868", "350.4845357", "374.9938428", "446.389408", "483.0476216", "381.6400296", "453.2053581", "481.2373334", "419.0471167", "457.3120666", "428.9558316", "495.4644275", "501.6303264", "432.7587246", "434.3990451", "318.2942398", "281.8107687", "384.8703184", "476.8076865", "344.6094021", "452.4114524", "505.591588", "510.1556676", "435.1508937", "471.6235545", "517.7346021", "489.0351102", "352.4051288", "454.2562164", "507.8120425", "316.3467849", "337.1842943", "405.6751223", "452.5971035", "477.814082", "491.9432118", "474.1650659", "355.8786394", "462.8441176", "373.1400718", "446.0744558", "472.2120714", "466.9092528", "299.1257276", "382.2816451", "481.2557128", "456.4868488", "427.2639912", "451.4023383", "481.0481002", "474.8590695", "498.4444022", "423.7220706", "483.3747449", "307.0729181", "487.8113944", "416.007886", "387.8707991", "382.3744382", "473.9328672", "466.856745", "490.3469435", "501.2234874", "285.455283", "375.0036758", "434.211703", "372.3752409", "382.6720256", "422.6671188", "281.1690402"], ["DCS-950", "DIR-820L", "DIR-600L", "DCS-2330L", "DCS-5300W", "DI-704", "DIR-803", "DXN-221", "DIR-850L", "DIR-655", "DIR-625", "DNS-343", "DIR-505", "DIR-615", "DIR-860L", "DNS-327L", "DIR-635", "DCS-2132L", "DCM-202", "DCS-5030L", "DI-824VUP", "DNS-320L", "WBR-2310", "DCS-933L", "DCS-932L", "DNR-322L", "DIR-820L", "DI-524", "DWL-G810", "DCS-1130", "DCS-825L", "DSL-2680", "DCS-1000W", "DIR-855", "DCS-5010L", "DNS-323", "DAP-1525", "DIR-615", "DCS-900W", "DIR-510L", "DSL-2740B", "DSL-2320B", "DIR-813", "DCS-950", "DWL-810+", "DNS-325", "DIR-615", "WBR-1310", "DNS-327L", "DCS-2132L", "DIR-505L", "DAP-1522", "DCS-825L", "DIR-815", "DPR-1260", "DAP-1320", "DCS-932L", "DCS-6620G", "DIR-879", "DIR-825", "DIR-803", "DIR-657", "DIR-866L", "DGL-5500", "DWL-G800AP", "DCS-1130", "DNS-323", "DNR-326", "DI-524", "DSM-G600", "DCS-932L", "DCS-1100", "DIR-628", "WBR-2310", "TM-G5240", "DCS-6045LKT", "DCS-942L", "DIR-632", "DI-704", "DI-824VUP", "DCS-5222L", "DSM-604H", "DCS-935L", "DNS-326", "DP-300U", "DCS-5009L", "DIR-825", "DIR-625", "DI-707P", "DCS-2100+", "DAP-1520", "DIR-820L", "DIR-810L", "DIR-808L", "DIR-820L", "DHP-W311AV", "DI-514", "DCS-932L", "DIR-626L", "DNS-323", "DSM-510", "DI-604UP", "DCS-932L", "EBR-2310", "DGL-4100", "DCS-2530L", "DIR-860L", "DIR-815", "DCS-5029L", "DCS-2000", "DGL-4300", "DCS-G900", "DAP-1525", "DAP-1350", "DCS-855L", "DIR-890L/R", "DNS-343", "DAP-1562", "DI-624", "DIR-820L", "DIR-605L", "DNS-320L", "DAP-1533", "DI-704", "DNS-320L", "DSL-302G", "DCS-3220", "DIR-826L", "DCS-5029L", "DCS-1000", "DNS-343-4TB", "DCS-6620", "DCS-1000W", "DNR-326", "DIR-868L", "DCS-930L", "DCS-2132L", "DPR-1260", "DIR-636L", "DAP-1522", "DIR-827", "DCS-1000W", "DCS-942L", "DCS-2132L", "DNS-320L", "DAP-1522", "DIR-645", "DCS-1000", "DCS-5020L", "DHP-701AV", "DIR-626L", "DIR-810L", "DIR-632", "DWL-900AP", "DI-713", "DCS-2100+", "DCS-2332L", "DCS-1130", "DCS-942L", "DCS-932L", "DSM-G600", "DIR-813", "DCS-920", "DAP-1360", "DSL-G604T", "DNR-326", "DIR-655", "DIR-836L", "DNR-322L", "DGL-4500", "DAP-1513", "DIR-855", "DIR-605L", "DI-624", "DSD-150", "DAP-1522", "DSL-302G", "DP-G321", "DIR-880L", "DCS-5300", "DCS-5020L", "DAP-1860", "DGL-4300", "DI-624M", "DIR-628", "DGL-4500", "DIR-835", "DPR-1260", "DCS-850L", "DI-524", "DI-701", "DCS-1100", "DI-624", "DAP-1360", "DI-707P", "DIR-450", "DWL-900AP+", "DIR-868L", "DNR-202L", "DCS-5300G", "DNS-323", "DGL-5500", "DIR-816L", "DCS-2100+", "DI-711", "DIR-605L", "DIR-880L", "DCS-5020L", "DIR-868L", "DIR-625", "DIR-890L/R", "DIR-645", "DCS-6620G", "DIR-855L", "DAP-1522", "DNS-323", "DCS-2330L", "DGL-3420", "DCS-800L", "DWL-G800AP", "DI-704UP", "DCS-5010L", "DAP-1320", "DCS-700L", "DIR-510L", "DI-704", "DIR-625", "DWL-G730AP", "DWL-G710", "DI-704", "DCS-5300W", "DNS-323", "DAP-1360", "DCS-5222L", "DIR-850L", "DHP-W306AV", "DSM-750", "DIR-818LW", "DCS-2100+", "DIR-895L/R", "DIR-817LW", "DIR-628", "DIR-505", "DIR-820L", "DNS-323", "DIR-866L", "DCS-950G", "DIR-810L", "DCS-5009L", "DPH-540", "DCS-3220", "DAP-1522", "DGL-4500", "DSL-504", "DCS-2132L", "DGL-4500", "DNS-343-4TB", "DGL-4500", "DGL-5500", "DCS-2630L", "DNS-320", "DIR-505", "DPH-541", "DCS-930L", "DIR-657", "DCS-825L", "DAP-1562", "DNS-321", "DSM-330", "DCS-5300W", "DAP-1350", "DCS-5300", "DNS-323", "DIR-628", "DSD-150", "DCS-5009L", "DIR-857", "DCS-2100+", "DCS-932L", "DCS-6620G", "DNS-327L", "DCS-5300", "DCS-2136L", "DAP-1520", "DSL-302G", "DCS-932L", "WBR-2310", "DIR-450", "DI-524", "DIR-815", "DI-624", "DWL-G820", "DAP-1520", "DIR-628", "DCS-1201", "DWL-G700AP", "DI-808HV", "GO-RT-N300", "DHP-W311AV", "DGL-4100", "DIR-815", "DSM-604H", "DIR-879", "DIR-880L", "DCS-960L", "DCS-931L", "DIR-820L", "DCS-900", "DNR-326", "DCS-950G", "DIR-655", "DI-804V", "DCS-5300G", "DIR-827", "DIR-615", "DCS-1100", "DPR-1260", "DCS-5300G", "DIR-855L", "DIR-868L", "DNS-327L", "DI-804", "DIR-857", "DCS-1100", "DIR-825", "DCS-910", "DGL-5500", "DCS-942L", "DNS-327L", "DCS-825L", "DI-604UP", "DIR-600L", "DIR-655", "DHP-306AV", "DCS-2630L", "DCS-700L", "DIR-451", "DCS-933L", "DI-614+", "DCS-850L", "DIR-818LW", "DCS-934L", "DIR-600L", "DAP-1320", "DCS-931L", "DIR-655", "DNS-323", "DNR-202L", "DNS-323", "DIR-655", "DWL-900AP", "DNS-327L", "DCS-942L", "DIR-450", "DP-301P+", "DWL-AG700AP", "DCS-2132L", "DIR-615", "DGL-3420", "DCS-5300G", "DIR-868L", "DIR-615", "DI-701", "DIR-655", "DIR-605L", "DNS-323", "DIR-815", "DNS-345", "DIR-865L", "DIR-655", "DIR-600L", "DIR-868L", "DIR-857", "DWL-G710", "DWL-G730AP", "DIR-625", "DNS-343-2TB", "DIR-655", "DCS-2100+", "DIR-635", "DCS-930L", "DIR-510L", "DP-100", "DNS-320L", "DWL-1000AP+", "DAP-1522", "DCS-920", "DIR-628", "DCS-931L", "DIR-865L", "DIR-665", "DIR-857", "DCS-2330L", "DIR-818LW", "DIR-815", "DIR-636L", "DIR-825", "DWL-G820", "DAP-1620", "DIR-836L", "DIR-803", "WBR-1310", "DCS-2136L", "DIR-820L", "DI-713P", "DIR-866L", "DCS-5010L", "EBR-2310", "DI-808HV", "DCS-2000", "DI-614+", "DIR-827", "DCS-933L", "DI-624M", "DCS-1130", "DCS-950", "DCS-942L", "DIR-859", "DIR-645", "DSD-150", "DIR-835", "DP-301U", "DNR-322L", "DIR-601", "DWL-G700AP", "DAP-1650", "DI-LB604", "DAP-1350", "DNR-202L", "DCS-2332L", "DNR-326", "DIR-600", "DSM-510", "DI-704P", "DCS-855L", "DIR-655", "DWL-G810", "DCS-942L", "DI-624", "DAP-1533", "DSL-2540B", "DCS-900", "DNS-320L", "TM-G5240", "DI-808HV", "DIR-625", "DCS-936L", "DSM-510", "DIR-636L", "DCS-3220G", "DIR-855L", "DCS-5300G", "DNS-343-2TB", "DIR-825", "DIR-816L", "DIR-605L", "DIR-450", "DCS-932L", "DIR-895L/R", "DIR-655", "DP-G310", "DCS-934L", "DWL-G710", "DIR-826L", "DIR-655", "DIR-635", "DIR-825", "DIR-865L", "DCS-930L", "DPH-540", "DHP-500AV", "DSM-210", "DCS-6620", "DIR-885L/R", "DIR-860L", "DCS-930L", "DAP-1350", "DIR-601", "DI-624", "DIR-850L", "DCS-5222L", "DCS-934L", "DCS-930L", "DNS-120", "DAP-1522", "DGL-4500", "DIR-826L", "DI-804HV", "WBR-1310", "DI-714P+", "DIR-505", "DNS-320", "DIR-505", "DSM-750", "DSM-624H", "DCS-930L", "DI-624", "DWL-810+", "DIR-825", "DWL-G810"], ["0.031930554", "1.284457478", "0.05303758", "0.02370079", "0.13604335", "0.583471308", "0.364328319", "0.126614495", "2.366387038", "0.066730431", "2.719110379", "7.395449898", "0.08649842", "0.028548815", "0.028998022", "0.149658075", "0.015252031", "0.019958382", "0.755008586", "0.550519147", "0.01532311", "0.431855501", "1.383890578", "0.067449805", "0.079820124", "0.933176629", "0.018709678", "0.175562732", "3.895663957", "34.66909532", "0.349581108", "0.043217079", "0.052600586", "0.951008758", "0.043542435", "0.129728132", "0.073969968", "0.006282164", "0.027599647", "4.584184155", "0.19590614", "0.010311153", "1.503659279", "0.901718709", "0.197790436", "0.02208871", "0.429292194", "0.009920733", "NA", "11.99453728", "0.105321354", "0.149364824", "0.146076352", "0.371949509", "0.342667436", "0.035500468", "50.21318415", "0.061915584", "7.354966887", "0.050977287", "2.855570839", "0.284863255", "0.031148096", "0.232017438", "0.038189161", "0.121965153", "2.818895182", "0.121461187", "5.145299145", "0.186566218", "0.104520587", "22.08992582", "0.23768289", "0.144663788", "0.114312268", "1.413316261", "0.352208716", "1.048369565", "3.214354067", "0.208469721", "0.038957174", "0.18790932", "0.048405053", "0.02016648", "0.166480428", "0.047574335", "2.893347307", "0.01440943", "0.089691322", "13.8115007", "0.016100438", "0.241489671", "0.047026458", "0.856608479", "0.020672262", "0.165321444", "1.382810022", "0.123825318", "0.781585221", "0.695041268", "1.594045233", "0.108938208", "1.847782647", "9.716475096", "0.089635993", "0.038627936", "0.023763648", "3.821530645", "0.05018787", "0.038073796", "0.24862063", "9.122619445", "0.95652294", "0.726634383", "0.088706008", "0.515634218", "0.150430456", "0.69769314", "0.024106359", "0.03074456", "0.315243171", "0.598880611", "0.121629213", "0.08494492", "0.269395646", "0.123330236", "0.118526158", "7.380829016", "0.109351364", "0.380352947", "0.034770672", "7.816374571", "3.019934641", "0.116395494", "NA", "0.041781945", "0.256350365", "0.054230346", "2.019506255", "0.363147652", "0.036567384", "0.084505235", "0.059859155", "0.213570193", "0.024101711", "0.03155264"], ["7.885541667", "7.5", "5.1504", "5.47", "5.4501", "8.4", "5.36", "5.383941606", "4.3", "5.43", "5.1206645", "5.1615", "5.84", "5.405555556", "4.5", "5.2725", "6.6", "5.328", "4.2", "5.383941606", "5.150955", "4.3", "9.435", "8", "5.32245", "5.4", "4.69", "4.57", "4.7", "6.4", "5.45", "6.1", "11.655", "9.435", "4.992971", "11.9", "5.2947", "8.4", "5.67", "5.383941606", "8.14", "9", "5.4", "7.1", "5.2", "5.16", "4.49", "7.9", "8.7", "5.328", "5.0505", "4.873170732", "5.5", "4.9", "6.08", "5.2", "5", "5.09", "5.53", "5.4", "9", "5.3", "8.07", "5.96", "8.2", "5.3", "5.61", "4.90065", "8.63", "7.4", "5.0283", "6.16", "5.1615", "5.106", "5.217", "6.114058", "7.17", "5.05", "5.305555556", "5", "5.405555556", "5.33", "5.2947", "5.2", "4.49", "5", "4.9", "4.995", "5.82", "8.7", "5.1615", "4.89", "3.986764", "4.96", "9.324", "4.2", "5.6", "8.35", "5.405555556", "8.1585", "7.7", "5.5", "5.07", "6.6", "5.53335", "5.0505", "4.8", "5.23365", "5.2", "4.62", "6.435177", "5.383941606", "4.1", "8.4", "5.0505", "5.55", "5.16", "4.9018045", "12.3765", "6.02", "5.77", "5.090323", "4.383333333", "5.383941606", "7.3", "5.59", "4.4", "5.45", "7.9", "8.35275", "4.3", "4.89", "10.5", "5.3", "4.75", "8.4", "4.873170732", "5.23", "5.106", "4.7", "4.4", "4.84", "5.661", "8.7", "5.43", "4.873170732", "5.55", "5", "4.1", "8.5", "5.106", "7.608136111", "5.82", "5.2", "5.23", "8", "8.73", "5.3", "10.5", "11.5", "5.4", "5.96", "7.15", "4.707246", "8.6", "5.1615", "8.35", "5", "6.02", "5.6", "5.294444444", "5.106", "5.02", "6.12", "9.6", "7.15", "5.2059", "5.09375", "9", "4.77", "7.7", "11.11111111", "4.96", "5.3", "6.49", "4.5", "5.6055", "6.6", "5.22", "5.47", "5.96", "7.8", "5.3", "5.21145", "5.43", "5.96", "5.33", "5", "8.436", "4.5", "9", "11.9", "5.23", "4.707246", "7.36", "4.992971", "5.4", "5.8", "5.9", "7.5", "5.41125", "9", "5.405555556", "4.2", "6.56", "5.6", "7.5", "5.16", "5.78", "4.433333333", "3.986764", "5.59", "4.89", "5", "4.57", "7.16", "5.98", "6.2", "5.33", "10", "5.23", "5.94", "7.8", "6.9", "5.3835", "9.11", "6.1", "4.65", "5.23", "5.4", "5.1615", "9.3", "7.1", "4.7", "5.12265", "5.47"], ["4.902496", "4.898897", "4.895325", "4.882403", "4.890077", "4.923667", "4.923667", "4.88397", "4.890718", "4.891398", "4.89113", "4.893193", "4.892327", "4.889914", "4.895278", "4.900298", "4.903815", "4.919568", "4.886132", "4.898094", "4.914866", "4.89139", "4.909114", "4.898119", "4.89", "4.886132", "4.891389", "4.889075", "4.891889", "4.91903", "4.89093", "4.884189", "4.89139", "4.892352", "4.883071", "4.881069", "4.905616", "4.882956", "4.896101", "4.891889", "4.883071", "4.893193", "4.891801", "4.88397", "4.89139", "4.900298", "4.881069", "4.894655", "4.884189", "4.89139", "4.896574", "4.903889", "4.896101", "4.89139", "4.898437683", "4.901438", "4.893193", "4.898437683", "4.899668", "4.905559", "4.895278", "4.90238", "4.902873", "4.89995", "4.899846", "4.891801", "4.893248", "4.895756", "4.899846", "4.890718", "4.899264", "4.895756", "4.89139", "4.897922", "4.89139", "4.90325", "4.895756", "4.904453", "4.895556", "4.895981", "4.892639", "4.91055", "4.882403", "4.879923", "4.883486", "4.892639", "4.875278", "4.887098", "4.898207", "4.883052", "4.888488209", "4.896475", "4.895556", "4.889444", "4.882956", "4.88397", "4.891944", "4.919073", "4.899471", "4.893611", "4.898119", "4.875278", "4.891862", "4.914866", "4.902892172", "4.902524", "4.891389", "4.91903", "4.905616", "4.9", "4.904453", "4.898119", "4.905616", "4.897241", "4.891801", "4.892639", "4.899471", "4.884189", "4.883071", "4.891801", "4.898045", "4.899442", "4.884759", "4.894828", "4.931234", "4.893248", "4.89139", "4.902496", "4.904088", "4.893193", "4.881675", "4.902892172", "4.89139", "4.886111", "4.889914", "4.897102", "4.900157", "4.902892172", "4.889075", "4.896535", "4.894416", "4.883071", "4.897747", "4.879956", "4.889722", "4.883512", "4.903815", "4.90238", "4.90238", "4.896101", "4.895716", "4.904088", "4.90238", "4.891862", "4.870578", "4.890955", "4.89139", "4.893333", "4.894722", "4.893248", "4.895176", "4.919568", "4.91903", "4.891801", "4.903333", "4.900157", "4.886132", "4.895278", "4.908192", "4.89139", "4.922628", "4.891862", "4.889378", "4.880192", "4.893193", "4.902496", "4.896101", "4.897241", "4.926208", "4.879923", "4.900278", "4.89139", "4.893193", "4.919568", "4.883071", "4.896101", "4.899471", "4.898207", "4.896389", "4.898119", "4.899846", "4.89378", "4.89167", "4.903815", "4.900278", "4.89139", "4.898207", "4.895756", "4.881052", "4.892432", "4.914826", "4.896101", "4.903815", "4.892639", "4.895716", "4.913056", "4.883311", "4.898207", "4.893193", "4.90135", "4.908342", "4.919568", "4.893248", "4.886132", "4.897222", "4.900278", "4.903345", "4.883071", "4.913056", "4.898119", "4.889444", "4.905559", "4.883071", "4.931234", "4.896768", "4.908192", "4.898207", "4.895716", "4.895716", "4.883052", "4.900157", "4.898119", "4.889722", "4.89139", "4.89113", "4.895716", "4.895981", "4.900298", "4.894828", "4.893193", "4.894655", "4.899846", "4.914866", "4.900298", "4.893248", "4.904558", "4.890718", "4.894614", "4.899846", "4.902496", "4.889075", "4.9", "4.882403", "4.883311", "4.899471", "4.903168", "4.898045", "4.903815", "4.912741", "4.870578", "4.893408", "4.898045", "4.891801", "4.903333", "4.891667", "4.905559", "4.900157", "4.89378", "4.89113", "4.889444", "4.896101", "4.898119", "4.901774", "4.898437683", "4.890955", "4.900157", "4.891944", "4.895981", "4.893193", "4.895278", "4.890718", "4.891889", "4.903889", "4.9", "4.893333", "4.898119", "4.890718", "4.9036692", "4.891389", "4.886964", "4.900298", "4.889914", "4.894118", "4.904558", "4.899846", "4.888334", "4.901438", "4.931234", "4.884189", "4.905616", "4.896475", "4.895716", "4.883056", "4.889167", "4.883071", "4.899442", "4.903889", "4.89139", "4.897922", "4.889167", "4.913056", "4.89139", "4.903815", "4.891667", "4.891389", "4.880786", "4.9", "4.889722", "4.89139", "4.891862", "4.896758", "4.899813", "4.89", "4.896475", "4.889444", "4.891862", "4.905616", "4.895884", "4.886132", "4.89139", "4.895556", "4.883512", "4.893248", "4.891801", "4.889444", "4.89139", "4.895981", "4.914866", "4.904558", "4.900157", "4.883924", "4.895556", "4.900298", "4.899471", "4.899442", "4.89139", "4.886132", "4.886132", "4.895756", "4.900278", "4.900298", "4.888766", "4.904352", "4.900278", "4.883993", "4.893193", "4.894444", "4.884189", "4.905616", "4.89", "4.880192", "4.90135", "4.891801", "4.893248", "4.889444", "4.886132", "4.896758", "4.895756", "4.883512", "4.89139", "4.896574", "4.889444", "4.898207", "4.901774", "4.890589", "4.897241", "4.898897", "4.900298", "4.89139", "4.884305", "4.894444", "4.914866", "4.904558", "4.890589", "4.896418", "4.893193", "4.903333"], ["46.6", "96.3", "52.2", "36.8", "55.3", "64", "46.8", "39.9", "98.9", "98.9", "39.9", "102.8", "76.9", "31.6", "52.2", "75.6", "64", "27.8", "33.3", "43.7", "27.8", "64", "109.1", "77.5", "47.8", "104.5", "204.83", "28.6", "61.3", "33.3", "96.1", "37.4", "67", "49.4", "143.9", "48", "31.6", "53.1", "75.6", "43.3", "127.7", "29.8", "40.6", "22.6", "48", "51.3", "52.1", "30.8", "51.6", "38.7", "61.2", "49.3", "34.3", "52.1", "37.9", "22.1", "41.6", "53.2", "45.9", "29.5", "40.7", "61.2", "69", "36.8", "47.5", "32.9", "28.6", "31.9", "32.9", "143.2", "31.6", "47.1", "10.1", "36.7", "27.8", "63.4", "239", "28.1", "43.6", "48.2", "30.9", "49.6", "39.4", "20.4", "61.2", "49.4", "82.6", "75.6", "76.9", "40", "43.7", "50.9", "52.2", "20.4", "38.9", "29.5", "102.8", "51.6", "47.1", "40", "45.8", "64.7", "33.7", "36.4", "30.9", "32.2", "129.2", "28.3", "312.9", "48.3", "34.5", "78.3", "56.1", "39.3", "45.8", "38.1", "63.4", "77.5", "71", "38.9", "44", "44.8", "65.3", "39.3", "63.7", "98.9", "45.1", "77.4", "39.3", "40", "38.6", "30.8", "34.4", "53.1", "62.5", "34.4", "39.3", "48.3", "22.1", "143.2", "29.8", "56.1", "43.3", "30.9", "61.3", "29.5", "39.4", "45.8", "21.1", "31.2", "47.8", "46.9", "64.7", "80.5", "32.9", "38.1", "28.3", "34.5", "55.3", "46.6", "20.1", "65.8", "31.2", "48.3", "98.6", "45.1", "32.2", "43.6", "43.6", "37.9", "33.3", "36.4", "41.6", "185.2", "69", "76.9", "52.1", "45.9", "61.3", "47.6", "75.6", "96.1", "73", "21.9", "96.3", "102.8", "82.6", "49.6", "36.8", "25.57142857", "62.5", "38.9", "80.5", "38.7", "20.4"], ["53.8", "61", "53.8", "28", "63", "38.4", "58", "66", "45.5", "67", "51.66666667", "61", "50.2", "22", "55.39", "49", "58.8", "59", "62.3", "23.9", "53.8", "23", "22", "38", "55", "53", "54.5", "47.1", "51.41970803", "25.7", "23.1", "28.6", "62", "38", "47.5", "35", "30", "46.1", "45.7", "40", "41", "58.3", "58", "52.4", "28.6", "61", "23.1", "25.7", "22.5", "53", "28.9", "58", "56", "55.5", "35.5", "29.12926829", "63.3", "45", "52.3", "23", "56", "60", "22.8", "54.91", "41", "56", "61.5", "46.9", "58.9", "56", "66", "36", "55", "40.5", "57", "23.9", "63.3", "55", "47.5", "72", "57", "60", "51", "56", "43", "23", "63", "56", "29.6", "58.7", "53.6", "50", "25.9", "60", "32.2", "54.2", "23", "32.2", "63", "66", "48.4", "62.3", "67", "57", "37.2", "55", "35.6", "38", "29.12926829", "25.7", "46.95117647", "48.86666667", "58.4375", "26.5", "63", "46.9075", "55", "60", "56", "67", "60", "52.4", "58", "63.9", "28", "38", "25.7", "22.8", "51.41970803", "55", "52.4", "52.4", "62", "57", "53", "60", "34.8", "35.5", "22.5", "35.5", "23", "51.41970803", "53", "63", "61.5", "58.7", "23", "47.5", "25.2", "40", "54.5", "29.12926829", "47.5", "53", "51.41970803", "51.2", "23", "45.5", "46", "30", "58", "52.7", "51.41970803", "29.6", "67", "36.4", "53", "27.4", "54.7", "45", "45.5", "40", "25.7", "58.7", "52.4", "43.6", "47.5", "25.9", "29.6", "60", "50.7", "30", "67", "43.6", "40.1", "23", "61", "35", "58.9", "63.9", "46", "30", "72", "67", "51.2", "50.3", "45", "66", "52.7", "45", "52.3", "37.1", "57.5", "60", "45", "45", "53", "58", "58", "51.3", "55.5", "36", "53", "47.02473684", "27.1", "28.9", "58.5", "53.6", "34.8", "43.6", "34.6", "58", "50.9", "27.1", "44.4", "25.7", "58.4375", "54.2", "54.62", "28", "52", "53.8", "53", "38", "57", "62.3", "57", "55.4", "50.9", "30", "59", "25.9", "61", "26.1", "58.3", "62"], ["360.4277462", "149.4637396", "225.2257788", "242.3390642", "267.5869022", "138.3773736", "193.9028912", "153.4766918", "273.6607482", "256.4697342", "182.8165252", "224.2108298", "141.3753768", "286.7608942", "110.1617914", "246.3987042", "114.2059728", "312.0087322", "244.3688842", "163.5949526", "210.0640022", "333.1969302", "148.4487906", "121.263772", "352.3709222", "320.0967842", "162.5800036", "248.3972962", "206.05105", "188.87499", "362.4419522", "339.2707762", "356.3993342", "222.1809318", "322.1109902", "135.3793704", "122.2631064", "125.3079534", "314.0229382", "117.2352052", "132.3813672", "265.5726962", "341.2849822", "126.3229024", "118.2501542", "187.860041", "277.6579322", "175.758726", "358.4135402", "161.5650546", "252.4413222", "194.9178402", "254.4399142", "124.2930044", "302.9369982", "214.092569", "294.8489462", "166.6397996", "189.889939", "229.238731", "164.6099016", "226.2407278", "296.8631522", "167.6547486", "209.0646678", "223.1958808", "250.4271162", "196.9477382", "123.2780554", "195.9327892", "120.248823", "165.6248506", "192.8879422", "292.8347402"], ["11.4", "5.2", "8.4", "0.1", "6.4", "1.6", "2.4", "2.2", "0.2", "1.1", "0.8", "5.6", "0.7", "6.4", "3.2", "0.2", "11.2", "1.6", "5.4", "5.4", "8", "2", "1.6", "2", "7", "5.4", "5.8", "1.2", "1.8", "1.6", "4.2", "6.14", "0.8", "7", "1.6", "9.4", "4", "2.8", "3.2", "3.6", "1.6", "2.75", "3.34", "2", "4.8", "3.8", "1.2", "2.2", "8.8", "0.2", "7", "2.8", "2.7", "1.2", "0.8", "7", "1.6", "10.6", "3.4", "9.1", "4.4", "0.4", "6.8", "2.2", "0.4", "7.6", "3.8", "3.6", "1.8", "12.6", "0.4", "3.6", "5.2", "7.6", "1.98", "2.6", "0", "0.8", "5.4", "9", "9.2", "3.8", "2", "0", "5.4", "2.6", "8.8", "0.25", "0.2", "0.2", "0.8", "0.4", "0", "10.4", "1.8", "4.413333333", "2", "1", "6.2", "8", "3.4", "1.3", "4.8", "5.2", "1.8", "4.6", "11.4", "1.2", "12", "1.3", "6.6", "6.6", "13", "1.4", "0.8", "3.2", "2", "2.6", "3.6", "3.6", "2.8", "5.8", "0", "7.6", "1", "0", "7.8", "5.6", "7.75", "5.25", "0", "3.8", "5.7", "7.2", "5", "3", "3.8", "5.6", "1.8", "8.6", "1", "0.2", "0.8", "3.8", "7.2", "1.1", "0.4", "6.6", "2.9", "8.8", "5.2", "5.75", "4.8", "7.6", "2.6", "4.2", "7.8", "7", "1.4", "8.4", "4", "4.413333333", "5.4", "1", "0", "0.5", "0.8", "6.6", "3.6", "0.8", "7.4", "5.4", "11.4", "5.2", "7.6", "7.8", "1.6", "5.6", "6", "7.36", "7.8", "7", "2.4", "9", "8", "0", "0.8", "5.8", "1.56", "2.6", "0.9", "4.8", "7.2", "0.6", "1.4", "4.4", "1", "0.7", "3.8", "0", "7", "1.6", "1.4", "1.8", "6.2", "4.28", "0.25", "3.87", "1.8", "4.8", "2", "2.5", "3.4", "1.1", "2.453333333", "5.6", "9.4", "4.2", "2.4", "13.5", "1.4", "3.8", "5.2", "5.6", "8.333333333", "5.8", "15", "2.2", "1.6", "6.4", "0.6", "3.6", "1.4", "5.6", "1.6", "1.4", "4.6", "3", "1.6", "6.5", "2.4", "1.2", "6", "8.8", "1", "2.32", "7.4", "1.2", "0.6", "11.4", "5.2", "4.666666667", "1.6", "12", "7.2", "0.7", "5.666666667", "4.4", "0.2", "2", "0", "1.98", "5", "1", "8", "3.6", "0.2", "4.2", "4.4", "1.4", "2", "9.6", "5.2", "2", "5.6", "3.2", "0.2", "2", "8.4", "5.6", "0.6", "7.6", "3.4", "3", "7.6", "1.6", "3.6", "4.8", "4.4", "3", "2.4", "6.25", "1", "3.6", "2.75", "0.8", "2.8", "5", "3.4", "4.8", "3", "1", "6", "4", "1.4", "8", "4.63", "0", "6.4", "2.2", "0.2", "8.6", "0.8", "7.6", "4.6", "2.2", "7.4", "0.2", "5.52", "0.8", "8.2", "3.75", "2.4", "3", "1.3", "4.2", "5", "1.2", "6", "2", "7.2", "0", "5", "4", "6.2", "1.4", "4.6", "4.4", "1", "1.2", "3.4", "8.2", "5", "3.6", "8.4", "7.8", "5.54", "2.32", "6", "0", "1.4", "3.6", "2.9", "0.5", "4.6", "2.2", "0.5", "0.8", "13.6", "2.96", "7.8", "1", "6.14", "0.4", "4.4", "12.6", "0.4", "4.4", "2.4", "0.2", "7.8", "0.4", "0.6", "0.4", "6", "3.6", "5", "11.2", "0.6", "2.4", "7.2", "2.8", "2.6", "3.8", "6.2", "10", "4.413333333", "3.56", "2", "1.6", "3.6", "0.9", "5.4", "0.8", "0.6", "10.6", "0.2", "15", "4.4", "9", "8", "2.2", "3.44", "5", "4.25", "2.6", "2.4", "1.5", "3.8", "0", "4", "5.4", "1.4", "8", "6.8", "0.8", "8.8", "5.2", "7.6", "0.8", "5", "3", "5", "1.68", "8.8", "5", "6.4", "4.2", "2.4", "5", "3.2", "5.8", "3.64", "7", "4.2", "0.1", "0.6", "1.8", "0.4", "0", "0.6", "2.6", "3.4", "1", "5.8", "4.2", "1.2", "0", "0.2", "2.4", "2.34", "6.2", "1.666666667", "0.4", "2.2", "0.9", "3.8", "5.36", "4.4", "10.25", "6.6", "8.8", "8.2", "5.6", "7.2", "6.8", "0.3", "1.6", "4.4", "4", "5.376666667", "3.6", "8.8", "1.6", "7.6", "4", "8.4", "0.8", "1", "0.3", "1", "6", "1.2", "0.4", "1", "0.6", "2", "1", "3.6", "4.4", "5.1", "2.6", "3.2", "6.4", "5.8", "3", "1.1", "4.6", "3", "2"], ["34.0264271", "34.0034731", "33.98916756", "34.0217355", "34.09129756", "34.0587022", "33.9745911", "34.1668637", "34.092221", "33.93895407", "34.28418731", "34.0435539", "33.99267241", "34.0626901", "34.0472563", "34.287098", "33.9198205", "33.9823625", "34.02062153", "33.9876036", "34.0468443", "34.005485", "33.989245", "34.0628458", "33.952709", "34.004453", "34.0592814", "33.8885943", "34.1785051", "33.9890486", "33.9314634", "34.0689851", "34.070238", "33.9965216", "33.9304917", "34.00524354", "33.97418", "34.05569", "34.0286551", "33.9034569", "34.263184", "33.9237304", "33.9437558", "33.901662", "34.27185555", "34.08778849", "34.0908675", "34.1939342", "33.95276731", "33.9294721", "34.0982485", "33.985667", "33.9687806", "34.0980819", "34.090696", "34.09097156", "34.0275527", "33.7898575", "33.892421", "33.93229185", "34.052068", "33.9746575"], ["16.7", "17.6", "14", "15", "19.3", "26", "20.03333333", "15.4", "13.11", "15.5", "18", "12.7", "15", "14", "14", "18.3", "14", "28.5", "16.4", "16", "24.1", "15", "14", "20", "14.7", "16.28", "25", "30", "15", "16.73", "19.18", "15", "14.7", "11.4", "14", "16.89", "15", "17.42", "17.01938431", "15", "20.1005615", "16.9", "17.5", "20", "18", "17.93185894", "15", "12.3", "18.1", "14", "20", "20", "32.23333333", "16", "16.6", "14.8", "20", "20", "17.07", "18", "32.5", "12.7", "13.3", "13.5", "20", "17.8", "16", "15.05882353", "18.7", "15", "19.4", "16", "16.9", "15", "13", "15", "23", "15.2", "14.7", "15", "15", "15", "15.2", "30", "15", "16", "16", "15", "25.7", "14.3", "16.34138101", "14", "16.79", "15.2", "14.2", "15", "24", "27", "16.94", "18", "18.34", "13", "12.7", "19.6", "20", "13.4", "16.8", "15", "20", "17", "15.8", "14", "22", "30", "17", "15", "14", "28.8161203", "15", "14.7", "18.2", "16", "20", "20", "14", "15", "16.28", "15", "20", "18.9", "20", "14", "14", "14.3", "14", "15.74", "15.2", "13.9", "14", "18.2", "14.4", "18.5609603", "14", "15", "30", "13.8", "13", "15", "27.9738917", "14", "19", "14.2", "15", "15", "20", "20", "23", "9.4", "17.6", "15", "14.2", "15", "14.3", "20", "14.5", "15", "16.39647476", "15", "21.3", "13.5", "16.8", "15", "19", "16.79", "20", "15", "14", "17", "16.5", "18", "19.2", "16.87", "17", "30", "15", "14", "14.2", "15.4", "10.1", "18.1", "21.7", "16.89", "15.9", "14.3", "17.36185998", "20", "15", "15", "15", "16.8", "16.73", "20.1", "13.9", "14", "13.6", "15", "15.74", "14.8", "20", "17.5", "16.94", "13", "20", "20", "20.5", "15", "29.8", "14.8", "15.9", "19.1", "14", "16", "16.6", "17.5", "31.52941176", "15", "18.9", "15", "14.4", "13", "18", "22.2", "14", "35", "18.1", "17", "33", "30", "17.07", "15", "16", "14", "15", "18", "16", "15.3"], ["-2.06", "-0.83", "-0.46", "-0.20", "-0.39", "-0.40", "-0.38", "-0.42", "-0.01", "-0.22", "-0.70", ".", "-0.14", "-0.48", "-0.53", "-0.72", "-0.47", "-1.47", "0.06", ".", "-0.36", "-0.27", "-0.22", "-0.09", "-1.34", "-0.29", "-0.14", "-0.32", "-0.41", "0.17", "-1.57", "-0.04", "0.05", "-0.13", "-0.82", ".", "-0.16", "-0.27", "-0.14", "-0.20", "-0.44", "-0.17", "-0.31", "-0.27", "c1972-c1950", "0.02", "-0.09", "-0.44", "-0.08"], ["401.3999939", "131", "872.4000244", "226.1000061", "5707.399902", "296", "296", "120.3000031", "708.4000244", "3802.199951", "378.1000061", "1172", "1059.300049", "302.2000122", "277.6000061", "2147.199951", "277.6000061", "495.7000122", "173.8000031", "120.3000031", "495.7000122", "708.4000244", "294.6000061", "296", "300.5", "353", "302.2000122", "557.4000244", "401.3999939", "708.4000244", "928.5999756", "495.7000122", "204", "300.5", "928.5999756", "338.5", "1025.900024", "708.4000244", "708.4000244", "909.4000244", "495.7000122", "495.7000122", "277.6000061", "1381.5", "277.6000061", "708.4000244", "120.3000031", "703.4000244", "572.2000122", "173.8000031", "708.4000244", "708.4000244", "899.2999878", "431.1000061", "296", "419.2000122", "495.7000122", "353", "378.1000061", "899.2999878", "277.6000061", "302.2000122", "495.7000122", "708.4000244", "708.4000244", "708.4000244", "708.4000244", "226.1000061", "1381.5", "5129.600098", "1332", "5526.399902", "708.4000244", "120.3000031", "787.5999756", "708.4000244", "495.7000122", "1025.900024", "5655", "4669.299805", "4734.5", "5655", "708.4000244", "708.4000244", "928.5999756", "294.6000061", "131", "131", "872.4000244", "5129.600098", "147.6999969", "378.1000061", "708.4000244", "495.7000122", "378.1000061", "222.8999939", "584.4000244", "928.5999756", "230.3999939", "456.8999939", "779.5", "495.7000122", "708.4000244", "557.4000244", "383.2000122", "708.4000244", "708.4000244", "4669.299805", "5707.399902", "300.5", "241.1999969", "5655", "222.8999939", "401.3999939", "147.6999969", "378.1000061", "708.4000244", "1172", "245.6000061", "1025.900024", "384.3999939", "495.7000122", "245.6000061", "872.4000244", "245.6000061", "173.8000031", "445.3999939", "708.4000244", "456.8999939", "226.1000061", "899.2999878", "495.7000122", "708.4000244", "4930", "495.7000122", "378.1000061", "708.4000244", "230.3999939", "5129.600098", "431.1000061", "296", "120.3000031", "708.4000244", "495.7000122", "708.4000244", "131", "241.1999969", "241.1999969", "708.4000244", "708.4000244", "296", "296", "708.4000244", "120.3000031", "542.2000122", "277.6000061", "495.7000122", "532.2000122", "495.7000122", "294.6000061", "4538.200195", "708.4000244", "384.3999939", "2147.199951", "557.4000244", "928.5999756", "708.4000244", "5526.399902", "384.3999939", "787.5999756", "708.4000244", "204", "230.3999939", "708.4000244", "495.7000122", "120.3000031", "708.4000244", "708.4000244", "245.6000061", "299", "204", "495.7000122", "708.4000244", "299", "708.4000244", "4930", "708.4000244", "811.5999756", "708.4000244", "708.4000244", "495.7000122", "277.6000061", "708.4000244", "708.4000244", "241.1999969", "1172", "245.6000061", "299", "708.4000244", "532.2000122", "708.4000244", "1381.5", "495.7000122", "120.3000031", "872.4000244", "495.7000122", "353", "708.4000244", "120.3000031", "811.5999756", "708.4000244", "708.4000244", "708.4000244", "240.8000031", "456.8999939", "893.9000244", "2147.199951", "811.5999756", "222.8999939", "708.4000244", "5707.399902", "787.5999756", "5129.600098", "431.1000061", "708.4000244", "5509", "338.5", "708.4000244", "5526.399902", "708.4000244", "928.5999756"], ["45.45454545", "42", "50", "25", "100", "61.17647059", "72.22222222", "44.44444444", "54.54545455", "35.29411765", "47", "33.33333333", "0", "100", "53.33333333", "41.44144144", "44.44444444", "25", "37.5", "52.94117647", "100", "24.3902439", "100", "43.33333333", "34.375", "0", "47", "70", "36.36363636", "37.5", "21.21212121", "27.08333333", "44", "100", "33.33333333", "0", "0", "0", "37.5", "0", "29", "100", "0", "45", "100", "29.41176471", "16.66666667", "0", "25.80645161", "0", "0", "65", "72.72727273", "0", "0", "0", "84.61538462", "0", "25", "37.5", "100", "62.5", "0", "0", "100", "41.97080292", "0", "54.54545455", "0", "100", "54.54545455", "69.23076923", "64", "100", "0", "0", "100", "47", "0", "100", "100", "45", "47", "69.23076923", "70", "24.3902439", "55", "48", "0", "17.24137931", "33.33333333", "67", "100", "37.5", "34.375", "76.92307692", "0", "48", "53.33333333", "100", "31.57894737", "100", "43.93939394", "50.84745763", "100", "0", "62.5", "45", "78.57142857", "0", "50", "48", "36.36363636", "57", "100", "42.1875", "0", "100", "25", "62.5", "0", "21.21212121", "41.97080292", "68", "37.5", "64.28571429", "100", "44", "100", "45.45454545", "0", "72.22222222", "100", "56.25", "40", "100", "72.72727273", "100", "14.28571429", "0", "48", "100", "0", "38.0952381", "53.33333333", "70", "47", "100", "0", "30", "66.66666667", "100", "43.33333333", "57", "48", "48", "33.33333333", "0", "55.55555556", "100", "0", "100", "100", "25", "33.33333333", "25", "100", "25", "48", "66.66666667", "100", "70", "100", "41.97080292", "43.33333333", "21.21212121", "84.61538462", "41.97080292", "48", "68", "51", "76.92307692", "0", "100", "52.94117647", "44", "27.08333333", "0", "44.33962264", "43", "34.375", "50.84745763", "52.94117647", "43.33333333", "100", "15.38461538", "100", "43.33333333", "29.41176471", "0", "0", "55", "45", "0", "41.97080292", "39.53488372", "100", "37.5", "78.57142857", "36.36363636", "27.08333333", "100", "37.5", "55.55555556", "20", "22.72727273", "100", "44.61538462", "0", "0", "0", "24.3902439", "22.22222222", "70.37", "0", "37.5", "47.61904762", "70", "50", "54.54545455", "70.37", "31.11111111", "100", "56.25", "100", "61.17647059", "100", "100", "0", "100", "50", "62.5", "61.17647059", "100", "11.11111111", "56.25"], ["40.64", "15.24", "0", "7.62", "55.88", "5.08", "35.56", "73.66", "25.4", "0", "30.48", "78.74", "10.16", "33.02", "63.5", "0", "10.16", "7.62", "20.32", "35.56", "0", "31.75", "43.18", "58.42", "76.2", "0", "0", "17.78", "20.32", "60.96", "57.15", "34.29", "0", "0", "25.4", "49.53", "66.04", "20.32", "0", "35.56", "43.18", "45.72", "48.26", "0", "2.54", "0", "76.2", "72.39", "0", "1.27", "0", "22.86", "0", "60.96", "33.02", "17.78", "0", "10.16", "20.32", "30.48", "35.56", "35.56", "76.2", "0", "25.4", "2.54", "78.74", "0", "0", "50.8", "5.08", "38.1", "0", "66.04", "35.56", "44.45", "0", "50.8", "0", "0", "10.16", "61.80666667", "25.4", "0", "48.26", "67.31", "53.34", "0", "76.2", "38.1", "73.66", "2.54", "20.32", "17.78", "0", "35.56", "17.78", "10.16", "53.34", "99.06", "17.78", "10.16", "0", "2.54", "101.6", "0", "0", "53.34", "78.74", "0", "7.62", "38.1", "5.08", "40.64", "0", "45.72", "0", "27.94", "0", "63.5", "66.04", "43.18", "11.43", "2.54", "48.26", "50.8", "7.62", "0", "60.96", "35.56", "2.54", "7.62", "0", "50.8", "5.08", "5.08", "0", "20.32", "66.04", "0", "53.34", "68.58", "17.78", "22.86", "0", "0", "60.96", "0", "0", "0", "30.48", "0", "22.86", "35.56", "0", "33.02", "0", "2.54", "2.54", "0", "25.4", "6.35", "27.94", "22.86", "0", "58.42", "58.42", "2.54", "78.74", "7.62", "20.32", "63.5", "25.4", "5.08", "7.62", "58.42", "22.86", "48.26", "12.7", "5.08", "35.56", "34.29", "0", "15.24", "35.56", "2.54", "0", "68.58", "63.5", "2.54", "7.62", "0", "55.88", "10.16", "50.8", "0", "33.02", "10.16", "57.15", "0", "76.2", "7.62", "0", "48.26", "35.56", "3.81", "48.26", "5.08", "35.56", "0", "48.26", "45.72", "0", "0", "60.96", "0", "3.81", "0", "15.24", "0", "86.36", "40.64", "88.9", "33.02", "68.58", "25.4", "68.58", "15.24", "5.08", "0", "27.94", "38.1", "0", "20.32", "121.92", "91.44", "71.12", "12.7", "57.15", "6.35", "12.7", "35.56", "73.66", "83.82", "53.34", "45.72", "55.88", "101.6", "43.18", "0", "7.62", "0", "0", "10.16", "10.16", "71.12", "40.64", "11.43", "0", "35.56", "43.18", "0", "38.1", "38.1", "83.82", "33.02", "15.24", "0", "10.16", "17.78", "53.34", "104.14", "10.16", "93.98", "108.3733333", "17.78", "2.54", "5.08", "53.34", "0", "40.64", "5.08", "0", "63.5", "0", "43.18", "0", "0", "27.94", "12.7", "48.26", "0", "63.5", "2.54", "106.68", "0", "5.08", "48.26", "0", "72.81333333", "6.35", "2.54", "33.02", "83.82", "40.64", "50.8", "10.16", "58.42", "0", "2.54", "66.04", "34.29", "12.7", "0", "2.54", "0", "33.02", "0", "5.08", "17.78", "91.44", "60.96", "55.88", "5.08", "2.54", "82.12666667", "68.58", "5.08", "0", "30.48", "68.58", "0", "0", "66.04", "86.36", "20.32", "27.94", "7.62", "0", "2.54", "20.32", "12.7", "40.64", "53.34", "0", "7.62", "0", "93.98", "25.4", "2.54", "20.32", "63.5", "0", "58.42", "25.4", "7.62", "10.16", "60.96", "40.64", "43.18", "0", "5.08", "35.56", "7.62", "0", "29.21", "5.08", "2.54", "15.24", "43.18", "0", "5.08", "86.36", "63.5", "68.58", "33.02", "63.5", "35.56", "53.34", "63.5", "6.35", "0", "7.62", "0", "7.62", "0", "0", "43.18", "0", "5.08", "0", "65.19333333", "86.36", "7.62", "7.62", "5.08", "41.91", "0", "2.54", "0", "22.86", "48.26", "27.94", "0", "60.96", "0", "38.1", "0", "33.02", "71.12", "0", "0", "53.34", "0", "15.24", "22.86", "5.08", "20.32", "10.16", "30.48", "0", "40.64", "55.88", "38.1", "63.5", "48.26", "0", "17.78", "5.08", "0", "78.74", "48.26", "0", "27.94", "10.16", "63.5", "11.43", "55.88", "43.18", "16.51", "20.32", "43.18", "53.34", "0", "0", "27.94", "68.58", "0", "20.32", "30.48", "0", "0", "0", "0", "35.56", "5.08", "0", "0", "27.94", "5.08", "5.08", "50.8", "33.02", "12.7", "50.8", "NaN", "17.78", "46.99", "67.31", "5.08", "20.32", "50.8", "0", "30.48", "0", "22.86", "22.86", "7.62", "77.47", "60.96", "7.62", "35.56", "50.8", "40.64", "83.82", "53.34", "76.2", "55.88", "35.56", "83.82", "114.3", "20.32", "15.24", "137.16", "2.54", "5.08", "40.64", "10.16", "76.2", "0"], ["CAMERON", "DALLAS", "KERR", "TRAVIS", "ELLIS", "BELL", "TRAVIS", "EL PASO", "HARRIS", "NUECES", "BEXAR", "BEXAR", "TAYLOR", "HARRIS", "KERR", "BEXAR", "EL PASO", "DALLAS", "WILLIAMSON", "DALLAS", "DALLAS", "WILLIAMSON", "HARRIS", "BROWN", "HARRIS", "VICTORIA", "HARRIS", "CAMERON", "RANDALL", "TRAVIS", "TRAVIS", "DALLAS", "DALLAS", "NAVARRO", "HARRIS", "CAMERON", "DALLAS", "TARRANT", "BEXAR", "SMITH", "DENTON", "BROWN", "EL PASO", "KERR", "HARRIS", "HARRIS", "ELLIS", "NUECES", "CAMERON", "HARRIS", "TRAVIS", "TRAVIS", "SAN SABA", "HUNT", "TARRANT", "TARRANT", "HIDALGO", "ERATH", "HARRIS", "BEXAR", "TRAVIS", "ANGELINA", "HENDERSON", "LUBBOCK", "MCLENNAN", "RANDALL", "DALLAS", "HARRIS", "DALLAS", "SMITH", "MCLENNAN", "TARRANT", "HARRIS", "WICHITA", "GALVESTON", "HOOD", "WILLIAMSON", "TRAVIS", "DALLAS", "WILLIAMSON", "HIDALGO", "DALLAS", "TRAVIS", "BRAZOS", "SMITH", "BEXAR", "DALLAS", "TARRANT", "BEXAR", "BEXAR", "BELL", "BELL", "MIDLAND", "NUECES", "DALLAS", "EL PASO", "TRAVIS", "BEXAR", "BROWN", "TARRANT", "BEXAR", "MONTGOMERY", "BEXAR", "TAYLOR", "DALLAS", "HIDALGO", "TARRANT", "COLLIN", "HARRIS", "KERR", "BEXAR", "SMITH", "LUBBOCK", "TARRANT", "TRAVIS", "HARRIS", "EL PASO", "HARRIS", "HARRIS", "JEFFERSON", "HARRIS", "LUBBOCK", "DALLAS", "HARRIS", "DALLAS", "POTTER", "TARRANT", "CAMERON", "HIDALGO", "DALLAS", "HAYS", "DALLAS", "SMITH", "CAMERON", "HIDALGO", "LUBBOCK", "HAYS", "DALLAS", "TAYLOR", "TRAVIS", "DALLAS", "FORT BEND", "VICTORIA", "HARRIS", "TARRANT", "BEXAR", "COMAL", "DALLAS", "TRAVIS", "EL PASO", "BEXAR", "HIDALGO", "BEXAR", "GALVESTON", "TARRANT", "ANGELINA", "GONZALES", "BELL", "DALLAS", "HIDALGO", "TARRANT", "WILLIAMSON", "FORT BEND", "SMITH", "HARRIS", "FORT BEND", "NUECES", "BROWN", "WICHITA", "BROWN", "SHELBY", "HARRIS", "POTTER", "BEXAR", "BEXAR", "BEXAR", "DALLAS", "NUECES", "CAMERON", "TARRANT", "TOM GREEN", "DALLAS", "TOM GREEN", "HAYS", "NUECES", "POTTER", "TRAVIS", "TRAVIS", "HARRIS", "BELL", "TARRANT", "NUECES", "BEXAR", "WILLIAMSON", "TARRANT", "EL PASO", "HARRIS", "NAVARRO", "BEXAR", "BEXAR", "WEBB", "HARRIS", "DALLAS", "KENDALL", "POTTER", "HARRIS", "HARRIS", "BROWN", "HARRIS", "LUBBOCK", "DALLAS", "BEXAR", "COMANCHE", "SAN SABA", "BROWN", "DALLAS", "HARRIS", "HARRIS", "TARRANT", "WICHITA", "TRAVIS", "TOM GREEN", "HARRIS", "TRAVIS", "WILLIAMSON", "NUECES", "TARRANT", "DALLAS", "DALLAS", "FORT BEND", "LUBBOCK", "SMITH", "BEXAR", "GALVESTON", "NUECES", "VAL VERDE", "BEXAR", "EL PASO", "TRAVIS", "LUBBOCK", "POTTER", "HARRIS", "JEFFERSON", "BEXAR", "BEXAR", "BEXAR", "TARRANT", "HARRIS", "BEXAR", "CAMERON", "GREGG", "CORYELL", "ELLIS", "TARRANT", "JEFFERSON", "MONTGOMERY", "DALLAS", "TARRANT", "MONTGOMERY", "DALLAS", "TARRANT", "TARRANT", "HIDALGO", "TRAVIS", "BEXAR", "TAYLOR", "SMITH", "DALLAS", "JEFFERSON", "TARRANT", "NUECES", "HARRIS", "HARRIS", "LUBBOCK", "HARRIS", "BRAZOS", "GREGG", "HARRIS", "HARRIS", "HIDALGO", "MCLENNAN", "TAYLOR", "HARRIS", "HARRIS", "LUBBOCK", "TRAVIS", "SMITH", "ECTOR", "HARRIS", "ECTOR", "LUBBOCK", "HARRIS", "MONTGOMERY", "HARRIS", "NACOGDOCHES", "TARRANT", "GREGG", "VICTORIA", "SMITH", "FORT BEND", "TRAVIS", "WEBB", "HARRIS", "MEDINA", "DALLAS", "HARRIS", "WEBB", "TRAVIS", "TRAVIS", "BELL", "NUECES", "TOM GREEN", "CAMERON", "HOPKINS", "BRAZORIA", "LUBBOCK", "TARRANT", "WEBB", "MIDLAND", "BEXAR", "CAMERON", "CAMERON", "DALLAS", "DALLAS", "POTTER", "SMITH", "TARRANT", "TAYLOR", "JEFFERSON", "DALLAS", "HARRIS", "EL PASO", "HARRIS", "TARRANT", "DALLAS"], ["Pf3D7_10_v3", "Pf3D7_13_v3", "Pf3D7_07_v3", "Pf3D7_03_v3", "Pf3D7_07_v3", "Pf3D7_08_v3", "Pf3D7_11_v3", "Pf3D7_04_v3", "Pf3D7_11_v3", "Pf3D7_08_v3", "Pf3D7_09_v3", "Pf3D7_13_v3", "Pf3D7_10_v3", "Pf3D7_12_v3", "Pf3D7_04_v3", "Pf3D7_09_v3", "Pf3D7_11_v3", "Pf3D7_09_v3", "Pf3D7_14_v3", "Pf3D7_05_v3", "Pf3D7_10_v3", "Pf3D7_01_v3", "Pf3D7_12_v3", "Pf3D7_03_v3", "Pf3D7_02_v3", "Pf3D7_13_v3", "Pf3D7_10_v3", "Pf3D7_14_v3", "Pf3D7_13_v3", "Pf3D7_05_v3", "Pf3D7_06_v3", "Pf3D7_08_v3", "Pf3D7_04_v3", "Pf3D7_10_v3", "Pf3D7_06_v3", "Pf3D7_12_v3", "Pf3D7_13_v3", "Pf3D7_08_v3", "Pf3D7_12_v3", "Pf3D7_10_v3", "Pf3D7_10_v3", "Pf3D7_09_v3", "Pf3D7_09_v3", "Pf3D7_09_v3", "Pf3D7_14_v3", "Pf3D7_13_v3", "Pf3D7_08_v3", "Pf3D7_03_v3", "Pf3D7_03_v3", "Pf3D7_07_v3", "Pf3D7_06_v3", "Pf3D7_12_v3", "Pf3D7_12_v3", "Pf3D7_06_v3", "Pf3D7_14_v3", "Pf3D7_09_v3", "Pf3D7_05_v3", "Pf3D7_12_v3", "Pf3D7_08_v3", "Pf3D7_14_v3", "Pf3D7_04_v3", "Pf3D7_14_v3", "Pf3D7_13_v3", "Pf3D7_02_v3", "Pf3D7_12_v3", "Pf3D7_12_v3", "Pf3D7_12_v3", "Pf3D7_07_v3", "Pf3D7_14_v3", "Pf3D7_08_v3", "Pf3D7_04_v3", "Pf3D7_11_v3", "Pf3D7_02_v3", "Pf3D7_11_v3", "Pf3D7_13_v3", "Pf3D7_14_v3", "Pf3D7_08_v3", "Pf3D7_12_v3", "Pf3D7_10_v3", "Pf3D7_03_v3", "Pf3D7_06_v3", "Pf3D7_11_v3", "Pf3D7_09_v3", "Pf3D7_03_v3", "Pf3D7_08_v3", "Pf3D7_12_v3", "Pf3D7_09_v3", "Pf3D7_11_v3", "Pf3D7_10_v3", "Pf3D7_07_v3", "Pf3D7_14_v3", "Pf3D7_14_v3", "Pf3D7_14_v3", "Pf3D7_13_v3", "Pf3D7_06_v3", "Pf3D7_04_v3", "Pf3D7_13_v3", "Pf3D7_13_v3", "Pf3D7_07_v3", "Pf3D7_08_v3", "Pf3D7_11_v3", "Pf3D7_14_v3", "Pf3D7_14_v3", "Pf3D7_08_v3", "Pf3D7_02_v3", "Pf3D7_12_v3", "Pf3D7_11_v3", "Pf3D7_14_v3", "Pf3D7_13_v3", "Pf3D7_09_v3", "Pf3D7_05_v3", "Pf3D7_10_v3", "Pf3D7_09_v3", "Pf3D7_11_v3", "Pf3D7_12_v3", "Pf3D7_10_v3", "Pf3D7_06_v3", "Pf3D7_09_v3", "Pf3D7_14_v3", "Pf3D7_11_v3", "Pf3D7_10_v3", "Pf3D7_14_v3", "Pf3D7_10_v3", "Pf3D7_14_v3", "Pf3D7_05_v3", "Pf3D7_04_v3", "Pf3D7_06_v3", "Pf3D7_13_v3", "Pf3D7_08_v3", "Pf3D7_10_v3", "Pf3D7_13_v3", "Pf3D7_06_v3", "Pf3D7_11_v3", "Pf3D7_09_v3", "Pf3D7_11_v3", "Pf3D7_05_v3", "Pf3D7_07_v3", "Pf3D7_06_v3", "Pf3D7_10_v3", "Pf3D7_10_v3", "Pf3D7_14_v3", "Pf3D7_12_v3", "Pf3D7_02_v3", "Pf3D7_08_v3", "Pf3D7_09_v3", "Pf3D7_14_v3", "Pf3D7_03_v3", "Pf3D7_05_v3", "Pf3D7_12_v3", "Pf3D7_08_v3", "Pf3D7_01_v3", "Pf3D7_06_v3", "Pf3D7_07_v3", "Pf3D7_14_v3", "Pf3D7_11_v3", "Pf3D7_03_v3", "Pf3D7_14_v3", "Pf3D7_06_v3", "Pf3D7_04_v3", "Pf3D7_01_v3", "Pf3D7_04_v3", "Pf3D7_05_v3", "Pf3D7_13_v3", "Pf3D7_14_v3", "Pf3D7_12_v3", "Pf3D7_01_v3", "Pf3D7_12_v3", "Pf3D7_12_v3", "Pf3D7_06_v3", "Pf3D7_04_v3", "Pf3D7_11_v3", "Pf3D7_08_v3", "Pf3D7_14_v3", "Pf3D7_14_v3", "Pf3D7_03_v3", "Pf3D7_09_v3", "Pf3D7_11_v3", "Pf3D7_14_v3", "Pf3D7_14_v3", "Pf3D7_11_v3", "Pf3D7_12_v3", "Pf3D7_09_v3", "Pf3D7_11_v3", "Pf3D7_13_v3", "Pf3D7_13_v3", "Pf3D7_13_v3", "Pf3D7_06_v3", "Pf3D7_08_v3", "Pf3D7_05_v3", "Pf3D7_10_v3", "Pf3D7_12_v3", "Pf3D7_13_v3", "Pf3D7_08_v3", "Pf3D7_14_v3", "Pf3D7_06_v3", "Pf3D7_12_v3", "Pf3D7_14_v3", "Pf3D7_06_v3", "Pf3D7_14_v3", "Pf3D7_14_v3", "Pf3D7_11_v3", "Pf3D7_06_v3", "Pf3D7_14_v3", "Pf3D7_14_v3", "Pf3D7_02_v3", "Pf3D7_11_v3", "Pf3D7_13_v3", "Pf3D7_14_v3", "Pf3D7_11_v3", "Pf3D7_10_v3", "Pf3D7_12_v3", "Pf3D7_13_v3", "Pf3D7_05_v3", "Pf3D7_07_v3", "Pf3D7_06_v3", "Pf3D7_11_v3", "Pf3D7_05_v3", "Pf3D7_10_v3", "Pf3D7_04_v3", "Pf3D7_10_v3", "Pf3D7_12_v3", "Pf3D7_08_v3", "Pf3D7_11_v3", "Pf3D7_05_v3", "Pf3D7_14_v3", "Pf3D7_12_v3", "Pf3D7_05_v3", "Pf3D7_07_v3", "Pf3D7_13_v3", "Pf3D7_13_v3", "Pf3D7_12_v3", "Pf3D7_07_v3", "Pf3D7_14_v3", "Pf3D7_09_v3", "Pf3D7_07_v3", "Pf3D7_13_v3", "Pf3D7_09_v3", "Pf3D7_03_v3", "Pf3D7_14_v3", "Pf3D7_08_v3", "Pf3D7_06_v3", "Pf3D7_11_v3", "Pf3D7_10_v3", "Pf3D7_10_v3", "Pf3D7_03_v3", "Pf3D7_09_v3", "Pf3D7_09_v3", "Pf3D7_11_v3", "Pf3D7_06_v3", "Pf3D7_14_v3", "Pf3D7_13_v3", "Pf3D7_09_v3", "Pf3D7_14_v3", "Pf3D7_03_v3", "Pf3D7_03_v3", "Pf3D7_13_v3", "Pf3D7_11_v3", "Pf3D7_05_v3", "Pf3D7_06_v3", "Pf3D7_13_v3", "Pf3D7_10_v3", "Pf3D7_14_v3", "Pf3D7_13_v3", "Pf3D7_09_v3", "Pf3D7_02_v3", "Pf3D7_14_v3", "Pf3D7_09_v3", "Pf3D7_06_v3", "Pf3D7_11_v3", "Pf3D7_12_v3", "Pf3D7_10_v3", "Pf3D7_10_v3", "Pf3D7_11_v3", "Pf3D7_14_v3", "Pf3D7_03_v3", "Pf3D7_06_v3", "Pf3D7_09_v3", "Pf3D7_13_v3", "Pf3D7_07_v3", "Pf3D7_05_v3", "Pf3D7_07_v3", "Pf3D7_11_v3", "Pf3D7_12_v3", "Pf3D7_11_v3", "Pf3D7_08_v3", "Pf3D7_14_v3", "Pf3D7_05_v3", "Pf3D7_06_v3", "Pf3D7_09_v3", "Pf3D7_05_v3", "Pf3D7_06_v3", "Pf3D7_04_v3", "Pf3D7_13_v3", "Pf3D7_09_v3", "Pf3D7_13_v3", "Pf3D7_11_v3", "Pf3D7_12_v3", "Pf3D7_11_v3", "Pf3D7_04_v3", "Pf3D7_05_v3", "Pf3D7_09_v3", "Pf3D7_05_v3", "Pf3D7_08_v3", "Pf3D7_14_v3", "Pf3D7_05_v3", "Pf3D7_09_v3", "Pf3D7_11_v3", "Pf3D7_13_v3", "Pf3D7_07_v3", "Pf3D7_03_v3", "Pf3D7_03_v3", "Pf3D7_06_v3", "Pf3D7_01_v3", "Pf3D7_09_v3", "Pf3D7_12_v3", "Pf3D7_07_v3", "Pf3D7_14_v3", "Pf3D7_13_v3", "Pf3D7_02_v3", "Pf3D7_07_v3", "Pf3D7_02_v3", "Pf3D7_04_v3", "Pf3D7_08_v3", "Pf3D7_05_v3", "Pf3D7_13_v3", "Pf3D7_05_v3", "Pf3D7_13_v3", "Pf3D7_01_v3", "Pf3D7_05_v3", "Pf3D7_14_v3", "Pf3D7_05_v3", "Pf3D7_14_v3", "Pf3D7_11_v3", "Pf3D7_12_v3", "Pf3D7_07_v3", "Pf3D7_05_v3", "Pf3D7_11_v3", "Pf3D7_06_v3", "Pf3D7_09_v3", "Pf3D7_13_v3", "Pf3D7_12_v3", "Pf3D7_13_v3", "Pf3D7_11_v3", "Pf3D7_14_v3", "Pf3D7_13_v3", "Pf3D7_13_v3", "Pf3D7_14_v3", "Pf3D7_11_v3", "Pf3D7_12_v3", "Pf3D7_11_v3", "Pf3D7_06_v3", "Pf3D7_13_v3", "Pf3D7_02_v3", "Pf3D7_14_v3", "Pf3D7_06_v3", "Pf3D7_14_v3", "Pf3D7_13_v3", "Pf3D7_02_v3", "Pf3D7_02_v3", "Pf3D7_14_v3", "Pf3D7_11_v3", "Pf3D7_02_v3", "Pf3D7_06_v3", "Pf3D7_09_v3", "Pf3D7_10_v3", "Pf3D7_09_v3", "Pf3D7_13_v3", "Pf3D7_03_v3", "Pf3D7_04_v3", "Pf3D7_06_v3", "Pf3D7_14_v3", "Pf3D7_07_v3", "Pf3D7_13_v3", "Pf3D7_11_v3", "Pf3D7_11_v3", "Pf3D7_12_v3", "Pf3D7_14_v3", "Pf3D7_04_v3", "Pf3D7_02_v3", "Pf3D7_14_v3", "Pf3D7_11_v3", "Pf3D7_14_v3", "Pf3D7_05_v3", "Pf3D7_13_v3", "Pf3D7_05_v3", "Pf3D7_13_v3", "Pf3D7_05_v3", "Pf3D7_14_v3", "Pf3D7_14_v3", "Pf3D7_10_v3", "Pf3D7_12_v3", "Pf3D7_09_v3", "Pf3D7_07_v3", "Pf3D7_03_v3", "Pf3D7_11_v3", "Pf3D7_03_v3", "Pf3D7_10_v3", "Pf3D7_09_v3", "Pf3D7_07_v3", "Pf3D7_11_v3", "Pf3D7_14_v3", "Pf3D7_14_v3", "Pf3D7_12_v3", "Pf3D7_10_v3", "Pf3D7_14_v3", "Pf3D7_13_v3", "Pf3D7_05_v3", "Pf3D7_06_v3", "Pf3D7_12_v3", "Pf3D7_08_v3", "Pf3D7_01_v3", "Pf3D7_14_v3", "Pf3D7_02_v3", "Pf3D7_09_v3", "Pf3D7_10_v3", "Pf3D7_11_v3", "Pf3D7_09_v3", "Pf3D7_14_v3", "Pf3D7_14_v3", "Pf3D7_11_v3", "Pf3D7_06_v3", "Pf3D7_04_v3", "Pf3D7_08_v3", "Pf3D7_03_v3", "Pf3D7_07_v3", "Pf3D7_14_v3", "Pf3D7_09_v3", "Pf3D7_05_v3", "Pf3D7_10_v3", "Pf3D7_12_v3", "Pf3D7_14_v3", "Pf3D7_14_v3", "Pf3D7_09_v3", "Pf3D7_14_v3", "Pf3D7_13_v3", "Pf3D7_11_v3", "Pf3D7_06_v3", "Pf3D7_02_v3", "Pf3D7_11_v3", "Pf3D7_10_v3", "Pf3D7_11_v3", "Pf3D7_07_v3", "Pf3D7_13_v3", "Pf3D7_14_v3", "Pf3D7_07_v3", "Pf3D7_11_v3", "Pf3D7_13_v3", "Pf3D7_12_v3", "Pf3D7_12_v3", "Pf3D7_11_v3", "Pf3D7_04_v3", "Pf3D7_14_v3", "Pf3D7_14_v3", "Pf3D7_07_v3", "Pf3D7_10_v3", "Pf3D7_13_v3", "Pf3D7_13_v3", "Pf3D7_02_v3", "Pf3D7_13_v3", "Pf3D7_06_v3", "Pf3D7_10_v3", "Pf3D7_13_v3", "Pf3D7_10_v3", "Pf3D7_08_v3", "Pf3D7_07_v3", "Pf3D7_13_v3", "Pf3D7_01_v3", "Pf3D7_05_v3", "Pf3D7_03_v3", "Pf3D7_02_v3", "Pf3D7_08_v3", "Pf3D7_14_v3", "Pf3D7_06_v3", "Pf3D7_09_v3", "Pf3D7_09_v3", "Pf3D7_14_v3", "Pf3D7_03_v3", "Pf3D7_03_v3", "Pf3D7_10_v3", "Pf3D7_12_v3", "Pf3D7_03_v3", "Pf3D7_14_v3", "Pf3D7_01_v3", "Pf3D7_14_v3", "Pf3D7_14_v3", "Pf3D7_03_v3", "Pf3D7_02_v3", "Pf3D7_08_v3", "Pf3D7_12_v3", "Pf3D7_06_v3", "Pf3D7_14_v3", "Pf3D7_14_v3", "Pf3D7_13_v3", "Pf3D7_01_v3", "Pf3D7_13_v3", "Pf3D7_12_v3", "Pf3D7_10_v3", "Pf3D7_10_v3", "Pf3D7_13_v3", "Pf3D7_12_v3"], ["1.612903226", "0", "0", "0", "0.81300813", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "1.724137931", "0", "0", "0", "0.37593985", "0", "0", "0", "0.617283951", "0", "0", "2.380952381", "0", "1.804123711", "0", "2", "0", "0", "2.040816327", "2.43902439", "0", "0", "0", "0", "2.521008403", "2.898550725", "0", "3.125", "0", "3.703703704", "1.554404145", "0", "1.785714286", "0", "0", "1.19047619", "1.960784314", "0", "0", "2.43902439", "0", "0", "0", "0", "0", "0", "0", "1.212121212", "0", "0", "0", "0", "0", "3.50877193", "0", "1.020408163", "1.408450704", "0", "0", "0", "1.886792453", "0", "0", "0", "0", "0", "0", "0", "2.43902439", "0", "0", "0", "0", "0", "2.702702703", "0", "0", "3.846153846", "4.761904762", "0", "0", "0", "0", "2.857142857", "0.854700855", "0", "1.339285714", "1.5625", "0", "0", "1.470588235", "0", "0", "0.636942675", "0", "0", "0", "0", "0.619195046", "0", "0", "2.173913043", "0", "0", "0", "0", "1.01010101", "0", "0", "0.913242009", "0", "0", "0", "0", "1.063829787", "0", "0", "0", "1.342281879", "1.162790698", "0", "0", "0.350877193", "0", "0", "3.703703704", "1.052631579", "0.584795322", "0", "0", "0", "1.470588235", "0", "1.587301587", "3.658536585", "1.470588235", "0", "0", "0", "0", "0", "0", "1.25", "1.685393258", "1.111111111", "3.603603604", "0", "0", "1.449275362", "0", "0", "0", "2.158273381", "0", "0", "1.515151515", "1.149425287", "1.89701897", "0", "0.909090909", "3.448275862", "0.831600832", "0", "0", "0", "0", "3.846153846", "0", "0", "3.125", "0", "1.449275362", "0.806451613", "1.785714286", "1.369863014", "1.5625", "3.773584906", "0", "0", "1.360544218", "1.10701107", "0", "1.204819277", "0", "0", "0", "2.857142857", "1.851851852", "0", "1.149425287", "0.4784689", "1.212121212", "9.090909091", "0", "0.444444444", "0.45045045", "0", "0", "0.925925926", "0", "1.428571429", "1.652892562", "1.418439716", "0", "0", "0", "0", "0", "1.612903226", "0", "0", "0", "0", "1.639344262", "0", "0", "0", "1.639344262", "1.219512195", "0", "0", "0", "0", "1.470588235", "0", "0", "0", "0", "2.631578947", "0", "2.777777778", "0", "0", "0", "0", "0", "2", "3.03030303", "2.222222222", "3.174603175", "1.851851852", "0", "1.538461538", "2.380952381", "0", "0", "2.564102564", "0", "0", "0", "1.282051282", "0", "0", "0", "2.083333333", "0", "0", "2.777777778", "0", "1.538461538", "0", "0", "0", "0", "0", "0", "3.125", "2.898550725", "2.857142857", "1.960784314", "0", "0", "0", "0", "0", "0", "0", "1.775147929", "0", "1.369863014", "0", "0", "0", "0", "2.43902439", "3.125", "0", "1.639344262", "1.01010101", "0", "2.097902098", "0", "0", "0", "0", "1.858736059", "0", "0", "0", "0", "0.558659218", "0", "0", "0", "1.418439716", "0", "1.612903226", "0", "0", "4.444444444", "0", "1.538461538", "0", "1.195219124", "1.454545455", "0", "1.049868766", "0.852272727", "2.702702703", "0", "0", "2.127659574", "1.587301587", "1.388888889", "0", "0", "1.333333333", "0", "0", "4.347826087", "0", "1.388888889", "0", "0.578034682", "2.564102564", "1.785714286", "0", "0", "0", "0", "2.222222222", "0", "0", "0", "0", "0", "2.173913043", "0", "0", "0.724637681", "1.724137931", "0", "2.083333333", "1.219512195", "0", "2.127659574", "0", "0", "1.388888889", "2.127659574", "0", "0", "0", "0", "0", "0", "0", "1.176470588", "0.45045045", "0", "0", "2.643171806", "2.5", "1.612903226", "0", "1.449275362", "1.219512195", "0", "0", "0", "1.851851852", "0", "0", "0", "0", "0.751879699", "0", "0", "3.157894737", "1.886792453", "1.612903226", "0", "2.325581395", "1.6", "0", "0", "1.149425287", "0.829875519", "0.694444444", "0", "0", "0.706713781", "1.769911504", "0", "0", "0", "0", "0", "0", "1.785714286", "0", "0", "0", "0", "0", "0", "1.714285714", "0.826446281", "0", "0.900900901", "0.64516129", "0", "0", "0", "2", "1.57480315", "0", "0", "1.086956522", "0", "1.369863014", "1.408450704", "2.380952381", "2.040816327", "0", "0", "1.142857143", "0", "2.040816327", "0", "0", "0", "0", "0", "0", "0", "0", "2.816901408", "0", "0", "0", "2.666666667", "1.209677419", "1.851851852", "2.222222222", "1.162790698", "0", "0", "4.411764706", "0", "0", "0", "2.040816327", "1.960784314", "0", "0.628930818", "0", "1.785714286", "0", "0", "1.183431953", "0", "0", "2.53164557", "1.652892562", "1.149425287", "0", "1.063829787", "1.03626943", "4.166666667", "0", "1.086956522", "0.571428571"], ["4717-1-1Cp1", "4717-1-1Cp1", "4151-1", "520-1-r4", "4717-1-1Cp1", "4717-1-1Cp2", "4717-1-1Cp1", "4717-1-1Cp2", "4717-1-1Cp2", "4717-1-1Cp1", "4717-1-1Cp1", "4717-1-1Cp1", "618-1", "4717-1-1Cp2", "4717-1-1Cp2", "4717-1-1Cp1", "520-1-r4", "618-1", "4717-1-1Cp1", "618-1", "4717-1-1Cp2", "4717-1-1Cp1", "4717-1-1Cp1", "4595-1", "618-1", "618-1", "4595-1", "4595-1", "4595-1", "618-1", "618-1", "4717-1-1Cp1", "4717-1-1Cp2", "618-1", "4717-1-1Cp2", "4717-1-1Cp2", "4595-1", "4595-1", "4595-1", "4595-1", "520-1-r4", "4717-1-1Cp1", "4717-1-1Cp1", "4717-1-1Cp2", "4717-1-1Cp1", "4595-1", "520-1-r4", "4717-1-1Cp1", "4717-1-1Cp1", "B-r23", "4717-1-1Cp2", "4717-1-1Cp1", "4717-1-1Cp2", "4717-1-1Cp2", "4717-1-1Cp1", "4717-1-1Cp1", "4595-1", "4717-1-1Cp1", "4717-1-1Cp2", "4717-1-1Cp2", "618-1", "B-r23", "4595-1", "4595-1", "B-r23", "618-1", "618-1", "4595-1", "4717-1-1Cp2", "4717-1-1Cp2", "520-1-r4", "4717-1-1Cp1", "4717-1-1Cp1", "618-1", "4717-1-1Cp2", "4717-1-1Cp2", "B-r23", "618-1", "4717-1-1Cp2", "618-1", "B-r23", "4717-1-1Cp1", "B-r23", "4151-1", "4595-1", "4717-1-1Cp2", "4717-1-1Cp1", "4717-1-1Cp2", "618-1", "4717-1-1Cp1", "4595-1", "4595-1", "4717-1-1Cp1", "4717-1-1Cp1", "4595-1", "4717-1-1Cp2", "4595-1", "4717-1-1Cp1", "4595-1", "4595-1", "618-1", "4717-1-1Cp2", "4717-1-1Cp2", "4595-1", "4717-1-1Cp2", "4595-1", "4717-1-1Cp2", "4595-1", "4717-1-1Cp2", "4717-1-1Cp1", "B-r23", "4717-1-1Cp2", "4717-1-1Cp1", "520-1-r4", "618-1", "4717-1-1Cp2", "4595-1", "520-1-r4", "520-1-r4", "4717-1-1Cp2", "520-1-r4", "4151-1", "B-r23", "4595-1", "B-r23", "4717-1-1Cp1", "618-1", "B-r23", "520-1-r4", "618-1", "4717-1-1Cp1", "618-1", "618-1", "520-1-r4", "4717-1-1Cp1", "4717-1-1Cp1", "4151-1", "4717-1-1Cp1", "4717-1-1Cp1", "618-1", "520-1-r4", "4595-1", "4717-1-1Cp1", "618-1", "4717-1-1Cp2", "B-r23", "4717-1-1Cp2", "4717-1-1Cp2", "4717-1-1Cp1", "4595-1", "618-1", "4717-1-1Cp1", "B-r23", "4595-1", "618-1", "4717-1-1Cp2", "4595-1", "4717-1-1Cp2", "618-1", "4717-1-1Cp1", "618-1", "4717-1-1Cp2", "618-1", "4717-1-1Cp2", "4717-1-1Cp2", "4717-1-1Cp1", "4717-1-1Cp1", "4595-1", "4595-1", "618-1", "520-1-r4", "B-r23", "4717-1-1Cp1", "618-1", "4595-1", "4151-1", "4717-1-1Cp1", "4717-1-1Cp2", "520-1-r4", "4717-1-1Cp2", "4717-1-1Cp1", "520-1-r4", "618-1", "520-1-r4", "4595-1", "4595-1", "4717-1-1Cp2", "4717-1-1Cp1", "B-r23", "4717-1-1Cp1", "618-1", "618-1", "B-r23", "4717-1-1Cp1", "4717-1-1Cp2", "4717-1-1Cp2", "4151-1", "4717-1-1Cp2", "4717-1-1Cp1", "4595-1", "520-1-r4", "B-r23", "4717-1-1Cp2", "4717-1-1Cp2", "4717-1-1Cp1", "4595-1", "618-1", "520-1-r4", "4717-1-1Cp2", "4717-1-1Cp2", "4717-1-1Cp2", "520-1-r4", "4717-1-1Cp2", "520-1-r4", "4595-1", "4151-1", "618-1", "4717-1-1Cp1", "4717-1-1Cp2", "4717-1-1Cp1", "B-r23", "4595-1", "4151-1", "4717-1-1Cp2", "618-1", "4717-1-1Cp1", "4717-1-1Cp2", "4717-1-1Cp1", "B-r23", "4595-1", "520-1-r4", "4717-1-1Cp1", "4595-1", "618-1", "618-1", "4717-1-1Cp1", "4595-1", "618-1", "520-1-r4", "B-r23", "4717-1-1Cp1", "520-1-r4", "4151-1", "618-1", "4717-1-1Cp2", "4151-1", "4717-1-1Cp1", "4717-1-1Cp1", "4717-1-1Cp2", "4717-1-1Cp2", "B-r23", "4595-1", "4717-1-1Cp1", "4717-1-1Cp2", "520-1-r4", "4717-1-1Cp2", "4595-1", "4717-1-1Cp2", "4595-1", "618-1", "B-r23", "618-1", "4717-1-1Cp2", "4595-1", "520-1-r4", "4595-1", "4595-1", "4151-1", "4717-1-1Cp2", "4595-1", "4717-1-1Cp2", "4151-1", "B-r23", "4717-1-1Cp1", "4151-1", "520-1-r4", "4717-1-1Cp2", "618-1", "4717-1-1Cp1", "4717-1-1Cp1", "B-r23", "4595-1", "4595-1", "4717-1-1Cp2", "4595-1", "4595-1", "4717-1-1Cp2", "B-r23", "B-r23", "520-1-r4", "618-1", "4717-1-1Cp2", "4595-1", "B-r23", "4595-1", "4717-1-1Cp1", "4595-1", "4595-1", "4151-1", "B-r23", "B-r23", "618-1", "618-1", "618-1", "618-1", "B-r23", "4595-1", "4595-1", "618-1", "520-1-r4", "4151-1", "4717-1-1Cp1", "4717-1-1Cp2", "B-r23", "618-1", "618-1", "618-1", "4151-1", "4717-1-1Cp1", "B-r23", "4717-1-1Cp1", "4595-1", "4595-1", "4717-1-1Cp1", "4717-1-1Cp1", "B-r23", "618-1", "618-1", "4595-1", "4717-1-1Cp2", "618-1", "4595-1", "618-1", "4717-1-1Cp1", "4717-1-1Cp2", "4717-1-1Cp2", "4151-1", "4717-1-1Cp2", "4717-1-1Cp2", "4151-1", "B-r23", "618-1", "4717-1-1Cp1", "4151-1", "B-r23", "4717-1-1Cp2", "4595-1", "4595-1", "4595-1", "520-1-r4", "4595-1", "4717-1-1Cp1", "4151-1", "4717-1-1Cp2", "520-1-r4", "4717-1-1Cp1", "4717-1-1Cp2", "618-1", "520-1-r4", "4717-1-1Cp2", "4717-1-1Cp2", "4717-1-1Cp1", "4717-1-1Cp2", "4717-1-1Cp1", "4595-1", "4151-1", "520-1-r4", "4595-1", "4717-1-1Cp1", "4717-1-1Cp2", "520-1-r4", "4595-1", "4717-1-1Cp1", "4595-1", "618-1", "4595-1", "618-1", "4151-1", "4595-1", "4595-1", "4717-1-1Cp2", "4717-1-1Cp2", "618-1", "4717-1-1Cp2", "4717-1-1Cp2", "4717-1-1Cp1", "4151-1", "4595-1", "B-r23", "4595-1", "4595-1", "4717-1-1Cp1", "4151-1", "4717-1-1Cp1", "520-1-r4", "618-1", "4595-1", "4151-1", "4595-1", "B-r23", "4717-1-1Cp1", "520-1-r4", "4595-1", "4717-1-1Cp1", "4595-1", "4595-1", "4595-1", "4717-1-1Cp1", "4717-1-1Cp2", "520-1-r4", "4595-1", "618-1", "4151-1", "4717-1-1Cp2", "4717-1-1Cp1", "618-1", "4717-1-1Cp1", "618-1", "B-r23", "618-1", "4717-1-1Cp2", "4717-1-1Cp1", "4717-1-1Cp1", "B-r23", "520-1-r4", "4595-1", "618-1", "4717-1-1Cp1", "618-1", "4717-1-1Cp2", "520-1-r4", "4717-1-1Cp2", "4717-1-1Cp2", "618-1", "618-1", "4717-1-1Cp1", "4717-1-1Cp1", "4595-1", "4595-1", "618-1", "618-1", "4717-1-1Cp2", "520-1-r4", "4717-1-1Cp2", "4717-1-1Cp2", "4717-1-1Cp1", "4595-1", "4717-1-1Cp1", "4717-1-1Cp1", "4151-1", "618-1", "B-r23", "4717-1-1Cp2", "4717-1-1Cp2", "4717-1-1Cp2", "4717-1-1Cp2", "4595-1", "4595-1", "4717-1-1Cp1", "618-1", "B-r23", "618-1", "520-1-r4", "4595-1", "4595-1", "4717-1-1Cp1", "4717-1-1Cp1", "4717-1-1Cp2", "4717-1-1Cp2", "4595-1", "618-1", "4717-1-1Cp1", "4595-1", "4595-1", "618-1", "4595-1", "4717-1-1Cp2", "618-1", "4717-1-1Cp2", "4717-1-1Cp1", "618-1", "4717-1-1Cp2", "4717-1-1Cp2", "4717-1-1Cp2", "4717-1-1Cp1", "4717-1-1Cp2", "618-1", "4717-1-1Cp2", "4717-1-1Cp1", "4595-1", "618-1", "4717-1-1Cp2", "4717-1-1Cp2", "618-1", "520-1-r4", "4717-1-1Cp2", "4151-1", "520-1-r4", "4595-1", "4595-1"], ["STALL", "OFFICES", "OFFICE", "OFFICES", "OFFICES", "OFFICES", "OFFICES", "STALL", "OFFICES", "STALL", "OFFICE", "OFFICES", "OFFICES", "OFFICES", "OFFICES", "SHOP", "WAREHOUSE", "STALL", "CAR PARK", "CAR PARK", "SITE OFFICE", "STALL", "OFFICES", "WAREHOUSE", "OFFICES", "STALL", "CAR PARK", "STALL", "CAR PARK", "OFFICES", "OFFICES", "SHOWROOM"], ["Walking", "Walking", "Walking", "Walking", "Hiking", "Cycling", "Walking", "Cycling", "Walking", "Dog walking", "Walking", "Walking", "Walking", "Hiking", "Dog walking", "Commute"], ["DP, chicken", "DP, chicken", "DP, chicken", "DP, chicken", "human", "DP, duck", "DP, chicken", "DP, chicken", "DP, duck", "DP, pigeon", "DP, chicken", "DP, chicken", "DP, chicken", "human", "DP, duck", "DP, chicken", "DP, duck", "DP, chicken", "DP, chicken", "DP, chicken", "DP, chicken", "DP, chicken", "DP, chicken", "DP, duck", "DP, duck", "DP, chicken", "DP, chicken", "DP, chicken", "DP, chicken", "DP, chicken", "DP, chicken", "human", "DP, chicken", "human", "DP, chicken", "DP, chicken", "DP, chicken", "DP, pigeon", "human", "human", "DP, chicken", "human", "DP, chicken", "DP, chicken", "DP, chicken", "human", "DP, chicken", "DP, chicken", "DP, chicken", "DP, chicken", "human", "DP, chicken", "DP, chicken", "DP, chicken"], ["England", "England", "England", "England", "Wales", "Scotland", "England", "Scotland", "England", "England", "England", "England", "England", "England", "England", "England", "England", "Wales", "England", "England", "Scotland", "Wales", "Scotland", "England", "Scotland", "England", "England", "England", "England", "England", "Scotland", "Wales", "England", "England", "Wales", "England", "England", "England", "England", "Wales", "England", "England", "Scotland", "England", "Scotland", "England", "England", "England", "England", "Wales", "Scotland", "England", "England", "England", "England", "England", "England", "England", "England", "England", "England", "England", "England", "England", "Scotland", "England", "Scotland", "England", "England", "England", "England", "England", "Wales", "Scotland", "England", "Wales", "England", "Scotland", "England", "England", "England", "England", "England", "England", "England", "Scotland", "Wales", "England", "Scotland", "Scotland", "Scotland", "Wales", "England", "England", "Scotland", "Scotland", "England", "England", "England", "England", "England", "England", "England", "England", "England", "England", "Scotland", "Scotland", "England", "England", "England", "England", "England", "England", "England", "England", "England", "England", "Scotland", "Scotland", "England", "England", "England", "England", "England", "England", "England", "England", "England", "Scotland", "Jersey", "England", "England", "England", "England", "England", "England", "England", "England", "England", "Scotland", "England", "England", "Wales", "Scotland", "England", "England", "England", "England", "England", "Scotland", "Isle of Man", "England", "Wales", "England", "England", "England", "England", "England", "England", "Scotland", "England", "England", "England", "England", "Scotland", "England", "Wales", "Wales", "England", "England", "England", "Scotland", "England", "England", "England", "England", "Scotland", "Wales", "Scotland", "England", "England", "England", "England", "England", "Scotland", "England", "England", "England", "England", "Scotland", "England", "England", "England", "Scotland", "Scotland", "Scotland", "England", "England", "England", "England", "England", "England", "England", "England", "England", "England", "England", "England", "England", "Scotland", "Scotland", "Wales", "England", "England", "England", "England", "England", "Scotland", "Scotland", "Scotland", "England", "England", "England", "Scotland", "Scotland", "Scotland", "England", "England", "England", "England", "England", "England", "England", "England", "England", "England", "Scotland", "Scotland", "Scotland", "Wales", "Wales", "England", "England", "England", "England", "Scotland", "England", "England", "England", "England", "England", "England", "England", "Wales", "England", "Scotland", "England", "England", "England", "England", "Scotland", "Wales", "England", "England", "England", "England", "England", "England", "England", "England", "England", "Wales", "Scotland", "England", "Scotland", "England", "England", "England", "England", "England", "England", "England", "Wales", "England", "Scotland", "England", "England", "Scotland", "England", "England", "England", "England", "England", "England", "England", "England", "Wales", "England", "England", "England", "England", "England", "Scotland", "Scotland", "England", "Scotland", "Scotland", "England", "England", "Scotland", "England", "England", "Wales", "England", "England", "England", "England", "England", "England", "England", "England", "England", "England", "England", "England", "England", "England", "England", "England", "England", "England", "England", "England", "England", "England", "Scotland", "England", "England", "England", "England", "England", "England", "England", "Wales", "England", "England", "England", "England", "England", "Scotland", "England", "Scotland", "England", "Scotland", "England", "England", "England", "England", "Scotland", "Scotland", "England", "England", "England", "Scotland", "England", "England", "Scotland", "Scotland", "England", "Scotland", "England", "England", "Scotland", "England", "Guernsey", "England", "England", "England", "England", "England", "England", "England", "England", "England", "England", "England", "Scotland", "England", "England", "England", "Scotland", "England", "England", "England", "Wales", "Scotland", "England", "England", "England", "England", "England", "England", "England", "Isle of Man", "England", "England", "England", "Scotland", "England", "Scotland", "England", "Wales", "Scotland", "England", "England", "England", "Scotland", "England", "England", "England", "England", "England", "Scotland", "Scotland", "England", "England", "Scotland", "England", "England", "England", "England", "Scotland", "England", "England", "England", "Scotland", "England", "Wales", "Wales", "England", "England", "England", "England", "England", "England", "England", "England", "England", "England", "Scotland", "England", "England", "England", "England", "England", "England", "England", "England", "England", "England", "Wales", "England", "England", "Wales", "Scotland", "England", "England", "England", "England", "England", "England", "Scotland", "England", "England", "England", "England", "England", "England", "Wales", "England", "Scotland", "England", "England", "England", "England", "England", "Wales", "England", "England", "Scotland", "Wales", "England", "England", "Scotland", "England", "Scotland", "England", "England", "England"], ["sale.report", "sale.order", "sale.report"], ["TSHAWYTSCHA", "NERKA", "NERKA", "TSHAWYTSCHA", "NERKA", "NERKA", "NERKA", "NERKA", "TSHAWYTSCHA", "NERKA", "NERKA", "NERKA", "TSHAWYTSCHA", "TSHAWYTSCHA", "NERKA", "NERKA", "NERKA", "NERKA", "NERKA", "NERKA", "TSHAWYTSCHA", "TSHAWYTSCHA", "TSHAWYTSCHA", "NERKA", "TSHAWYTSCHA", "TSHAWYTSCHA", "TSHAWYTSCHA", "NERKA", "NERKA", "TSHAWYTSCHA", "TSHAWYTSCHA", "NERKA", "TSHAWYTSCHA", "TSHAWYTSCHA", "NERKA", "NERKA", "NERKA", "NERKA", "NERKA", "NERKA", "NERKA", "NERKA", "TSHAWYTSCHA", "NERKA", "NERKA", "NERKA", "NERKA", "NERKA", "NERKA", "NERKA", "TSHAWYTSCHA", "NERKA", "NERKA", "TSHAWYTSCHA", "NERKA", "TSHAWYTSCHA", "TSHAWYTSCHA", "TSHAWYTSCHA", "NERKA", "TSHAWYTSCHA", "NERKA", "TSHAWYTSCHA", "NERKA", "NERKA", "NERKA", "TSHAWYTSCHA", "NERKA", "NERKA", "NERKA", "TSHAWYTSCHA", "NERKA", "NERKA", "NERKA", "NERKA", "NERKA", "NERKA"], ["OBSERVATION", "UNKNOWN", "OBSERVATION", "UNKNOWN", "UNKNOWN", "UNKNOWN", "OBSERVATION", "UNKNOWN", "OBSERVATION", "UNKNOWN", "UNKNOWN", "OBSERVATION", "UNKNOWN", "OBSERVATION", "OBSERVATION", "UNKNOWN", "OBSERVATION", "UNKNOWN", "UNKNOWN", "UNKNOWN", "UNKNOWN", "UNKNOWN", "UNKNOWN", "UNKNOWN", "UNKNOWN", "UNKNOWN", "UNKNOWN", "UNKNOWN", "UNKNOWN", "UNKNOWN", "UNKNOWN", "UNKNOWN", "UNKNOWN", "UNKNOWN", "UNKNOWN", "UNKNOWN", "OBSERVATION", "OBSERVATION", "OBSERVATION", "OBSERVATION", "UNKNOWN", "UNKNOWN", "UNKNOWN", "OBSERVATION", "UNKNOWN", "UNKNOWN", "UNKNOWN", "UNKNOWN", "UNKNOWN", "OBSERVATION", "UNKNOWN", "UNKNOWN", "UNKNOWN", "OBSERVATION", "UNKNOWN", "OBSERVATION"], ["APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "TRANSFERRED", "TRANSFERRED", "APPROVED", "APPROVED", "APPROVED", "TRANSFERRED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPLICATION", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "TRANSFERRED", "APPROVED", "TRANSFERRED", "APPROVED", "TRANSFERRED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "TRANSFERRED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "TRANSFERRED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "TRANSFERRED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "TRANSFERRED", "APPROVED", "APPROVED", "TRANSFERRED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "TRANSFERRED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "TRANSFERRED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "TRANSFERRED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "TRANSFERRED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "TRANSFERRED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "TRANSFERRED", "APPROVED", "APPROVED", "REJECTED", "TRANSFERRED", "APPROVED", "TRANSFERRED", "APPROVED", "APPROVED", "APPROVED", "TRANSFERRED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "TRANSFERRED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "TRANSFERRED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "TRANSFERRED", "APPLICATION", "APPROVED", "APPROVED", "APPROVED", "APPLICATION", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "TRANSFERRED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "TRANSFERRED", "APPROVED", "APPROVED", "TRANSFERRED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "REJECTED", "APPROVED", "APPROVED", "APPLICATION", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "TRANSFERRED", "APPROVED", "APPLICATION", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "TRANSFERRED", "APPROVED", "APPROVED", "TRANSFERRED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "WITHHELD", "TRANSFERRED", "APPROVED", "APPROVED", "WITHHELD", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "TRANSFERRED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "TRANSFERRED", "APPROVED", "APPROVED", "APPROVED", "TRANSFERRED", "APPROVED", "TRANSFERRED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "TRANSFERRED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "TRANSFERRED", "WITHHELD", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "TRANSFERRED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "TRANSFERRED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "TRANSFERRED", "APPROVED", "APPROVED", "TRANSFERRED", "APPROVED", "APPROVED", "APPROVED", "WITHHELD", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "WITHHELD", "TRANSFERRED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "WITHHELD", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED", "APPROVED"], ["Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational", "Operational"], ["Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary", "Proprietary"], ["0117 9322293", "01702 230303", "01229 821050", "0115 9256607", "020 86842697", "0121 4291326", "01932 847868", "01273 302800", "020 83374618", "020 36743957", "0151 5464093", "01823 274049", "01782 747090", "01483 274323", "01482 877990", "01924 466283", "0161 7907160", "01274 611613", "01223 210662", "01773 811241", "01268 515560", "01482 223334", "01895 659647", "0161 8329985", "01302 723723", "01892 852352", "01903 547647", "01225 424401", "0151 6521902", "0121 5264919", "01924 490788", "01268 520753", "01246 260598", "0161 2261256", "0121 4400888", "01582 720592", "020 83983008", "01386 48899", "0151 5463897", "01564 824122", "0191 2522089", "0121 5449111", "0115 9784786", "01636 813318", "01708 740587", "01903 263235", "01254 582424", "0191 4772797", "0115 9729339", "0191 4179997", "020 85516333", "01708 442089", "01684 575216", "01344 843169", "0161 6280026", "01255 862457", "01424 730309", "01773 742376", "01526 352105", "01332 862510", "01642 553101", "01782 834679", "01708 746460", "0121 5023865", "01726 833332", "0191 2196097", "0191 2639504", "01773 530209", "0115 9463891", "0121 3132725", "01942 883326", "02380 612152", "0151 3362350", "020 87771722", "01763 247945", "01924 473315", "0114 2645180", "01548 852354", "01752 601679", "0191 4143194", "01483 772494", "01604 711524", "01536 267692", "01952 612964", "01736 799025", "01924 291977", "01782 213598", "01243 823423", "0118 9403557", "0114 2325462", "01242 515143", "0247 6374780", "0121 5579606", "023 80771211", "01759 302829", "0191 3734249", "020 86880835", "01753 653182", "01422 365062", "01422 833300", "01354 651856", "01756 709712", "0151 4894004", "01323 740296", "0161 4802807", "01793 535417", "01202 486276", "01689 843363", "01590 672774", "01375 376007", "01942 673616", "01303 267220", "0161 4565668", "01257 254142", "01903 201146", "01904 423760", "01642 243079", "020 85535380", "0161 4803374", "01423 504594", "0121 7706011", "01754 872258", "01246 432583", "0191 2674319", "01793 423838", "01438 354108", "01539 737953", "020 75824553", "01373 473284", "01895 232841", "020 89771351", "01274 666019", "01782 773528", "023 80297549", "01249 822573", "01274 720468", "020 32806947", "01622 755587", "0151 4285955", "020 72868738", "0191 2290033", "01275 876797", "01233 655010", "01268 553037", "0121 4401210", "02392 660534", "0161 7482966", "01784 247013", "01302 535508", "0114 2555937", "01909 562336", "01204 793488", "0161 4303214", "020 89402304", "01904 721724", "0151 4879887", "0191 3700351", "01302 841351", "01992 712097", "01527 501143", "01228 521440", "020 88067073", "0115 9730111", "01235 535397", "0161 4297769", "01942 242692", "01539 720249", "0121 4233713", "01246 221790", "020 86448465", "0161 9568447", "020 86477941", "01775 713857", "01652 652196", "0121 3732754", "0115 9262208", "01903 230445", "01709 701524", "01323 892660", "0800 5335100", "01772 746566", "01204 398089", "0191 4103135", "01227 478877", "01327 260393", "01707 262701", "01634 222021", "01274 503183", "0114 3273530", "01296 682543", "0151 9441007", "01245 898847", "0161 8651603", "01842 762913", "01902 731310", "01206 578874", "01494 437162", "01923 772561", "020 85343154", "01992 461229", "01582 457800", "01472 812323", "01226 391881", "01489 573147", "0121 5650093", "01256 477267", "01493 731697", "01562 228362", "0161 9736024", "0161 7232221", "01235 811428", "01257 234220", "024 76502826", "01293 782052", "01793 727866", "01743 369446", "01235 520059", "01902 630081", "01604 721721", "01226 281666", "01625 532902", "01455 841589", "01282 615041", "01274 670509", "01695 723566", "01209 215845", "0151 6451851", "01582 458019", "01704 563364", "0117 9501848", "01582 721069", "020 88522282", "01482 805562", "01384 259241", "01274 305123", "01637 872600", "01362 699919", "0121 4545118", "020 87886531", "01772 782643", "01275 462386", "01204 468296", "01229 484022", "01625 525353", "0161 9624255", "020 88662710", "01670 736399", "01332 347294", "01732 456570", "020 89407918", "01406 425536", "0191 5486824", "01980 623893", "01670 512697", "01274 583534", "020 88881669", "020 88543684", "01354 648847", "01425 610522", "01706 653335", "01227 277744", "020 77035155", "0161 6528577", "01925 267015", "01737 354714", "01977 559133", "0121 4445049", "01454 318869", "01865 373333", "024 76664343", "01325 462592", "01934 712266", "01704 565650", "01502 572930", "01535 653616", "020 85922497", "01626 353307", "01702 466247", "01926 426124", "0121 4276060", "01433 650325", "020 88945034", "0151 6772344", "01706 360787", "01295 272432", "01322 521843", "01484 420693", "01332 345480", "0191 3847708", "0191 5262052", "01904 791997", "01903 779384", "01753 521968", "01905 795618", "0161 4803384", "0121 5513814", "01279 423911", "01782 838350", "020 85706445", "020 82566256", "020 74055665", "01235 707447", "0113 2502052", "01642 631810", "01934 413100", "0161 4457868", "01606 593803", "0161 4324093", "01276 33795", "020 88762651", "01325 722755", "01245 251496", "020 89511728", "0115 9278336", "01993 702191", "0118 9262034", "01704 509509", "01323 890928", "01603 623769", "0191 2869721", "01926 494041", "01484 687481", "01884 252752", "01924 454930", "0191 2525146", "01924 402323", "0115 9490905", "0161 4323612", "01264 790305", "01482 847772", "0121 3583588", "01784 452502", "01429 838323", "0161 7940936", "01524 770335", "01623 751410", "01759 372886", "01502 580002", "01582 591616", "0161 2242293", "01493 681849", "020 73818651", "01483 564320", "0121 3719847", "01242 514330", "01525 872093", "01254 55074", "01279 271847", "02476 384837", "01902 342119", "01604 405260", "020 85342272", "01803 883318", "0191 5814007", "0191 4932055", "0151 4984202", "015394 33345", "01428 717593", "01604 720010", "01908 564444", "01462 673797", "0161 2051670", "0161 7893207", "01728 723477", "01380 720615", "02380 225387", "0117 9511156", "01793 750226", "01274 726611", "01429 270168", "01204 600730", "01582 413781", "01823 284529", "0781 2823289", "01384 395617", "0121 5231500", "01425 613222", "01707 326754", "020 85040121", "0151 6013132", "0115 9002510", "0121 4305155", "01625 612993", "01484 683945", "01623 554370", "0121 7776081", "0191 5653451", "02476 397271", "01255 861329", "01223 232672", "0114 2280999", "01604 810289", "0115 9281048", "01509 234476", "0161 7482438", "02380 863922", "020 33931118", "01883 343065", "01793 854450", "01752 617349", "01902 408108", "0191 4553222", "01902 733450", "0161 9987114", "01992 440380", "01753 522314", "01507 463298", "01424 843080", "020 85921756", "01720 422021", "01234 841199", "020 72840010", "01279 459710", "01903 238962", "02392 463866", "01536 514675", "01473 727546", "01302 785465", "0121 4543747", "0800 6521554", "017048 72489", "020 72428897", "01709 364249", "01257 252753", "01952 605441", "01733 551441", "01303 259414", "0121 7090163", "01709 892370", "01344 425599", "01708 747495", "01428 605011", "020 85216436", "01785 242689", "020 83114087", "0161 2738254", "01733 235026", "020 77352700", "01603 713120", "01482 830400", "01274 490560", "020 85602683", "0191 3740664", "01297 442026", "01206 381673", "01785 211753", "01922 646521", "01425 610594", "01689 856345", "0113 2564573", "01376 345910", "01489 589076", "020 89042305", "01903 201331", "01202 746071", "01553 829630", "01782 272027", "01483 420002", "01827 818320", "0161 3399992", "01924 384410", "0191 5678672", "01476 563062", "01603 451318", "01743 344277", "01243 543853", "01706 653225", "01484 681069", "01924 370076", "01424 210364", "0113 2597372", "01993 776038", "020 85904811", "0115 8466384", "01788 575387", "01822 840234", "020 74851241", "0121 6043000", "01522 347449", "020 76241033", "01273 474645", "01925 816644", "01226 304547", "0114 2739452", "01270 650215", "01482 324500", "020 89540404", "01773 872201", "020 89920264", "01372 842177", "0121 4533594", "01625 523320", "020 89776140", "01932 231682", "01661 823405", "01752 778186", "01942 230935", "01273 508198", "01254 873977", "01928 725726"], ["010023047606", "010023059213", "000077238927", "010093075747", "010091144714", "010090668655", "000077101845", "000077103223", "000077031772", "010023060317", "010090666572", "000077061032", "000077089920", "010023051687", "010090420437", "010091145290", "010090665313", "010014179393", "000077137523", "000077047408", "010024149250", "010023057104", "010023052801", "000077241643", "000077245269", "000077031770", "000077005290", "010090666533", "000077124721", "000077164110", "000077118442", "010090665659", "000077056599", "010091144699", "000077235683", "000077035426", "000077144186", "010023051767", "010091145430", "010090240647", "000077069727", "010014177929", "000077145202", "000077045765", "000077145212", "010090669736", "000077242168", "010091147285", "010090667231", "010091146756", "000077168314", "010023048496", "000077114551", "010091143209", "010023047807", "010023050068", "000077079056", "010090669825", "010090420404", "000077235458", "010090420508", "010012210328", "010091143536", "010090241897", "010023048360", "010023058263", "000077169877", "100011440458", "010090665669", "000077160477", "000077164687", "000077018552", "010090666553", "010090241935", "010090667974", "000077161826", "010091147143", "000077174813", "010023048750", "010091146560", "100012686295", "000077129533", "010023047997", "000077158479", "010023060897", "000077130135", "000077018335", "010091143467", "010023050187", "000077249037", "000077245930", "010023048630", "010091143526", "010090241930", "000077018342", "000023000571", "010023061273", "010090667327", "000077029176", "010090425127", "010023060873", "000077236386", "010091145465", "000077245710", "000077092221", "000077186289", "000077018344", "000077135442", "010091143534", "000077237851", "010090420456", "000077238623", "010091143504", "010023053782", "010091144641", "010091144458", "000077068626", "010023048370", "010023050079", "000077010771", "010012209930", "000077005497", "010090420413", "010012205256", "010090667761", "000077240120", "010023050209", "000077016711", "000077130133", "000077236839", "010091143280", "010070398501", "010090669677", "000077005295", "010090241973", "000077067524", "000077250722", "010090669335", "010090667437", "010023060737", "000077123095", "000077088319", "010070391495", "000077236437", "010091145458", "010091145360", "010090546581", "000077144567", "010090669784", "000077251726", "010023056004", "010023060366", "000077197607", "000077123429", "000077005294", "010090666539", "000077111863", "010090241097", "010090669834", "010090668245", "010023061832", "000077198926", "000077056445", "000077124708", "000077154887", "000077246537", "010023060341", "000077156080", "010023056581", "010093073283", "000077157144", "100011649197", "010023058155", "010091143501", "000077033441", "000077053549", "010090667179", "000077124719", "010090425104", "010091145392", "000077014806", "000077068837", "010090667477", "100012802457", "000077068836", "010090665651", "010090666477", "010090241975", "010091145292", "010090425120", "000077052976", "000077069854", "010090425229", "010090241099", "000077251642", "010070863518", "000077241766", "000077101719", "010091146010", "010023049815", "010070400453", "000077145224", "010070867249", "010091146812", "000077156548", "010023053298", "010091142496", "000077005508", "010023049718", "000077144451", "010090423978", "010023055098", "000077018428", "010070391494", "000077125237", "000077033370", "010070391694", "000077141691", "010090669910", "010023056063", "010023061492", "010023055020", "000077251371", "010023060278", "000077020990", "010012203519", "010070394580", "000077143104", "000077253665", "010023060933", "010023050488", "100012724982", "000077068650", "000077015035", "010023053673", "010091143488", "010090241911", "010091142472", "010070871130", "010090669668", "010093074195", "010093074194", "010090241107", "000077075606", "000077102240", "010023061844", "010091145317", "010090668935", "010091147140", "010090241889", "010023048593", "100011649192", "000077061129", "000077101825", "010090241893", "010090668266", "010090669421", "000077067790", "100011440460", "010090669782", "010024151348", "000077040465", "010091143261", "000077144185", "000077241763", "010023048503", "000077031766", "000077110946", "010023060116", "010091147232", "010090241939", "010090239816", "000077068846", "000077153891", "000077177186", "010023050047", "010090668891", "010024147978", "010090667177", "000077141709", "010090667422", "000077003522", "010023051107", "000077111862", "010023054263", "010023051765", "010024148977", "000077123905", "010090669700", "000077164685", "010023060360", "010090238166", "010023049304", "000077046722", "010090422838", "000077145214", "000077082890", "010023061311", "010023048354", "010023059628", "000077101721", "010070867510", "000077242673", "010090237285", "010023058492", "010093075251", "010090665919", "010023047969", "000077202649", "100011649198", "000077069723", "010090665647", "000077137601", "010090665684", "000077010948", "000077099784", "000077137621", "010090665734", "010023059844", "010023060600", "000077240467", "010090666559", "010090667480", "010090239278", "000077052299", "000077111956", "010091145412", "010090665643", "010023060651", "000077253427", "010091147336", "010090668928", "000077125233", "010090665692", "010023061339", "010090668758", "010090665658", "000077102307", "010090669901", "010023050148", "010023049906", "000077038561", "000077251126", "000077102327", "010023047595", "010090668889", "000077250949", "000077239325", "010090669891", "010090668757", "010091146445", "010023060248", "000077248655", "000077174815", "000077044040", "010023051728", "000077018334", "010023051696", "010090668873", "010090669420", "000077123945", "010091144004", "010091143552", "000077102140", "000077206361", "000077010949", "000077007901", "000077154879", "010090665661", "000077018324", "000077222975", "000077018939", "000077028853", "010091144696", "000077242593", "000077174510", "010091142749", "000077041538", "010023048368", "100012724983", "010024148714", "010023056199", "000077239700", "000077188678", "010090666816", "010070863561", "010023049695", "010023060543", "010090669393", "000077102283", "010090666552", "010090666549", "010023047819", "000077124715", "010091143560", "010023061356", "010090669266", "010091143131", "000077068842", "010090240646", "010091143495", "010090665655", "010091144468", "000077023260", "000077143130", "010023056081", "000077079082", "010023059862", "010090241882", "010091147157", "010090425068", "000077241759", "000077121956", "010090420408", "010090665703", "000077092219", "010023059667", "000077130125", "010090241116", "000077245733", "010023049516", "010090667433", "010023053334", "010023061504", "010091144700", "010091147334", "010023055091", "000077143118", "010090241974", "000077021556", "010023048550", "010090666490", "010023061272", "000077247882", "000077105573", "010091146557", "010090241969", "000077101824", "010023047612", "010070868838", "010023048386", "010090667156", "100011440451", "000077154884", "010090425393", "010091146715", "000077239716", "010023057036", "010090667139", "010091143473", "010023061374", "000077154876", "010091143544", "000077159381", "000077018556", "010090238204", "000077139756", "010090425115", "000077246422", "010023053244", "010090425102", "000077104623", "000077101722", "000077012566", "000077003519", "000077222088", "000077238853", "010090665100", "000077045965", "000077125914", "010091143499", "010023056070", "000077145227", "010023058674", "010090669422", "010023050056", "010091144713", "010091146719", "000077123979", "000077245049", "010090420436", "000077098506", "010093073151", "010023058673", "000077042229", "000077151343", "010090665672", "100012724987", "010090667237", "000077154875", "200000138744", "000077098288", "010090665747", "010023053803", "000077160095", "010090423915", "010090423982", "000077033439", "010091145456", "010091143295"], ["101720400702", "101819900058", "100300100150", "100304851115", "100301701303", "101613500128", "101703805227", "101821600510", "101703605120", "101603305300", "101610907000", "101618405257", "101700250070", "101819900124", "101715300500", "101714700051", "101610905039", "100318305041", "101815400490", "100503301172", "100100790131", "101011200113", "101820605211", "102005101550", "101701202341", "100204005420", "100302657085", "101711157100", "101108700020", "101617609001", "100315050107", "100915800220", "100710550033", "101819903002", "100303600140", "102001600021", "100318337405", "101819700553", "101720301258", "101705405004", "101612700021", "101815505026", "100318307414", "101717800032", "101011001561", "101308200334", "100312211080", "101610900975", "100201900020", "100300100011", "101809600140", "101621500080", "101717255000", "100508480240", "100301709020", "100716540241", "100312400140", "101618405268", "101102801000", "101609101102", "100917900331", "100306806037", "100302702081", "101011002345", "101110501300", "101706100190", "101713600090", "101715651000", "100503300173", "101614202437", "100312409014", "100103800431", "100106400020", "101617800040", "101719700010", "101900900120", "101112050003", "101821701013", "101701901010", "100301305031", "101815400211", "101713600041", "101807400179", "101306400720", "101710705030", "100301702002", "101705700460", "101609100330", "101618405252", "100100300255", "101820605688", "100301708322", "101813601000", "101502000031", "101604400220", "100204006020", "101610900370", "101819900161", "100301300180", "101705700160", "101306400570", "101815500002", "100709700110", "101711156042", "100209800010", "100902400183", "100716540147", "101618406016", "100313050030", "102050000163", "100313050112", "101711151039", "101821701114", "102001280020", "101809600300", "100913101121", "101713600040", "101612205040", "101905300200", "101011001881", "100800601000", "101612805090", "100318305070", "100301702004", "100312402040", "100509104410", "101308200332", "101805200430", "101201600002", "100310855000", "100716540244", "101820605614", "102007900037", "102003500120", "100301701020", "101712803282", "101711151234", "101106400421", "101814900080", "100203401070", "100306803006", "101609100040", "101820602001", "101603806650", "101605906063", "101711153030", "100318305229", "100318305006", "101622505060", "101804100051", "101820605332", "102004100270", "101901000021", "101302900011", "101815400590", "101603405081", "101614200250", "101900800120", "101611500200", "101706105013", "101627401981", "101611400242", "100915800301", "100300100190", "101700250480", "102005300042", "100204003122", "100300100200", "100300200070", "101115000014", "100318305510", "101613051114", "101721505132", "100204002451", "101610900901", "101815400301", "100902400182", "101802501001", "101308200461", "101706301000", "100106950001", "101302900012", "100312403002", "101805600011", "101608600084", "101602709011", "100312211090", "101720401111", "101819900042", "101706202000", "101711800063", "101819900251", "101815400172", "101603806580", "101815500030", "100716540346", "101012200050", "102007900113", "100302656072", "101809000283", "101709107591", "100606300064", "100318307411", "101815400300", "102003800300", "101720400020", "100503300174", "101814850031", "100607000031", "100302651013", "100302657421", "101900600010", "101815501000", "101605900037", "101306300060", "100320009042", "100301706212", "101820605284", "101712802652", "101003500060", "100609108000", "101601900010", "101808200711", "101701201349", "101819900014", "100911100122", "101809600230", "100212101010", "101711157030", "100708100070", "100705510001", "101711151038", "101115600880", "101707905051", "100301300141", "100203405011", "101703805242", "100203401020", "100306254180", "101721301811", "101106100140", "101107900090", "101624500803", "101901300260", "101703805239", "101815905045", "102003900300", "101606000668", "101611405010", "101618405142", "100905800161", "102003600102", "101715300100", "100905300021", "100915800332", "101700250260", "101709106550", "101805900020", "101815401002", "100204007060", "100301302000", "101107900212", "100100806090", "100301708613", "101701901050", "100716540149", "101105106034", "102003700461", "101107600030", "101011001831", "100301709203", "101612605060", "101606000645", "101708700560", "101609100780", "101009600577", "101627401971", "101711157023", "101606000711", "101617800020", "101112050090", "101820605616", "101603305026", "100204008401", "101709105296", "100318301519", "101815400631", "101820605120", "100709350003", "100301300040", "102001280090", "101112101191", "101815400111", "100301709010", "101901300201", "100901202001", "101700250500", "101711151135", "101612805122", "101306400690", "101306400310", "100301709204", "101821100513", "101820605615", "100100800143", "101306400462", "100904400630", "101815400081", "101304100080", "101600902000", "101820605642", "100312400026", "101605906043", "100209805293", "100314300212", "100310853003", "102004050170", "100203406018", "101814850032", "102003800043", "101603750072", "102003400124", "101618400219", "101815400190", "101708700010", "101604701862", "100710550022", "101609155000", "102003500074", "101606001679", "101603806100", "100915800163", "101309600630", "101707900045", "101711152011", "100301704200", "100307305552", "102005300043", "100204008070", "100315050103", "101606000704", "101618405111", "100318307504", "101819902000", "101821602010", "101819909193", "100716540045", "101820605345", "101618405249", "100309161023", "101011001782", "101701201341", "101306400661", "101821700211", "100310405000", "101618405251", "101703606023", "100204002510", "101808501000", "101614200743", "100602400012", "100305100022", "100211005012", "100505200123", "101609101130", "101603305090", "102050000014", "101703605100", "102003500072", "100716540071", "101815905044", "100314000052", "102003200140", "101703005010", "100312404000", "100307200136", "101700250040", "101803301330", "100206061000", "101900100061", "100307500440", "100306806023", "101627305004", "101718805001", "101711900088", "100709701422", "101615500091", "101819100101", "101106600071", "100201901010", "101901600025", "101711152040", "100306802132", "100301300240", "100710550044", "101400900060", "101719000020", "101900600050", "101809600241", "101815501643", "101819901000", "100301709005", "100301706213", "100915800253", "100302657286", "101627305117", "101609100960", "100100800013", "100312211132", "101803901000", "101106600120", "101821700492", "101809600020", "100316101050", "100509104134", "100312210102", "101712106160", "101610900250", "101900805038", "101613052000", "100318305013", "100301900010", "101719700311", "100207105000", "101711901763", "101809600652", "101609101110", "101606600710", "100702604000", "100318303232", "101820605285", "101703606032", "100605701442", "101900900200", "101112050212", "101606000669", "100314000071", "100318305230", "101819903120", "101904801002", "101709105291", "100305002000", "102003900213", "101705700621", "102006601900", "100304871010", "101605900101", "101709100110", "100914401000", "101711802000", "102007900033", "101712801781", "100203404150", "101901400020", "101901400141", "100503300020", "100716540044", "100306803182", "100318305000", "101904801003", "102006400210", "102003400150", "101200800091", "100601600070", "101711152070", "101710705090", "101603806021", "101900800033", "101815400010", "101603750083", "100301301002", "100302657006", "101606800050", "101610900180", "101106700261", "102050000016", "101603305200", "101905300100", "101815400240", "100204002230", "101106600112", "101821500063", "102004000070", "100100700020", "101815400430", "101005200312", "100314300183", "101820605737", "101819903008", "100204001100", "101821602812", "101809600370", "101618405266", "100301300013", "101712803274", "101305500050", "101712805282", "101603405100", "101613050062", "101705700220"], ["N01000109072", "N01083309420", "N15420209240", "N16790000430", "N01044001480", "N19090000359", "N11900309120", "N08015609081", "N06004207012", "N08015400110", "N21602509160", "N18301609331", "N01080100338", "N19090000361", "N18302209110", "N01063300091", "N21602609040", "N01009200152", "N01058809250", "N01040208120", "N18890009252", "N08053830083", "N06006200050", "N06012500122", "N01056400191", "N23100870072", "N01014700245", "N12790009009", "N18499990443", "N08049700091", "N01059200254", "N01044000880", "N01017500050", "N01052700151", "N11621409062", "N06015750030", "N08033000212", "N11621419157", "N23100868219", "N01066500055", "N11621509130", "N01044001943", "N06009000151", "N01081700550", "N11490000761", "N23100869216", "N01054000110", "N08033000215", "N11490000737", "N01063309228", "N01017500441", "N01014600190", "N21600800110", "N10190000091", "N01004700131", "N11621419158", "N01014700465", "N06004209083", "N15690000040", "N16323300285", "N01044000520", "N01014700170", "N01011309001", "N11621009040", "N01086900216", "N15290001330", "N21602800291", "N11490000744", "N19690001382", "N12690000311", "N18301609060", "N06024009091", "N11610609150", "N01088400072", "N11621009080", "N18399990570", "N14900519110", "N01030109050", "N06023409010", "N01029900160", "N01022300126", "N01019309047", "N01078200240", "N01040309050", "N08027610069", "N01088701064", "N11341209040", "N20690000886", "N11341250093", "N14490002220", "N01022300137", "N06012500261", "N17190000940", "N01080100330", "N01034609028", "N11623409041", "N18499990005", "N01065400285", "N06012500120", "N01055300385", "N12390001551", "N11490000738", "N01076500026", "N01076809121", "N01014359010", "N19290009171", "N01019009291", "N08036600260", "N01002609022", "N06006200150", "N16190000181", "N06007200301", "N01080500011", "N06015750100", "N01014700072", "N20090000292", "N01078200111", "N01063300124", "N01019700600", "N23602209180", "N19490000010", "N01073600253", "N14490002350", "N01017500130", "N01049200220", "N01040208170", "N11341209120", "N11490001910", "N08005409120", "N21090002530", "N08022400380", "N01025200671", "N01001100074", "N08029800352", "N06015309008", "N06015750019", "N08018000011", "N01078200280", "N08018000010", "N08015400058", "N01037900120", "N15420209032", "N16324709123", "N11622109100", "N16690002520", "N08022400170", "N20790000964", "N17849709132", "N01032000651", "N01049200110", "N08029800355", "N01023408055", "N08027020020", "N06012500393", "N21604909150", "N14590000831", "N01035300020", "N17290000934", "N01078100033", "N24290000520", "N01039900021", "N01041039089", "N01044001782", "N08049609102", "N01023510027", "N18599990220", "N01040909018", "N06015500060", "N01018200051", "N01022300160", "N01024200400", "N01075720030", "N06012500272", "N01016700290", "N01040208360", "N01040208200", "N06026809070", "N21090002391", "N11623409032", "N01016700331", "N01059200040", "N18099999380", "N14090001040", "N01045400210", "N23990000610", "N14090000010", "N01028500040", "N18501109181", "N01043400608", "N01044000282", "N06025409140", "N14790000970", "N01064609062", "N24190000023", "N01041019475", "N01025200679", "N22090000450", "N22090001130", "N06006200100", "N15440209670", "N01074400390", "N18501209780", "N01033410028", "N01080909086", "N08024009022", "N15290001650", "N08037400015", "N01040208480", "N06015500195", "N08032800032", "N11101359026", "N10590000290", "N08013450014", "N01019009211", "N01018700464", "N01073500021", "N16690001140", "N14900509195", "N01016701150", "N06009609535", "N14900509490", "N06006209010", "N01017500233", "N11621509500", "N01046900170", "N21090009542", "N01020009020", "N01017500140", "N21790000460", "N08010209033", "N01093508111", "N08001200796", "N23101709200", "N15100999130", "N01022300066", "N23100079010", "N01055100021", "N01078209013", "N21090001810", "N08033000781", "N01080909046", "N06012500312", "N01000609037", "N01033410070", "N13899999151", "N01079900070", "N01016700577", "N01045400170", "N01037100172", "N12990002011", "N23100869055", "N11630909034", "N21601200290", "N01019007078", "N01078100216", "N01064209090", "N16323300280", "N01078201013", "N01058801390", "N01078700031", "N22090000090", "N06025609073", "N01033700374", "N01065408050", "N15290001741", "N01065600125", "N06026800050", "N23101709270", "N01037100102", "N17899999187", "N06026800127", "N21390000768", "N06015500040", "N06013720074", "N01065400200", "N08027610057", "N01067000011", "N22390000041", "N17847509120", "N01023510011", "N01088400050", "N17290001080", "N01078100020", "N01019007081", "N01078201013", "N01054000090", "N11900600030", "N01008500480", "N01075701920", "N01019009114", "N01015500023", "N01034609035", "N10390000070", "N01040309040", "N23100868209", "N20590009481", "N21600800296", "N14490000340", "N16799990080", "N12790000659", "N21999999000", "N08034609090", "N01093508113", "N06015500031", "N01055100140", "N01037900651", "N10710809032", "N20790000375", "N21090009091", "N01040208490", "N08050009034", "N11902609130", "N17790000040", "N21090009320", "N21790000170", "N01091900151", "N01083300125", "N11790000110", "N01041010042", "N01041017110", "N01040300853", "N01024900658", "N01016700381", "N01044001441", "N14490002341", "N08050600010", "N06017209020", "N08002809101", "N01044001761", "N06015750037", "N08037400032", "N01031109050", "N08014800042", "N18037909081", "N01019005211", "N01054909020", "N08001200792", "N01083301245", "N01054400060", "N01078200030", "N01012000259", "N18300309031", "N08052400070", "N01088709021", "N01060900290", "N12990002730", "N11621409092", "N08012409096", "N08001209759", "N01088709040", "N08040909018", "N01078200133", "N01019009272", "N08049700100", "N23990001450", "N01016700350", "N18404508040", "N18303509040", "N06012500550", "N11690009000", "N23100870182", "N06017600241", "N01023510028", "N11621129011", "N17190000113", "N11329990310", "N11621509480", "N01083300078", "N23100869873", "N01052600351", "N01016410391", "N06009609532", "N01078300070", "N01060500037", "N06004206010", "N11611109024", "N06013900084", "N01019009303", "N01078300070", "N06025400610", "N01058800240", "N01024900265", "N01075702850", "N16324709122", "N20990001310", "N20790000976", "N08005000806", "N01019009457", "N08049700070", "N01016410050", "N18302609138", "N01040400106", "N17790002040", "N01040209012", "N01052600922", "N10590000300", "N11639999010", "N15100999210", "N23603509020", "N23990000470", "N01016410020", "N06012500140", "N06012500232", "N01011700074", "N01041400120", "N16324009091", "N08033000120", "N01066500271", "N01059209020", "N08001200850", "N08049609016", "N10490000751", "N01033700070", "N12190000191", "N01029800051", "N23101709491", "N01081100077", "N01019009748", "N12990002230", "N01075702410", "N01037900650", "N18404509039", "N01014800050", "N18301609301", "N06012509065", "N01045400230", "N08018200231", "N01040209013", "N08015609050", "N06009000122", "N16324709184", "N11490000541", "N08049609064", "N01044001183", "N01022310060", "N16490000100", "N14590000291", "N08052400292", "N06006300040", "N08013450051", "N01061300022", "N01011400125", "N08035609000", "N12390000740", "N16090000556", "N01018700431", "N01029900060", "N01041009050", "N16324709181", "N17590000020", "N14590000830", "N01014700464", "N23100868212", "N06001209060", "N01000600110", "N18399990700", "N11204600040", "N01017500280", "N01016410111", "N11622009302", "N11611109011", "N01029900670", "N01083300158", "N01030100221", "N01016410402", "N15430109123", "N17190001010", "N01055100244", "N01019007024", "N01024900300", "N11621409201", "N24290000220", "N01037009015", "N06011309198", "N18403600050", "N06022600013", "N06012579020", "N06015508111", "N06015750139", "N01024900570", "N01037900140", "N18499770060", "N21890000110", "N01014709012", "N01059209015", "N01017500120", "N01014600052", "N01041039253", "N08052400111", "N01088400191", "N23100870069", "N11490000711", "N20790000973", "N21090002392", "N12390001770", "N08033000218", "N08022400070", "N01009200072", "N21090009533", "N21602509130"], ["-89.97666667", "-116.2227778", "-124.2460278", "-76.20122222", "-77.04294444", "-74.10483833", "-108.5428611", "-121.9290089", "-107.90848", "-85.582235", "-97.43304583", "-86.39397611", "-90.07588889", "-118.8377722", "-117.8682225", "-80.09559417", "-114.4877356", "-78.73216667", "-111.9777731", "-119.7181389", "-77.61213778", "-75.24114083", "-88.75120556", "-85.52276778", "-88.24283333", "-117.1896567", "-84.35033333", "-96.85177222", "-94.71390556", "-78.92833333", "-98.49189333", "-119.8403733", "-77.90255556", "-90.35998972", "-118.3584969", "-89.69330556", "-106.9331817", "-111.1530072", "-94.36744111", "-106.9176953", "-75.44040167", "-104.6670019", "-106.3778056", "-95.40238611", "-71.42822111", "-121.8429478", "-80.29055556", "-104.70025", "-98.46977778", "-95.88824167", "-120.6423931", "-109.0237961", "-101.2803339", "-97.60073389", "-74.16866056", "-76.66819833", "-98.23861111", "-93.38685806", "-89.07009278", "-96.67083278", "-76.10631056", "-87.89658333", "-77.45580972", "-92.49798722", "-113.098575", "-122.2207167", "-87.18744444", "-82.68743944", "-89.67761861", "-111.9827503", "-81.20213889", "-79.9372975", "-80.04050583", "-73.70757444", "-81.05805556", "-82.21885833", "-85.19514639", "-73.10021194", "-92.03768778", "-86.29438417", "-123.2186856", "-81.59318972", "-88.12959", "-105.5393614", "-77.31966667", "-117.6011944", "-93.2169225", "-90.348816", "-95.33972222", "-107.8938333", "-108.5267347", "-103.0573708", "-80.23287083", "-99.68189722", "-91.48507194", "-89.33751361", "-81.84939667", "-91.71087222", "-121.1499633", "-83.99285583", "-85.736", "-80.39947222", "-121.7332081", "-112.0080556", "-96.81498889", "-87.90446417", "-97.50121528", "-78.78747222", "-92.54855611", "-83.27672222", "-119.7680647", "-78.45286111", "-120.4575825", "-115.1523333", "-93.82559833", "-70.30875", "-118.4080744", "-82.89188278", "-79.97542833", "-89.66677944", "-106.6091944", "-84.550781", "-73.87260917", "-118.1516111", "-97.66987194", "-122.5975", "-73.80297861", "-117.5338425", "-109.0651928", "-82.53325", "-111.3706853", "-97.0372", "-106.868845", "-71.00517917", "-83.34883583", "-92.548828", "-124.1086189", "-93.66068222", "-71.43705583", "-75.7242675", "-106.4644661", "-96.74170028", "-85.44962889", "-122.8734978", "-88.91595278", "-83.74345639", "-114.2550694", "-84.93886111", "-112.5958611", "-82.40742056", "-116.5062531", "-72.68322833", "-81.75516667", "-88.77375", "-82.55411111", "-90.25802778", "-96.75925", "-87.75242444", "-86.67818222", "-90.50753917", "-114.6059722", "-86.31847417", "-122.3093131", "-97.17611111", "-117.8295122", "-101.8227778", "-97.65439389", "-95.27888889", "-122.2934019", "-95.89417306", "-84.60538889", "-86.75354972", "-76.76340361", "-78.88", "-82.54180556", "-119.1190292", "-121.5907669", "-122.3748433", "-81.68786111", "-106.0881389", "-104.8118381", "-81.46630556", "-91.14963444", "-80.94312583", "-102.2019139", "-122.5375278", "-88.27805556", "-80.64580556", "-91.987655", "-110.9410278", "-76.4929875", "-77.67238389", "-84.219375", "-85.20378778", "-88.51947556", "-86.77310944", "-73.1503125", "-112.0701667", "-99.46154361", "-77.03772222", "-80.15275", "-84.6621725", "-81.11953944", "-110.7377389", "-107.2176597", "-92.19364861", "-84.42694444", "-81.96449611", "-81.31602778", "-73.77892556", "-90.70916722", "-81.44246556", "-92.22424556", "-87.53062667", "-100.7467222", "-97.82779778", "-86.5254", "-117.0153944"], ["XFMXT05.46BF", "XFMXT04.66FF", "XCRXV02.0VB0", "XFMXT04.01BF", "XADXV01.8322", "XCRXA0360J31", "XGMXV01.9003", "XFMXT05.02GF", "XCRXT03.95B2", "XFMXV03.4VBF", "XTYXT04.7GBX", "XGMXT05.3181", "XGMXT04.3187", "XCRXA0360H32", "XFMXV02.0VBA", "XGMXA05.0182", "XMBXV03.2GNB", "XSKXT2.49LHA", "XFMXT04.02BB", "XFMXA05.4JGC", "XGMXA07.4201", "XFMXA04.6JGC", "XGMXT04.3185", "XCRXT0232230", "XCRXV08.0VB1", "XVWXV02.0222", "XBMXV02.8M52", "XGMXT03.4141", "XFMXV04.6VBE", "XCRXV08.0VB1", "XFMXT04.02BA", "XTYXT02.0XBH", "XCRXV0148V30", "XSKXV1.59TNS", "XMBXT04.3GNB", "XCRXA0360H31", "XGMXA05.3183", "XFMXV02.0VBF", "XBMXV02.8LEV", "XBMXV02.8LEV", "XVWXV02.0229", "XMBXV05.5GNB", "XGMXA04.3194", "XFMXT05.46FF", "XCRXV0122V30", "XFMXV03.0VBZ", "XCRXT0150120", "XGMXA04.8184", "XBMXV02.8LEV", "XFMXA04.6JGC", "XTYXV03.0GXB", "XFJXV02.5DCD", "XCRXT03.95B2", "XCRXA0488J11", "XTYXT03.4DBP", "XFMXT04.22GC", "XGMXA07.4201", "XCRXA0360J31", "XSZXT03.52GK", "XSKXT2.00LMA", "XFMXV03.0VGC", "XCRXA0488K11", "XADXV02.8324", "XGMXA06.0183", "XFMXA05.4JGC", "XFMXV02.5VBC", "XGMXV02.4026", "XGMXA07.4201", "XGMXT02.2122", "XFMXT04.65BF", "XFMXT05.46BF", "XFMXT04.65BF", "XSKXV1.59TNS", "XGMXA05.0182", "XTYXV03.0GBC", "XSKXT1.59CMC", "XGMXV04.6068", "XDWXV01.6D01", "XSKXV1.30LNA", "XTYXV03.0DBF", "XFMXA04.2JGC", "XGMXA04.8184", "XGMXT04.3185", "XFMXV02.0VGC", "XCRXT05.95B1", "XTKXV01.6VJM", "XCRXV02.0VB1", "XADXV02.8324", "XGMXV01.9001", "XFMXT05.02GF", "XFMXA04.6HGC", "XCRXA0360J11", "XJCXV04.0AS3", "XGMXV03.8050", "XFMXT05.46FF", "XRRXV06.7TUR", "XMBXV03.2GNU", "XGMXT05.3181", "XGMXV04.6068", "XBMXV02.5M52", "XSZXT03.52GK", "XMTXT03.5G2G", "XFMXV03.0VBB", "XTYXT02.7BBH", "XGMXV04.6067", "XSKXT2.00CMA", "XSZXT03.52EK", "XFMXV04.6VG5", "XVVXV2.43TF2", "XDSXV02.0GBK", "XFMXT04.01BF", "XFMXA05.4JGC", "XSKXT1.59LMA", "XVWXV02.8224", "XFMXT04.01G5", "XSKXT1.59CMC", "XSKXV1.84LHS", "XSAXV02.3TD1", "XGMXV03.8053", "XFMXA05.4JGC", "XGMXV02.2023", "XS3XV04.6ABA", "XFMXT04.66BF", "XGMXA07.4201", "XFMXT04.02GF", "XGMXT05.3182", "XSKXT2.00LMA", "XMTXT03.0GFG", "XFMXT03.325C", "XSAXV02.3TD1", "XHNXV01.6JL2", "XFMXT03.02BB", "XGMXA04.3194", "XSKXT2.00CMA", "XGMXV01.9004", "XCRXV08.0VB1", "XS3XV04.6AAA", "XVWXV02.0227", "XGMXT06.0181", "XVWXV02.0227", "XFMXT04.66BF", "XFMXT04.02BD", "XADXV02.8324", "XCRXA0318H11", "XFMXT04.26BF", "XCRXT0150120", "XFMXA04.6HGC", "XMTXT02.4GFG", "XFMXT03.02GC", "XGMXV03.8050", "XTYXT02.7DXJ", "XHYXV02.42EC", "XSZXT03.52EK", "XFMXV02.5VBC", "XCRXV02.0VB1", "XFMXT03.02GF", "XMBXV05.0GNB", "XFMXT05.46BF", "XBMXV02.8M52", "XGMXV03.8048", "XGMXT04.3184", "XSZXT03.22JK", "XBMXV02.8M52", "XCRXV0152V20", "XCRXV0215V20", "XGMXV03.8048", "XHNXV01.8XA1", "XFMXT04.02BB", "XFMXT05.46BF", "XDSXV02.5GFG", "XFMXT02.51BF", "XGMXT04.3185", "XFMXT05.4RP6", "XCRXT04.02B0", "XTKXV02.0VBA", "XGMXV03.8051", "XGMXV04.6067", "XTYXT03.4DBP", "XGMXV01.9004", "XFMXT03.02DC", "XCRXV0165V20", "XMBXV03.2GNB", "XFMXT04.02DN", "XGMXV03.8048", "XCRXT05.26RC", "XCRXV0165V20", "XJCXV04.0BN4", "XVWXV02.0227", "XFMXA04.6JBC", "XGMXV03.8049", "XDSXV02.0GBK", "XSKXV1.30LNA", "XNSXV03.0A6A", "XBMXV04.4LEV", "XFMXV02.0VGC", "XFMXT05.46BF", "XRRXV06.7TUR", "XNSXV02.0A2A", "XGMXT02.2121", "XP3XV04.699A", "XVVXV2.43PA2", "XFJXV02.2FEF", "XFMXT03.02DC", "XFMXA05.4JGC", "XTYXV04.0DBA", "XGMXV03.8053", "XSZXT03.22JK", "XSAXV02.3TE1", "XGMXT04.3184", "XGMXV03.8049", "XFMXA04.2JGC", "XTYXT03.0XBP", "XGMXV05.7082", "XCRXT03.82B1", "XSKXT2.00LMA", "XCRXA0360J31", "XDWXV01.6D02", "XHNXV01.6JF1", "XCRXT0242120", "XGMXT04.3182", "XGMXT02.2121", "XFMXA04.6JGC", "XGMXV05.7083", "XGMXT04.3185", "XGMXV03.8052", "XCRXT05.95B1", "XCRXA0360J11", "XFMXV04.6VBE", "XCRXA0360J11", "XFMXT05.46BH", "XFMXT05.46FF", "XCRXA0360J31", "XGMXV03.8053", "XCRXV02.4VB0", "XDSXV02.5G1G", "XGMXA04.3195", "XDSXV03.0GFH", "XSZXT03.52GK", "XFMXT03.82GF", "XADXV02.8324", "XCRXV02.0VB1", "XFMXV03.0VBM", "XGMXT05.0181", "XCRXT0239211", "XFMXA04.2JGC", "XFJXV02.5CAC", "XFMXT04.02BB", "XKMXT02.0B02", "XSZXT03.22JK", "XTYXV04.0DBA", "XCRXT03.82B1", "XGMXV02.4026", "XFMXT04.66BF", "XGMXT04.3193", "XFMXT05.46FF", "XGMXT04.3184", "XCRXT0242230", "XFMXT04.02GC", "XCRXT0360211", "XGMXV03.8049", "XFMXT05.46FG", "XVVXV2.92BU2", "XCRXV0148V30", "XCRXV03.5VB0", "XFJXV02.5HEG", "XMTXV03.0GBA", "XTKXV01.8VBB", "XFMXT04.22BF", "XGMXA06.0182", "XFMXT05.02GF", "XSAXV03.0TE1", "XDWXV01.6D01", "XCRXT0232230", "XDSXV02.0GBP", "XTKXV02.3VB3", "XNSXV02.4A3A", "XGMXV03.8048", "XNSXV02.433A", "XGMXV01.9001", "XMLXV03.5GFG", "XSZXT03.22JK", "XCRXT02.51B0", "XCRXT0239211", "XCRXA0488K11", "XMTXT03.0GFG", "XMBXV02.3GSU", "XGMXV04.6068", "XGMXV03.8050", "XFJXV02.5CAC", "XCRXT05.9AB1", "XCRXV02.4VB0", "XTYXV03.0BBA", "XFMXT03.02BA", "XGMXT03.4142", "XFMXT04.02GC", "XSKXV1.59TNS", "XCRXA0360J31", "XFMXT04.02GF", "XHNXV02.3PL2", "XGMXT06.0181", "XGMXV01.9001", "XNSXT03.3A5B", "XHNXT02.0UA2", "XFMXT05.46BH", "XSZXT02.22HK", "XCRXT0242120", "XCRXA0488J11", "XGMXT05.3181", "XMLXV03.5G2G", "XSAXV02.0TD2", "XGMXV03.0061", "XGMXT04.3184", "XADXV02.8324", "XMTXT03.0GFG", "XSKXT2.00CMA", "XTYXV02.2DXD", "XGMXA06.0183", "XFMXT04.66BA", "XFMXT03.3A5C", "XGMXV02.4025", "XFMXA05.4JGC", "XCRXV08.0VB1", "XFMXV03.0VGC", "XGMXT05.3181", "XSAXV03.0TE1", "XCRXT03.82B0", "XFMXV02.0VBB", "XCRXV02.0VB1", "XMBXV05.0GNB", "XGMXV04.6068", "XKMXV01.8A02", "XGMXT06.0181", "XGMXA05.7182", "XFMXT03.02DC", "XCRXT05.26RC", "XFMXV02.0VBF", "XCRXT03.82B1", "XFMXT04.02GC", "XFMXA04.6HGC", "XFMXT04.02BA", "XFMXT03.01BF", "XTYXV02.2XBC", "XFMXV02.5VBF", "XJCXV04.0BN4", "XFMXT04.65BF", "XBMXV01.9M44", "XNSXT02.4A3A", "XFMXV04.6VDR", "XFMXT04.02DN", "XGMXT05.0181", "XGMXV02.4027", "XGMXA05.3183", "XSZXT03.52GK", "XCRXT0201230", "XCRXA0360J11", "XWBXT02.8225", "XFJXV02.5GDE", "XADXV01.8322", "XTYXV03.0DBF", "XCRXV02.4VB0", "XNSXT02.423A", "XCRXT05.9AB1", "XCRXT0287231", "XGMXV04.6068", "XFMXT02.51BF", "XGMXA04.3195", "XSKXV.993CNC", "XCRXV03.5VB0", "XFMXV02.5VBC", "XGMXV03.4041", "XSZXT03.52GK", "XFMXT03.01BA", "XCRXT0201230", "XGMXA05.7182", "XCRXV02.0VB1", "XGMXV04.6068", "XGMXV01.9003", "XHNXT03.5EA3", "XFMXT03.82JC", "XNSXV03.026A", "XGMXV03.8048", "XCRXT05.26RC", "XGMXA07.4201", "XBMXV05.4LEV", "XCRXT03.32BP", "XGMXV03.8049", "XMTXV01.5G2D", "XCRXA0360J31", "XCRXV02.0VB2", "XSZXT03.52GK", "XVWXV02.8221", "XFMXT04.66BA", "XNSXT03.3A5C", "XFJXV02.5HEG", "XFMXV03.0VBM", "XCRXT04.01B0", "XCRXT03.82B1", "XDSXV02.5G1G", "XHNXV01.6JL2", "XGMXV03.4041", "XMTXV03.0GBK", "XNSXV03.0A6A", "XGMXA07.4201", "XFMXT03.02DC", "XFMXT05.02GF", "XGMXA04.3194", "XMTXT03.0G2G", "XGMXV02.4026", "XFMXT04.02GC", "XGMXV01.9002", "XADXV02.8324", "XMTXT02.4GFG", "XGMXT04.3187", "XFMXT05.42BF", "XSKXT2.00LMA", "XGMXT04.3185", "XGMXA04.8184", "XGMXT04.3184", "XHYXV02.01RF", "XBMXV02.8M52", "XFMXV04.6VDN", "XCRXA0360J31", "XFMXT04.02DN", "XFMXA05.4JGN", "XFMXV02.0VGC", "XTYXT02.4BBH", "XGMXV03.4042", "XFMXV02.5VBC", "XFMXV03.8VBF", "XSKXT2.49LHA", "XCRXA0360J11", "XCRXV0122V30", "XADXV01.8322", "XFMXV02.5VBC", "XCRXT05.95B1", "XGMXA07.4201", "XGMXV02.4026", "XGMXV03.1043", "XFMXV03.0VDC", "XFMXA05.4HGC", "XCRXV03.5VB0", "XHNXV02.2SA1", "XTYXT03.4BBH", "XFMXT05.02GF", "XFMXT03.82GF", "XFMXV03.0VBZ", "XFMXV04.6VB4", "XGMXT04.3184", "XTYXV04.0DBA", "XGMXV03.8051", "XFMXT05.45BF", "XFMXT04.26BF", "XDSXV02.0GBK", "XFMXT02.51BA", "XMBXV05.0GNB", "XGMXA05.0182", "XMTXV01.8GFG", "XFMXV02.0VDC", "XFMXA05.4HGC", "XCRXV02.0VB2", "XSKXT2.49LHA", "XFMXA04.6JGC", "XFMXT03.02BA", "XNSXT02.4A3B", "XNSXV02.0A2A", "XGMXV02.4025", "XFMXT04.66BF", "XFMXV03.0VBZ", "XFMXT05.46FG", "XCRXT05.26RC", "XFMXV02.0VDN", "XTKXV02.5VB4", "XCRXA0360J11", "XCRXA0360H31", "XCRXT03.82B1", "XBMXV04.4LEV", "XHNXV01.6KA4", "XFMXT04.26BF", "XCRXT05.95B1", "XFMXV02.5VBF", "XTYXV01.8DXB", "XCRXV0122V30", "XDSXV02.0GBP", "XTKXV01.6VBB", "XCRXT05.26RC", "XHNXV02.3PF1", "XCRXT02.51B0", "XGMXV01.9002", "XSZXT03.52EK", "XFMXT04.25BF", "XCRXA0488J11", "XCRXT0148230", "XGMXV04.6067", "XGMXA04.3195", "XFMXT02.51DC", "XJCXV04.0AS3", "XSKXT2.00CMA", "XCRXT0360211", "XNSXT03.335A", "XFMXV02.0VDC"], ["YTYXT04.7GXW", "YGMXA05.7191", "YFMXT04.02F3", "YG9XT05.45NN", "YGMXT04.3182", "YGMXT04.3185", "YSZXT03.52JK", "YGMXT04.3180", "YCRXT0148230", "YADXV01.8336", "YGMXT04.3188", "YGMXV03.8901", "YFMXT04.2JGC", "YNSXT02.423A", "YTYXT03.4XBP", "YCRXT0148230", "YGMXT05.3182", "YMBXV05.0GNB", "YTYXV02.2PPA", "YSKXT2.00LMA", "YMBXV06.0GNU", "YMTXT03.0GFG", "YNSXT03.3A5B", "YFMXT04.65FF", "YFMXT03.01BA", "YFMXV02.0VDC", "YGMXT03.4141", "YHNXV02.3PL4", "YGMXV03.8045", "YGMXT04.3191", "YGMXV02.4022", "YCRXT05.9AB1", "YFJXV02.5JEH", "YS3XV04.6AAA", "YHNXV03.2GF3", "YGMXV01.9001", "YNSXT03.3A5A", "YFMXV02.0VF3", "YFMXT04.2JGC", "YGMXV02.4022", "YMBXV03.2GNB", "YTYXV03.0FFD", "YVWXV02.8224", "YGMXT05.3182", "YFMXT04.02DN", "YFMXT03.82FF", "YCRXT03.32BP", "YNSXV02.433A", "YMBXT03.2GNB", "YCRXT05.26RC", "YTYXV03.0FFE", "YG9XT05.46NP", "YCRXT05.26RC", "YMTXT03.5GNG", "YADXV01.8336", "YCRXA0360J31", "YGMXX02.4021", "YFMXT03.02F5", "YFMXA05.4JGP", "YFMXV02.5VBC", "YTYXT04.7GXW", "YDWXV01.6D01", "YSKXT2.00LMA", "YGMXT05.3181", "YHNXV01.6VA2", "YGMXV03.5063", "YGMXV03.0061", "YHNXV01.6JF1", "YGMXT04.3191", "YGMXV03.8042", "YCRXV0122V31", "YFMXV02.0VBF", "YVWXV02.0222", "YG9XV02.01EN", "YGMXV03.4041", "YBMXT04.4E53", "YSKXV1.30CNA", "YFMXT03.82J5", "YCRXA0360J31", "YCRXV0122V41", "YFMXV04.6VB4", "YFMXT03.82J5", "YFMXT05.46BF", "YGMXV03.8043", "YGMXV03.4041", "YMTXT03.5GNG", "YGMXT04.3184", "YHNXV01.6JL2", "YFMXT05.4RF7", "YFMXT03.02D5", "YGMXT04.3182", "YGMXT04.3188", "YTYXT03.4FFR", "YHYXV02.0G1F", "YGMXT04.3184", "YGMXV03.8044", "YCRXT05.95B2", "YHNXT02.0UA2", "YTYXV03.0FFC", "YSAXV02.3TV2", "YCRXT05.96B1", "YCRXV03.5VB0", "YKMXT02.0B03", "YG9XT05.45NN", "YCRXT03.82B0", "YTYXT04.7GBX", "YGMXT05.3181", "YCRXA0360H11", "YDSXV02.4GFG", "YADXV02.8334", "YDWXV01.6D01", "YGMXV03.8043", "YNSXT02.4A3A", "YFMXT04.02F2", "YNSXT03.3A5C", "YFMXT03.02BB", "YFMXA04.6HGC", "YMBXT04.3GNB", "YCRXA0360H11", "YTYXV01.8FFD", "YCRXT05.95B1", "YTYXV02.2JJB", "YFMXV03.0VBA", "YGMXV05.7081", "YADXV01.8336", "YCRXT04.02B0", "YGMXT06.0192", "YGMXT04.3184", "YGMXT04.3184", "YGMXT04.3183", "YFMXT05.4RF7", "YGMXA05.7185", "YTYXV03.0DDF", "YGMXT05.7188", "YDSXV02.5GFG", "YFMXT05.4RP5", "YCRXA0488J11", "YFMXA06.8JGN", "YGMXT04.3188", "YCRXT05.95B2", "YGMXT04.3191", "YFMXT05.45FF", "YHYXV01.5G3S", "YGMXT04.3188", "YFMXT04.66FF", "YTYXT02.4FFJ", "YFMXT05.02F5", "YGMXT04.3188", "YNSXT03.3A5A", "YCRXA0360J11", "YCRXT03.82B0", "YFMXT02.51D5", "YTKXV02.0VJM", "YSZXT03.52JK", "YGMXV03.8042", "YGMXT04.3191", "YGMXT02.2121", "YGMXT04.3191", "YGMXA05.7191", "YTYXT02.7XBP", "YCRXV0152V20", "YGMXT06.0192", "YGMXT05.7187", "YADXV02.8324", "YNSXT02.4A3B", "YSZXT02.22FK", "YGMXV03.8045", "YGMXT05.7188", "YMBXV02.3GSU", "YGMXT03.4142", "YFJXV02.5JEH", "YCRXV08.0VB1", "YSKXT1.59LMA", "YCRXT04.02B0", "YGMXA05.7191", "YBMXV04.4LEV", "YFMXT02.51F5", "YGMXA05.7191", "YFMXT03.02BA", "YE4XT05.0ALW", "YSAXV02.3TV2", "YSKXT1.59CMC", "YFMXV04.6VFR", "YNSXT03.3A5A", "YASXX05.9DB7", "YPRXV03.4996", "YFMXT04.66BA", "YMBXV05.0GNB", "YADXV01.8336", "YFMXT04.01DC", "YGMXT05.3186", "YHNXV01.8XA2", "YGMXA05.3184", "YGMXT04.3191", "YFMXT04.65FF", "YRRXV06.7TUR", "YCRXV02.0VB0", "YCRXV02.4VB0", "YFMXT04.02DN", "YMBXT05.5GNB", "YTYXT03.0XBP", "YFMXT03.02D5", "YFMXT05.4RF7", "YFMXA05.4HGC", "YFMXV03.0VF5", "YGMXT05.7189", "YHNXV01.8WA2", "YGMXT03.4143", "YGMXT04.3182", "YGMXV03.8042", "YCRXT0150120", "YGMXX02.4021", "YHNXV02.2SA1", "YGMXT04.3184", "YCRXT03.82B0", "YFMXT04.01F5", "YDWXV02.2D02", "YJCXV04.0BS7", "YFMXT04.66FF", "YGMXT05.3182", "YHYXV02.0G3S", "YTYXV03.0FXB", "YGMXT04.3188", "YLRXT04.6002", "YDSXV02.5GFG", "YGMXT05.7189", "YCRXT0201230", "YJCXV04.0BS7", "YGMXV03.8951", "YCRXV02.0VB1", "YTKXV02.5VB4", "YNSXT02.423B", "YCRXA0360H31", "YGMXA04.3190", "YGMXT03.4141", "YFMXT04.26BF", "YCRXT03.32BP", "YFMXA05.4JGP", "YGMXT02.2121", "YSKXV1.59TNS", "YGMXT05.3186", "YGMXT04.3186", "YGMXT06.0192", "YFMXT04.65FF", "YCRXA0360J11", "YGMXV03.8951", "YG9XT05.46NN", "YDSXV02.5G1G", "YFMXT03.82JC", "YNSXV01.8A8A", "YFJXV02.5JEH", "YCRXT03.82B0", "YCRXT03.82B0", "YGMXA07.4201", "YMBXV05.0GNB", "YTYXV02.2JJB", "YFMXV02.5VBC", "YFMXT04.02F2", "YFMXV04.6VB5", "YTYXV02.2XBA", "YSKXT2.00CMA", "YCRXT03.82B0", "YGMXT04.3191", "YFMXT05.02F5", "YDSXV03.0GFG", "YGMXT05.3181", "YBMXV04.4LEV", "YNSXV03.036A", "YHYXV02.0G1F", "YGMXX02.4021", "YFMXT05.4RF7", "YCRXV02.4VB0", "YFMXT02.51F5", "YFMXV02.0VF2", "YSAXV03.0TE1", "YGMXT04.3186", "YFMXA05.4HGC", "YGMXA05.3183", "YTYXT02.4XBH", "YSKXV1.59TNS", "YFMXV02.0VDC", "YGMXT04.3188", "YCRXV03.5VB0", "YTKXV01.8VBA", "YGMXT06.0192", "YCRXT0232230", "YTYXT03.4FFR", "YADXV02.8334", "YNSXT03.325A", "YGMXA04.3190", "YCRXT05.26RC", "YHNXV01.6KA5", "YGMXA07.4201", "YSAXV03.0TE2", "YMBXV05.0GNB", "YCRXV0148V30", "YMBXV03.2GNB", "YGMXT04.3187", "YFMXT04.02DN", "YGMXT04.3182", "YGMXT05.3182", "YVVXV1.95MJ1", "YGMXT04.3188", "YADXV02.7339", "YSZXT03.52JK", "YGMXT04.3188", "YGMXA05.3183", "YBMXV04.9S62", "YGMXT05.7188", "YCRXA0239H11", "YGMXT04.3182", "YVVXV2.43PA3", "YFMXV03.0VF5", "YFMXA05.4HGC", "YTKXV01.8VFN", "YGMXT03.4142", "YCRXT04.75B1", "YGMXV03.8043", "YGMXV03.8043", "YMTXT03.0GFH", "YCRXT05.26RC", "YGMXA05.7191", "YGMXT06.0192", "YGMXT05.7190", "YGMXX02.2023", "YGMXV03.0062", "YGMXT05.7190", "YGMXT04.3191", "YCRXT0360221", "YFMXT04.26BF", "YSKXT2.49LHA", "YTYXT03.4XBP", "YMTXT03.0GNG", "YFMXA06.8JGC", "YGMXA05.3184", "YMTXT02.4GFG", "YMBXV03.2GNB", "YADXV04.2335", "YMBXV05.0GNB", "YGMXT05.7190", "YCRXT0242130", "YCRXV08.0VB1", "YGMXA05.3184", "YGMXV03.4041", "YCRXT0150120", "YFMXA04.6HGC", "YBMXV03.2S52", "YFMXT04.02F4", "YNSXV04.1A7A", "YLRXT04.6002", "YCRXT0242230", "YHNXV01.6KA5", "YTYXT02.7FFR", "YSAXV03.0TE1", "YGMXV03.8951", "YGMXA05.7194", "YGMXX02.4021", "YCRXV0122V40", "YADXV01.8332", "YVWXV02.0222", "YCRXT05.26RC", "YCRXT05.95B1", "YGMXA05.7185", "YSKXT1.59LMA", "YGMXV03.8951", "YCRXV0122V30", "YCRXA0239H11", "YGMXA04.3189", "YFMXT05.4RF7", "YFMXT03.01BA", "YFMXV03.9VF5", "YJCXV04.0BS7", "YFMXT04.65BF", "YFMXT04.65BF", "YTYXV03.0BBA", "YADXV01.8336", "YVWXV02.8224", "YFMXT04.02D5", "YCRXT03.32BP", "YGMXX02.4021", "YGMXV03.8043", "YCRXV0122V40", "YCRXT05.95B1", "YSZXT03.52GK", "YFMXT02.51FC", "YGMXA04.3190", "YGMXV04.6065", "YSKXV1.59TNS", "YGMXX02.4021", "YGMXA04.3192", "YGMXT04.3191", "YFMXV02.0VBF", "YRRXV06.7TUR", "YGMXT03.4141", "YCRXT05.9AB1", "YCRXV0148V30", "YCRXA0360J11", "YGMXT04.3188", "YFMXT05.45BF", "YTYXV01.5FFA", "YFMXT04.01BA", "YCRXV0215V30", "YTYXT04.7XBV", "YFMXT04.26BF", "YSKXT2.00CMA", "YGMXA05.7191", "YCRXA0360J31", "YCRXT02.42B0", "YBMXV05.4LEV", "YFMXT05.45BF", "YCRXT0150120", "YGMXA05.3184", "YGMXA07.4201", "YGMXT04.3191", "YGMXT05.3181", "YSKXT2.00LMA", "YGMXA07.4201", "YTYXV04.0DDA", "YTJXT05.7191", "YTYXT02.7XBP", "YNSXT03.3A5C", "YCRXT0287231", "YGMXV03.8043", "YHNXV02.3PF3", "YGMXT06.0192", "YTKXV01.8VBB", "YFMXV04.6VFR", "YSKXV.993CNC", "YGMXT03.4143", "YGMXT04.3193", "YDWXV02.2D02", "YCRXA0360J31", "YFMXT04.02F4", "YGMXT05.3182", "YGMXV03.8901", "YDWXV01.5S01", "YTYXT02.0XBH", "YGMXT05.3186", "YCRXV03.5VB0", "YCRXA0360J11", "YDWXV02.2D01", "YGMXA05.3184", "YGMXT04.3181", "YCRXT04.02B0", "YBMXV02.8LEV", "YGMXA07.4201", "YGMXT04.3191", "YGMXA05.7191", "YCRXA0360J31", "YTYXV01.8DDB", "YHNXV01.6TA3", "YASXX05.9DB7", "YG9XT05.46NP", "YMTXT03.5GFG", "YCRXA0360J31", "YGMXT04.3188", "YFMXT03.02D5", "YGMXX02.4021", "YHNXV03.2AA3", "YFMXT03.01BF", "YGMXV03.8043", "YGMXT05.3181", "YFMXV03.0VF5", "YBMXV02.8LEV", "YNSXT03.335A", "YCRXT03.32BP", "YGMXA05.7185", "YSKXT1.59LMA", "YBMXV04.4LEV", "YMBXV03.2GNB", "YRRXV05.4NAT", "YTKXV02.5VDM", "YCRXT02.51B0", "YGMXV03.8042", "YFMXV03.0VFA", "YFMXT05.4RF7", "YFMXA04.6HGC", "YADXV02.8324", "YBMXV02.8LEV", "YCRXT03.95B2", "YNSXT03.3A5A", "YCRXA0360H32", "YGMXA05.3183", "YGMXT05.3181", "YGMXA04.3189", "YGMXT04.3182", "YGMXV03.8043", "YCRXV0122V30", "YKMXV01.8A03", "YNSXT03.335B", "YBMXV03.2S52", "YGMXT04.3182", "YG9XV02.01EN", "YFEXV05.5C00", "YCRXA0360J31", "YCRXA0360J31", "YVVXV2.43PA3", "YCRXA0360H31", "YRRXV05.4NAT", "YGMXA05.3183"], ["2FMXV03.0VF3", "2GMXA05.3185", "2CRXV02.4VD0", "2GMXA06.0188", "2FMXT03.82J7", "2DWXV02.2D01", "2DSXV03.0GNS", "2GMXA06.0188", "2MBXV05.0UBI", "2RRXV06.7TUR", "2CRXT05.96B0", "2MBXV05.0UBI", "2GMXA06.0188", "2NSXT03.5C7A", "2BMXV03.0LER", "2GMXT04.3187", "2LRXT04.6003", "2GMXA08.1201", "2CRXV02.4VD0", "2KMXT02.0B05", "2CRXA0488J11", "2GMXA04.8184", "2GMXA04.8183", "2GMXT03.4142", "2BMXV01.6R50", "2MBXV05.0UBI", "2RAXV03.6RGT", "2FMXT02.31F5", "2CRXT05.96B0", "2TYXT04.7FBY", "2CRXT03.95B0", "2CRXT05.95B2", "2HNXV02.3RDA", "2SKXX2.00LC4", "2GMXT02.2122", "2GMXA06.0188", "2JCXV04.0BN4", "2BMXT04.6XHP", "2GMXA06.0194", "2GMXT04.3188", "2GMXT04.3187", "2FMXT04.01F6", "2GMXA04.3190", "2CRXA0488J11", "2TKXT02.0CJA", "2GMXA04.2187", "2FMXV03.0VF9", "2GMXT04.2185", "2GMXT05.3186", "2SKXX2.00LC4", "2CRXT05.95B2", "2ADXV01.8346", "2VVXV2.43L5T", "2CRXA0360J40", "2GMXT04.3187", "2TYXV01.5LJ1", "2CRXT02.42D0", "2HNXV03.2X21", "2MBXV03.2UBI", "2NSXV02.5D5A", "2HYXV02.4ELS", "2GMXT05.3177", "2BMXV03.0M5R", "2G9XT05.46NN", "2GMXA06.0188", "2GMXT05.3177", "2CRXT04.75B1", "2SKXX2.00LC4", "2GMXT06.0187", "2FMXT02.01BF", "2GMXV02.2023", "2PRXV03.6996", "2FMXT05.4RF6", "2CRXT05.26RC", "2TYXT03.4FFP", "2GMXT05.3188", "2GMXA08.1203", "2TJXT05.7188", "2CRXA0287H41", "2CRXA0488J11", "2MLXV03.5GNG", "2VWXT02.8225", "2GMXA04.3192", "2CRXT05.26RC", "2PRXV03.296A", "2HNXT02.4YBP", "2CRXA0287H40", "2GMXA06.0188", "2VWXV02.8224", "2GMXT05.3181", "2TJXT06.0188", "2FMXT05.4RP5", "2CRXV03.5VD0", "2SZXT03.52MK", "2DSXV02.4GNG", "2FMXT04.02F7", "2TYXV03.0FFF", "2CRXT03.82D0", "2DWXV01.5S01", "2GMXV03.8045", "2SZXT02.22LK", "2HNXV01.0CCE", "2LRXT04.6001", "2GMXA04.3189", "2GMXT06.0187", "2GMXV03.8044", "2TYXT02.0FFH", "2GMXV02.3002", "2FMXT05.4RF8", "2GMXA08.1201", "2GMXA05.3185", "2BMXT04.6XHP", "2JCXV04.0BS7", "2GMXT03.4143", "2HNXV01.7NA5", "2BMXV03.0LER", "2SZXT03.52KK", "2KMXV02.7E01", "2DSXV02.4GNG", "2GMXT02.2123", "2FMXT04.22H5", "2SKXX2.00LC4", "2GMXA04.8183", "2GMXT04.3187", "2CRXV02.7VD1", "2FMXT04.62F6", "2GMXT04.3183", "2GMXV02.4022", "2GMXT03.4141", "2GMXA08.1201", "2BMXV03.0LER", "2GMXA04.3189", "2GMXV03.8044", "2TYXV04.3JJB", "2TYXT03.4FFP", "2GMXA05.3187", "2CRXT05.96J3", "2VWXV02.0226", "2BMXV03.0M5R", "2CRXT05.96J3", "2CRXT04.02Z0", "2DWXV01.6D01", "2CRXV03.5VD0", "2FMXT04.01F6", "2JCXV03.0DN8", "2FMXV03.0VF4", "2GMXT04.3184", "2TJXT06.0188", "2MAXV04.2LEV", "2FMXT05.4RF8", "2CRXT03.82D0", "2RRXV06.7TUR", "2MBXV05.5LTR", "2HNXV03.2X21", "2HNXV01.7NA5", "2VVXV2.43L5T", "2FMXT04.66F7", "2VVXT2.43L5T", "2HNXT02.4YBP", "2JCXV04.0BN4", "2BMXV04.4LEV", "2GMXT06.0187", "2DSXV03.0GNS", "2GMXA05.3185", "2GMXT04.3186", "2FMXV03.0VF9", "2CRXA0360J40", "2GMXT06.0187", "2FMXT04.02F8", "2FJXV02.5JHM", "2GMXA05.3187", "2RRXV05.4NAT", "2GMXT03.4141", "2NSXV04.5B8A", "2FMXT04.02F3", "2CRXA0360K10", "2ADXV01.8336", "2GMXT03.4141", "2FMXV02.0VF6", "2GMXV02.3002", "2VWXV04.0229", "2TYXV01.5FFA", "2MBXT05.01BI", "2ADXV01.8346", "2GMXA08.1201", "2GMXT04.3182", "2ADXV01.8347", "2CRXA0488K11", "2MBXV05.0UBI", "2ASXX05.9V03", "2GMXT05.3188", "2BYTT04.3ULV", "2FMXV02.0VF3", "2VVXV1.95L4T", "2ADXV01.8342", "2GMXV01.9002", "2CRXT03.82D0", "2GMXA04.2187", "2GMXT05.3186", "2CRXA0287H41", "2CRXA0239H41", "2HNXT03.51AP", "2SKXX2.00LC4", "2GMXA06.0188", "2FMXT04.62F5", "2BMXV03.0LER", "2MBXV05.5LTR", "2CRXT0242240", "2ADXV01.8347", "2HYXV03.5GLS", "2FMXT02.01F5", "2TYXT04.7JBW", "2HNXV02.3FK6", "2HNXV02.0DYC", "2TJXT05.7188", "2PRXV03.6996", "2FMXT02.01F5", "2BYTT04.3ULV", "2GMXT04.3188", "2GMXV03.8043", "2ADXV02.8334", "2GMXA05.3185", "2GMXT04.3188", "2FMXV03.0VF9", "2GMXV05.7081", "2GMXT05.0182", "2GMXV02.2024", "2FMXT04.2JF5", "2GMXT03.4143", "2FMXT04.02F3", "2FMXV03.9VF5", "2MBXV06.01BI", "2FMXT05.4PF5", "2TKXV02.5BMA", "2ADXV03.0344", "2FMXV02.0VF3", "2CRXT05.96J3", "2FMXT05.4PF6", "2FMXT04.02F3", "2GMXT04.3182", "2VWXV02.0226", "2FMXT04.02F3", "2FMXT04.2JF5", "2CRXT03.92D0", "2FMXT05.4RF8", "2FMXT03.02F5", "2CRXT05.96J3", "2HNXV03.2HYT", "2FEXV03.6LEV", "2GMXT04.2188", "2FMXT04.22H6", "2GMXV03.8045", "2MMYV04.0ML1", "2P3XV04.600A", "2FMXT05.4RF8", "2PRXV03.6TUR", "2GMXA05.3185", "2GMXA04.8183", "2RRXV06.7TUR", "2CRXT02.51C0", "2GMXV03.8044", "2GMXA04.3192", "2SKXT2.49LC1", "2NSXV02.5D5A", "2GMXT03.4142", "2G9XT05.46NN", "2CRXT05.26RC", "2FMXT05.4PF5", "2FMXT04.02F3", "2FMXT04.62F6", "2GMXT05.3177", "2GMXT04.2185", "2FMXV02.0VF6", "2HNXV01.02N4", "2GMXA06.0188", "2GMXV03.8045", "2CRXA0360H41", "2TJXT06.0188", "2FMXV02.0VF3", "2GMXT04.3183", "2CRXT05.95B1", "2GMXT04.3181", "2HNXV02.0EKC", "2CRXT04.75B1", "2FMXT04.02F3", "2VWXV02.0223", "2CRXV02.7VD1", "2TKXV01.8CJA", "2CRXT05.26RC", "2HNXV03.2HYT", "2BMXV03.0M5R", "2CRXT05.26RC", "2CRXT05.95B2", "2GMXV04.6065", "2TKXT03.0GLA", "2ASXX05.9DB7", "2FMXA05.4JFC", "2FMXV03.0VF3", "2FMXA05.4HJD", "2GMXT04.3182", "2GMXA08.1201", "2TYXT04.7FBY", "2CRXA0488K11", "2FMXA05.4HJD", "2BMXV03.0LER", "2CRXA0360J10", "2CRXA0360H40", "2NSXT03.3A5A", "2FMXT04.02F8", "2GMXV03.8045", "2TJXT06.0TCU", "2MBXT05.01BX", "2GMXT04.3186", "2CRXV02.7VD0", "2GMXV03.8043", "2GMXV05.7082", "2GMXA04.8184", "2RRXV06.7TUR", "2CRXT04.02Z0", "2GMXA06.0194", "2FMXT05.4RF6", "2GMXT04.3181", "2CRXA0360J40", "2GMXA06.0194", "2GMXT05.0182", "2MBXV05.0UBI", "2GMXA08.1201", "2FJXV02.5JEJ", "2HNXV03.2JYC", "2GMXA06.0188", "2FMXT03.01F5", "2CRXT05.92D0", "2GMXT05.3186", "2MBXV03.2UBI", "2FMXT04.66F7", "2CRXT05.96J3", "2GMXV05.7081", "2FMXV03.0VF8", "2GMXA06.0188", "2FJXV02.0LGL", "2SZXT03.52JK", "2TYXT02.0FFH", "2MBXV03.2LBX", "2GMXT05.3188", "2FMXV02.0VD5", "2GMXT05.3188", "2GMXV02.3001", "2GMXA04.8183", "2CRXA0287H41", "2GMXT05.3181", "2GMXT04.3182", "2CRXT03.95B0", "2CRXV03.5VD1", "2CRXA0360J40", "2FMXT04.22H6", "2CRXT05.96B0", "2FMXT03.01F7", "2GMXA06.0188", "2FMXA05.4JFC", "2GMXA08.1201", "2BMXV04.4LEV", "2CRXT04.75B0", "2WBXT02.8225", "2FMXT04.02F7", "2FMXT04.22H5", "2FMXV03.8VFB", "2TJXT06.0TCU", "2TJXT05.7188", "2GMXA08.1201", "2FMXT04.02F3", "2SZXT03.52KK", "2GMXT05.3182", "2HNXV01.73A5", "2CRXT04.02Z0", "2FMXT05.4PF5", "2MBXV02.3LBI", "2GMXV03.0061", "2NSXT03.5C7A", "2JCXV04.0BN4", "2FMXV03.0VF3", "2CRXV02.7VD0", "2BMXV03.0LER", "2GMXT04.3187", "2FMXV04.6VF5", "2BMXV04.9S62", "2FMXA06.8JFC", "2GMXT05.3177", "2GMXT04.3183", "2GMXA04.2187", "2GMXT05.0181", "2MAXV04.2LEV", "2GMXT03.4141", "2FMXT04.02F3", "2TYXT03.4FFP", "2PRXV03.6TUR", "2FMXT04.2JF5", "2MBXV05.0UBI", "2GMXT03.4142", "2TYXT04.7FBY", "2RRXV06.7TUR", "2GMXA04.3192", "2FMXV02.0VJ4", "2FMXV02.0VJ3", "2CRXT03.32DP", "2FMXA06.8JFC", "2WBXT02.8225", "2FMXT03.02F6", "2GMXA04.3190", "2ADXV01.8346", "2FMXT05.4PF6", "2CRXT05.95B1", "2TYXV01.5LJ1", "2FMXA06.8JFC", "2GMXV03.8043", "2FMXA06.8JFC", "2VVXV2.92U6N", "2G9XT05.46NN", "2FMXA06.8JFC", "2GMXT04.3186", "2CRXT04.02D2", "2LRXT02.5001", "2VVXV2.43U5N", "2GMXT04.2188", "2HNXT03.5KYT", "2GMXV03.8043", "2FMXV03.0VF4", "2FMXV03.0VF8", "2GMXA08.1201", "2GMXA08.1203", "2FMXT05.4RF6", "2SZXT03.52MK", "2NSXT03.3C5A", "2FMXT05.4RP5", "2FMXT04.62F5", "2CRXT04.75B0", "2FMXV02.0VJ4", "2TYXV03.0FFD", "2CRXT05.95J1", "2GMXT04.3187", "2BMXT04.4E53", "2GMXT05.3188", "2SZXT03.52JK", "2SZXT03.52MK", "2MBXV05.0UBI", "2HNXV03.2AYC", "2JCXV04.0BN4", "2VWXV02.0223", "2CRXA0360J40", "2DSXV02.4G3G", "2MBXV03.2UBI", "2CRXA0360H41", "2HYXV01.6BLS", "2GMXT05.3181", "2MBXV05.5LBI", "2GMXT03.4143", "2FMXV03.0VF9", "2CRXT05.95J2", "2GMXV03.8043", "2CRXT04.72D1", "2GMXT04.3193", "2CRXA0287H40", "2GMXV03.8044", "2FMXV04.6VF5", "2FMXT05.4RF8", "2GMXT06.0187", "2FMXT05.4RF6", "2LRXT04.6002", "2NSXV02.5C5A", "2FMXV03.0VF4", "2FMXV03.9VF5", "2GMXT03.4143", "2BMXV03.0LER", "2BMXV04.4LEV", "2GMXA06.0188", "2DWXV02.2D02", "2GMXT03.4141", "2CRXT02.51C0", "2GMXA04.8184", "2GMXT03.4143", "2VWXV02.8228", "2LRXT04.6001", "2FJXV02.5JEJ", "2CRXT03.72D0", "2CRXT03.82D1", "2MBXV03.2UBI", "2ADXV04.2345", "2ADXV02.8334", "2GMXT04.3187", "2FMXT05.4RF9", "2FMXT04.26BF", "2CRXA0360H41", "2FJXV02.5JHM", "2HNXV02.3MJT", "2GMXA06.0194", "2FMXV04.6VDP", "2DSXV02.4GNG", "2GMXA08.1201", "2FMXT04.22H6", "2GMXA05.3187", "2FMXT05.4RF6"], ["9BMXV04.0S65", "9ADXT04.23UD", "9KMXT04.6MM5", "9VVXV02.5U2T", "9KMXT03.8VW5", "9NLXV06.5474", "9NSXV03.8GBA", "9PRXT04.8SED", "9HNXV03.5EC3", "9FMXT05.45H4", "9BMXB03.0N5R", "9FMXV02.3VEX", "9FMXT03.52EB", "9GMXT06.0395", "9ASXV04.7VH2", "9FMXT02.52ZF", "9GMXT03.7187", "9PRXV03.8CDI", "9GMXV02.3001", "9TYXT03.5BEM", "9FMXT04.65HA", "9GMXT05.3373", "9GMXT06.2375", "9GMXV02.0020", "9GMXT05.3381", "9CRXV06.11P0", "9GMXT06.0382", "9HNXV01.53B9", "9CRXV02.42P0", "9MBXJ06.3L2A", "9FMXD05.47R7", "9GMXT02.9189", "9FMXT02.51EK", "9TYXT03.5BEM", "9GMXJ04.6167", "9TYXV03.5BEB", "9GMXT06.2374", "9GMXJ03.9148", "9BMXV03.0ULR", "9GMXT02.9190", "9FMXD05.46R6", "9GMXJ03.9148", "9GMXJ03.9148", "9FMXV03.7VEL", "9VWXV02.5257", "9FEXV05.7LEV", "9GMXT06.0382", "9GMXT04.2186", "9GMXT06.0387", "9FMXT03.01EN", "9BMXV03.0N51", "9CRXT04.71PA", "9FMXT02.52ZF", "9GMXT06.2374", "9NSXV03.5GAB", "9NSXV03.5G7B", "9CRXT03.74P0", "9GMXD06.0396", "9GMXT05.3381", "9GMXT03.6151", "9ADXV02.03UA", "9CRXD05.78V0", "9TYXT04.0AEM", "9BMXT04.8E70", "9GMXT05.3373", "9GMXD06.0396", "9GMXJ03.9148", "9FMXV03.7VEL", "9GMXD06.0396", "9CRXV02.42P1", "9VVXV02.4U2N", "9MBXV03.5BN4", "9TYXV04.6BEA", "9FMXT02.51EK", "9VWXV03.6U46", "9GMXT05.3376", "9GMXT03.7188", "9TKXT02.35AA", "9GMXT05.3380", "9GMXV02.4027", "9GMXJ03.9148", "9FJXJ02.5NVD", "9MBXV03.5BN4", "9GMXT03.7187", "9GMXV02.4026", "9CRXJ02.43P1", "9GMXT06.0382", "9GMXJ03.9142", "9BMXB03.0N5R", "9MBXJ03.5S2A", "9JCXV04.2DSK", "9KMXV02.7NW5", "9MTXV02.0G6G", "9GMXT06.0387", "9GMXJ03.9142", "9HNXV01.3CDH", "9SKXV1.995D1", "9FMXT05.44ET", "9CRXT05.74P0", "9DSXV03.8GRC", "9GMXT03.6151", "9GMXT05.3373", "9LRXT04.4001", "9GMXV03.6053", "9NSXT05.6G9A", "9TYXT04.7BEM", "9FMXT04.64D3", "9GMXT06.0392", "9VVXJ03.0U2T", "9NSXT04.0G6A", "9CRXT03.7CR1", "9GDXV01.6005", "9TYXT02.7AEM", "9CRXV03.5CR0", "9FJXJ03.6TSF", "9TKXV01.35AA", "9FJXJ02.5PYH", "9GMXV02.4031", "9FMXT05.45H4", "9FMXT04.03DC", "9GMXT06.0382", "9GMXV02.0021", "9ADXV02.03PA", "9TYXV02.5BEA", "9ADXV02.03UA", "9CRXT06.11P0", "9HYXV02.0HW5", "9HNXT02.3R29", "9NSXJ03.5GAA", "9FMXT03.01EN", "9FJXJ02.5PYH", "9FMXD05.47R7", "9NSXV01.6G4A", "9GMXV02.4027", "9FMXV03.7VEL", "9SKXT3.205F1", "9ADXV02.03UB", "9FMXT05.45BR", "9SKXV1.995D1", "9JCXV04.2DNK", "9ADXV04.2365", "9PRXT04.8TED", "9TYXT02.7AEM", "9FMXV02.0VZP", "9GMXT05.3384", "9GMXV02.2030", "9GMXV02.4026", "9GMXT04.3186", "9GMXT06.0382", "9CRXJ02.43P1", "9JCXV04.2DSK", "9GMXV02.4031", "9GMXT05.3373", "9VWXV02.5U35", "9FMXV03.0VEJ", "9VWXV02.5257", "9ADXV02.03UA", "9GMXT02.4130", "9SKXT3.205F1", "9VWXV03.6U46", "9ADXV02.03UA", "9GMXJ03.9142", "9ADXV02.03PA", "9BMXB03.0N5R", "9BMXV03.0ULR", "9FJXJ02.5PYH", "9HNXV01.8BDT", "9CRXJ02.4UP0", "9MBXJ06.3L2A", "9NTXV02.4BEB", "9CRXT03.74P0", "9CRXT05.71PH", "9FMXD05.47R7", "9MBXV01.0U2A", "9KMXT02.0KW5", "9GMXT05.3384", "9VWXV03.2535", "9CRXT03.82P0", "9RRGV06.7LE2", "9NSXT05.6G9A", "9FJXJ02.5NVD", "9RRGV06.7LE2", "9GMXT06.2375", "9LRXT04.2001", "9GMXT05.3377", "9TYXV01.8AJA", "9TYXV03.5BEA", "9CRXT03.82P0", "9MBXV03.5U2A", "9GMXJ04.6167", "9ASXV05.9VH1", "9GMXD06.0396", "9GDXV01.6005", "9LRXT03.2001", "9GMXT03.4146", "9GMXT04.3186", "9TYXT04.7BEM", "9NSXV04.5G8A", "9CRXT03.8YP0", "9GMXT06.2374", "9GMXT03.7188", "9FMXD05.47R7", "9GMXV07.0085", "9ADXV02.03UA", "9MBXV06.0L2A", "9BMXB03.0N5R", "9MBXV01.0U2A", "9FMXT02.52ZF", "9GMXT05.3381", "9GMXT06.2375", "9FMXT03.52EB", "9FMXV03.7VEL", "9VWXV02.5253", "9FMXT03.01EN", "9GMXJ03.9142", "9VWXV03.2535", "9MBXV06.0L2A", "9FMXD06.86R5", "9MBXV06.0L2A", "9GMXT02.9189", "9CRXT03.7CR1", "9NSXT05.6G9B", "9GMXD06.0396", "9BMXV03.0N51", "9CRXT03.8YP0", "9BMXV03.0N51", "9FJXJ02.5MXG", "9GMXD06.0396", "9MTXV02.0GRB", "9CRXJ04.0CR0", "9FMXV03.0VEK", "9KMXV01.6BW5", "9BEXV06.0501", "9NTXV02.4BEB", "9GMXT06.0392", "9TYXT02.5BEH", "9CRXV08.41P0", "9FJXJ02.5PYH", "9NSXV04.5G8A", "9DSXV03.8GRC", "9GMXJ04.6167", "9CRXT05.74P0", "9GMXT02.9189", "9GMXV03.5045", "9BMXT03.0E7R", "9MBXT05.5L2A", "9BEXV06.0501", "9TYXT04.7BEX", "9TKXV03.75BA", "9GMXV01.8001", "9ADXV04.2365", "9ADXV02.03UA", "9ADXV03.1374", "9MBXJ03.5U2A", "9NSXV03.5GAC", "9GMXT05.3376", "9GMXT05.3381", "9CRXJ02.4FR0", "9GMXT04.3186", "9BMXV04.0S65", "9HNXV02.4PA9", "9NSXT05.6G9A", "9TYXV04.6BEA", "9MBXJ06.3L2A", "9ADXV02.03UA", "9PRXT04.8SED", "9GMXT03.7187", "9ADXV05.2385", "9GMXT02.9190", "9TYXV03.5BEA", "9FMXV04.6VE3", "9MBXV06.0L2A", "9CRXT03.7DR0", "9FMXT03.01EN", "9GMXV02.2030", "9ADXV02.0366", "9CRXT05.74P1", "9PRXV03.8CDI", "9CRXV02.7JNA", "9FMXV03.7VEL", "9FJXJ02.5PYH", "9TYXV03.5BEB", "9KMXT03.8LM5", "9MBXV05.5BN4", "9BMXB03.0N5R", "9HNXV02.44B9", "9SKXT2.395F1", "9NSXT03.5G7B", "9MTXV02.0GRB", "9MBXJ06.3L2A", "9FMXT02.31BA", "9TYXT05.7BEX", "9CRXD05.78V0", "9GMXJ03.9148", "9CRXJ04.0TN0", "9MBXV03.5U2A", "9CRXV05.7UP0", "9BMXV01.6SPD", "9VVXJ03.0U2T", "9TYXT03.5BEM", "9ADXT04.23UD", "9GMXT05.3381", "9NSXT05.6G9A", "9VWXV02.5U35", "9BEXV06.7TTC", "9HYXV02.0HW5", "9GMXV03.9055", "9CRXV02.4UP0", "9GMXT06.0382", "9TYXT02.7AEM", "9GMXD06.0396", "9FMXT03.52EB", "9PRXV03.6T97", "9CRXV08.41P0", "9CRXJ02.4FR0", "9FMXV03.7VEL", "9GMXT04.2185", "9BMXB03.0N5R", "9HYXV04.6GW5", "9MBXJ03.5U2A", "9GMXJ03.9142", "9FMXT02.51EK", "9GMXT06.0392", "9FMXV03.7VEL", "9ADXV03.1374", "9GDXV01.6004", "9MBXJ03.5U2A", "9MTXV02.0GRB", "9JCXV04.2DNK", "9LRXT04.2001", "9ADXV02.03UA", "9HNXV03.7KB9", "9GMXT03.6151", "9FJXJ02.5MXG", "9CRXJ04.0TN0", "9CRXV06.11P0", "9GMXD06.0396", "9FMXT02.51EK", "9KMXT02.0KW5", "9ADXV04.2375", "9FMXT05.44ET", "9MBXV06.0L2A", "9VVXV02.5U2T", "9GMXJ03.9142", "9HYXT03.3PW5", "9HNXT02.4WH9", "9FJXJ02.5PYH", "9SKXV1.995D1", "9GMXT02.9190", "9NSXT04.0G6B", "9TYXT05.7BEX", "9CRXV03.5CR0", "9NSXV02.585A", "9GMXT05.3373", "9TYXT03.3CC4", "9VWXV02.5U35", "9ADXV02.03UA", "9CRXT05.74P0", "9VWXV02.5253", "9BEXV06.7TTC", "9CRXV02.7BR0", "9NSXV01.6G4A", "9FMXV03.7VEL", "9FMXV02.3VZT", "9FMXD05.46R6", "9GMXV02.4026", "9SKXV1.995D1", "9BMXV03.0N51", "9GMXD06.0396", "9SKRV04.2C08", "9CRXT03.74P0", "9RIIV04.6VBB", "9MBXJ03.5S2A", "9FMXV03.7VEL", "9CRXT03.7CR1", "9FMXD05.46R6", "9NSXV04.5G8A", "9GMXT04.3186", "9DSXV03.8GRC", "9FMXD05.47R7", "9CRXJ04.0TN0", "9GMXT05.3380", "9VVXJ03.2U2N", "9PRXV03.8CDI", "9MBXJ06.3L2A", "9FMXT04.64D3", "9GMXT06.0395", "9GMXT05.3376", "9GMXT03.4146", "9HNXV02.0VA9", "9KMXT03.8LM5", "9GMXT05.3373", "9GMXT06.2394", "9FJXJ02.5PYH", "9GMXT04.3186", "9FMXD05.46R6", "9GMXT06.0395", "9GMXT05.3376", "9GMXT06.0392", "9GMXJ03.9148", "9FMXD05.47R7", "9MBXJ05.5U2A", "9GMXT06.0387", "9GMXT04.3186", "9BMXV04.8UL2", "9GMXV06.2086", "9NTXV01.8BEA", "9FEXV04.3LEV", "9VVXV02.5U2T", "9CRXJ04.0CR0", "9BEXV06.7TTC", "9GMXV03.6053", "9TYXT03.5BEM", "9PRXT04.8TED", "9HNXT02.4WH9", "9HYXV01.6MW5", "9FJXJ02.5MXG", "9TYXV02.4BEB", "9HYXT03.8EM5", "9CRXT03.71P0", "9TKXT03.75BB", "9BEXV06.7TTC", "9JCXV04.2DNK", "9CRXT04.02P0", "9BMXT03.0E70", "9NSXV03.5GAB", "9GMXJ03.9148", "9TYXT04.7BEX", "9VVXV02.5U2T", "9GMXT05.3384", "9SKXV1.995D1", "9GMXT05.3381", "9GMXV02.4040", "9ADXV02.03UA", "9BMXB03.0N5R", "9ADXV02.0352", "9CRXT03.7CR0", "9TYXV02.4HC3", "9FJXJ02.5MXG", "9FMXD06.86R5", "9DSXV03.8GRC", "9CRXT04.71PA", "9FMXT02.51EK", "9MBXJ03.5U2A", "9VVXV02.4U2N", "9CRXV05.7UP0", "9HNXV02.4TC3", "9FMXV03.7VEL", "9FMXT04.63EZ", "9GMXT05.3381", "9GMXT03.7188", "9HYXT03.3PW5", "9GMXD06.0396", "9HYXT02.0JW5", "9GMXD06.0396", "9GMXD06.0396", "9GMXT06.2374", "9FMXT04.02EG", "9NLXV06.5474", "9GMXV02.8004", "9CRXV05.71P0", "9HNXV01.8BDT", "9MBXV06.0L2A", "9PRXT03.66ED", "9HYXV03.8AW5", "9HNXT03.7H29", "9CRXV02.72P0", "9MBXJ06.3L2A", "9VVXV02.4U2N", "9TYXV04.6BEA", "9CRXT04.02P0", "9CRXT04.7BR0", "9GMXT05.3381", "9BMXV03.0N51", "9JCXV04.2DNK", "9FMXT02.31BA", "9GMXD06.0396", "9GMXT03.7188", "9GMXT03.6151", "9GMXT05.3377", "9HNXV03.56B9", "9GMXT05.3380", "9FMXV04.6VDF", "9FEXV05.7LEV", "9CRXV02.7JNA", "9MTXT02.4GRB", "9DSXT03.8GRB", "9CRXT04.71PA", "9PRXV03.8CDI", "9GMXV02.4033", "9CRXV05.7UP0", "9PRXT04.8SED", "9KMXV02.7GW5", "9CRXT03.7CR0", "9CRXJ02.43P0", "9VWXV03.2535", "9GMXT05.3377", "9GMXT05.3373", "9TYXV03.5BEB", "9GMXT05.3380"], ["6TYXT04.7PKW", "6FMXK05.4WFD", "6FMXV03.01EA", "6GMXK08.1203", "6BEXV06.7TTC", "6GMXB03.9146", "6BYTK06.0623", "6GMXT04.3181", "6SKXT2.745E1", "6TYXT04.0NEM", "6ADXV03.1364", "6TYXT03.3BEM", "6TKXV03.05EA", "6GMXT04.6161", "6GMXK08.1203", "6GMXK08.1203", "6FMXK05.4TF9", "6MBXV02.0U2A", "6DSXT03.8GRB", "6BYTK06.0623", "6CRXT04.75S0", "6GMXT06.2390", "6NSXT04.0G6A", "6BYTK06.0623", "6BYTK06.0623", "6TYXT03.3BEM", "6MBXV05.0U2A", "6NSXV03.5G7A", "6TKXT03.09CA", "6FMXT03.02KA", "6GMXB03.9146", "6GMXV02.4028", "6GMXV02.2030", "6GMXT05.3379", "6CRXV05.7VE0", "6CRXT03.32NP", "6CRXV05.7MD1", "6FMXT03.01EB", "6GMXT06.0391", "6HNXV01.3XCP", "6FMXT04.63HC", "6TYXV04.3WMA", "6TYXV01.8VRA", "6GMXV03.9041", "6PRXV03.8997", "6ADXV04.2345", "6GMXT06.2390", "6FMXT04.63HC", "6FMXT02.31J2", "6FMXT04.63EX", "6GMXT05.3379", "6FJXV02.5PRA", "6GMXT05.3375", "6FMXT05.4AM3", "6FMXT02.31EF", "6RIIT05.4RI7", "6FMXK05.4SF5", "6GMXT03.5187", "6HNXV03.0WMC", "6FMXV03.0VEY", "6FMXV03.02EC", "6PRXT04.5SE1", "6CRXK0345470", "6TYXV03.0WMB", "6GMXV04.6065", "6TYXT02.7NHM", "6GMXB03.9146", "6NSXT04.5G8A", "6CRXT03.75S2", "6MAXV04.2LEV", "6FMXV04.6VE8", "6GMXT02.8189", "6GMXV02.0003", "6BMXV06.0N73", "6ADXV04.2345", "6GMXV03.9048", "6MBXT03.5LTR", "6GMXT06.2390", "6GMXK08.1203", "6ADXV03.1364", "6VVXV02.4S2N", "6PRXV03.8997", "6NSXV02.5S5A", "6NSXT02.5G5A", "6CRXV03.5VE0", "6GMXT03.5187", "6BMXV01.6R50", "6GMXB03.9146", "6GMXV04.6066", "6TYXV02.5PEA", "6GMXT06.2390", "6FMXV04.6VEM", "6GMXK06.0388", "6GMXB03.9146", "6GMXT04.2186", "6GMXT06.0198", "6FMXT02.31EA", "6GMXT04.2185", "6FMXV04.6VE8", "6GMXT06.0387", "6GMXT04.2185", "6BMXV01.6R50", "6GMXV03.9048", "6VWXV03.2220", "6CRXV03.5VE0", "6GMXT04.2185", "6GMXT05.3379", "6CRXT03.52N0", "6KMXT02.0K9F", "6VWXV03.6246", "6FMXT04.63EX", "6GMXV02.4029", "6GMXK06.0388", "6GMXT06.0199", "6CRXK0345470", "6TYXT04.0NEM", "6VVXT04.4U2N", "6FMXK05.4WFD", "6TYXT03.3BEM", "6HNXV02.2CKC", "6GMXV03.5050", "6GMXB03.9146", "6TYXT03.3BEM", "6FJXX02.5MTC", "6ADXV03.1374", "6MBXV05.0U2A", "6FMXV03.01EA", "6SKXT2.745E1", "6BMXB03.0UL2", "6MBXV05.5LBI", "6TKXV03.05EA", "6GMXT06.2390", "6GMXT05.3375", "6VVXV02.5L2T", "6KMXV01.6BW5", "6GMXT06.0394", "6GMXV02.4029", "6CRXV02.4VE1", "6GMXV03.9048", "6FMXK06.8SF2", "6CRXV03.5VE0", "6GMXT04.8372", "6TYXV03.0WMA", "6PRXT04.5TE1", "6GMXT06.0387", "6GMXK06.0388", "6CRXT04.75SP", "6GMXT03.5187", "6ADXV04.2345", "6GMXV04.6067", "6FMXT05.4RI7", "6PRXT03.26E1", "6JCXV04.2DNK", "6NSXT04.0G6A", "6FMXT05.4RI7", "6FMXV03.0VEY", "6VVXB02.5U2T", "6GMXB03.9146", "6FMXV03.91H5", "6CRXT04.75S2", "6FMXT03.02EC", "6CRXT03.52N0", "6GMXK06.0396", "6GMXT04.3181", "6HYXV03.3FW5", "6CRXV02.4VE0", "6TYXV03.3BEA", "6GMXT02.8189", "6BMXV01.6R50", "6FMXT04.6RPE", "6TYXT03.5PEM", "6FMXV03.0VFZ", "6ADXV04.2345", "6GMXT04.3184", "6HNXT03.5TKR", "6FJXT03.0TLW", "6KMXV02.4NW5", "6CRXV03.5VE0", "6GMXB03.9146", "6CRXV03.5VE1", "6GMXT04.2187", "6BMXB03.0UL2", "6GMXK06.0388", "6GMXV02.8004", "6GMXV03.9041", "6FMXK05.4SF5", "6TYXV02.4BEB", "6GMXT05.3375", "6FJXT02.5PGT", "6GMXT04.2187", "6CRXT03.8NE0", "6GMXT03.5187", "6GMXB03.9146", "6BMXT03.0E5R", "6GMXV04.6066", "6GMXK08.1203", "6GDXV02.0D04", "6FMXV02.0VD4", "6GMXV05.3084", "6GMXT04.3184", "6VVXB02.5U2T", "6ASXV05.9803", "6GMXT04.8372", "6MBXV03.5U2A", "6GDXV02.0D04", "6GMXK06.0388", "6GMXT06.2390", "6MBXV05.5LBI", "6GMXV02.4029", "6GMXT03.5145", "6PRXT04.5SE1", "6TYXV01.8PEA", "6NSXT03.5G7B", "6GMXB03.6149", "6BMXV04.8UL2", "6GMXT05.3379", "6FMXT02.31EA", "6FMXT04.6RPE", "6GMXT04.8372", "6MBXV03.5U2A", "6ADXV02.0366", "6MBXV03.5U2A", "6GMXV04.6066", "6TYXT04.7PEM", "6GMXT05.3379", "6GMXK06.0388", "6FMXT03.02KA", "6TYXV02.4WMC", "6CRXT02.4NE0", "6FMXT04.63EX", "6JCXV04.2DNK", "6FMXK05.4TF9", "6GMXT06.0198", "6BEXV06.0501", "6BYTK06.0623", "6ADXV02.0352", "6NSXV03.5G7A", "6VVXB02.5U2T", "6GMXT04.3181", "6FMXV04.6VE8", "6CRXT04.75S0", "6GMXK08.1203", "6FMXK05.4TF5", "6SKXT2.745E1", "6GDXV02.0D04", "6JCXV04.2DSK", "6ADXV03.0354", "6HYXT02.7SM5", "6FMXV04.6VE8", "6TYXT02.7NHH", "6JCXV03.0DNH", "6GMXK06.0388", "6TYXT03.3BEM", "6MBXT03.5LTR", "6MBXV05.5LBI", "6KMXT02.0K9F", "6FEXV05.7LEV", "6FMXK05.4SF5", "6CRXV02.4VE0", "6TKXT02.35CA", "6BEXV06.7TTC", "6KMXV02.0LW4", "6VVXB02.5U2T", "6GMXV04.6065", "6FMXT05.4RI7", "6GMXT05.3379", "6FMXV03.02EC", "6FMXT04.02KM", "6PRXV03.2987", "6GMXV02.4029", "6TKXT02.35EA", "6CRXT04.75J0", "6MBXV03.5U2A", "6CRXV03.5VE0", "6FMXV03.01EA", "6TYXT04.7PKW", "6GDXV02.0D04", "6ASXV05.9V03", "6CRXV03.2VM0", "6MBXV05.5LBI", "6MBXV05.0U2A", "6FMXK06.8RF2", "6MBXV05.0U2A", "6BYTK06.0623", "6VVXV02.4U2N", "6TYXV03.0WMB", "6CRXT04.75S2", "6MBXV05.0U2A", "6GMXT06.0389", "6CRXT04.75S0", "6LTXV01.8JHB", "6PRXV03.2987", "6BYTK06.0623", "6VWXV03.2220", "6GMXT06.0391", "6HNXB02.4EKC", "6TKXV02.35CB", "6BYTK06.0623", "6GMXK06.0388", "6GMXT05.3375", "6BMXV03.0N52", "6FMXT03.02KA", "6SKXT2.745E1", "6GMXT06.0391", "6GMXT06.2390", "6VWXV02.5257", "6GMXT04.3184", "6CRXV05.7MD0", "6NSXV04.5G8B", "6HNXV02.2CKC", "6CRXT04.75SP", "6BMXV01.6R50", "6GMXB03.9146", "6GMXT04.2187", "6GMXV02.8004", "6RIIT05.4RI7", "6MBXV06.0LBI", "6GMXT06.0198", "6CRXV05.7VE0", "6BMXV04.8UL2", "6GMXT05.3379", "6ADXV04.2345", "6GMXV02.4029", "6BEXV06.7TTC", "6TYXV02.4BEB", "6HNXT03.5RKR", "6GMXV04.6066", "6ASXV05.9803", "6VVXV02.4U2N", "6GMXT04.8372", "6RIIT05.4RI7", "6BMXV03.0N52", "6GMXT05.3375", "6GMXT04.2185", "6GMXB03.6149", "6LAWT05.4RI7", "6SKRV04.2JHB", "6DSXV02.4GRG", "6FMXT05.4RI7", "6FMXT04.63BX", "6RIIT05.4RI7", "6GMXB03.9146", "6TYXT03.3CC1", "6GMXV03.9048", "6FMXK05.4SF5", "6MBXT05.0LBI", "6FMXT04.6RHC", "6GMXK06.0388", "6TYXV03.0WMA", "6CRXV0167M71", "6PRXV03.8997", "6FMXT05.4RI7", "6FMXT04.63HC", "6CRXV02.7VH1", "6GMXT03.6143", "6LAWT05.4RI7", "6GMXT06.0387", "6ADXV02.0352", "6FMXK05.4SF5", "6CRXV03.2VH0", "6KMXV01.6BW5", "6GMXT03.5187", "6RIIT05.4RI7", "6CRXT02.4ME0", "6CRXK05.7TX0", "6GMXT06.0389", "6NTXV01.8VRA", "6GMXV02.8004", "6BYTK06.0623", "6TYXT03.3BEM", "6GMXK08.1203", "6GMXK06.0396", "6GMXV05.3084", "6HNXV01.0YJV", "6ADXV03.1364", "6VWXT03.2275", "6TYXV01.5VMB", "6MBXV05.0U2A", "6ADXV01.8346", "6BMXV05.0S85", "6CRXT04.75SP", "6BMXV05.0S85", "6GMXT04.3184", "6GMXV04.6065", "6FJXV02.5PRA", "6CRXT03.8NE0", "6TYXT04.0NEM", "6GMXT06.0198", "6FMXT02.31EA", "6FMXT05.4RH2", "6FMXT02.32ZE", "6CRXK05.7TX0", "6FMXK05.4SF5", "6GMXK06.0396", "6TYXV01.5PEA", "6GMXV03.9048", "6BMXV03.2LV2", "6ASXV05.9803", "6MBXV06.0LBI", "6KMXV02.7SL9", "6HNXV01.8BW3", "6CRXV08.3VM0", "6GMXK08.1203", "6MBXT05.0LBX", "6VVXB02.5U2T", "6GMXT03.5187", "6CRXT05.75J0", "6TYXT04.7NKY", "6GMXV02.8004", "6TYXT02.7NHM", "6MBXV06.0LBI", "6GMXV06.0081", "6FMXV04.01ED", "6GMXV04.6066", "6PRXV03.8997", "6GMXT04.2187", "6GMXB03.6149", "6CRXV02.4VE1", "6ADXV03.1374", "6KMXT03.5CM5", "6BMXV06.0N73", "6TYXV01.8VRA", "6NSXV04.5G8B", "6GMXT06.0394", "6GMXT06.0389", "6KMXV02.7TW5", "6GMXB03.6149", "6VVXV02.4U2N", "6KMXT02.7KM5", "6MTXV02.0GBB", "6GMXK06.0388", "6CRXT03.7NE0", "6GMXT06.0387", "6FMXK05.4WFD", "6CRXV05.7MD0", "6TYXT03.5PEM", "6MBXV05.0U2A", "6FMXT05.4RI7", "6GMXT06.0387", "6KMXT02.7KM5", "6VWXV03.6246", "6HNXB02.4EKC", "6MBXV02.0U2A", "6FMXT05.4RI7", "6CRXT04.76U0", "6GDXV02.0D04", "6MBXV05.5LBI", "6HYXV02.0CU9", "6ADXV03.1374", "6GMXV03.9048", "6GDXV01.6D04", "6GMXB03.9146", "6TYXV01.8VMB", "6FEXV04.3LEV", "6FMXV03.02EC", "6VVXV02.4S2N", "6MBXT05.0LBI", "6FMXV03.01EA", "6TYXT02.7NHM", "6NSXV03.5G7C", "6GMXB03.9146", "6SKRV04.2JHB", "6MBXV03.5U2A", "6BMXT04.8N62", "6NSXV03.5G7C", "6GMXV02.8004", "6GMXB03.9146", "6DSXT03.8GRD", "6FMXT05.4RI7", "6CRXV03.5VH0", "6TKXT03.05CA", "6RAXV03.6RGT", "6GMXK06.0396", "6HNXT03.5RKR", "6TYXT04.0NEM", "6CRXV03.5VE0", "6GMXT05.3379", "6KMXV02.7TW5", "6NTXV01.8VRA", "6GDXV01.6D04", "6GMXV03.8044", "6FMXT04.22EC", "6CRXV02.4VE1", "6TKXV02.3NE1", "6GMXT03.5187", "6GMXV02.8004", "6FMXT02.32EE", "6GMXB03.6149", "6VVXV02.5L2T", "6GMXT03.5187", "6GMXT02.8189", "6GMXK08.1203", "6BMXV03.2S54", "6FMXK05.4LFD", "6KMXT03.5CM5", "6GMXT05.3379", "6GMXT02.8189", "6RIIT05.4RI7", "6BYTK06.0623", "6HYXV03.8TW5"], ["4FMXT05.4SQ2", "4BMXV04.4LEV", "4CRXV02.4VM0", "4CRXV03.5VM0", "4GMXV05.7083", "4MLXV03.5GBB", "4NSXV03.5N7C", "4GMXT06.0188", "4DSXT03.8GRB", "4GMXV03.8042", "4GMXT08.1201", "4CRXV02.7VH0", "4VWXV02.8228", "4GMXV03.8042", "4TYXT04.7W1W", "4HNXV03.2CKR", "4FMXT05.4RI7", "4TYXV01.8WMA", "4NSXT03.5G7A", "4GMXT03.6143", "4TKXV03.0ALM", "4CRXV02.4VM0", "4FMXT04.2PN2", "4JCXV04.2DNF", "4TKXV02.3AJA", "4GMXV03.8042", "4GMXT08.1201", "4GMXT05.3175", "4CRXT03.72N1", "4VVXX2.52U2T", "4GMXV03.2061", "4LRXT04.6001", "4VVXV1.95L1T", "4MBXV05.0L2A", "4TYXT03.3PEM", "4MBXT03.7UBI", "4GMXT04.3187", "4GMXT06.0188", "4JCXV04.2DN9", "4GMXT05.3170", "4NSXT03.3M6B", "4TYXT02.7VMH", "4GMXT04.2185", "4CRXT05.77X0", "4GMXV03.8041", "4HNXV01.35A6", "4FMXT04.02K6", "4FMXV04.6VG6", "4GMXT06.0188", "4MBXT05.5LBI", "4CRXV02.7VM1", "4FMXV03.0VEY", "4CRXV02.4VM0", "4FMXT05.4RI9", "4GMXT06.0188", "4MBXT05.5LBI", "4PRXV03.6996", "4GMXT04.2185", "4FMXT05.4ST2", "4FMXV04.6VE5", "4FMXT02.01F5", "4FMXT03.01FE", "4HNXT03.5EA6", "4FMXT03.01HA", "4BEXV06.7TTC", "4GMXT05.3170", "4PRXV03.6TUR", "4BMXV03.0SMG", "4FMXT04.02K2", "4BMXX03.0UL2", "4PRXV03.2986", "4NSXT03.5M7A", "4GMXT06.0188", "4MAXV04.2LEV", "4NSXT03.5G7A", "4FJXV02.5PGT", "4GMXT06.0188", "4ADXV03.0344", "4GMXT04.2187", "4FMXT05.4RFC", "4NSXT03.5M7A", "4NSXT03.3M6B", "4DSXV02.4GBB", "4TYXT04.0VRM", "4GMXT05.3174", "4FJXV02.5PGT", "4FMXV03.0VEY", "4FMXT04.62FA", "4FMXT06.8TQ3", "4GMXT05.3170", "4GMXT04.2185", "4BMXX03.0UL2", "4VVXX2.52U2T", "4FMXT06.8TQ3", "4FMXT04.02E2", "4TJXT06.0188", "4KMXV03.5H01", "4NSXT03.5M7A", "4FMXT02.01F5", "4GMXV02.2025", "4GMXV05.7082", "4NSXV03.5G7A", "4NSXV02.5G5A", "4JCXV03.0DNG", "4MBXV05.0L2A", "4TYXV03.3PEA", "4HNXV03.2MJE", "4GMXT05.3175", "4ADXV02.7343", "4CRXT04.75J1", "4GMXV03.8041", "4GMXT02.8189", "4GMXV02.2025", "4GMXV02.2025", "4GMXT04.3184", "4FMXT05.4RI7", "4ADXV01.8342", "4DSXV03.0GBC", "4FMXT04.62H2", "4FMXT05.4RFC", "4FMXT05.4RI9", "4P3XV04.600A", "4ADXV01.8346", "4CRXV03.5VM0", "4FMXT03.02FE", "4GMXT05.3175", "4KMXV01.6C03", "4GMXT05.3175", "4FMXT05.4RFC", "4CRXT04.75J0", "4FMXV02.3VLC", "4GMXV03.8042", "4VVXV1.95L1T", "4GMXA06.0189", "4GMXT04.2185", "4CRXV02.7VM1", "4BMXV04.4LEV", "4VVXX2.52U2T", "4GMXT06.0188", "4ADXV02.8334", "4GMXT05.3174", "4HNXV03.5BJE", "4GMXV02.2025", "4MBXV03.2LBX", "4MTXV02.4GBB", "4PRXV03.6996", "4FMXV03.91H5", "4CRXT04.02N0", "4GMXV03.8042", "4GMXT04.2187", "4FMXT05.4RPB", "4FMXT05.4RFC", "4GMXV03.8042", "4ADXV01.8346", "4FMXT05.4RI7", "4FMXV03.0VEM", "4HYXV02.0CU9", "4CRXT05.75J0", "4TYXT04.7V1X", "4GMXV03.8041", "4FMXT03.01HA", "4NSXV03.5G7A", "4BMXX03.0UL2", "4BMXV04.4LEV", "4ADXV04.2345", "4PRXV03.6996", "4GMXT03.6143", "4FMXT03.02FE", "4CRXV02.7VH0", "4GDXV01.6D02", "4FMXV04.6VP5", "4MTXT03.5GAB", "4GMXT06.0188", "4GMXT03.6143", "4MTXT03.5GAB", "4CRXV02.4VH0", "4FMXT05.4RPB", "4KMXT03.5F03", "4GMXV03.8042", "4BMXV03.0LER", "4MAXV04.2LEV", "4ADXV03.0344", "4TYXV03.3PEA", "4GMXV03.8042", "4GMXV03.8042", "4FMXT05.4R4P", "4ADXV01.8346", "4ADXV02.8334", "4GMXT04.2187", "4BMXT04.4N62", "4GMXT04.2185", "4TYXV01.8VMC", "4NSXT05.6P9B", "4VVXX2.52U2T", "4TJXT06.0188", "4TYXT04.7V1V", "4FMXT04.6PNB", "4GMXA06.0189", "4JCXV03.0DNE", "4HNXT03.5DAT", "4MBXT03.7UBI", "4JCXV04.2DNF", "4BMXV02.2M5R", "4MBXV05.5LXX", "4FMXT04.02KM", "4BMXV02.5M56", "4FMXV03.0VEM", "4GDXV02.5D03", "4JCXV04.2DSB", "4CRXT02.42N1", "4CRXT03.7NE0", "4FMXT05.4RJ1", "4GMXV03.8042", "4FMXT05.4RM6", "4FMXT04.02K6", "4BMXV01.6R50", "4GDXV02.0D04", "4FMXT04.62E6", "4SZXT03.52PK", "4FMXT03.02KA", "4TYXV04.3WMA", "4DSXV02.4GRB", "4GMXT06.0187", "4FMXT05.4R4P", "4CRXT03.82N0", "4VVXX2.52U2T", "4FMXV04.6VG6", "4NTXV01.8VRE", "4FMXT05.4RI7", "4NSXT05.6P9B", "4DSXV02.4GBB", "4NSXT02.4M4A", "4FMXT06.8TP5", "4TYXT03.3PEM", "4VWXV02.0223", "4PRXV03.6996", "4GMXV03.8042", "4FMXV03.0VFZ", "4MBXV03.2LBX", "4ADXV04.2345", "4HNXV01.02A6", "4FMXT05.4RI7", "4GMXT06.0187", "4BMXV03.0SMG", "4PRXV03.6996", "4GMXT04.2185", "4KMXV01.6C03", "4GMXT05.3170", "4NTXV01.8VRE", "4CRXT04.75J0", "4FMXT04.02K4", "4DSXV03.0GBC", "4BMXV03.0M5R", "4GMXT06.0188", "4DSXT03.8GRD", "4FMXT05.4R4P", "4ADXV03.0344", "4TYXT04.0VRM", "4GMXV03.8041", "4TYXV02.4MXA", "4TYXT02.4WMH", "4FMXV02.3VLC", "4FMXT04.6PNB", "4FMXT04.22HB", "4BMXV03.0SMG", "4FMXT04.02K8", "4FMXT03.02KA", "4TYXV03.3PEA", "4GMXT06.0191", "4FMXT05.4R4P", "4TYXT04.7V1V", "4TYXV01.5MC1", "4CRXV02.7VM1", "4BMXV03.0SMG", "4GMXV03.8042", "4GMXT05.3170", "4GMXV02.2028", "4GMXV03.8042", "4FMXV03.0VEM", "4FMXT02.01F5", "4FMXT05.4RI9", "4FMXV03.0VEY", "4FMXT05.4R4P", "4TYXT04.7W1W", "4GMXT06.0187", "4TYXT03.4VRH", "4FMXT04.02L2", "4FJXV02.5NKR", "4GMXT05.3175", "4FMXT04.02K4", "4VWXV02.8228", "4FMXT04.22HB", "4MBXV03.2LBX", "4FMXT05.4SQ2", "4ADXV04.2345", "4TYXV01.8VMC", "4GMXT05.3174", "4MBXV05.0L2A", "4HNXV02.4AKC", "4HNXV01.35A6", "4GMXA04.8172", "4TKXV02.3CJ1", "4GMXT04.2185", "4TYXV04.3WMA", "4NSXV03.5N7C", "4CRXT03.75J0", "4GMXT04.2185", "4TJXT06.0188", "4FMXT06.8TQ3", "4TYXT04.7W1Y", "4FMXV03.0VE8", "4GMXT06.0187", "4MBXV03.7LBI", "4LRXT02.5001", "4GMXV03.8042", "4TYXV01.5MC1", "4DSXV02.4GBB", "4FMXT05.4R4P", "4NSXV03.5N7C", "4DSXV03.0GBC", "4BMXV03.0LER", "4GMXT02.2123", "4CRXT04.75TP", "4BMXV03.0SMG", "4NSXT05.6P9B", "4ADXV01.8342", "4FMXT05.4RFC", "4PRXV03.6996", "4BMXV03.0SMG", "4TYXV03.3PEA", "4FMXT04.62H2", "4MBXV05.0L2A", "4FMXT04.02KM", "4TJXV02.2025", "4TJXV02.2025", "4FMXT04.02K2", "4TYXT04.7VRM", "4GMXT05.3170", "4VVXX2.52U2T", "4GMXT05.3170", "4FMXT04.02K2", "4HYXV02.0CU9", "4FMXV03.0VEY", "4VWXV04.0229", "4GMXT06.0187", "4GMXT06.0188", "4NSXV03.5N7A", "4ADXV04.2345", "4VWXV04.0229", "4TYXT03.4VRM", "4FMXT04.62E7", "4PRXV03.6GT3", "4FMXV03.0VEY", "4CRXT03.3NE0", "4JCXV03.0DNG", "4TYXT04.7W1Y", "4GMXT05.3175", "4FMXT04.02L2", "4GMXV05.7081", "4CRXV02.4VE0", "4TJXT06.0188", "4FMXT05.4SP6", "4CRXV02.4VM0", "4ADXV03.0344", "4GMXT06.0187", "4TYXT04.7V1V", "4CRXT05.77X0", "4CRXT04.75J1", "4ADXV04.2345", "4GMXT05.3170", "4GMXT04.3187", "4HNXV01.0NCE", "4ADXV02.7343", "4GMXT05.3175", "4TYXV01.8VRE", "4VWXV04.0229", "4PRXV03.2986", "4MTXT03.5GAB", "4GMXV02.3001", "4BMXV03.0LER", "4MTXT03.5GAB", "4FMXT04.02K8", "4TYXT03.4VRM", "4FMXT05.4RPD", "4ADXV03.0344", "4FMXT05.4RFC", "4PRXV03.6996", "4GMXT06.0187", "4HNXV01.74W3", "4GMXT06.0188", "4NSXV01.8S2A", "4TYXT04.0VRM", "4FMXT04.02K2", "4MBXV05.5LBX", "4GMXA06.0189", "4GDXV01.6D02", "4GMXT04.3187", "4NSXT03.5N7B", "4GMXV04.6067", "4GMXT05.3175", "4ADXV01.8342", "4CRXT03.75J0", "4GMXT05.3175", "4DSXV03.0GBB", "4PRXV03.6996", "4HYXV02.4EL9", "4FJXV02.5NKR", "4HYXV02.0XW4", "4FMXT05.4RI9", "4CRXV02.7VH0", "4GMXT08.1201", "4BMXV04.4LEV", "4ADXV03.0344", "4CRXT08.35T0", "4GMXT04.2185", "4NSXV03.5N7A", "4MBXV05.0L2A", "4ADXV01.8346", "4GMXT04.3184", "4GMXT03.5188", "4ADXV03.0344", "4NSXV03.5N7C", "4GMXT04.3187", "4CRXV02.4VM0", "4ADXV04.2345", "4GMXT06.0188", "4GMXT04.3184", "4NSXV03.5G7A", "4TKXV03.0ALM", "4FMXT04.62E7", "4PRXT04.5TE1", "4NLXV06.2474", "4GMXT08.1201", "4GMXT08.1201", "4CRXT04.75J0", "4CRXT05.77X0", "4TYXV01.5VMA", "4FMXT03.02KA", "4ADXV04.2345", "4HNXV01.74W3", "4HNXV01.7WA6", "4FMXT04.6PNB", "4GMXT08.1201", "4MBXV05.5LXY", "4FJXV03.0KFP", "4FMXT05.4RPB", "4FMXT04.62E7", "4GMXT03.6143", "4BMXX03.0UL2", "4GMXT03.6143", "4GMXT05.3170", "4GMXT06.0187", "4GMXT03.6143", "4GMXT05.3170", "4HRSV06.7N73", "4GMXT04.2185", "4ADXV01.8356", "4BMXV06.0N73", "4GMXT08.1201", "4MBXV05.5LXX", "4HYXV03.5GL9", "4PRXV05.7CGT", "4GMXV03.8042", "4FMXT05.4RFC", "4NSXV02.5G5A", "4BMXV04.4LEV", "4GMXT06.0187", "4GMXT08.1201", "4BEXV06.0501", "4GMXT06.0194", "4RIIV04.6RP1", "4NSXT03.3M6B", "4TJXT06.0TCU", "4MBXV03.2LBI", "4GMXT03.5188", "4GMXT04.2185", "4GMXT05.3170", "4VVXV2.43U2N", "4GMXT06.0188", "4CRXV03.5VM0", "4HNXV01.74W3", "4HNXT03.51AT", "4GDXV02.5D03", "4PRXV03.6TUR", "4GMXV03.8042", "4GMXT05.3174", "4GMXT06.0187", "4FMXT05.4R4P", "4HNXT03.5EA6", "4TYXV04.3WMA", "4BMXV03.0SMG", "4FMXT04.02K8", "4TYXT03.4VRM", "4GMXV03.8041", "4NSXT03.5G7A", "4GMXT05.3175", "4FMXV03.0VEM", "4VVXV2.52L1T", "4DSXV03.0GBC", "4HNXT02.4YBP"], ["010090667079", "000077168555", "000077078719", "010023048526", "000077070405", "010023048717", "010023050127", "010070391692", "010023057183", "010023055511", "010023052821", "010023055554", "000077246923", "010090667140", "010023049137", "010023048806", "010023050329", "000077099430", "000077163479", "010023053016", "000077237876", "000077097974", "010023058526", "010023057003", "010023053706", "010023051698", "010070868687", "010090238767", "010023053413", "000077122026", "010023051848", "010093688258", "010090238839", "010023057768", "010090424132", "010023054558", "000077242578", "010093688631", "000077102260", "000077235418", "000077236566", "010023055323", "010023059441", "010023048802", "010091142812", "010023055058", "000077243633", "010023053407", "010023047523", "010093077335", "010023051121", "000077105825", "010023053321", "010023053339", "010023058029", "000077102210", "010023052294", "010023048371", "010023048862", "010023050720", "010090668898", "010090668524", "010090669437", "010090665256", "010023048198", "000077184364", "010023059060", "000077149916", "010023054108", "010090238578", "010023058023", "000077238618", "010090666022", "010090668504", "010023058126", "010090238775", "010023055058", "010023054207", "010023053461", "000077101117", "010023052405", "000077139701", "010023061272", "010023051881", "010024149306", "010091143328", "010023055858", "010090668565", "010023054112", "000077075759", "000077139755", "010023057046", "010023057774", "010023054657", "010023048463", "010023051918", "000077246520", "010023057609", "010023057480", "000077238382", "010090668499", "010070391692", "010023052542", "010023052636", "000077121555", "010023056596", "010023047621", "010023059525", "010091146195", "010023055798", "010090668372", "010023049218", "010090669438", "010023053537", "010023055043", "000077237910", "010023050971", "010090669983", "010023048443", "000077092065", "010090665047", "010023052954", "000077244738", "010023056186", "000077122031", "000077140301", "010023055249", "000077005294", "000077101780", "000077137540", "000077090286", "000077102050", "010023057477", "010023054407", "010023056780", "010091142817", "010023053023", "010093687358", "010023048718", "000077102289", "010023059515", "010090667316", "010023053395", "010023051465", "000077099430", "010090668386", "000077236954", "010023050129", "010093687149", "010023047545", "000077003166", "000077003276", "010090666079", "010023050328", "010023054110", "010023054688", "010090665256", "010090667417", "010091143290", "000077235417"], ["116666.66", "118299867.9", "49770", "1786541.68", "992479.63", "69940", "169375", "23000", "0", "4097370.43", "200000", "760666", "159450.66", "271700", "202765.5", "2100035", "1608675", "116666.66", "108000", "570000", "75000", "145565", "1540467", "62676.12", "0", "91666.66", "110868366", "987000", "1550000", "3342766", "0", "231384", "1000000", "586251", "538470", "500000", "102642.2", "466276", "58013.5", "45401", "577000", "13644", "21200", "141666.66", "570000", "150000", "91666.66", "80360", "900000", "2502149.1", "234149", "219171.93", "566400", "486260", "570000", "453250", "100000", "61870", "1500000", "602271.76", "1027195", "234116.32", "67322.8", "15600", "500000", "570000", "26820", "1279800", "431829", "45543203", "156000", "110641867.22", "500000", "1000000", "78000", "500000", "116666.66", "32567", "155629", "6900", "408676961", "150000", "400000", "30005108", "547000", "33650", "2500000", "3158830", "71144841", "500000", "6073116", "31000", "574819", "3051072.87", "468044.17", "0", "129555", "1967494", "0", "3873236.08", "7425000", "16752", "30783", "275000", "46210", "11200000", "222840", "3049915.65", "760666.66", "4643923", "375000", "197727", "24556278", "32400", "3000000", "5055352.51", "75500", "144000", "200000", "2700000", "218882.43", "7200000", "109795.52", "24000", "11103", "724075", "182500", "6528397.58", "1278640", "2700000", "25160", "308050", "266666.66", "36729", "895000", "1307804.12", "1000000", "49500", "3927000", "28854", "1550000", "3000000", "69200", "10204670.16", "500000", "3300000", "128489", "1716000", "565356.08", "42922.16", "15161.56", "5588239.1", "22972", "3106546.2", "119400", "150000", "1550000", "23818046.34", "760666.66", "25258.2", "175000", "247267.44", "254112", "39000", "5241978", "22240950", "609791", "2005045", "406442.44", "30000", "1509312.37", "56000", "1850219.59", "166666.66", "987000", "143000", "400000", "0", "50000", "15193.08", "63469424.3", "46464", "2698387.24", "677184", "126000", "54855", "1219983.5", "232336.5", "689905.83", "102823", "678748", "424509", "263803.96"], ["3FJXV03.0KFP", "3MAXV04.2LEV", "3GMXV03.8043", "3CRXV02.7VD0", "3GMXT03.4143", "3TYXT04.7FBV", "3FMXT04.02FC", "3GMXT05.3176", "3GMXA06.0188", "3BYTT04.3227", "3FMXT04.02F8", "3FMXV04.6VP5", "3BYTT06.0218", "3GMXT05.3183", "3BYTT04.3214", "3GMXT04.3187", "3MBXV05.5LBI", "3GMXV02.3001", "3CRXT04.76B0", "3TKXV03.0CLM", "3GMXA08.1201", "3BYTT06.0213", "3VWXV02.0223", "3GMXA06.0189", "3FMXT04.02F3", "3BYTT05.3321", "3MBXV05.0UBI", "3VVXX2.52U2T", "3GMXT05.3183", "3ASXV05.9702", "3FMXT05.42F5", "3GMXT04.2188", "3FMXT05.4RFC", "3GMXA08.1201", "3DSXV03.0GNS", "3GMXT05.3185", "3TYXV01.8FFC", "3MBXV03.2LXX", "3GMXT05.3185", "3TYXV04.3HHA", "3KMXT03.5G01", "3MBXV03.2LXX", "3FMXT05.4RFC", "3TYXV02.4JXB", "3JCXV03.0DNE", "3ADXV01.8342", "3TYXT04.7FFP", "3TYXT04.0FFP", "3HYXT03.5SLS", "3GMXT05.3174", "3BYTT06.0213", "3BYTT06.0213", "3SKXT2.74LC1", "3FMXV03.0VFZ", "3TYXV03.0FFE", "3ADXV01.8346", "3TYXT03.4FFH", "3GMXT04.3184", "3BMXT04.6XHP", "3VVXV2.43L1T", "3BYTT06.0228", "3GMXT05.3185", "3BMXV03.0LER", "3FMXT04.02F7", "3VVXV2.43U1N", "3GMXT05.3185", "3GMXA06.0188", "3CRXT04.76B0", "3BMXV04.4LEV", "3GMXT05.3184", "3FMXV03.0VF3", "3FMXV03.0VFZ", "3BMXT04.4E53", "3HNXT03.5TKR", "3CRXT02.42D0", "3GMXT04.3187", "3HNXV03.0HB4", "3CRXT05.26RC", "3GMXT05.3184", "3BYTT06.0228", "3CRXT04.76H0", "3GMXT04.3187", "3GMXT04.3187", "3HNXV03.0FBP", "3BYTT06.0213", "3BYTT05.3311", "3GMXT05.3175", "3CRXV02.7VDP", "3GMXA06.0189", "3PRXT04.5SE1", "3FJXV02.0LGL", "3FMXT05.4RF8", "3GMXT05.3185", "3GMXV03.8043", "3FMXT03.82HA", "3FMXT04.02F3", "3GMXA06.0189", "3GMXT05.3185", "3GMXA08.1203", "3GMXT05.3175", "3NSXT03.5C7A", "3BYTT06.0213", "3BYTT06.0228", "3GMXT05.3185", "3GMXA06.0188", "3GMXT05.3185", "3ADXV04.2345", "3CRXT05.96B1", "3GMXT04.2184", "3GMXT05.3175", "3CRXT04.02Z0", "3FMXV04.6VG5", "3TYXV01.8DDC", "3GMXV02.3001", "3NSXV01.8D2A", "3GMXT04.3184", "3TJXT06.0188", "3BYTT06.0213", "3GMXT05.3174", "3GMXT04.3184", "3BYTT04.3224", "3GMXT04.3181", "3PRXT04.5SE1", "3BMXV04.9S62", "3LTXV03.5918", "3CRXA0287H41", "3GMXT06.0194", "3CRXT04.76B0", "3G9XT05.46NP", "3GMXA08.1201", "3BMXV02.5M56", "3BYTT06.0228", "3FJXX02.5JHM", "3TYXT04.7HBW", "3BYTT04.3214", "3BYTT06.0218", "3BYTT06.0223", "3FMXT05.4RF8", "3VWXV02.0223", "3FMXT05.4RFC", "3ADXV02.7343", "3FMXT05.4RFC", "3BYTT06.0228", "3SZXT03.52MK", "3BYTT04.3224", "3GMXT05.3182", "3FMXT05.4RP5", "3BYTT06.0228", "3BYTT06.0218", "3VWXV04.0229", "3BYTT06.0213", "3BYTT04.3217", "3GMXV03.2061", "3BYTT06.0213", "3GMXT05.3184", "3SKXX2.00LC2", "3TYXT04.7HBY", "3BMXV03.0M5R", "3FMXA05.4HJD", "3CRXT03.72ZX", "3GMXT05.3175", "3MBXV05.5LBI", "3BYTT06.0218", "3HNXV02.0XKC", "3BMXV02.5M56", "3GMXT04.2188", "3BYTT04.3224", "3GMXV02.2025", "3CRXA0360H40", "3PRXV03.2986", "3GMXT05.3185", "3GMXV03.0063", "3MBXV05.0UBI", "3HNXV01.7VA5", "3GMXT04.3187", "3GMXT05.3175", "3GMXT05.3185", "3BYTT04.3217", "3PRXV03.6996", "3BYTT04.3227", "3BYTT06.0223", "3VVXX2.52U2T", "3BMXV03.0M5R", "3CRXT03.82D0", "3FMXT05.4RF9", "3GMXT05.3181", "3CRXT04.75B0", "3FMXV03.0VFY", "3ADXV03.0344", "3GMXT04.3181", "3GMXT05.3185", "3GMXT05.3183", "3FMXV03.0VFZ", "3GMXT05.3185", "3CRXT05.95H0", "3BYTT06.0228", "3GMXT05.3185", "3BYTT06.0213", "3GMXT04.3184", "3SKXX2.00LC2", "3HNXT03.5EA5", "3GMXT05.3185", "3CRXT04.75H0", "3GMXT04.3184", "3VVXV2.92U1T", "3MBXV05.5LBI", "3GMXT05.3183", "3CRXT04.72D0", "3FMXT05.4RF5", "3GMXT04.3187", "3HYXV03.5GLS", "3TYXV03.0FFB", "3CRXT03.82D1", "3MBXT03.71BI", "3BYTT06.0228", "3CRXV02.0VD1", "3DSXV02.4GNF", "3GMXV03.8044", "3BYTT04.3214", "3GMXT04.3186", "3PRXV03.6TUR", "3FMXV03.0VF4", "3GMXV04.6065", "3ADXV02.8334", "3FMXV03.0VF4", "3NSXV03.5C7A", "3SZXT02.22NK", "3GMXT05.3184", "3HNXV03.2BYT", "3GMXT05.3176", "3BMXV03.0LER", "3GMXT05.3176", "3BMXV03.0LER", "3GMXV03.8043", "3BYTT04.3217", "3JCXV04.0BN4", "3FMXT04.62F6", "3GMXV03.8044", "3GMXT05.3177", "3ADXV01.8342", "3JCXV04.0BS7", "3SKXT2.49LC1", "3GMXT05.3185", "3BYTT06.0228", "3CRXT03.32DP", "3GMXV03.8045", "3GMXV03.8044", "3BYTT06.0218", "3TYXT03.4FFP", "3BYTT06.0228", "3FMXV03.0VFZ", "3VWXV02.8228", "3GMXT04.3184", "3BYTT06.0228", "3FMXA05.4HJD", "3VVXX2.52U2T", "3CRXT05.95H0", "3VVXX2.52U2T", "3GMXT05.3176", "3FMXT03.01F5", "3FMXT04.62F6", "3BYTT06.0228", "3GMXT03.4143", "3FMXT04.22H6", "3FJXV03.0KFP", "3ADXV02.8334", "3BMXV03.0UL2", "3GMXT03.0162", "3GMXT04.3184", "3CRXT04.72D0", "3GMXT05.3185", "3GMXV02.0002", "3MBXV05.5LBX", "3BMXV03.0UL2", "3GMXT04.3187", "3GMXT05.3185", "3BYTT04.3224", "3TYXT04.7HBY", "3GMXT05.3176", "3FMXA05.4JFC", "3GMXT05.3183", "3GMXV02.2025", "3BYTT05.3311", "3GMXT05.3184", "3GMXT05.3185", "3PRXV03.6996", "3GMXT05.3182", "3CRXT03.32DR", "3FMXT05.4RF6", "3BYTT04.3214", "3BYTT06.0218", "3CRXT02.43D0", "3CRXT03.32DP", "3GMXT05.3185", "3GMXT04.3184", "3CRXT03.82D1", "3VWXV02.0223", "3GMXT04.3181", "3BYTT04.3217", "3TYXV01.5LH1", "3VWXV04.0229", "3GMXT04.3184", "3TKXT02.0CJA", "3TYXV01.8HHA", "3FMXT05.4RFC", "3S3XV07.0EAA", "3GMXT05.3174", "3CRXV02.7VD0", "3BYTT06.0218", "3HNXV03.0HB4", "3GMXT05.3176", "3LRXT02.5002", "3KMXV01.6C01", "3TYXV01.5LH1", "3ABBV04.8F51", "3GMXT05.3185", "3CRXT05.92D0", "3FMXT03.02F5", "3GMXT04.3184", "3HNXV02.4JBP", "3NSXT03.3C6A", "3CRXT03.32DR", "3GMXT04.3184", "3BMXV03.0UL2", "3BYTT06.0213", "3BYTT04.3227", "3BYTT04.3227", "3FMXT02.31F5", "3BYTT06.0218", "3GMXT05.3175", "3GMXT05.3184", "3GMXT05.3184", "3GMXT05.3182", "3CRXT05.95B1", "3TYXT04.7HBY", "3GMXV02.2026", "3CRXT04.75H1", "3PRXT04.5TE1", "3TYXV03.0FFE", "3GMXT05.3175", "3GMXT05.3174", "3CRXT03.95B1", "3BYTT06.0218", "3DSXV02.4GNS", "3BYTT04.3214", "3FMXV03.0VFY", "3G9XT05.46NP", "3CRXT03.82D1", "3MBXV03.2LXX", "3GMXV05.7081", "3FMXT03.02F5", "3CRXT03.95B0", "3TYXT04.7FBV", "3GMXT04.3184", "3BYTT04.3214", "3CRXA0287H40", "3BMXV04.4LEV", "3JCXV04.2DNF", "3FMXV03.0VF2", "3MBXT03.71BI", "3SZXT02.22NK", "3MMYV04.0MA3", "3GMXT05.3170", "3FMXV02.0VF4", "3PRXV03.6996", "3SKXX2.00LC2", "3CRXT03.82D0", "3VVXX2.52U2T", "3FMXT05.4RF8", "3HNXV01.34A5", "3CRXT03.92D0", "3FMXT05.4RF5", "3WBXT02.8225", "3GMXT04.3187", "3BMXT03.0E5R", "3BMXV04.9S62", "3MTXT02.4GNG", "3CRXT08.06B1", "3CRXT04.75H1", "3ASXV05.9702", "3CRXT04.02Z0", "3FMXT05.4PFB", "3TJXT06.0188", "3BYTT04.3227", "3FMXT04.02F7", "3FMXT05.4RF9", "3CRXV08.3VB1", "3VVXV1.95L1T", "3BMXV03.0LER", "3CRXT05.95B1", "3GMXV02.2027", "3BYTT04.3214", "3BYTT06.0228", "3FMXT04.02F3", "3DSXV03.0GNS", "3BYTT06.0213", "3BMXV02.5M56", "3ADXV01.8342", "3TJXT06.0188", "3GMXA08.1203", "3BYTT06.0213", "3BYTT05.3321", "3GMXT03.4143", "3BYTT06.0223", "3FMXT03.01FA", "3FMXT05.4RP5", "3HNXT02.4YBP", "3JCXV04.0BS7", "3HNXV01.7VA5", "3FMXT04.02F3", "3GMXT05.3184", "3FJXX02.5JHM", "3BYTT04.3227", "3BYTT06.0213", "3GMXT03.4143", "3GMXT05.3183", "3HNXV03.0HB4", "3FMXT04.62F7", "3GMXT05.3184", "3FMXV02.0VH1", "3GMXT05.3176", "3CRXT04.76H0", "3GMXT05.3185", "3FMXV03.8VFA", "3FMXV03.9VF5", "3CRXT04.72D1", "3ASXV05.9702", "3GMXT05.3177", "3GMXT04.3187", "3GMXV03.8045", "3GMXT03.4141", "3BYTT06.0228", "3GMXT05.3183", "3BYTT06.0213", "3GMXT05.3174", "3GMXT05.3185", "3BYTT06.0228", "3BYTT04.3217", "3FMXT05.4RF6", "3TYXV03.0FFF", "3GMXT04.3184", "3FMXV02.0VF3", "3GMXT04.3187", "3GMXT05.3176", "3CRXT03.72ZX", "3BEXV06.7TUR", "3BYTT06.0218", "3WBXT02.8225", "3FJXX02.5JHM", "3GMXT05.3174", "3VWXV02.0227", "3BYTT04.3224", "3BYTT06.0228", "3BMXV03.0LER", "3FMXT04.02F3", "3HNXV02.45BP", "3CRXT05.95B1", "3GMXA08.1201", "3TYXT03.4FFP", "3GMXV03.8045", "3NSXV03.5C7B", "3BYTT04.3214", "3FMXV03.0VF3", "3GMXT04.3184", "3FMXT05.4RF8", "3BYTT04.3227", "3GMXT04.3187", "3BMXV03.0UL2", "3GMXV03.8044", "3TYXV01.5FFA", "3FMXA06.8JFC", "3BYTT06.0228", "3MBXV03.2LXY", "3GMXA08.1201", "3BYTT06.0223", "3FMXT05.4RP5", "3CRXT04.75B0", "3BYTT04.3227", "3GMXV03.8043", "3HYXT02.7MLS", "3BYTT04.3227", "3FMXT05.4RFC", "3NSXT03.5C7B", "3GMXT05.3175", "3MBXT05.01BI", "3GMXT05.3185", "3HNXT03.5ZAP", "3FMXT04.02F7", "3TYXT02.7FFP", "3GMXT04.3187", "3CRXT05.96B0", "3TYXT04.7FBV", "3GMXT05.3176", "3ADXV04.2345", "3BYTT06.0223", "3FMXT04.02F3", "3FMXT05.4RF9", "3FMXT05.4RF6", "3BYTT05.3311", "3GMXT05.3170"], ["9MBXR0170LNC", "9GMXR0176820", "9VWXR0230276", "9BMXR0130N54", "9GMXR0176820", "9MBXR0170LNS", "9BMXR0130N54", "9BMXR0128E85", "9TYXR0175A12", "9TYXR0175P32", "9NSXR0120PBB", "9GMXR0223842", "9NSXR0144MBA", "9MBXR0170LNS", "9ADXR0140B8Q", "9ADXR0140282", "9CRXR0180PM0", "9VWXR0125246", "9GMXR0223841", "9GMXR0223840", "9MTXR0135A1D", "9GMXR0170956", "9FMXR0125NAA", "9GMXR0123702", "9GMXR0133810", "9GMXR0133810", "9CRXR0112PK0", "9BMXR0128E85", "9GMXR0176820", "9NSXR0132PBA", "9NSXR0105PBA", "9FMXR0250NBS", "9ADXR0125246", "9GMXR0133810", "9HNXR0096VEA", "9CRXR0180RC0", "9DSXR0155A1A", "9BEXR0220262", "9FMXF0260GAS", "9GMXR0133810", "9MBXR0155LNC", "9GMXR0223840", "9GMXR0223842", "9BMXR0141N51", "9GMXR0223841", "9TYXR0175P32", "9MTXR0135A1D", "9FMXF0250NBS", "9GMXR0176822", "9ADXR0110238", "9DSXR0175A1A", "9GMXR0223840", "9LRXR0175001", "9MBXR0155LNC", "9GMXR0133810", "9GMXR0170957", "9NSXR0174PBB", "9FJXR01253CJ", "9NSXR0105PBA", "9VWXR0110236", "9CRXR0218RC0", "9FMXR0265NAS", "9FMXR0195GBR", "9HNXR0096VZA", "9SKXR0120450", "9NSXR0132PBA", "9GMXR0223840", "9SKXR0120450", "9TKXR0115GBK", "9CRXF0218TC0", "9LRXR0140001", "9CRXR0127PM0", "9GMXR0223841", "9CRXR0130PM1", "9TKXR0170GAL", "9ADXR0140B8Q", "9NSXR0120MBA", "9HNXR0106VEA", "9NSXR0132PBA", "9TYXR0165P12", "9VWXR0110238", "9FEXR0203575", "9FMXR0265NAS", "9GMXR0203958", "9GMXR0223840", "9VWXR0110237", "9TYXR0165P22", "9VWXR0110238", "9FMXR0115GAA", "9MTXR0135A1C", "9TYXR0165P22", "9ADXR0140282", "9FMXR0155GAA", "9CRXR0150PM0", "9GMXR0176820", "9GMXR0223841", "9CRXR0127PM0", "9CRXR0127PM0", "9CRXR0112PK0", "9FMXR0110GCY", "9DSXR0155A1B", "9FMXF0250NBS", "9MBXR0170LNS", "9BMXR0128E85", "9BMXR0128E85", "9BMXR0128E85", "9BEXR0220262", "9GMXR0176820", "9ADXR0230276", "9NSXR0123PCA", "9BMXR0141N51", "9TYXR0175A12", "9TYXR0165A12", "9JCXR0160P1Y", "9HYXR0120PDM", "9FMXR0155GAA", "9TYXR0115A12", "9MBXR0170LNS", "9MBXR0155LNC", "9HNXR01561EA", "9GMXR0118811", "9MTXR0135A2C", "9CRXR0127PK0", "9CRXR0112PK0", "9FMXR0155GAA", "9FMXR0110GCY", "9GMXR0223840", "9LRXR0140001", "9SKXR0120466", "9FMXR0265NBR", "9GMXR0170957", "9GMXR0138813", "9GMXR0133880", "9FMXR0265NAS", "9HNXR01561EA", "9GMXR0138813", "9VWXR0125246", "9GMXR0223840", "9VVXR0132EV2", "9GMXR0176820", "9GMXR0133880", "9FMXF0250NBS", "9ASXR0160P1Y", "9GMXR0223840", "9GMXR0138813", "9MTXR0135A1C", "9KMXR0130PDB", "9GMXR0105701", "9GMXR0223841", "9GMXR0118811", "9TYXR0190P32", "9CRXR0180RC0", "9GMXR0176820", "9MBXR0170LNS", "9CRXR0190RC0", "9VVXR0132EV2", "9GMXR0170956", "9NSXR0120PBB", "9GMXR0176822", "9VWXR0110238", "9GMXR0197972", "9MBXR0168LNA", "9GMXR0120818", "9TYXR0190P32", "9CRXR0127PK0", "9TKXR0107GCX", "9MBXR0168LNP", "9GMXR0176820", "9CRXR0127PK0", "9GMXR0176820", "9CRXR0127PK0", "9GMXR0133880", "9CRXR0127PM0", "9PRXR0190R9D", "9GMXR0120818", "9TYXR0165P22", "9GMXR0197972", "9CRXR0218RC0", "9CRXR0177PM0", "9CRXR0150PM1", "9MBXR0170LNS", "9JCXR0160P1Y", "9BMXR0170LE2", "9RRGR0225RR1", "9GMXR0197972", "9CRXR0112PK0", "9FMXR0250NBS", "9JCXR0160P1Y", "9VWXR0110238", "9MBXR0155LNC", "9VWXR0110236", "9MTXR0135A1D", "9JCXR0160P1Y", "9FMXF0120GAS", "9TKXR0152GAL", "9JCXR0160P1Y", "9CRXR0101PK0", "9CRXR0180RK0", "9GMXR0223840", "9CRXR0283TC1", "9MBXR0155LNC", "9ADXR0110238", "9HNXR0151VEA", "9FMXR0110GCY", "9KMXR0105PPU", "9TYXR0030A42", "9ADXR0140282", "9VVXR0132EV2", "9NSXR0132MBA", "9CRXR0190RCA", "9GMXR0223840", "9FJXR01253CM", "9KMXR0130PDB", "9NSXR0120PBA", "9GMXR0176820", "9GMXR0203958", "9CRXR0218RC0", "9FMXR0265NBR", "9GMXR0223840", "9FMXR0145GBA", "9BMXR0170N62", "9VWXR0230276", "9PRXR0190R9D", "9MBXR0170LNS", "9GMXR0118811", "9GMXR0176821", "9CRXR0225RC0", "9FMXR0155GAA", "9TYXR0130A22", "9HNXR0140VEA", "9GMXR0176820", "9GMXR0223841", "9HYXR0160PDC", "9SKXR0120450", "9CRXR0150PM0", "9TYXR0175A12", "9BEXR0130261", "9BMXR0130N54", "9JCXR0160P1Y", "9PRXR0190R9D", "9GMXR0133810", "9NLXR0203L26", "9MBXR0155LNS", "9FMXR0125NAA", "9NSXR0132MBA", "9HYXR0155PDN", "9TYXR0165P22", "9GMXR0176820", "9ASXR0160P1Y", "9GMXR0176820", "9FMXR0170GAB", "9TKXR0152GAL", "9BMXR0128E85", "9ADXR0230276", "9FMXR0145GBA", "9GMXR0223840", "9FMXR0160GBB", "9GMXR0223841", "9CRXR0150PK0", "9RRGR0225RR1", "9GMXR0223841", "9GMXR0223840", "9GMXR0223840", "9GMXR0123702", "9CRXR0180RC0", "9KMXR0125PDK", "9GMXR0260843", "9MBXR0170LNS", "9NSXR0174PBB", "9GMXR0176822", "9GMXR0223841", "9GMXR0105701", "9FMXR0160GBB", "9VWXR0125246", "9MBXR0170LNC", "9GMXR0133810", "9BMXR0170N62", "9GMXR0133814", "9CRXR0180RC0", "9FMXR0265NAS", "9GMXR0133880", "9PRXR0190R9D", "9BMXR0128E85", "9FMXF0260GAS", "9JCXR0160P1Y", "9SKXR0120450", "9MBXR0170LNC", "9GMXR0133810", "9GDXR0115E0L", "9LRXR0175001", "9FJXR01253CN", "9FMXR0170GAB", "9VVXR0132EV2", "9ADXR0110237", "9CRXR0218RC0", "9VWXR0110238", "9TYXR0165P22", "9GMXR0105817", "9TYXR0165A12", "9FMXF0260GAS", "9VVXR0132EV2", "9GMXR0170957", "9ADXR0170273", "9GMXR0133810", "9CRXR0112PK0", "9FMXR0265NAS", "9GMXR0170957", "9FMXF0265NAS", "9TYXR0130A22", "9BMXR0128E85", "9GMXR0170957", "9GMXR0170957", "9TKXR0115GBK", "9GMXR0176820", "9NSXR0222PBB", "9GMXR0133880", "9GMXR0133810", "9CRXR0150PM0", "9VWXR0170358", "9GMXR0176820", "9TYXR0165P22", "9BMXR0128E85", "9TYXR0130A12", "9GMXR0223840", "9GMXR0223840", "9CRXR0130PM1", "9GMXR0223840", "9GMXR0176820", "9HYXR0143PDT", "9VWXR0110238", "9MBXR0155LNC", "9BMXR0170LE2", "9TYXR0165P22", "9FMXF0250NBS", "9GMXR0170957", "9GMXR0176820", "9FMXF0260GAS", "9GMXR0105701", "9MBXR0170LNS", "9CRXR0130PM0", "9HYXR0155PDN", "9FMXR0265NBR", "9MTXR0135A1D", "9CRXR0112PK0", "9GMXR0133810", "9GMXR0176822", "9BEXR0220262", "9CRXR0130PM0", "9TYXR0115P12", "9DSXR0175A1A", "9CRXR0180PM0", "9NSXR0132MBB", "9HYXR0140PDB", "9TYXR0175P22", "9CRXR0150PMA", "9TYXR0160E12", "9BMXR0130N54", "9GMXR0223841", "9GMXR0176820", "9BMXR0128E85", "9VWXR0110237", "9NSXR0222PBB", "9GMXR0133810", "9MBXR0170LNC", "9MBXR0155LNS", "9GMXR0176822", "9FMXF0250NBS", "9CRXR0127PM0", "9VWXR0110238", "9MBXR0155LNF", "9PRXR0190R9D", "9GMXR0170956", "9GMXR0133810", "9GMXR0176820", "9FMXR0170GAB", "9VVXR0130EB6", "9CRXR0190RC0", "9LRXR0175001", "9GMXR0223841", "9SKXR0120466", "9TYXR0190P32", "9GMXR0120818", "9GMXR0170957", "9ADXR0140B8Q", "9BEXR0220262", "9FMXR0265NBR", "9HYXR0160PDC", "9KMXR0125PDK", "9GMXR0223841", "9TYXR0115P12", "9NSXR0090PBA", "9MBXR0155LNS", "9ADXR0140282", "9GMXR0176821", "9CRXR0112PK0", "9RRGR0225RR1", "9TYXR0175P32", "9HNXR0106VEA", "9KMXR0110PPL", "9TYXR0160E62", "9NSXR0132PBA", "9FMXR0160GBB", "9MBXR0170LNC", "9CRXR0180RC0", "9GMXR0176820", "9ADXR0140282", "9GMXR0133810", "9RIIR0125KCK", "9ADXR0140282", "9GMXR0176820", "9NSXR0174PBB", "9TKXR0125GAK", "9MBXR0155LNC", "9BMXR0141N51", "9CRXR0127PM0", "9GMXR0170957", "9GMXR0223840", "9TYXR0115P12", "9VVXR0130EB6", "9NSXR0090PBA", "9TYXR0180E12", "9HYXR0160PDC", "9MBXR0218LNC", "9FMXR0145GBA", "9FMXR0110GCY", "9ADXR0140282", "9CRXF0218TC0", "9MTXR0135A1D", "9GMXR0176820", "9FMXR0110GCY", "9FMXR0125NCX", "9GMXR0197972", "9GMXR0170957", "9FJXR01253CM", "9VVXR0132EV2", "9GMXR0105817", "9CRXR0180RC0", "9TKXR0107GCX", "9FMXR0115GAA", "9MBXR0170LNC", "9NSXR0174PBA", "9GMXR0176820", "9GMXR0105701", "9MBXR0085LNC", "9MTXR0135A2C", "9GMXR0176820", "9MBXR0155LNC", "9CRXR0150PK0", "9GMXR0105817", "9GMXR0176822", "9FMXF0250NBS", "9MBXR0168LNP", "9GMXR0170957", "9VWXR0110238", "9CRXR0225RC0", "9GMXR0223840", "9NSXR0105PBA", "9MTXR0135A1D", "9ADXR0140282", "9ADXR0110237", "9CRXR0180RC0", "9GMXR0223841", "9GMXR0223840", "9GMXR0105701", "9GMXR0176821", "9HNXR01632EA", "9GMXR0176820", "9MTXR0135A1D", "9TYXR0115P12", "9GMXR0118811", "9GMXR0176820", "9ADXR0110238", "9GMXR0223840", "9HNXR0151VEA", "9CRXR0180RC0", "9VWXR0110238", "9FMXR0250NBS", "9FJXR01253CM", "9GMXR0223840", "9CRXR0112PK0", "9GMXR0176820", "9HNXR0154VZA", "9BMXR0130N54", "9RRGR0225RR1", "9GMXR0176820", "9FMXR0125NAB", "9NSXR0120PBA", "9FMXR0125NAB", "9CRXR0150PM1", "9PRXR0190R97", "9GMXR0176820", "9BMXR0128E85", "9MBXR0170LNC", "9TYXR0165A12", "9BMXR0130N54", "9HNXR0151VEA", "9CRXR0126FE0", "9CRXR0218RC0", "9KMXR0120PDM", "9KMXR0152PDV"], ["$3,603,965", "$964,002", "$1,543,595", "$7,827,310", "$876,552", "$569,745", "$800,663", "$1,001,754", "$2,124,126", "$1,870,539", "$1,592,845", "$689,526", "$714,057", "$1,650,500", "$867,084", "$991,276", "$2,359,130", "$926,501", "$2,394,262", "$2,119,352", "$1,864,219", "$1,354,615", "$4,730,290", "$1,336,982", "$3,068,545", "$1,107,300", "$14,485,675", "$1,652,638", "$568,688", "$684,744", "$1,574,855", "$1,187,254", "$662,079", "$998,790", "$845,708", "$2,022,152", "$653,137", "$1,240,840", "$395,040", "$594,893", "$1,119,762", "$4,348,254", "$1,748,104", "$1,442,436", "$1,033,331", "$903,986", "$288,560,433", "$749,546", "$1,589,554", "$4,988,629", "$19,009,753", "$1,786,487", "$1,148,615", "$10,833,108", "$1,234,801", "$2,936,261", "$1,258,467", "$785,106", "$1,742,964", "$897,657", "$4,811,616", "$1,563,242", "$1,646,210", "$10,523,237", "$1,266,778", "$1,237,012", "$3,202,965", "$1,667,785", "$1,628,098", "$2,764,384", "$961,595", "$4,694,266", "$1,168,376", "$473,323", "$4,403,056", "$732,059", "$1,303,229", "$5,577,848", "$957,658", "$13,642,530", "$384,911", "$1,493,772", "$3,093,400", "$1,521,074", "$872,152", "$731,849", "$558,428", "$975,499", "$2,510,656", "$7,870,265", "$593,039", "$922,508", "$642,640", "$1,852,943", "$41,116,060", "$1,512,327", "$2,022,345", "$3,975,185", "$705,406", "$1,270,427"], ["7GMXR0223841", "7BYTE0000000", "7FMXR0265GBS", "7FEXR0203575", "7GMXE0223842", "7GMXR0176820", "7GMXR0170957", "7GMXR0176821", "7PRXR0230RED", "7NLXR0203L26", "7CRXR0150GHA", "7HNXR0102BBY", "7MBXR0155LNC", "7FMXR0265GAS", "7GMXR0223841", "7GMXR0223841", "7CRXR0283GFH", "7GMXE0223842", "7FMXR0240NBR", "7GMXR0176820", "7PRXR0230RED", "7SKXR0120450", "7CRXR0180GTH", "7PRXR0190R97", "7FMXR0120GAK", "7GMXR0176820", "7GMXR0120818", "7GMXR0133810", "7TKXR0107GCX", "7GMXR0203959", "7GMXR0223841", "7FMXR0165GBL", "7FMXR0200GBR", "7TYXR0165P12", "7FMXR0185GBK", "7BMXR0128E85", "7ADXR0110238", "7GMXR0176820", "7GDXR0115E0L", "7FMXR0200GBR", "7TYXR0175P22", "7HNXR0163BBY", "7TYXR0165P22", "7PRXR0230RED", "7ASXR0160P1Y", "7FMXR0200GBR", "7GMXR0203959", "7TYXR0130A22", "7GMXR0176820", "7FMXR0185GAK", "7GMXR0133813", "7JCXR0160P1Y", "7GMXR0223840", "7CRXR0150GHA", "7VVXR0132EV2", "7JCXR0160P1Y", "7BMXR0128E85", "7HYXR0155PDN", "7FMXR0200GBR", "7GMXR0176820", "7GMXR0176821", "7FMXR0165GBL", "7BMXR0141N51", "7CRXR0283GTH", "7FMXR0240NBR", "7BYTE0000000", "7GMXR0133810", "7GMXR0223840", "7FMXR0165GBL", "7MBXR0197LNC", "7BMXR0128E85", "7GMXR0223841", "7MBXR0197LNC", "7FMXR0155GAK", "7BYTE0000000", "7NSXR0120PBC", "7JCXR0140P1X", "7BYTE0000001", "7MBXR0155LNC", "7MBXR0168LNA", "7GMXR0223840", "7GMXR0170956", "7GMXR0176820", "7SKXR0120450", "7FMXE0265GAS", "7MAXR0198138", "7HYXR0148PPH", "7KMXR0125PDK", "7CRXR0177GHA", "7FMXR0185GAL", "7GMXR0223841", "7GMXR0223841", "7FMXR0265GBS", "7FMXR0265GAS", "7PRXR0190R97", "7PRXR0190R97", "7GMXR0176820", "7HNXR0102BBY", "7MBXR0197LNC", "7BYTE0000001", "7BMXR0128E85", "7FMXE0265GBS", "7MBXR0160LNC", "7FMXR0170GAL", "7HYXR0120PDM", "7CRXR0101GHA", "7FMXR0120GAK", "7FMXR0165GBL", "7GMXR0176820", "7GMXR0133810", "7GMXR0176820", "7BYTE0000000", "7NSXR0120PBC", "7BMXR0128E85", "7FJXR01253CJ", "7FMXR0265GBS", "7GMXR0133810", "7HYXR0160PDC", "7TYXR0165P22", "7FMXR0115GAK", "7CRXR0150GHH", "7ADXR0140282", "7CRXR0177GHA", "7GMXR0223841", "7HNXR0106BBY", "7BMXR0128E85", "7CRXR0150GHA", "7NSXR0120MBA", "7GMXR0176820", "7FMXR0185GAL", "7BYTE0000001", "7GMXR0176820", "7GMXR0176821", "7MBXR0170LNC", "7GMXR0133810", "7GMXR0223841", "7HYXR0152PDE", "7GMXR0223840", "7FMXR0265NBR", "7GMXR0176820", "7CRXR0283GTH", "7BMXR0130N54", "7GMXR0223840", "7GMXR0170957", "7FMXR0200GBR", "7FMXR0240NBR", "7GMXR0223840", "7GMXR0176820", "7JCXR0160P1Y", "7FMXR0240NBR", "7GMXR0176821", "7CRXR0180GTH", "7TYXR0160E52", "7GMXR0223841", "7BMXR0170N62", "7MBXR0170LNC", "7FMXR0155GAK", "7ABBR0170N62", "7GDXR0115E0L", "7MBXR0155LNC", "7FMXR0170GAL", "7TKXR0115GBK", "7SKRR0130C08", "7FJXR01373CL", "7FMXR0185GBK", "7GMXR0117811", "7NLXR0203L26", "7GMXR0176820", "7GMXR0223841", "7FJXR01373CL", "7MBXR0218LNC", "7MBXR0218LNC", "7BYTE0000000", "7GMXR0223840", "7GMXR0176820", "7FMXR0155GAK", "7CRXR0112GHA", "7FJXR01253CJ", "7MBXR0197LNC", "7FMXE0265GAS", "7GMXR0223840", "7ASXR0160P1Y", "7TYXR0190P22", "7GMXR0223841", "7GMXE0223842", "7VWXR0110238", "7GMXR0203958", "7GMXR0176821", "7GMXR0176821", "7FMXR0265GAS", "7VVXR0130EB1", "7FMXR0120GCY", "7FMXR0115GAK", "7VWXR0125246", "7MTXR0135A1B", "7BYTE0000000", "7GMXR0223840", "7GMXR0223840", "7GMXR0176820", "7HYXR0148PSH", "7HYXR0160PDC", "7GMXR0223840", "7ASXR0160P1Y", "7NLXR0203L26", "7MBXR0168LNA", "7KMXR0152PDV", "7TYXR0190P32", "7MBXR0155LNF", "7GMXR0203959", "7FMXR0200GBR", "7GMXR0176820", "7GMXR0176820", "7GMXR0133814", "7BMXR0128E85", "7S3XR0235HDA", "7CRXR0180GTH", "7GMXR0223840", "7CRXR0177GHA", "7SKRR0130C08", "7FMXR0165GBL", "7TYXR0130A12", "7CRXR0180XDH", "7HNXR0163BBY", "7GMXR0223841", "7MBXR0155LNS", "7FMXR0170GAL", "7BYTE0000000", "7FMXR0240NBR", "7GDXR0115E0L", "7GMXR0133810", "7GMXR0223840", "7FMXR0265NBR", "7CRXR0180GHJ", "7FMXR0240NBR", "7GMXR0176820", "7GMXR0176820", "7GMXR0176821", "7GMXR0176821", "7GMXR0133810", "7GMXR0176820", "7GMXR0223840", "7JCXR0160P1Y", "7TYXR0130A22", "7TYXR0165A12", "7FMXR0265GAS", "7GDXR0115E0L", "7GMXR0176820", "7FMXR0265GBS", "7PRXR0230RED", "7CRXR0180GTH", "7JCXR0160P1Y", "7NSXR0132PBA", "7GMXR0133810", "7FMXR0185GAL", "7GMXR0223840", "7GMXE0223842", "7FJXR01253BG", "7CRXR0180GTH", "7NSXR0174PBA", "7BYTE0000001", "7VVXR0132EV2", "7VVXR0130EB1", "7CRXR0150GHA", "7FMXR0185GCK", "7BYTE0000001", "7FMXE0265GBS", "7BEXR0130261", "7GMXR0176821", "7FMXR0165GBL", "7FJXR01253BG", "7GMXR0223841", "7FMXR0265GBS", "7CRXE0283GWH", "7TYXR0130A12", "7GMXR0223840", "7ADXR0140282", "7GMXR0133810", "7FMXR0170GAL", "7ADXR0140282", "7GMXR0223841", "7GMXR0133810", "7GMXR0117811", "7GMXR0176820", "7FMXR0155GAK", "7GMXR0223841", "7LRXR0175001", "7GMXR0223840", "7TYXR0175A12", "7CRXR0283GTH", "7HYXR0160PDC", "7CRXR0218GTH", "7CRXR0177GHA", "7FMXR0185GAK", "7CRXR0283GTH", "7GMXR0223841", "7ADXR0130283", "7CRXR0112GHA", "7GMXR0223840", "7GMXR0176820", "7HNXR0140BBA", "7ADXR0140282", "7FMXR0185GAL", "7BYTE0000000", "7FMXR0170GAL", "7GMXR0170957", "7ADXR0140282", "7GMXR0117811", "7CRXR0180XDH", "7KMXR0120PDU", "7BMXR0141N51", "7FMXE0265GBS", "7FMXR0265GAS", "7FMXR0240NBR", "7FMXR0120GCY", "7CRXR0150GHA", "7HNXR0135BCA", "7GMXR0203959", "7HYXR0125PDJ", "7GMXR0133813", "7GDXR0115E0L", "7LRXR0175001", "7GMXR0176821", "7CRXR0180GTH", "7NSXR0120PBB", "7DSXR0155A2A", "7PRXR0190R97", "7FMXR0120GCY", "7GMXR0223841", "7ADXR0140282", "7BYTE0000000", "7FMXE0265GAS", "7VWXR0125246", "7FMXR0155GAK", "7GMXR0223841", "7CRXR0150GHA", "7TYXR0130A12", "7CRXR0150GHA", "7NSXR0090PBA", "7HNXR0140BBA", "7HYXR0160PDC", "7GMXR0223841", "7BYTE0000001", "7GMXR0133810", "7FJXR01253CJ", "7ADXR0140282", "7KMXR0125PDK", "7GMXR0176820", "7FMXE0265GBS", "7TKXR0107GCX", "7FMXR0155GAK", "7CRXE0218GWH", "7GMXR0223840", "7GDXR0115E0L", "7FMXR0115GAK", "7GMXR0223840", "7GMXR0203959", "7VVXR0130EV2", "7VVXR0130ET3", "7BYTE0000000", "7ASXR0160P1Y", "7FMXE0265GBS", "7JCXR0140P1X", "7FMXR0120GAK", "7BYTE0000001", "7FMXR0265GAS", "7HNXR0140BBA", "7KMXR0152PDV", "7FMXR0200GBR", "7FMXR0170GAL", "7FMXR0265GBS", "7GMXR0176820", "7GMXR0133810", "7HNXR0096BCA", "7FMXE0265GBS", "7GMXR0223841", "7GMXR0223841", "7ADXR0125246", "7FMXR0115GAK", "7CRXE0283GWH", "7TYXR0165A12", "7CRXR0150GHA", "7CRXR0177GHA", "7HYXR0125PDJ", "7BYTE0000000", "7FMXR0185GAK", "7GMXR0176820", "7GMXR0223840", "7NSXR0132MBA", "7FMXR0185GAL", "7GMXR0105817", "7FMXR0165GBL", "7FJXR01253CJ", "7VVXR0130EV6", "7TYXR0160E52", "7BMXR0141N5N", "7FMXR0240NBR", "7VWXR0110236", "7NSXR0174PBB", "7PRXR0190R97", "7KMXR0152PDV", "7GMXR0176820", "7GMXR0223840", "7HYXR0155PDN", "7GMXR0176820", "7GMXE0223842", "7NSXR0120MBA", "7FMXE0265GBS", "7KMXR0125PDK", "7FMXR0115GAK", "7CRXR0180GTH", "7NSXR0132MBA", "7DSXR0175A1A", "7VVXR0130EV6", "7GMXR0223841", "7FMXR0170GAL", "7CRXR0180GTH", "7FMXR0240NBR", "7GMXR0223840", "7FMXR0200GBR", "7VVXR0130ET3", "7BMXR0130N54", "7PRXR0190R97", "7GMXR0170956", "7CRXR0180GTH", "7CRXR0150GHH", "7GMXR0176820", "7FMXR0155GAK", "7ADXR0140272", "7CRXR0283GFH", "7RIIR0185GCK", "7GMXR0223841", "7FMXR0115GAK", "7MBXR0155LNC", "7CRXR0130GHA", "7TYXR0190A32", "7NSXR0120MBA", "7GMXR0223840", "7CRXE0283GWH", "7GMXR0223841", "7BMXR0170N62", "7GMXR0176821", "7CRXR0130GHA", "7GMXR0223840", "7GMXE0223842", "7GMXR0117811", "7GMXR0176820", "7TYXR0175P22", "7KMXR0120PDM", "7CRXR0112GHA", "7GMXR0176820", "7ADXR0230276", "7HNXR0163BBY", "7GMXR0133810", "7GMXR0117811", "7BMXR0128E85", "7BYTE0000000", "7GMXR0176821", "7BMXR0130N54", "7GMXR0223840", "7GMXR0223840", "7FJXR01373CL", "7GMXR0133810", "7FJXR01254CE", "7MBXR0197LNC", "7DSXR0175A1A", "7FMXR0265GBS", "7NSXR0132PBA", "7GMXR0170957", "7GMXR0223840", "7DSXR0155A1A", "7JCXR0160P1Y", "7VWXR0110237", "7FMXR0165GBL", "7FMXR0120GAK", "7FMXR0170GAL", "7KMXR0120PDB", "7GMXR0176820", "7BMXR0128E85", "7VWXR0125246", "7TYXR0190P32", "7GMXR0133880", "7TYXR0165P22", "7GMXR0203959", "7TYXR0115P12", "7KMXR0130PDC", "7PRXR0190R97", "7CRXR0218GTH", "7GMXR0176820", "7FMXR0240NBR", "7GMXR0117811", "7CRXE0283GWH", "7FMXR0185GBK", "7SKXR0120466", "7CRXR0180GHH", "7GMXR0203959", "7BEXR0130261", "7FMXR0165GBL", "7GMXR0133810", "7FMXR0115GAK", "7KMXR0120PDM"], ["2GMXE0111911", "2FMXE0155BBH", "2SZXR0175PE0", "2FMXE0120BAE", "2CRXE0174GEL", "2GMXE0111908", "2MBXE0153NNZ", "2CRXR0130GBA", "2LRXE0124001", "2FMXE0155BAH", "2FMXE0155BBF", "2GMXR0124919", "2FMXR0115BBE", "2TYXE0145AE0", "2HNXR0130AAF", "2CRXE0101GCS", "2CRXE0101GDH", "2HNXR0160AAA", "2GMXE0111906", "2FMXE0155BBF", "2TYXE0145AF0", "2GMXE0111911", "2MLXR0175A1A", "2GMXE0111911", "2BMXR0136E46", "2GMXE0111908", "2FMXR0160BBE", "2SKXR0120164", "2GMXE0133917", "2CRXE0174GEL", "2FMXR0160BBE", "2GMXE0133917", "2GMXR0212923", "2PRXR0110R96", "2FMXE0120BAE", "2GMXR0212923", "2HNXR0099AAH", "2GMXR0212923", "2GMXR0212923", "2GMXE0133917", "2CRXE0174GDL", "2TYXR0135AK0", "2TJXE0000917", "2PRXR0110R96", "2FMXE0155BAG", "2TKXR0115PPB", "2RRXR0200E96", "2MBXR0155LNZ", "2FMXR0115BAE", "2VVXR0133AAA", "2GMXE0111908", "2GMXE0111911", "2CRXE0101GDH", "2ADXR0130242", "2CRXE0174GDL", "2GMXE0111911", "2NSXR0110RCC", "2CRXE0174GEL", "2SZXE0095ME0", "2CRXE0174GDL", "2CRXE0101GCS", "2SKXR0120164", "2BMXR0158E65", "2GMXE0111917", "2MTXR0140A1A", "2GMXR0124919", "2FMXE0155BAG", "2GMXR0133910", "2MBXR0155LNZ", "2MBXR0218LNZ", "2CRXE0101GDH", "2BMXR0160E39", "2FMXR0160BBE", "2GMXE0111911", "2CRXE0174GEL", "2GMXE0133916", "2CRXE0000CDH", "2CRXR0101GBA", "2FMXE0120BAE", "2SKXR0120164", "2CRXR0155GCH", "2TYXE0145AF0", "2MBXR0193LNZ", "2TKXR0120PMA", "2FEXR0203360", "2GMXR0133910", "2GMXR0212923", "2ADXR0140233", "2CRXE0174GEL", "2CRXE0174GEL", "2VWXR0110234", "2FMXR0155BBE", "2FMXE0155BAF", "2CRXE0174GEL", "2GMXR0133910", "2GMXE0111909", "2SZXR0175PE0", "2GMXE0133916", "2CRXE0174GEL", "2CRXE0174GDL", "2SKXR0120164", "2FMXE0155BAG", "2GMXE0133917", "2CRXE0174GEL", "2FMXR0080BBE", "2TJXR0124919", "2MBXR0155LNZ", "2GMXE0111911", "2FJXR01251CC", "2GMXE0111908", "2FMXR0080BBE", "2GMXE0111911", "2GMXE0212924", "2FMXE0155BAF", "2ADXR0110234", "2SZXE0095PE1", "2GMXE0111908", "2ASXR0284DB7", "2HNXR0130AAF", "2CRXE0101GDH", "2FMXR0160BBE", "2GMXE0095904", "2GMXE0095904", "2WBXR0140233", "2KMXR0160F01", "2GMXR0212923", "2FMXR0000ZYK", "2GMXE0111908", "2GMXE0111911", "2SKXR0120164", "2GMXR0133910", "2DSXR0165A1F", "2ADXR0140232", "2CRXR0133GBH", "2FMXE0155BBG", "2FMXE0155BAF", "2LRXR0124002", "2FMXR0155BBE", "2BMXR0136E46", "2TKXR0115PPB", "2HNXR0000AAJ", "2ADXR0140233", "2CRXR0165GCA", "2GMXE0133916", "2TYXE0145AF0", "2GMXR0175922", "2DWXR0095A0L", "2ASXR0121V03", "2CRXR0101GBA", "2TKXE0115PPA", "2FMXR0230BBE", "2GMXE0095904", "2FMXR0000ZYK", "2HNXR0000AAJ", "2MBXR0218LNZ", "2FMXR0160BBE", "2CRXR0165GCA", "2FMXE0155BAF", "2GMXE0111911", "2GMXR0124919", "2SKXR0120164", "2MBXR0193LNZ", "2FMXR0155BBE", "2FMXR0000ZYK", "2CRXE0101GDH", "2CRXR0165GCA", "2TYXR0135AK0", "2JCXR0121M2X", "2BMXR0160E39", "2SZXR0175ME0", "2FMXE0120BAE", "2SKXR0120164", "2TYXR0135AK1", "2MMYR0124ML1", "2FMXE0155BAF", "2ADXR0140262", "2FMXR0115FAE", "2CRXR0155GCH", "2GMXR0175922", "2TYXR0135AK0", "2ADXR0140233", "2FMXE0155BBG", "2GMXE0133917", "2GMXE0212924", "2RRXR0200E96", "2KMXE0105B05", "2TJXE0133917", "2GMXE0212924", "2HNXR0130AAF", "2GMXR0212923", "2CRXE0174GEL", "2BYTE0095ULV", "2NSXR0120RCA", "2GMXE0133917", "2JCXR0121M2X", "2FMXE0155BBG", "2PRXR0110R96", "2RRXR0200E96", "2TJXE0133917", "2GMXE0111911", "2FMXE0155BAE", "2DSXR0165A1F", "2MBXR0218LNZ", "2TYXR0150AK1", "2CRXE0000CDH", "2BMXR0136E46", "2VWXR0110234", "2GMXE0111908", "2GMXE0111911", "2FMXR0160BBE", "2GMXR0124919", "2HYXR0134PER", "2SZXR0175PE0", "2TYXR0115AK1", "2NSXR0085RCB", "2MBXE0153NNZ", "2GMXE0111909", "2G9XE0155BAG", "2MTXR0200A1A", "2ADXR0140233", "2SKXR0120164", "2ADXR0140233", "2GMXE0111917", "2CRXE0101GDH", "2FMXE0155BBG", "2GMXE0111920", "2GMXE0111909", "2BMXR0136E46", "2GMXR0133910", "2HNXR0130AAF", "2GMXE0133916", "2FMXR0115BAE", "2CRXE0101GDH", "2GMXR0175922", "2GMXR0133910", "2GMXR0212923", "2FMXE0120BAE", "2ADXR0130242", "2CRXE0174GEL", "2MTXR0175A1A", "2CRXE0174GEL", "2GMXE0111917", "2FJXR01251BD", "2RRXR0200E96", "2CRXR0155GCH", "2TYXE0190AF0", "2VVXR0133AAA", "2TYXR0135AK1", "2ADXR0140232", "2TYXR0150AK1", "2VWXR0110234", "2FMXR0115FAE", "2BMXR0093R50", "2CRXE0174GEL", "2KMXR0150D02", "2NSXR0120RCB", "2DWXR0095A0L", "2NSXE0110MBA", "2BYTE0095ULV", "2TJXE0111909", "2GMXR0124919", "2MBXR0193LNZ", "2VVXR0133AAA", "2FMXR0000ZYK", "2JCXR0140P1X", "2FMXR0160BBE", "2GMXE0111908", "2GMXE0133915", "2CRXR0155GCH", "2JCXR0160P2X", "2GMXE0111911", "2LRXE0124001", "2CRXE0101GDH", "2GMXE0111908", "2HNXR0099AAH", "2GMXE0212924", "2FMXE0155BAG", "2G9XE0155BAG", "2TYXR0150AK1", "2GMXR0133910", "2GMXE0111909", "2CRXR0101GBA", "2BMXR0136E46", "2ADXR0130242", "2FMXR0160BBE", "2GMXE0133915", "2GMXE0111920", "2GMXR0175922", "2CRXE0101GDH", "2MTXR0140A1A", "2TYXR0150AK1", "2FJXR01251BD", "2GMXR0175922", "2GMXE0212924", "2HYXR0134PEX", "2FMXR0115BBE", "2FMXR0155FBE", "2GMXE0111920", "2CRXE0174GEL", "2CRXR0165GCA", "2CRXE0174GEL", "2HYXR0134PEX", "2FMXR0230BBE", "2FMXR0155BBE", "2CRXR0155GCH", "2CRXE0174GEL", "2FMXE0155BAF", "2GMXE0133915", "2TJXE0000917", "2BMXR0136E46", "2CRXE0101GDH", "2JCXR0121M2X", "2FMXR0000ZYK", "2GMXR0124919", "2GMXR0133910", "2GMXE0111908", "2JCXR0121M2X", "2DWXR0095A0L", "2GMXR0175922", "2SZXR0175PE0", "2SZXR0175PE0", "2TJXE0133917", "2FMXE0155BAF", "2GMXE0111911", "2FMXR0115BBE", "2MBXR0193LNZ", "2FMXR0155BBE", "2CRXE0101GDH", "2CRXR0101GBA", "2ADXR0170252", "2CRXE0174GEL", "2MBXE0155NNZ", "2CRXE0000CDH", "2CRXE0174GEL", "2SZXR0175PE0", "2GMXE0133917", "2GMXE0111908", "2FMXE0115BBE", "2GMXE0111911", "2GMXE0111911", "2GMXE0111908", "2HNXR0160AAA", "2NSXR0120RCA", "2GMXR0133910", "2GMXE0111911", "2CRXE0174GEL", "2TYXE0145AF0", "2FMXR0080BBE", "2VVXR0133AAA", "2CRXE0000CDH", "2FMXE0155BBH", "2FMXR0115FAE", "2VVXR0133AAA", "2FMXR0115BAE", "2FMXR0115BAE", "2NSXR0120RCB", "2TYXE0145AE0", "2GMXR0124919", "2GMXR0175922", "2VWXR0110234", "2GMXE0212924", "2MAXR0198138", "2FMXE0155BAG", "2FMXE0155BBH", "2FMXR0115FAE", "2CRXE0101GDH", "2GMXR0133910", "2DWXR0095A0L", "2GMXR0175922", "2CRXE0000CDH", "2GMXR0124919", "2BMXR0160E39", "2PRXR0110R96", "2GMXR0124919", "2JCXR0121M2X", "2CRXR0165GCA", "2GMXR0212923", "2GMXE0212924", "2VWXR0110234", "2TKXR0125PMC", "2CRXE0174GEL", "2DSXR0165A1F", "2VVXR0133C70", "2RRXR0200E96", "2GMXR0212923", "2TYXR0150AK1", "2BMXR0136E46", "2CRXE0174GEL", "2ADXR0140232", "2NLXR0203DBR", "2TYXR0075AK1", "2GMXE0133917", "2GMXE0133916", "2FMXR0230BBE", "2FMXR0155BBE", "2FMXE0155BBH", "2BMXR0136E46", "2VVXR0133AAA", "2FMXE0155BAG", "2TYXE0145AF0", "2MBXR0218LNZ", "2FMXR0160BBE", "2GMXR0175922", "2MBXE0187NNZ", "2FEXR0203C00", "2BMXR0136E46", "2VWXR0110234", "2GMXE0212924", "2CRXE0174GEL", "2GMXE0111908", "2FMXR0160FBE", "2GMXR0124919", "2FMXR0160FBE", "2CRXE0174GEL", "2GMXE0111917", "2GMXE0111909", "2GMXR0124919", "2TYXE0145AF0", "2CRXE0101GDH", "2FMXE0155BAG", "2GMXE0133916", "2GMXE0133917", "2FMXE0155BAG", "2HNXR0099AAH", "2VVXR0133C70", "2TYXE0145AF0", "2GMXR0133910", "2CRXE0000CDH", "2GMXE0111911", "2VVXR0133AAA", "2CRXE0174GEL", "2GMXE0111911", "2DWXR0095A0L", "2FMXE0155BAF", "2CRXE0174GEL", "2FMXR0155BBE", "2MBXR0155LNA", "2GMXR0124919", "2GMXR0212923", "2GMXE0111917", "2CRXE0101GDH", "2FMXR0160FBE", "2GMXE0133917", "2ADXR0130242", "2MMYR0124ML1", "2GMXE0111911", "2GMXE0111909", "2TYXE0145AF0", "2BMXR0160E39", "2DSXR0165A1F", "2GMXE0133915", "2GMXR0124919", "2GMXR0133910", "2GMXR0133910", "2CRXR0165GCA", "2GMXR0175922", "2BMXR0160E39", "2FMXE0115BBE", "2GMXE0111920", "2RAXR0110RGT", "2GMXE0133916", "2CRXR0165GCA", "2GMXR0080902", "2GMXE0111911", "2FMXR0080BBE", "2CRXR0130GBA", "2GMXR0133910", "2GMXR0080902", "2GMXE0133917", "2NSXR0110RCB", "2PRXR0110R96", "2CRXE0000CDH", "2HNXR0130AAF", "2PRXR0110R96", "2CRXE0174GEL", "2SZXE0095ME0", "2DWXR0095A0L", "2BMXR0160E39", "2GMXE0111920", "2SZXR0175PE0", "2GMXE0111908", "2CRXR0130GBA", "2GMXE0111911", "2BMXR0136E46", "2MBXR0218LNZ", "2GMXE0095904", "2GMXR0175922", "2GMXE0133916", "2GMXE0133917", "2TYXR0115AK1", "2ADXR0170252", "2CRXR0101GBA", "2JCXR0121M2X", "2GMXE0133916", "2GMXE0111911", "2FMXR0080BAE", "2GMXR0133910", "2GMXE0095904", "2SKXR0120164", "2CRXE0174GDL"], ["YGMXR0124919", "YMTXE0130A1A", "YGMXE0111909", "YCRXE0174G4H", "YGMXR0133918", "YFMXE0155FBE", "YGMXE0133916", "YFMXR0115BAE", "YFMXE0155BBH", "YGMXE0133914", "YSKXR0100RCA", "YCRXE0000CDH", "YCRXE0101GCS", "YGMXR0133910", "YFMXE0155BAE", "YFMXE0155FBE", "YFMXR0080BBE", "YFMXE0105BBE", "YCRXE0101GCS", "YGMXE0111911", "YFMXE0105BBE", "YG9XE0155BAG", "YCRXR0101G1C", "YCRXE0101GCA", "YGMXE0133916", "YGMXE0133917", "YFMXR0175BAE", "YHNXR0130AAA", "YGMXR0133910", "YGMXE0095904", "YFMXE0155BAE", "YFMXR0115BAE", "YGMXR0124919", "YTYXE0095AE0", "YCRXE0101GCC", "YGMXR0124919", "YSKXE00892JA", "YDWXR0095A0L", "YBMXR0136E46", "YFMXE0120BAE", "YGMXE0111906", "YVWXR0110234", "YGMXE0111911", "YGMXE0095905", "YFMXR0115BBE", "YP3XV010500A", "YCRXE0101GCS", "YGMXE0133916", "YHYXR0134PER", "YADXR0130242", "YGMXE0111911", "YTYXR00000W1", "YGMXR0124919", "YCRXE0101G2S", "YCRXE0000CDH", "YADXR0140233", "YFMXR0105BAE", "YSKXE00892JA", "YCRXE0174G4H", "YDWXR0095A0L", "YTKXR0125BFD", "YGMXR0133918", "YCRXE0174G6H", "YCRXR0133GBH", "YCRXE0174G5H", "YMBXE0153NNZ", "YFMXR0000ZYK", "YGMXE0111909", "YGMXE0095904", "YHYXR0134PER", "YCRXE0174GDH", "YCRXR0101GBE", "YHYXR0150PEE", "YCRXE0174GEH", "YMTXE0130A1A", "YTYXE0145AE0", "YGMXE0095904", "YSKXE00892JA", "YNSXR0085RCA", "YSKXR0085RMA", "YFMXR0115BAE", "YFMXE0155BBE", "YCRXE0101G2A", "YCRXE0174G5H", "YFMXE0105BBE", "YGMXE0095904", "YCRXE0174G6H", "YFMXR0115BAE", "YCRXR0101GBD", "YGMXR0124912", "YFMXE0155BAG", "YGMXE0111908", "YCRXE0174G5H", "YMBXE0153NNZ", "YGMXE0095904", "YVVXR0133X70", "YTYXE0145AE0", "YBMXR0136E46", "YTYXE0095AE0", "YGMXE0111911", "YTYXE0095AE1", "YTYXR0135AK1", "YCRXR0101GBC", "YFMXE0155BBH", "YFMXR0115BAE", "YGMXE0111911", "YCRXR0101GBA", "YHNXR0130AAA", "YGMXR0133910", "YFMXE0155FBE", "YVWXR0110234", "YCRXE0174G4H", "YGMXE0111911", "YHYXR0150PEE", "YFMXE0155FAE", "YCRXE0174GDH", "YFMXE0155BAG", "YGMXR0124919", "YHNXR0130AAA", "YGMXE0111908", "YCRXR0101G1C", "YMBXR0155LNZ", "YCRXR0101GBD", "YGMXR0124919", "YNSXR0110RCC", "YGMXE0111908", "YFMXR0105BAE", "YADXR0140232", "YFMXE0155BAF", "YCRXE0000CDH", "YGMXE0111906", "YG9XE0155BAG", "YCRXE0174G3H", "YCRXE0174G4H", "YTKXR0125BFB", "YGMXE0111911", "YGMXE0111908", "YGMXE0111911", "YJCXR0121M2X", "YSKXE00892JA", "YJCXR0160P2X", "YFMXE0155BBG", "YVVXR0133X48", "YCRXR0101G1C", "YCRXE0174G4H", "YFMXR0115BAE", "YCRXE0000CDH", "YGMXR0124912", "YGMXR0133910", "YNSXE0110MBA", "YGMXE0111920", "YGMXR0133918", "YFMXE0105BBE", "YTYXR0115AK1", "YGMXR0133918", "YCRXE0174G5H", "YNSXE0110MBA", "YGMXE0133913", "YTYXR0160AK1", "YGMXE0111908", "YGMXE0095904", "YLTXR0124OVR", "YGMXE0111908", "YDWXR0095A0L", "YCRXE0174G4H", "YSAXR0120YV1", "YFMXE0155BAG", "YTYXE0095AE0", "YBMXR0160E39", "YGMXE0111911", "YGMXE0133914", "YFMXE0155FBE", "YNSXE0110MBA", "YRRXR0200E96", "YSKXR0085RMA", "YCRXR0101G1D", "YGMXE0111909", "YSKXR0100RCA", "YGMXE0111909", "YNSXR0110RCB", "YCRXR0101GBD", "YGMXE0111909", "YHNXR0000CNG", "YCRXE0101GCA", "YTYXE0095AE0", "YGMXE0095904", "YCRXE0101XAA", "YGMXE0111911", "YGMXR0133910", "YCRXE0174G4H", "YGMXR0133910", "YGMXR0133910", "YFEXR0203C00", "YRRXR0200E96", "YFMXE0155BAG", "YADXR0140232", "YGMXR0080902", "YGMXR0124919", "YGMXE0111906", "YTYXR0135AK1", "YGMXR0133910", "YADXR0110234", "YTYXE0095AE0", "YCRXE0174GEH", "YMBXR0155MNZ", "YCRXR0101G1D", "YGMXE0111906", "YGMXR0133910", "YHNXR0099AAD", "YGMXE0133913", "YCRXE0101GDH", "YCRXE0174G5H", "YGMXR0124919", "YSKXE00892JA", "YCRXE0101GCA", "YCRXE0174G5H", "YJCXR0121M2X", "YCRXR0101GBE", "YFMXR0000ZYK", "YSZXT0095ME0", "YGMXR0133910", "YCRXR0101G1C", "YGMXE0095905", "YDWXR0095A0L", "YGMXE0095904", "YCRXE0101GCA", "YTYXR0075AK1", "YSKXR0085RMA", "YCRXE0101G2H", "YCRXR0101GBB", "YNSXR0085RCA", "YTKXE0125BFA", "YFMXE0120BAE", "YGMXR0124919", "YFMXE0105BBE", "YSKXE00892JA", "YCRXE0174GEH", "YCRXE0174G4H", "YFJXR01251CC", "YNSXR0110RCA", "YRRXR0200E96", "YCRXE0101G3H", "YSKXE00892JA", "YGMXR0133918", "YSKXE00892JA", "YMBXR0155LNZ", "YCRXR0101G1C", "YGMXE0111908", "YHNXE0080AAB", "YSKXE00892JA", "YGMXE0095904", "YTYXE0095AE0", "YGMXE0111908", "YFMXE0155BBG", "YFMXE0155BAF", "YGMXR0124919", "YADXR0140232", "YSKXE00892JA", "YCRXR0101G1A", "YGMXR0133910", "YFMXR0115BAE", "YJCXR0121M2X", "YFMXR0000ZYK", "YGMXR0133910", "YCRXR0101G1A", "YCRXE0174G3H", "YTYXE0095AE0", "YFMXR0115BBE", "YCRXE0000CDH", "YVVXR0133X48", "YGMXR0133910", "YBMXR0160E39", "YCRXR0101G1A", "YFMXR0115BAE", "YGMXR0133910", "YSZXT0095ME0", "YFMXE0155BBH", "YRRXR0200E96", "YFMXE0155BAF", "YVWXR0110234", "YADXR0140233", "YGMXE0133916", "YGMXR0133910", "YFMXE0155BAG", "YDSXR016511A", "YG9XE0155BAG", "YCRXR0101G1C", "YFMXE0155BAG", "YGMXE0095904", "YGMXE0111911", "YGMXE0133916", "YGMXE0095904", "YFMXE0155BAF", "YGMXE0095905", "YCRXE0101G2A", "YFMXE0155BAG", "YTYXE0095AE0", "YGMXE0095905", "YFMXE0105BBE", "YCRXE0101G2H", "YFMXE0155BAG", "YCRXE0101G3H", "YMBXR0115MYZ", "YGMXE0111909", "YCRXR0101G1C", "YADXR0110234", "YFMXE0105BBE", "YJCXR0160P2X", "YGMXE0111909", "YFMXE0155BAG", "YDWXR0095A0L", "YBMXR0136E46", "YGMXE0111911", "YHYXR0105PEL", "YCRXR0101G1A", "YJCXR0121M2X", "YMBXE0153NNZ", "YNSXE0110MBA", "YDSXR016511A", "YFMXE0120BAE", "YCRXR0101GBC", "YFMXE0155BAG", "YCRXR0101G1A", "YHNXR0000CNG", "YGMXR0124912", "YGMXE0095904", "YSZXT0095PE0", "YFMXR0080BAE", "YBMXR0136E46", "YCRXE0101G2A", "YMBXR0155MNZ", "YGMXR0124919", "YFMXE0105BBE", "YGMXE0133916", "YGMXE0111909", "YFMXR0115BBE", "YCRXR0101G1B", "YFMXE0155BBE", "YCRXR0101G1C", "YTYXR0135AK1", "YFMXE0105BBE", "YGMXE0111911", "YGMXR0124912", "YFMXE0155BAG", "YFMXE0155FBE", "YBMXR0136E46", "YCRXE0174G5H", "YGMXE0111911", "YADXR0130242", "YGMXE0111920", "YBMXR0160E39", "YGMXE0095905", "YGMXR0124912", "YFMXR0105BAE", "YBMXR0136E46", "YGMXE0095904", "YTYXE0095AE0", "YDSXR016511A", "YCRXE0174G4H", "YSKXE00892JA", "YVWXE0105233", "YGMXE0133916", "YSZXT0095PE0", "YCRXE0101GCA", "YMBXR0155LYZ", "YTYXE0095AE1", "YGMXE0111908", "YHNXR0099AAD", "YSKXE00892JA", "YCRXE0174GEH", "YCRXE0174G6H", "YGMXE0111911", "YGMXE0095905", "YFMXE0155BAF", "YGMXE0111908", "YCRXE0174G6H", "YGMXE0111906", "YGMXE0095904", "YADXR0140232", "YSKXR0100RCA", "YE4XE0190ALW", "YNSXE0110MBA", "YGMXE0133916", "YGMXR0124919", "YHNXR0099AAD", "YGMXE0095904", "YGMXE0111909", "YHNXR0130AAA", "YCRXR0101GBC", "YFMXR0115BAE", "YGMXR0133918", "YHNXR0099AAD", "YCRXR0133GBH", "YGMXE0111908", "YGMXR0133910", "YCRXE0101GCA", "YCRXR0101G1C", "YGMXE0111909", "YVVXR0133X70", "YGMXE0133916", "YCRXE0101G2S", "YFMXR0080BBE", "YCRXE0174G3H", "YTYXE0095AE0", "YCRXE0101GCH", "YDWXR0095A0L", "YDWXR0095A0L", "YFMXR0115BAE", "YADXR0130242", "YGMXR0133910", "YCRXR0101G1A", "YGMXR0133918", "YGMXE0111908", "YFMXE0155BAG", "YCRXR0101G1A", "YFMXE0105BBE", "YLRXE0124001", "YGMXE0111911", "YFMXE0105BBE", "YGMXE0111911", "YGMXE0111908", "YTYXR0135AK1", "YGMXE0111906", "YCRXE0101G2S", "YGMXR0124912", "YFMXE0155BAG", "YCRXR0101GBD", "YSAXR0120YV1", "YBMXR0160E39", "YNSXR0085RCB", "YGMXR0080902", "YFMXE0155BAF", "YGMXE0111908", "YPRXR0110R96", "YHNXR0130AAA", "YFJXR01251BB", "YMBXR0155MNZ", "YGMXE0095904", "YFMXE0155BBH", "YFMXR0115BAE", "YCRXR0101GBC", "YGMXE0111909", "YFMXE0155BBH", "YCRXE0000CDH", "YDWXR0095A0L", "YFMXR0080BAE", "YADXR0140233", "YGMXR0124919", "YFMXE0105BBE", "YCRXE0101GCA", "YGMXR0133910", "YFMXE0120BAE", "YFMXE0155BAG", "YCRXE0174GEH", "YSAXR0120YV1", "YNSXE0110MBA", "YTKXR0125BFB", "YTYXE0145AF0", "YFMXE0155BAF", "YGMXE0111908", "YCRXE0101GCC", "YHNXR0130AAA", "YFMXE0155BAG", "YFMXR0115BAE", "YHNXR0099AAD", "YGMXE0111906", "YTYXR0135AK1", "YCRXE0174G5H", "YCRXR0101G1C", "YHNXR0160AAZ", "YCRXE0174G4H", "YMTXE0130A1A", "YGMXR0080902", "YJCXR0121M2X", "YGMXR0124912", "YBMXR0160E38", "YMTXE0130A1A", "YFMXE0155FBE", "YFMXE0155BBH", "YGMXE0095904", "YCRXE0174GDH", "YHNXR0099AAD", "YGMXE0095904", "YCRXE0174GEH", "YBMXR0136E46", "YGMXE0111911", "YCRXE0174GEH", "YMBXR0155LNZ", "YGMXR0124919", "YGMXR0133910", "YCRXE0174G6H", "YFMXE0155BAG", "YASXR0284DB7", "YGMXR0124912", "YCRXR0101GBA", "YSAXR0120YV1", "YFMXR0115BAE", "YHNXR0130AAA", "YADXR0140233", "YFMXE0155BBH"], ["1FMXE0155BBH", "1HNXR0099AAH", "1VWXR0140233", "1GMXE0111911", "1FMXR0155BBE", "1NSXR0120RCA", "1TYXR0150AK1", "1GMXR0212923", "1NSXR0120RCA", "1FMXE0120BAE", "1SZXE0095ME0", "1GMXR0124919", "1GMXR0133910", "1HNXR0099AAH", "1FMXE0155BAF", "1MBXR0155MNA", "1TJXR0124919", "1MBXR0233LNZ", "1GMXE0133917", "1GMXE0111920", "1CRXR0101GBD", "1ADXR0130242", "1CRXR0165GCA", "1JCXR0121M2X", "1FMXE0155BAF", "1GMXE0133916", "1FMXE0155BAG", "1LTXR0124OVR", "1GMXR0133910", "1PRXR0110R96", "1HYXR0134PEX", "1HYXR0175PES", "1HNXR0099AAK", "1BMXR0136E46", "1CRXR0101GBD", "1BMXR0160E39", "1GMXE0111911", "1CRXE0174GEL", "1GMXE0133916", "1FMXE0155BAF", "1HYXR0150PEE", "1GMXR0080902", "1MTXR0175A1A", "1FMXR0230BBE", "1CRXR0165GCA", "1CRXR0101GBD", "1FMXE0155BBG", "1GMXE0111911", "1TYXE0145AF0", "1SKXR0120164", "1CRXE0174G6L", "1ADXR0110234", "1MTXE0200A1A", "1MBXR0155LNZ", "1GMXR0124919", "1FMXE0155BAG", "1BMXR0136E46", "1CRXE0174G5L", "1FMXE0120BAE", "1CRXR0133GBH", "1MBXR0155MNZ", "1FMXE0155BAG", "1MBXR0155LNZ", "1FMXE0155BAF", "1CRXE0000CDH", "1VWXR0110234", "1VVXR0133AAA", "1ADXR0140232", "1CRXE0101GCS", "1FMXR0080BBE", "1TYXR0115AK1", "1FMXE0155BBH", "1CRXR0101GBD", "1GMXE0133916", "1GMXE0111911", "1GMXR0175922", "1CRXE0101GDH", "1VWXR0110234", "1CRXE0174G5L", "1TYXE0145AF0", "1FMXE0155BAF", "1FMXR0155BBE", "1TKXR0125PMA", "1TJXE0111909", "1CRXR0165XAA", "1GMXE0133916", "1CRXE0174G6L", "1FMXE0115BBE", "1FMXE0105BBE", "1GMXE0111917", "1CRXE0174GEL", "1MBXR0155MYZ", "1GMXE0133917", "1TYXR0135AK1", "1CRXE0101GDH", "1G9XE0155BAG", "1FMXR0155BBE", "1CRXE0101GDH", "1GMXE0133916", "1TYXE0145AE0", "1GMXE0111917", "1CRXR0101GBD", "1CRXE0174GEL", "1TYXR0150AK1", "1ADXR0140232", "1GMXE0111908", "1TYXR0115AK1", "1GMXE0133917", "1GMXE0111911", "1FMXR0080BBE", "1FMXE0155BAG", "1TYXR0115AK1", "1GMXE0111908", "1GMXE0133916", "1CRXE0174G6L", "1CRXE0101GDH", "1GMXE0133917", "1TYXR0150AK1", "1CRXE0101GCS", "1HNXR0152AAC", "1FMXE0155BAG", "1CRXE0174G6L", "1CRXR0133GBH", "1FMXE0155BAH", "1FMXE0155BBG", "1FMXE0120BAE", "1BMXR0136E46", "1ADXR0170252", "1TYXR0150AK1", "1TYXE0145AF0", "1SKXR0120164", "1ADXR0140233", "1ADXR0140232", "1BMXR0136E46", "1GMXE0095904", "1FMXR0000ZYK", "1GMXE0133917", "1GMXE0133916", "1CRXR0165GCA", "1GMXE0212924", "1GMXE0111908", "1GMXE0095904", "1GMXE0111908", "1FMXE0120BAE", "1FMXE0155BAE", "1GMXR0133910", "1FMXE0155BAG", "1CRXE0174GEL", "1CRXR0165GCA", "1PRXR0110R96", "1CRXE0174G6L", "1VVXR0133AAA", "1FMXR0115FAE", "1CRXE0101GDH", "1BMXR0136E46", "1GMXR0124919", "1MBXR0155MNZ", "1FMXE0105BBE", "1FMXE0155BBH", "1FMXR0155BBE", "1FMXE0115BBE", "1MBXR0155LNZ", "1FMXE0155BAF", "1CRXR0101GBD", "1RIIR0105BAE", "1CRXE0174G5L", "1TYXR0150AK1", "1GMXR0124919", "1G9XE0155BAG", "1FMXR0155BBE", "1CRXE0174GEL", "1ADXR0110234", "1CRXE0174G6L", "1MTXR0140A1A", "1BMXR0136E46", "1G9XE0155BAG", "1FMXE0120BAE", "1FMXR0160BBE", "1ADXR0130242", "1DWXR0095A0L", "1TYXR00000W1", "1GMXE0111908", "1FMXE0115BBE", "1GMXR0212923", "1KMXR0150D01", "1BMXR0136E46", "1NSXR0085RCA", "1BMXR0160E39", "1SZXR0175PE0", "1FMXE0120BAE", "1BMXR0136E46", "1FMXR0155BBE", "1BMXR0160E39", "1FMXE0120BAE", "1GMXE0095904", "1SKXR0120164", "1MTXR0175A1A", "1FMXE0155BBG", "1GMXR0175922", "1ADXR0140232", "1CRXE0174GEL", "1GMXE0111911", "1GMXE0111908", "1CRXE0174GEL", "1GMXR0175922", "1SZXR0175PE0", "1KMXE0105B04", "1CRXE0174GEL", "1GMXR0175922", "1CRXE0174GEL", "1TYXE0095AE0", "1FEXR0203C00", "1FMXE0120BAE", "1ADXR0110234", "1FMXE0120BAE", "1FMXE0155BAG", "1HNXR0083AAE", "1CRXE0174GEL", "1GMXE0111917", "1NSXR0110RCC", "1BMXR0160E39", "1GMXR0133910", "1FMXE0155FBE", "1CRXE0101GCH", "1TKXR0125PMA", "1KMXE0105B04", "1FMXE0120BAE", "1FMXR0115FAE", "1VWXR0110234", "1GMXE0133917", "1HNXR0130AAF", "1HNXR0130AAF", "1TYXR0135AK1", "1CRXE0101GDH", "1TYXR0135AK1", "1FMXR0000ZYK", "1GMXE0111917", "1HNXR0083AAE", "1CRXE0174GDL", "1DWXR0095A0L", "1TKXR0115PPB", "1GMXE0133917", "1FMXE0155BAE", "1FMXE0155BAG", "1GMXE0111917", "1FJXR01251CC", "1FMXR0230BBE", "1JCXR0160P2X", "1SZXE0095PE0", "1SKXE0089S56", "1GMXE0111911", "1TKXR0125PMA", "1NSXR0110RCB", "1SKXE0089S56", "1GMXE0133916", "1CRXE0101GDH", "1BMXR0136E46", "1HNXR0160AAA", "1FMXR0160BBE", "1SKXR0085W39", "1DSXR0165A1F", "1TYXR0160AK1", "1HNXR0099AAK", "1NSXR0110RCC", "1MBXR0155LNZ", "1GMXE0111911", "1FMXE0155BAG", "1NSXE0110MBA", "1GMXE0133916", "1FMXR0115BAE", "1GMXE0111911", "1GMXE0111909", "1CRXR0165GCA", "1DWXR0095A0L", "1GMXR0212923", "1RRXR0200E96", "1CRXE0174GEL", "1VVXR0133AAA", "1FMXR0155BBE", "1JCXR0121M2X", "1CRXE0174GDL", "1GMXR0080902", "1GMXR0124919", "1ADXR0140232", "1FMXE0155BAE", "1CRXE0174G6L", "1BMXR0160E39", "1MBXR0155MNZ", "1GMXR0212923", "1GMXE0111911", "1FMXE0155BBF", "1GMXE0111911", "1CRXE0174GEL", "1FMXR0230BBE", "1CRXE0174GDL", "1VWXR0110234", "1BMXR0136E46", "1GMXE0133917", "1FMXR0000ZYK", "1MTXR0175A1A", "1CRXE0000CDH", "1FMXE0105BBE", "1FMXR0155BBE", "1GMXR0175922", "1GMXR0133910", "1KMXR0100C01", "1HNXR0130AAF", "1GMXR0133910", "1GMXE0133917", "1GMXE0095904", "1GMXR0133910", "1CRXE0174GDL", "1GMXE0133917", "1CRXE0174G5L", "1RRXR0200E96", "1VVXR0133C70", "1G9XE0155BAG", "1TYXR0135AK1", "1FMXE0155BAG", "1GMXR0133910", "1FMXE0155BAG", "1ADXR0170252", "1ADXR0130242", "1CRXE0174G6L", "1GMXR0175922", "1JCXR0121M2X", "1FMXE0155BAG", "1BMXR0136E46", "1GMXR0133910", "1FMXE0155BAG", "1GMXE0111909", "1GMXR0124919", "1TYXR0135AK1", "1ADXR0140232", "1GMXE0111917", "1GMXR0133910", "1BMXR0136E46", "1CRXE0174G5L", "1GMXR0212923", "1CRXE0174GDL", "1JCXR0160P2X", "1NSXR0120RCA", "1FMXE0155BBG", "1GMXE0111920", "1CRXR0101GBD", "1FMXE0155BBG", "1GMXE0133916", "1FMXR0155BBE", "1GMXE0095904", "1GMXE0111911", "1CRXE0101GCS", "1CRXR0165GCA", "1GMXE0212924", "1FMXR0115FAE", "1FMXR0155BBE", "1GMXR0133910", "1ADXR0140233", "1HNXR0160AAA", "1GMXR0124919", "1TKXR0150PPA", "1FMXR0115BAE", "1GMXE0111909", "1GMXE0133917", "1NLXR0203DBR", "1CRXE0101GCH", "1NSXR0085RCB", "1FMXE0155BAG", "1GMXR0133910", "1GMXR0124919", "1TYXE0190AF0", "1PRXR0110R96", "1TYXE0190AF0", "1FMXR0155BBE", "1CRXE0174GEL", "1TYXR0150AK1", "1CRXE0174G6L", "1GMXR0124919", "1MBXR0155MNA", "1VWXR0110234", "1CRXR0155GCH", "1CRXE0174GEL", "1CRXR0101GBD", "1CRXE0174G5L", "1CRXE0174GEL", "1BMXR0136E46", "1ADXR0130242", "1TYXR0135AK1", "1GMXE0111920", "1NSXE0110MBA", "1FMXE0110MBA", "1FMXE0155FBE", "1CRXE0101GCH", "1CRXR0101GBD", "1VWXR0110234", "1GMXR0124919", "1G9XE0155BAG", "1JCXR0121M2X", "1BMXR0160E39", "1GMXE0133917", "1CRXE0174G5L", "1NSXR0110RCE", "1GMXR0212923", "1FMXR0115BAE", "1MBXE0153NNZ", "1ADXR0110234", "1TJXE0111909", "1CRXE0174G6L", "1GMXE0133916", "1WBXR0140233", "1MBXR0155MNZ", "1GMXR0212923", "1CRXR0101GBD", "1MBXE0153NNZ", "1NSXE0110MBA", "1CRXR0101GBD", "1CRXR0101GBD", "1BMXR0136E46", "1GMXE0133916", "1SKXR0120164", "1CRXE0101GCS", "1GMXE0111909", "1CRXE0101GDH", "1GMXE0111917", "1FMXE0155BBH", "1FMXE0120BAE", "1HNXR0099AAH", "1GMXR0124919", "1GMXR0133910", "1GMXE0133916", "1PRXR0110R96", "1GMXR0124919", "1GMXE0111908", "1FMXR0175BAE", "1FMXR0155BBE", "1GMXE0111908", "1GMXR0212923", "1CRXE0174GEL", "1GMXE0111908", "1VWXR0110234", "1ADXR0170252", "1GMXR0133910", "1ADXR0130242", "1RAXR0110RGT", "1BMXR0136E46", "1CRXE0101GDH", "1ADXR0110234", "1BMXR0136E46", "1CRXR0101GBD", "1FMXE0115BBE", "1TYXR0115AK1", "1NSXR0110RCE", "1MBXR0233LNZ", "1VWXR0110234", "1RRXR0200E96", "1FMXE0155BAF", "1CRXE0174GEL", "1GMXE0111920", "1CRXE0101GCS", "1CRXE0174GDL", "1GMXE0111917", "1TYXE0145AF0", "1CRXE0174GEL", "1JCXR0121M2X", "1FMXE0155BAG", "1GMXR0133910", "1MBXR0233LNZ", "1NSXR0120RCA", "1NSXE0110MBA", "1GMXE0111911", "1E4XE0190LES", "1CRXR0101GBD", "1CRXE0174G6L", "1WBXR0140233", "1FMXR0080BBE", "1FMXE0155BAG", "1MBXR0155MNZ", "1TYXE0095AE0", "1CRXE0174G5L", "1FMXR0230BBE", "1CRXE0174GDL", "1HNXR0130AAF", "1GMXR0212923", "1GMXE0111911", "1RRXR0200E96", "1GMXE0133917", "1TYXE0095AE0", "1FJXR01251CC", "1DWXR0095A0L", "1BMXR0136E46", "1FMXE0155BBF", "1GMXR0175922", "1GMXR0133910", "1SKXR0120164", "1SZXE0095PE0", "1FMXR0155BBE", "1CRXE0174GEL", "1TYXE0145AF0", "1ADXR0140232", "1ADXR0140232", "1PRXR0110R96"], ["Addo", "WHO infobase", "Giday", "Ngoungou", "Doulougou", "Njelekela", "Agyemang", "Tesfaye", "Nwachukwu", "Adedoyin", "Nshisso", "Ulasi", "Bovet", "Hendriks", "Doulougou", "WHO infobase", "Pires", "WHO infobase", "Helelo", "Makusidi", "Peltzer", "Agyemang", "Addo", "Fezeu", "Wright", "Ngoungou", "Fezeu", "Agyemang", "Niakara", "Mathenge", "Dzudie", "Katte", "Ulasi", "Balde", "Hightower", "Katchunga", "WHO infobase", "Balde", "Kotwani", "Wamala", "Hightower", "Katchunga", "WHO infobase", "Simao", "Adedoyin", "Fezeu", "Andy", "Agyemang", "Mathenge", "Ejim", "Damasceno", "WHO infobase", "de Ramirez", "Ahaneku", "Bovet", "Sodjinou", "Agyemang", "WHO infobase", "Mondo", "Balde", "Smith", "Ulasi", "Sodjinou", "Murthy", "WHO infobase", "Tesfaye", "de Ramirez", "Ofuya", "Balde", "Giday", "Helelo", "de Ramirez", "Hightower", "Burket", "Isezuo", "Ofuya", "Maseko", "Katte", "Fezeu", "Damasceno", "Unwin", "de Ramirez", "Onwubere", "Msyamboza", "Maseko", "Cappuccio", "Ahaneku", "Pessinaba", "Oboh", "Longo-Mbenza", "Oladapo", "Kotwani", "Pires", "Oladimeji", "Kunutsor", "Nwachukwu", "Addo", "Bovet", "Balogun", "Nkondjock", "Kunutsor", "Sodjinou", "Dzudie", "Nshisso", "Hightower", "Kotwani", "Murthy", "Andy", "Oghagbon", "Cappuccio", "Pessinaba", "Tadesse", "Ejim", "Agyemang", "Hendriks", "Hightower", "Ulasi", "Tesfaye", "Hightower", "Wamala", "Balla", "Longo-Mbenza", "Ofuya", "Tesfaye", "Oladapo", "Mondo", "Msyamboza", "Hightower", "Onwuchekwa", "Ejim", "de Ramirez", "Andy", "Msyamboza", "Unwin", "Omuemu", "Tesfaye", "Ulasi", "Helelo", "Oghagbon", "Njelekela", "Cappuccio", "Onwubere", "Agyemang", "Awad", "WHO infobase", "Onwubere", "Balde", "Mathenge", "Doulougou", "Hightower", "Damasceno", "Balde", "Isezuo", "Isezuo", "de Ramirez", "Pessinaba", "Murthy", "Hightower", "Damasceno", "Adedoyin", "Cappuccio", "Nshisso", "WHO infobase", "Malhotra", "Awad", "Dzudie", "Li", "Joshi", "Msyamboza", "Kunutsor", "Msyamboza", "Thorogood", "Agyemang", "Kengne", "Onwuchekwa", "Anyanwu", "Wamala", "Peltzer", "Malhotra", "WHO infobase", "WHO infobase", "Longo-Mbenza", "Smith", "Hendriks", "Nwachukwu", "de Ramirez", "Duboz", "Malhotra", "Katchunga", "WHO infobase", "WHO infobase", "WHO infobase", "Ahaneku", "WHO infobase", "Mayega", "Pires", "Murthy", "Njelekela", "Damasceno", "WHO infobase", "WHO infobase", "Ulasi", "Cappuccio", "Murthy", "Damasceno", "de Ramirez", "Thorogood", "Oladapo", "Hendriks", "WHO infobase", "Bayauli", "Mayega", "WHO infobase", "Longo-Mbenza", "Balde", "Mondo", "Damasceno", "Ngoungou", "Katte", "de Ramirez", "Peltzer", "WHO infobase", "Ike", "Mayega", "Agyemang", "Oghagbon", "Onwuchekwa", "Giday"], ["1.88752532", "2.23266077", "4.169925213", "0.925999403", "2.536052942", "1.584962487", "1.84799695", "1.201633811", "0.378511637", "-0.736965597", "4.632268429", "4.738767624", "0.378511637", "3.053111315", "1.84799695", "2.40599227", "1.201633811", "2.944858551", "0.925999403", "2.944858551", "1.84799695", "1.84799695", "-0.321928084", "-2.321928024", "0.13750352", "1.84799695", "0.678071916", "-0.152003095", "1.584962487", "2.321928024", "3.137503624", "1.88752532", "4.20163393", "0.378511637", "-1", "4.177917957", "4.177917957", "3.88752532", "3.523561954", "4.177917957", "1.84799695", "2.827819109", "1.88752532", "4.20163393", "2.765534639", "2.84799695", "1.070389271", "2.827819109", "0.378511637", "1.84799695", "1.678071856", "1.925999403", "1.88752532", "3.153805256", "-0.736965597", "2.655351877", "1.584962487", "1", "1.807354927", "2.137503624", "0.485426813", "2.744161129", "0.13750352", "1.378511667", "1.88752532", "-0.152003095", "0.765534759", "3.711494923", "1.536052942", "4.399170876", "1.263034463", "1.88752532", "4.169925213", "4.129282951", "1.84799695", "1.84799695", "1.84799695", "1.201633811", "0.13750352", "1.84799695", "1.84799695", "-0.514573157", "4.169925213", "0.485426813", "1.84799695", "-0.321928084", "2.678071976", "2.944858551", "3.20163393", "1.88752532", "1.485426784", "1.584962487", "0.925999403", "2.678071976", "4.129282951", "1.88752532", "0.925999403", "1.84799695", "0", "0.263034403", "0.485426813", "1.88752532", "1.137503505", "1.584962487", "1.807354927", "1.722465992", "1.84799695", "1.201633811", "2.169924974", "-0.152003095", "2.23266077", "2.944858551", "1.722465992", "3.392317533", "2.263034344", "1.201633811", "0", "0.847996891", "0.485426813", "1.88752532", "4.121015549", "4.169925213", "1.925999403", "1.84799695", "1.84799695", "0.584962487", "1.201633811", "2.608809233", "1.807354927", "2.584962606", "1.963474154", "4.632268429", "1.84799695", "1.88752532", "2.867896557", "1.88752532", "0", "2.608809233", "1.84799695", "2.678071976", "1.88752532", "3.23266077", "1.137503505", "2.432959318", "0.13750352", "1.584962487", "3.40599227", "1.84799695", "1.88752532", "2.84799695", "1.137503505", "1.84799695", "1.070389271", "2.536052942", "1.584962487", "1.485426784", "-0.736965597", "2.23266077", "1.84799695", "4.129282951", "-0.514573157", "-2.321928024", "0.925999403", "2.56071496", "2.070389271", "4.145677567", "1.201633811", "0.584962487", "4.529820919", "1.201633811", "3.678071976", "2.906890631", "0.925999403", "1.722465992", "2.29278183", "4.177917957", "3.017921925", "0", "2.608809233", "1.201633811", "0.378511637", "0", "1.070389271", "2.510962009", "3.419538975", "3.070389271", "4.169925213", "2.40599227", "1.84799695", "2.84799695", "1.925999403", "1.84799695", "3.153805256", "1.678071856", "4.145677567", "2.432959318", "1.722465992", "2.035624027", "0", "1.925999403", "0.678071916", "3.608809233", "1.88752532", "0.925999403", "1.201633811", "0.584962487", "3.446256161", "1.88752532", "1.84799695", "-2.321928024", "0.378511637", "0.765534759", "4.095924377", "-1", "1.88752532", "-0.321928084", "0", "2.584962606", "1.84799695", "3.689299107", "2.678071976", "4.632268429", "2.035624027", "0.925999403", "3.419538975", "1.84799695", "1.722465992", "2.807354927", "0.765534759", "3.711494923", "0.765534759"], ["HoggPass200", "McK3and5305", "McK3and5100", "HoggPass800", "McK3and5900", "McK15390", "HoggPass100", "McK15900", "HoggPass600", "HoggPass100", "HoggPass105", "McK3and5900", "McK15800", "MFW3and5300", "HoggPass1000", "HoggPass200", "HoggPass800", "McK15800", "MFW3and50", "HoggPass0", "McK3and5700", "HoggPass95", "HoggPass600", "HoggPass400", "McK3and5415", "HoggPass500", "HoggPass900", "McK15900", "HoggPass400", "McK3and50", "HoggPass100", "McK3and5900", "MFW3and5600", "McK3and5600", "McK15300", "HoggPass700", "HoggPass300", "McK3and5100", "McK15200", "HoggPass0", "McK3and5600", "MFW3and5700", "McK3and5McK3", "McK15100", "McK3and5400", "HoggPass500", "HoggPass0", "HoggPass600", "McK15600", "MFW3and5600", "HoggPass600", "HoggPass900", "HoggPass900", "HoggPass900", "HoggPass200", "HoggPass100", "HoggPass300", "HoggPass500", "HoggPass300", "McK150", "MFW3and5900", "McK15900", "McK15900", "McK3and5695", "McK3and5900", "HoggPass510", "McK150", "McK3and5700", "McK3and5800", "HoggPass300", "HoggPass800", "HoggPass620", "HoggPass600", "HoggPass200", "HoggPass400", "HoggPass400", "McK150", "McK3and5800", "MFW3and50", "McK3and5700", "McK3and5500", "McK15700", "HoggPass400", "McK150", "HoggPass500", "McK3and5400", "HoggPass300", "HoggPass800", "HoggPass900", "McK3and5500", "HoggPass800", "HoggPass450", "McK3and5600", "McK3and5600", "HoggPass600", "MFW3and5200", "HoggPass700", "HoggPass95", "McK3and5800", "HoggPass600", "McK3and50", "HoggPass300", "McK3and5500", "McK15500", "McK3and5200", "HoggPass700", "McK15500", "MFW3and5265", "McK3and5500", "HoggPass200", "HoggPass200", "McK15900", "HoggPass100", "MFW3and5800", "HoggPass500", "HoggPass200", "McK15800", "McK3and5800", "HoggPass700", "HoggPass500", "HoggPass680", "McK3and5400", "McK15390", "HoggPass300", "MFW3and5900", "HoggPass0", "HoggPass515", "McK3and50", "MFW3and5900", "HoggPass100", "McK3and5100", "HoggPass800", "McK3and5500", "McK3and5200", "McK15500", "McK3and5500", "McK150", "HoggPass200", "McK15600", "McK3and5600", "MFW3and5700", "MFW3and5300", "HoggPass900", "HoggPass0", "MFW3and5500", "McK3and5390", "HoggPass850", "McK15100", "HoggPass100", "HoggPass400", "McK3and5300", "McK15900", "HoggPass200", "HoggPass400", "McK3and5300", "HoggPass200", "HoggPass900", "HoggPass0", "McK15600", "McK3and5500", "McK3and5100", "McK3and5300", "McK3and5595", "HoggPass800", "HoggPass0", "McK3and5290", "HoggPass700", "HoggPass200", "HoggPass0", "HoggPass600", "HoggPass400", "McK3and5100", "MFW3and5370", "HoggPass390", "MFW3and5105", "HoggPass0", "McK3and5200", "McK3and5700", "HoggPass700", "HoggPass900", "McK3and5195", "HoggPass535", "McK3and5900", "McK15100", "McK15305", "McK3and5300", "MFW3and5270", "HoggPass500", "McK15200", "McK3and5200", "HoggPass800", "McK3and5McK3", "HoggPass200", "McK3and5800", "HoggPass700", "McK3and5100", "HoggPass300", "HoggPass100", "HoggPass300", "HoggPass900", "McK15700", "McK3and5200", "MFW3and5475", "McK3and5500", "McK3and5380", "McK3and5300", "MFW3and50", "MFW3and5400", "HoggPass700", "McK3and5600", "McK15700", "HoggPass600", "HoggPass0", "McK3and5800", "HoggPass600", "McK3and5800", "McK3and5400", "McK3and5695", "HoggPass800", "MFW3and5800", "McK15200", "MFW3and5500", "HoggPass300", "McK3and5200", "MFW3and5200", "McK3and5300", "HoggPass800", "MFW3and5305", "HoggPass300", "McK15900", "HoggPass100", "HoggPass900", "HoggPass800", "HoggPass400", "McK15800", "HoggPass700", "HoggPass500", "McK3and5200", "McK150", "HoggPass100", "McK15200", "McK15300", "MFW3and5800", "HoggPass600", "HoggPass400", "HoggPass300", "HoggPass900", "HoggPass650", "HoggPass600", "McK15615", "McK3and5900", "HoggPass800", "HoggPass300", "McK3and5900", "HoggPass405", "HoggPass0", "McK15300", "McK3and5600", "HoggPass200", "McK15700", "HoggPass200", "McK3and5805", "McK3and5900", "McK3and5300", "McK15200", "McK3and5900", "HoggPass620", "HoggPass400", "McK3and5400", "HoggPass610", "McK3and5McK5", "McK3and5700", "McK3and5300", "MFW3and5500", "McK15700", "McK3and5300", "McK3and5600", "MFW3and5900", "McK15300", "HoggPass500", "McK3and5700", "HoggPass300", "HoggPass900", "HoggPass300", "HoggPass600", "HoggPass400", "McK3and50", "HoggPass900", "HoggPass800", "McK3and5500", "McK3and5700", "HoggPass100", "HoggPass300", "McK15515", "McK15100", "McK3and5600", "McK15700", "McK3and5200", "McK3and5800", "HoggPass800", "HoggPass915", "HoggPass100", "HoggPass800", "McK3and50", "McK3and5400", "McK3and5800", "HoggPass200", "MFW3and5900", "McK3and5400", "McK3and5400", "McK3and5800", "McK15800", "McK3and5400", "McK3and5700", "McK3and5500", "McK15300", "McK15500", "McK15500", "HoggPass0", "MFW3and5100", "HoggPass0", "HoggPass100", "HoggPass500", "MFW3and5100", "HoggPass100", "McK3and5900", "HoggPass800", "McK3and5500", "HoggPass200", "HoggPass100", "McK3and5800", "McK3and5900", "McK3and5500", "HoggPass600", "HoggPass300", "McK3and5500", "HoggPass500", "MFW3and5600", "HoggPass400", "HoggPass0", "HoggPass795", "McK3and5800", "McK3and50", "HoggPass105", "McK3and5200", "McK3and5300", "McK3and5100", "McK15600", "McK3and5300", "HoggPass700", "MFW3and5400", "McK15500", "McK15600", "HoggPass200", "McK3and5300", "McK15805", "McK3and5300", "McK15900", "MFW3and50", "HoggPass600", "McK3and5700", "McK3and5500", "HoggPass400", "MFW3and5100", "MFW3and5900", "McK15700", "McK3and5800", "McK3and5200", "HoggPass0", "HoggPass500", "HoggPass300", "McK15415", "MFW3and5600", "McK3and5800", "HoggPass200", "HoggPass100", "HoggPass100", "HoggPass200", "HoggPass95", "HoggPass0", "HoggPass800", "McK3and5300", "HoggPass400", "McK3and5900", "MFW3and5900", "HoggPass600", "McK3and5340", "McK3and5400", "HoggPass500", "HoggPass400", "McK15300", "McK3and5800", "McK3and5900", "McK3and5600", "McK3and5400", "McK3and5200", "McK3and5700", "McK3and5600", "HoggPass400", "McK3and5800", "HoggPass800", "MFW3and5200", "McK15600", "McK3and5800", "McK3and50", "HoggPass600", "HoggPass500", "McK3and5500", "HoggPass400", "HoggPass300", "McK3and5800", "McK15800", "HoggPass600", "HoggPass0", "HoggPass1000", "HoggPass600", "HoggPass700", "HoggPass900", "McK3and5800", "McK3and5390", "MFW3and5800", "McK3and5340", "McK3and5700", "McK3and5900", "HoggPass700", "HoggPass0", "HoggPass500", "McK3and5400", "McK150", "HoggPass700", "HoggPass900", "McK3and5700", "HoggPass100", "HoggPass0", "HoggPass105", "HoggPass550", "McK15700", "McK3and5500", "McK3and5500", "McK3and5100", "HoggPass500", "McK3and5100", "McK3and50", "HoggPass250", "McK3and5200", "McK3and50", "McK3and5300", "HoggPass200", "HoggPass500", "McK15900", "McK15425", "McK15580", "McK15100", "McK15405", "HoggPass800", "McK15600", "McK3and5700", "McK15200", "McK15100", "McK3and5500", "HoggPass400", "McK3and5200", "McK15500", "HoggPass500", "HoggPass100", "MFW3and5200", "HoggPass100", "McK3and50", "McK15200", "HoggPass900", "McK3and5700", "McK3and5700", "McK3and5700", "McK3and5100", "HoggPass400", "HoggPass0", "HoggPass500", "HoggPass400", "McK3and5700", "McK3and5200", "McK15500", "HoggPass0", "HoggPass1005", "McK3and5405", "HoggPass0", "HoggPass800", "HoggPass800", "MFW3and5700", "HoggPass100", "McK3and50", "McK3and5600", "HoggPass700", "HoggPass700", "HoggPass300", "McK3and5200", "HoggPass700", "McK15285", "HoggPass850", "McK3and50", "McK150"], ["TCAGACGGCTC", "TCAGTCTCGAC", "TCAGAAGGCAC", "TCAGTTCATAC", "TCAGACGCGC", "TCAGCGTGAC", "TCAGTGAAGC", "TCAGCGCAAC", "TCAGACTTGC", "TCAGCAAGAAC", "TCAGAGTCGAC", "TCAGCCGGCCAC", "TCAGCCAGGAC", "TCAGTGCCGAAC", "TCAGACGCGC", "TCAGTAGGAATC", "TCAGCGGTATC", "TCAGCGACTC", "TCAGAAGCCGC", "TCAGTAATCTC", "TCAGTCACAC", "TCAGTATCAAC", "TCAGAGCTTC", "TCAGCACGC", "TCAGAAGCCGC", "TCAGCCTCTC", "TCAGCACGC", "TCAGACTTGC", "TCAGAGACCTC", "TCAGTGCGTTC", "TCAGCCTCTC", "TCAGACTTGC", "TCAGTGAAGC", "TCAGACTCAC", "TCAGCGACTC", "TCAGCACGC", "TCAGACAAGGC", "TCAGCAAGAAC", "TCAGTATTCGTC", "TCAGCGCAAC", "TCAGAGACAC", "TCAGTATTGAC", "TCAGTCACCTC", "TCAGCGTCGTC", "TCAGCCTCTC", "TCAGAGACAC", "TCAGCGTGAC", "TCAGAGCTTC", "TCAGAAGGTGC", "TCAGAACAACTC", "TCAGTGAAGC", "TCAGATACCAC", "TCAGACACGGAC", "TCAGAGCTTC", "TCAGCGTGAC", "TCAGTCTTGGC", "TCAGAGACAC", "TCAGACTCCTC", "TCAGAGGCGGC", "TCAGAATGGTAC", "TCAGTCACAC", "TCAGACTCAC", "TCAGTCCGCTC"], ["5.7", "5.96", "5.7", "5.85", "6", "6.4", "6.55", "5.76", "5.7333", "6", "5.2", "5.7", "5.8", "5.35", "5.15", "5.2", "4.8", "5.8", "6.35", "6.2833333333", "5.5", "5.4", "6", "5.97", "5.4", "5.5", "5.4", "5.128571429", "5.45", "6.5", "5.4", "6.55", "6.55", "5.625", "5.45", "5.85", "6.2833333333", "5.5", "5.35", "6", "6.76", "7.25", "5.4", "6.2833333333", "5.7", "6.76", "5.9", "6.55", "5.5", "5.475", "6.55", "5.5", "5.26", "5.26", "5.675", "5.9", "5.9", "5.7333", "5.26", "5.7", "5.6", "6.76", "7.5", "6.133", "5.35", "5.75", "5.475", "6.13", "6.55", "8.133333333", "6.13", "6.76", "5.6", "6.55", "6.1125", "6.5", "5.825", "5.4", "5.65", "5.325", "6.1", "5.625", "5.75", "6.4", "5.2", "6.825", "6.5", "5.4", "5.4", "5.6875", "5.675", "7.6333333333", "6.766666667", "5.5", "5.56", "5.45", "6.13", "6.76", "5.6", "5.4", "6", "5.2", "5.55", "5.6", "6.1", "6.13", "5.5", "5.675", "5.35", "5.5", "5.7", "5.475", "5.3", "5.53", "6.13", "5.4", "6.19", "6.13", "5.675", "6.13", "5.9", "5.26", "6.76", "7.49", "5.9", "5.825", "6.76", "5.6", "7.8", "5.4", "5.6"], ["Ajax", "Cambridge", "Grimsby", "Ajax", "Guelph", "Ottawa", "Kitchener", "Cambridge", "Toronto***", "Stratford", "Burlington", "Hampton", "Oak Ridges", "Kobe JPN", "Mississauga", "Oakville", "Everett", "Kitchener", "Alliston", "Mississauga", "Newmarket", "London", "Columbia", "Toronto", "Toronto", "Thornhill", "Mississauga", "Toronto***", "Wingham", "Amherstburg", "Burlington", "Lindsay", "Guelph", "Scarborough", "Guelph", "West JPN", "Burlington", "Kitchener", "Barrie", "Thornton", "Hamilton", "Eden Mills", "Handan CHN", "Ottawa", "Woodstock", "Cambridge", "Calgary AB", "Dundas", "Guelph", "Brantford", "Thornhill", "Bristol UK", "Vaughn", "Ajax", "Lan Shan CHN", "Courtice", "Ajax", "Toronto", "Wolfville NS", "Saskatchewan", "Toronto", "Mississauga", "Kyoto JPN"], ["-117.2305817", "-117.2316090", "-117.2299153", "-117.2313054", "-117.2291243", "-117.2296976", "-117.2234562", "-117.2323986", "-117.2318253", "-117.2324632", "-117.2307709", "-117.2313007", "-117.2299096", "-117.2318270", "-117.2320107", "-117.2302480", "-117.2323986", "-117.2321846", "-117.2316970", "-117.2286746", "-117.2283742", "-117.2313803", "-117.2314357", "-117.2280620", "-117.2291728", "-117.2280832", "-117.2301767", "-117.2308109", "-117.2290939", "-117.2296755", "-117.2303956"], ["1373500800.0", "1415059200.0", "1373500800.0", "1373500800.0", "1414972800.0", "1373500800.0", "1373500800.0", "1373500800.0", "1373500800.0", "1455235200.0", "1451952000.0", "1373500800.0", "1373500800.0", "1467033360.0", "1414972800.0", "1468865100.0", "1373500800.0", "1373500800.0", "1447286400.0", "1373500800.0", "1373500800.0", "1425859200.0", "1373500800.0", "1373500800.0", "1427328000.0", "1373500800.0", "1407715200.0", "1470936720.0", "1415145600.0", "1415145600.0", "1373500800.0", "1422230400.0", "1473350700.0", "1409011200.0", "1379462400.0", "1415145600.0", "1373500800.0", "1373500800.0", "1436313600.0", "1373500800.0", "1474879260.0", "1373500800.0", "1414972800.0", "1425600000.0", "1373500800.0", "1373500800.0", "1373500800.0", "1373500800.0", "1415145600.0", "1441670400.0", "1373500800.0", "1465832760.0", "1426204800.0", "1373500800.0", "1373500800.0", "1373500800.0", "1430697600.0", "1373500800.0", "1415059200.0", "1373500800.0", "1373500800.0", "1373500800.0", "1373500800.0", "1382918400.0", "1373500800.0", "1442188800.0", "1373500800.0", "1373500800.0", "1425600000.0", "1447718400.0", "1415145600.0", "1373500800.0", "1373500800.0", "1439251200.0", "1373500800.0", "1421884800.0", "1379894400.0", "1373500800.0", "1379462400.0", "1470941340.0", "1373500800.0", "1424131200.0", "1373500800.0", "1373500800.0", "1447977600.0", "1373500800.0", "1373500800.0", "1373500800.0", "1439424000.0", "1373500800.0", "1422403200.0", "1415145600.0", "1373500800.0", "1373500800.0", "1470397440.0", "1422230400.0", "1373500800.0", "1426118400.0", "1373500800.0", "1373500800.0", "1374192000.0", "1373500800.0", "1373500800.0", "1373500800.0", "1461809640.0", "1373500800.0", "1373500800.0", "1373500800.0", "1471976580.0", "1373500800.0", "1447977600.0", "1373500800.0", "1373500800.0", "1373500800.0", "1379289600.0", "1373500800.0", "1373500800.0", "1415145600.0", "1381881600.0", "1470945420.0", "1415145600.0", "1426464000.0", "1373500800.0", "1423699200.0", "1452556800.0", "1457913600.0", "1373500800.0", "1411516800.0", "1380758400.0", "1374192000.0", "1373500800.0", "1373500800.0", "1414972800.0", "1373500800.0", "1373500800.0", "1373500800.0", "1373846400.0", "1415059200.0", "1382054400.0", "1373500800.0", "1373500800.0", "1373500800.0", "1373500800.0", "1415145600.0", "1414972800.0", "1425600000.0", "1373500800.0", "1400630400.0", "1474387740.0", "1373500800.0", "1415059200.0", "1458604800.0", "1428969600.0", "1430352000.0", "1434326400.0", "1373500800.0", "1447977600.0", "1435622400.0", "1423612800.0", "1373587200.0", "1422230400.0", "1373500800.0", "1373500800.0", "1373500800.0", "1415145600.0", "1373500800.0", "1382572800.0", "1373500800.0", "1373500800.0", "1422230400.0", "1373500800.0", "1427414400.0", "1373500800.0", "1415145600.0", "1373500800.0", "1468609980.0", "1373500800.0", "1443571200.0", "1382659200.0", "1374192000.0", "1373500800.0", "1373500800.0", "1373500800.0", "1373500800.0", "1414972800.0", "1373500800.0", "1422230400.0", "1373500800.0", "1373500800.0", "1415145600.0", "1415059200.0", "1381190400.0", "1373500800.0", "1373500800.0", "1414972800.0", "1373500800.0", "1373500800.0", "1466156760.0", "1415059200.0", "1425254400.0", "1373500800.0", "1425600000.0", "1373500800.0", "1415145600.0", "1414972800.0", "1373500800.0", "1452729600.0", "1425859200.0", "1373500800.0", "1373500800.0", "1457395200.0", "1373500800.0", "1373500800.0", "1373500800.0", "1407369600.0", "1469019360.0", "1373500800.0", "1373500800.0", "1415059200.0", "1453939200.0", "1445212800.0", "1373500800.0", "1373500800.0", "1373500800.0", "1373500800.0", "1426118400.0", "1373500800.0", "1373500800.0", "1373500800.0", "1379376000.0", "1373500800.0", "1418688000.0", "1373500800.0", "1381881600.0", "1373500800.0", "1373500800.0", "1373500800.0", "1398902400.0", "1425600000.0", "1425600000.0", "1373500800.0", "1426464000.0", "1373500800.0", "1373500800.0", "1403827200.0", "1444262400.0", "1373500800.0", "1425600000.0", "1460937600.0", "1416787200.0", "1373500800.0", "1415059200.0", "1422230400.0", "1373500800.0", "1373500800.0", "1373500800.0", "1374192000.0", "1415145600.0", "1373587200.0", "1415145600.0", "1373500800.0", "1373500800.0", "1384992000.0", "1373500800.0", "1373500800.0", "1373500800.0", "1373500800.0", "1415145600.0", "1448928000.0", "1415145600.0", "1373500800.0", "1373500800.0", "1373500800.0", "1414972800.0", "1392076800.0", "1373500800.0", "1476871620.0", "1455235200.0", "1424908800.0", "1373500800.0", "1373500800.0", "1415145600.0", "1373500800.0", "1373500800.0", "1450051200.0", "1447027200.0", "1445212800.0", "1425254400.0", "1373500800.0", "1414972800.0", "1373500800.0", "1373500800.0", "1383868800.0", "1373500800.0", "1469453700.0", "1373500800.0", "1422230400.0", "1373500800.0", "1373500800.0", "1447977600.0", "1373500800.0", "1373500800.0", "1373500800.0", "1373500800.0", "1414972800.0", "1430784000.0", "1373500800.0", "1415145600.0", "1373500800.0", "1475229000.0", "1373500800.0", "1455235200.0", "1426636800.0", "1416182400.0", "1373500800.0", "1403049600.0", "1373500800.0", "1447977600.0", "1373500800.0", "1373500800.0", "1414972800.0", "1415059200.0", "1404259200.0", "1425600000.0", "1373500800.0", "1373500800.0", "1373500800.0", "1425859200.0", "1373500800.0", "1422230400.0", "1373587200.0", "1426204800.0", "1444953600.0", "1373500800.0", "1455667200.0", "1447027200.0", "1373500800.0", "1373500800.0", "1454630400.0", "1373500800.0", "1379289600.0", "1373500800.0", "1469453400.0", "1415059200.0", "1373500800.0", "1381881600.0", "1373500800.0", "1373500800.0", "1465217280.0", "1475007780.0", "1414972800.0", "1373500800.0", "1415059200.0", "1373500800.0", "1422230400.0", "1373500800.0", "1379289600.0", "1373500800.0", "1373500800.0", "1425513600.0", "1415059200.0", "1447113600.0", "1415145600.0", "1418774400.0", "1373500800.0", "1380499200.0", "1373500800.0", "1430697600.0", "1443484800.0", "1373500800.0", "1415145600.0", "1373500800.0", "1373500800.0", "1373500800.0", "1373500800.0", "1444953600.0", "1373500800.0", "1416355200.0", "1373500800.0", "1373500800.0", "1425513600.0", "1373500800.0", "1373500800.0", "1422230400.0", "1398902400.0", "1373500800.0", "1414972800.0", "1373500800.0", "1373500800.0", "1415059200.0", "1373500800.0", "1373500800.0", "1373500800.0", "1373500800.0", "1373500800.0", "1373500800.0", "1421366400.0", "1382054400.0", "1415059200.0", "1373500800.0", "1373587200.0", "1373500800.0", "1373500800.0", "1445212800.0", "1373500800.0", "1373500800.0", "1422230400.0", "1373500800.0", "1373500800.0", "1373500800.0", "1461811320.0", "1402012800.0", "1373500800.0", "1373500800.0", "1373500800.0", "1373500800.0", "1373500800.0", "1414972800.0", "1418169600.0", "1373500800.0", "1373500800.0", "1425340800.0", "1415145600.0", "1373500800.0", "1373500800.0", "1400457600.0", "1373500800.0", "1414972800.0", "1415059200.0", "1373500800.0", "1430956800.0", "1373500800.0", "1414972800.0", "1373500800.0", "1373500800.0", "1382659200.0", "1383091200.0", "1415664000.0", "1387411200.0", "1373500800.0", "1373500800.0", "1447113600.0", "1444953600.0", "1476282840.0", "1373500800.0", "1373500800.0", "1373500800.0", "1373500800.0", "1373500800.0", "1465815420.0", "1373500800.0", "1381881600.0", "1422489600.0", "1373500800.0", "1447977600.0", "1422230400.0", "1373500800.0", "1476434880.0", "1414972800.0", "1375401600.0", "1373500800.0", "1373500800.0", "1373500800.0", "1373587200.0", "1373500800.0", "1425600000.0", "1373500800.0", "1442793600.0", "1415059200.0", "1442188800.0", "1426636800.0", "1382918400.0", "1399852800.0", "1373500800.0", "1373500800.0", "1373500800.0", "1373500800.0", "1373500800.0", "1373500800.0", "1373500800.0", "1373500800.0", "1373500800.0", "1422230400.0", "1373500800.0", "1391817600.0", "1373500800.0", "1429747200.0", "1373500800.0", "1437004800.0", "1373587200.0", "1466589000.0", "1414972800.0", "1373500800.0", "1415145600.0", "1373500800.0", "1373500800.0", "1415145600.0", "1373500800.0", "1418774400.0", "1373500800.0"], ["pages", "noise", "noise", "noise", "absorbency", "commute time", "lifespan", "absorbency", "absorbency", "repair rate", "comfort", "lifespan", "commute time", "cost", "size", "comfort", "calories", "print speed", "comfort", "absorbency", "lifespan", "risk", "cost", "Lifespan", "calories", "repair rate", "comfort", "Lifespan", "repair rate", "absorbency", "noise", "lifespan", "crimes", "absorbency", "lifespan", "commute time", "comfort", "lifespan", "commute time", "lifespan", "print speed", "repair rate", "vol ink", "print speed", "comfort", "vol ink", "lifespan", "noise", "noise", "lifespan", "vol ink", "noise", "crimes", "cost", "crimes", "lifespan", "vol ink", "size", "calories", "repair rate", "absorbency", "cost", "commute time", "cost", "risk", "noise", "comfort", "absorbency", "cost", "risk", "absorbency", "repair rate", "absorbency", "lifespan", "crimes", "absorbency", "vol ink", "absorbency", "cost", "cost", "cost", "crimes", "size", "absorbency", "pages", "size", "absorbency", "commute time", "commute time", "crimes", "print speed", "calories", "print speed", "lifespan", "noise", "Lifespan", "comfort", "cost", "cost", "print speed", "absorbency", "lifespan", "crimes", "comfort", "absorbency", "repair rate", "print speed", "calories", "commute time", "print speed", "commute time", "lifespan", "lifespan", "commute time", "noise", "Lifespan", "vol ink", "comfort", "comfort", "lifespan", "commute time", "vol ink", "cost", "crimes", "comfort", "repair rate", "cost", "crimes", "lifespan", "repair rate", "pages", "repair rate", "commute time", "cost", "lifespan", "print speed", "Lifespan", "risk", "comfort", "absorbency", "risk", "absorbency", "cost", "commute time", "Lifespan", "repair rate", "pages", "lifespan", "lifespan", "comfort", "commute time", "crimes", "Lifespan", "crimes", "vol ink", "absorbency", "vol ink", "comfort", "size", "vol ink", "calories", "comfort", "pages", "lifespan", "print speed", "repair rate", "repair rate", "lifespan", "pages", "absorbency", "commute time", "print speed", "repair rate", "pages", "Lifespan", "size", "crimes", "size", "vol ink", "repair rate", "print speed", "pages", "crimes", "Lifespan", "noise", "cost", "cost", "print speed", "Lifespan", "Lifespan", "comfort", "absorbency", "Lifespan", "cost", "vol ink", "print speed", "comfort", "lifespan", "cost", "pages", "crimes", "print speed", "commute time", "commute time", "crimes", "noise", "risk", "Lifespan", "cost", "noise", "absorbency", "crimes", "absorbency", "commute time", "commute time", "absorbency", "calories", "print speed", "pages", "print speed", "calories", "vol ink", "risk", "comfort", "comfort", "lifespan", "vol ink", "crimes", "print speed", "crimes", "repair rate", "commute time", "absorbency", "Lifespan", "comfort", "repair rate", "pages", "cost", "vol ink", "size", "calories", "Lifespan", "Lifespan", "print speed", "commute time", "vol ink", "crimes", "calories", "cost", "comfort", "risk", "calories", "cost", "noise", "comfort", "crimes", "Lifespan", "lifespan", "calories", "comfort", "Lifespan", "Lifespan", "Lifespan", "print speed", "lifespan", "crimes", "noise", "absorbency", "crimes", "calories", "comfort", "lifespan", "calories", "lifespan", "pages", "lifespan", "comfort", "comfort", "comfort", "repair rate", "commute time", "risk", "cost", "repair rate", "print speed", "size", "vol ink", "print speed", "crimes", "crimes", "lifespan", "commute time", "calories", "calories", "Lifespan", "absorbency", "Lifespan", "size", "cost", "print speed", "calories", "commute time", "absorbency", "repair rate", "vol ink", "calories", "repair rate", "cost", "crimes", "lifespan", "lifespan", "repair rate", "noise", "Lifespan", "comfort", "crimes", "vol ink", "Lifespan", "vol ink", "lifespan", "Lifespan", "size", "calories", "absorbency", "repair rate", "crimes", "comfort", "vol ink", "pages", "lifespan", "commute time", "comfort", "Lifespan", "commute time", "crimes", "comfort", "absorbency", "noise", "Lifespan", "Lifespan", "calories", "comfort", "absorbency", "absorbency", "commute time", "crimes", "lifespan", "calories", "lifespan", "vol ink", "comfort", "comfort", "comfort", "cost", "print speed", "crimes", "comfort", "crimes", "lifespan", "print speed", "cost", "repair rate", "crimes", "calories", "absorbency", "comfort", "print speed", "pages", "commute time", "print speed", "crimes", "absorbency", "cost", "comfort", "comfort", "noise", "comfort", "repair rate", "crimes", "noise", "cost", "vol ink", "print speed", "vol ink", "repair rate", "cost", "cost", "lifespan", "pages", "print speed", "absorbency", "calories", "pages", "repair rate", "Lifespan", "calories", "cost", "print speed", "noise", "pages", "cost", "cost", "calories", "repair rate", "Lifespan", "absorbency", "repair rate", "repair rate", "crimes", "Lifespan", "risk", "crimes", "lifespan", "calories", "noise", "absorbency", "lifespan", "comfort", "Lifespan", "crimes", "lifespan", "risk", "pages", "vol ink", "absorbency", "print speed", "absorbency", "comfort", "pages", "comfort", "calories", "Lifespan", "repair rate", "calories", "Lifespan", "calories", "comfort", "absorbency", "cost", "crimes", "commute time", "repair rate", "vol ink", "lifespan", "print speed", "crimes", "cost", "crimes", "absorbency", "cost", "absorbency", "comfort", "cost", "calories", "vol ink", "comfort", "pages", "Lifespan", "cost", "size", "commute time", "absorbency", "lifespan", "print speed", "comfort", "calories", "noise", "repair rate", "calories", "commute time", "cost", "repair rate", "comfort", "absorbency", "comfort", "calories", "commute time", "comfort", "comfort", "crimes", "repair rate", "commute time", "commute time", "commute time", "absorbency", "absorbency", "calories", "print speed", "absorbency", "risk", "comfort", "lifespan", "size", "vol ink", "commute time", "pages", "absorbency", "calories", "repair rate", "Lifespan"], ["619-645-7711", "619-645-7711", "602-646-101", "714-277-4888", "949-252-8300", "619-645-7711", "602-264-6101", "877-276-1894", "619-645-7711", "602-264-6101", "855-286-5901", "877-276-1894", "301-696-4684", "619-645-7711", "702-434-175", "215-734-5000", "855-286-5901", "480-333-6252", "949-252-8300", "855-286-5901", "702-435-4175", "702-435-4175", "619-645-7711", "877-596-8580", "619-645-7711", "877-276-1894", "215-734-5000", "702-435-4175", "602-264-6101", "480-333-6252", "619-645-7711", "602-264-6101", "702-435-4175", "877-528-5606", "602-264-6101", "800-457-5105", "619-645-7711", "619-645-7711", "949-252-8300", "855-286-5901", "702-435-4175", "949-252-8300", "619-645-7711", "602-264-6101", "408-370-4030", "877-276-1894", "602-264-6101", "702-435-4175", "877-596-8580", "949-252-8300", "877-528-5606", "949-252-8300", "702-435-4175", "949-252-8300", "949-252-8300", "702-435-4175", "702-435-4175", "619-645-7711", "702-435-4175", "602-264-6101", "937-910-1200", "602-264-6101", "602-264-6101", "503-372-8142", "949-252-8300", "949-252-8300", "949-252-8300", "480-333-6252", "877-276-1894", "949-252-8300", "866-968-8332", "619-645-7711", "602-264-6101", "702-435-4175", "949-252-8300", "480-333-6252", "949-252-8300", "602-264-6101", "619-645-7711", "702-435-4175", "949-252-8300", "702-435-4175", "602-264-6101", "619-645-7711", "308-635-3500", "602-264-6101", "877-276-1894", "949-252-8300", "619-645-7711", "619-645-7711", "248-312-6772", "619-645-7711", "619-645-7711", "855-286-5901", "949-252-8300", "602-264-6101", "602-264-6101", "619-645-7711", "301-696-4684", "877-596-8580", "619-645-7711", "702-952-5200", "877-596-8580", "602-264-6101", "619-645-7711", "949-252-8300", "888-480-2432", "602-264-6101", "602-264-6101", "602-264-6101", "619-645-7711", "619-645-7711", "877-276-1894", "949-252-8300", "480-333-6252", "602-264-6101", "702-435-4175", "619-645-7711", "877-276-1894", "949-252-8300", "800-999-3961", "702-435-4175", "619-645-7711", "855-286-5901", "619-645-7711", "949-252-8300", "937-910-1200", "714-277-4888", "949-252-8300", "877-596-8580", "602-264-6101", "619-645-7711", "619-645-7711", "619-645-7711", "877-276-1894", "877-276-1894", "602-264-6101", "702-435-4175", "702-733-8820", "602-264-6101", "480-333-6252", "602-264-6101", "619-645-7711", "800-643-0202", "619-645-7711", "702-586-4500", "702-586-4500", "619-645-7711", "855-286-5901", "602-264-6101", "602-264-6101", "877-276-1894", "480-333-6252", "602-264-6101", "949-252-8300", "619-645-7711", "877-596-8580", "602-264-6101", "602-264-6101", "619-645-7711", "855-286-5901", "877-596-8580", "877-276-1894", "602-264-6101", "877-276-1894", "619-645-7711", "877-276-1894", "619-645-7711", "949-252-8300", "619-645-7711", "949-252-8300", "949-252-8300", "619-645-7711", "602-264-6101", "949-252-8300", "855-286-5901", "702-435-4175", "702-866-6571", "877-276-1894", "855-286-5901", "949-252-8300", "702-733-8820", "602-264-6101", "619-645-7711", "949-252-8300", "619-645-7711", "855-286-5901", "602-264-6101", "800-552-3000", "702-435-4175", "702-435-4175", "619-645-7711", "714-277-4888", "602-264-6101", "619-465-8200", "602-264-6101", "949-252-8300", "714-277-4888", "702-369-5960", "702-733-8820", "949-252-8300", "480-333-6252", "800-643-0202", "602-264-6101", "702-435-4175", "702-435-4175", "877-276-1894", "480-333-6252", "855-286-5901", "480-333-6252", "602-264-6101", "602-264-6101", "949-252-8300", "602-264-6101", "480-333-6252", "480-333-6252", "619-645-7711", "215-734-5000", "702-733-8820", "619-645-7711", "949-252-8300", "714-277-4888", "949-252-8300", "937-910-1200", "480-333-6252", "949-252-8300", "714-277-4888", "480-333-6252", "602-264-6101", "619-645-7711", "877-596-8580", "877-276-1894", "714-277-4888", "480-333-6252", "949-252-8300", "702-435-4175", "602-264-6101", "503-505-5643", "949-252-8300", "602-264-6101", "949-252-8300", "602-264-6101", "949-252-8300", "949-252-8300", "702-733-8820", "619-645-7711", "619-645-7711", "949-252-8300", "949-252-8300", "877-596-8580", "949-252-8300", "602-264-6101", "619-645-7711", "949-252-8300", "702-435-4175", "949-252-8300", "619-645-7711", "949-252-8300", "949-252-8300", "619-645-7711", "602-264-6101", "702-435-4175", "619-645-7711", "619-645-7711", "602-264-6101", "602-264-6101", "949-252-8300", "949-252-8300", "602-264-6101", "619-645-7711", "949-252-8300", "602-264-6101", "702-435-4175", "602-264-6101", "602-264-6101", "714-277-4888", "714-277-4888", "877-276-1894", "877-276-1894", "800-643-0202", "702-435-4175", "855-286-5901", "480-333-6252", "855-286-5901", "800-643-0202", "602-264-6101", "877-528-5606", "702-435-4175", "602-264-6101", "619-645-7711", "602-264-6101", "949-252-8300", "619-645-7711", "877-276-1894", "937-910-1200", "877-276-1894", "619-645-7711", "602-264-6101", "619-645-7711", "619-645-7711", "619-645-7711", "757-955-8014", "877-528-5606", "602-264-6101", "602-264-6101", "949-252-8300", "949-252-8300", "480-333-6252", "714-277-4888", "949-252-8300", "877-276-1894", "619-645-7711", "619-645-7711", "949-252-8300", "619-645-7711", "949-252-8300", "602-264-6101", "877-596-8580", "619-645-7711", "206-340-2550", "714-277-4888", "619-645-7711", "866-617-7293", "619-645-7711", "602-264-6101", "619-645-7711", "215-734-5000", "602-264-6101", "877-528-5606", "702-435-4175", "800-457-5105", "602-264-6101", "866-698-8332", "215-734-5000", "949-252-8300", "702-435-4175", "619-645-7711", "855-286-5901", "619-645-7711", "702-435-4175", "602-264-6101", "602-264-6101", "949-252-8300", "619-645-7711", "949-252-8300", "877-276-1894", "602-264-6101", "619-645-7711", "619-645-7711", "702-435-4175", "949-252-8300", "602-264-6101", "602-264-6101", "702-435-4175", "619-645-7711", "619-645-7711", "949-252-8300", "702-733-8820", "949-252-8300", "602-264-6101", "619-645-7711", "602-264-6101", "602-264-6101", "619-645-7711", "619-645-7711", "949-252-8300", "619-645-7711", "602-264-6101", "877-276-1894", "619-645-7711", "480-333-6252", "877-528-5606", "619-645-7711", "855-286-5901", "702-435-4175", "602-264-6101", "702-435-4175", "619-645-7711", "949-252-8300", "949-252-8300", "949-252-8300", "619-645-7711", "602-264-6101", "972-459-4823", "619-645-7711", "702-435-4175", "602-264-6101", "602-264-6101", "702-435-4175", "702-435-4175", "949-252-8300", "602-264-6101", "888-967-9700", "619-645-7711", "619-645-7711", "602-264-6101", "619-645-7711", "949-252-8300", "602-264-6101", "949-252-8300", "619-645-7711", "714-277-4888", "619-645-7711", "480-333-6252", "408-370-4030", "702-435-4175", "619-645-7711", "855-286-5901", "702-435-4175", "800-643-0202", "619-645-7711", "757-955-8014", "602-264-6101", "877-528-5606", "877-596-8580", "877-528-5606", "619-645-7711", "602-264-6101", "949-252-8300", "602-264-6101", "480-333-6252", "619-645-7711", "855-286-5901", "702-435-4175", "619-645-7711", "949-252-8300", "855-286-5901", "877-276-1894", "619-645-7711", "949-252-8300", "877-596-8580", "949-252-8300", "855-286-5901", "602-264-6101", "877-276-1894", "206-340-2550", "602-264-6101", "619-645-7711", "619-645-7711", "855-286-5901", "877-276-1894", "301-939-6694", "949-252-8300", "877-528-5606", "602-264-6101", "855-286-5901", "480-333-6252", "619-645-7711", "855-286-5901", "480-333-6252", "714-277-4888", "855-286-5901", "858-750-7600", "877-596-8580", "619-645-7711", "619-645-7711", "877-596-8580"], ["LEV", "LEV-II LEV", "Bin 5", "LEV-II ULEV", "Bin 5", "LEV-II ULEV", "LEV", "Bin 5", "LEV-II ULEV", "LEV-II ULEV", "Bin 5", "Bin 5", "HEAVY DUTY", "Bin 5", "LEV-II SULEV", "LEV", "LEV", "LEV-II LEV", "Bin 5", "LEV-II SULEV", "LEV-II LEV", "LEV-II LEV", "Bin 8", "LEV-II ULEV", "LEV-II ULEV", "LEV-II LEV", "Bin 5", "Bin 5", "Bin 10", "Bin 8", "Bin 5", "Bin 5", "LEV-II LEV", "LEV-II ULEV", "Bin 5", "LEV-II LEV", "Bin 5", "Bin 8", "LEV-II LEV", "HEAVY DUTY", "ULEV", "Bin 5", "LEV-II LEV", "LEV-II ULEV", "Bin 5", "LEV", "Bin 5", "LEV-II ULEV", "LEV-II LEV", "LEV", "LEV-II LEV", "Bin 8", "Bin 5", "Bin 5", "LEV-II LEV", "LEV-II LEV", "Bin 8", "LEV-II ULEV", "LEV-II ULEV", "LEV-II LEV", "LEV-II ULEV", "Bin 5", "Bin 5", "LEV-II ULEV", "LEV", "LEV-II LEV", "Bin 5", "Bin 8", "LEV-II LEV", "Bin 8", "HEAVY DUTY", "LEV", "LEV-II LEV", "Bin 5", "Bin 4", "HEAVY DUTY", "LEV-II ULEV", "LEV-II ULEV", "Bin 8", "Bin 4", "LEV-II ULEV", "Bin 5", "LEV-II ULEV", "ILEV", "LEV", "Bin 5", "Bin 5", "Bin 5", "LEV-II LEV", "Bin 8", "Bin 5", "HEAVY DUTY", "LEV", "Bin 5", "LEV-II LEV", "LEV-II SULEV", "LEV-II LEV", "LEV-II LEV", "Bin 5", "LEV-II LEV", "LEV-II LEV", "Bin 4", "LEV-II ULEV", "Bin 5", "LEV", "Bin 4", "LEV-II LEV", "LEV-II LEV", "Bin 8", "LEV-II LEV", "Bin 8", "HEAVY DUTY", "LEV-II SULEV", "LEV", "Bin 5", "Bin 8", "Bin 5", "Bin 5", "LEV-II LEV", "LEV-II ULEV", "LEV-II LEV", "LEV-II LEV", "Bin 5", "LEV-II ULEV", "Bin 5", "Bin 5", "Bin 8", "Bin 5", "LEV-II ULEV", "Bin 4", "LEV-II LEV", "HEAVY DUTY", "LEV-II LEV", "Bin 5", "ULEV", "LEV-II LEV", "HEAVY DUTY", "Bin 5", "Bin 5", "Bin 5", "LEV-II ULEV", "Bin 8", "LEV-II LEV", "LEV-II LEV", "LEV-II ULEV", "LEV", "Bin 5", "LEV-II LEV", "LEV-II LEV", "Bin 5", "Bin 4", "LEV-II LEV", "LEV-II ULEV", "Bin 8", "LEV-II LEV", "LEV-II LEV", "LEV", "LEV-II LEV", "LEV-II LEV", "Bin 5", "LEV-II LEV", "LEV-II LEV", "Bin 5", "LEV-II LEV", "LEV-II ULEV", "Bin 8", "LEV-II LEV", "Bin 5", "Bin 5", "Bin 4", "LEV", "Bin 8", "Bin 8", "LEV", "LEV-II LEV", "LEV", "LEV-II ULEV", "LEV-II LEV", "Bin 5", "Bin 5", "Bin 5", "Bin 8", "LEV", "Bin 8", "Bin 5", "Bin 5", "Bin 5", "LEV-II LEV", "LEV-II ULEV", "LEV-II ULEV", "LEV", "LEV", "Bin 8", "LEV-II LEV", "Bin 8", "Bin 5", "Bin 8", "Bin 5", "LEV-II LEV", "Bin 5", "Bin 8", "LEV", "Bin 3", "LEV-II LEV", "Bin 5", "ULEV", "Bin 5", "LEV", "LEV-II ULEV", "Bin 5", "Bin 4", "LEV-II LEV", "Bin 5", "LEV-II LEV", "HEAVY DUTY", "LEV-II LEV", "Bin 5", "Bin 5", "LEV", "Bin 5", "Bin 4", "Bin 5", "LEV-II SULEV", "ILEV", "LEV-II ULEV", "Bin 8", "LEV-II LEV", "LEV-II LEV", "HEAVY DUTY", "LEV", "Bin 5", "Bin 8", "LEV-II ULEV", "Bin 8", "LEV", "Bin 5", "Bin 8", "LEV-II LEV", "Bin 5", "Bin 8", "Bin 5", "Bin 8", "Bin 5", "LEV-II LEV", "ILEV", "Bin 8", "Bin 5", "LEV", "Bin 5", "LEV-II LEV", "Bin 5", "Bin 5", "LEV-II ULEV", "Bin 4", "HEAVY DUTY", "LEV-II LEV", "Bin 5", "LEV-II ULEV", "HEAVY DUTY", "LEV-II LEV", "HEAVY DUTY", "Bin 5", "Bin 5", "Bin 5", "LEV-II LEV", "LEV", "LEV-II ULEV", "Bin 5", "Bin 5", "Bin 5", "Bin 5", "Bin 5", "HEAVY DUTY", "LEV-II ULEV", "ILEV", "Bin 5", "HEAVY DUTY", "LEV-II LEV", "Bin 8", "LEV-II LEV", "HEAVY DUTY", "Bin 4", "LEV-II LEV", "Bin 5", "Bin 5", "HEAVY DUTY", "LEV-II LEV", "LEV-II ULEV", "Bin 5", "ULEV", "LEV", "LEV", "Bin 3", "Bin 5", "Bin 5", "Bin 5", "LEV-II ULEV", "LEV-II LEV", "Bin 8", "LEV-II LEV", "Bin 5", "HEAVY DUTY", "Bin 5", "LEV-II LEV", "LEV-II SULEV", "Bin 5", "Bin 5", "Bin 8", "Bin 5", "LEV-II LEV", "Bin 5", "Bin 5", "LEV-II LEV", "Bin 5", "LEV-II LEV", "Bin 3", "Bin 5", "LEV-II LEV", "HEAVY DUTY", "LEV-II LEV", "LEV", "LEV-II ULEV", "Bin 5", "LEV-II LEV", "LEV-II LEV", "Bin 5", "Bin 8", "LEV-II ULEV", "LEV-II LEV", "Bin 5", "Bin 5", "Bin 5", "HEAVY DUTY", "LEV-II LEV", "Bin 4", "Bin 5", "Bin 5", "Bin 5", "HEAVY DUTY", "Bin 5", "Bin 5", "ILEV", "Bin 5", "LEV-II ULEV", "LEV-II ULEV", "Bin 5", "LEV-II LEV", "LEV-II ULEV", "LEV-II SULEV", "LEV-II LEV", "Bin 8", "LEV", "LEV-II LEV", "Bin 8", "LEV-II ULEV", "Bin 8", "Bin 8", "LEV", "LEV-II LEV", "HEAVY DUTY", "HEAVY DUTY", "HEAVY DUTY", "LEV-II SULEV", "LEV-II LEV", "LEV-II ULEV", "Bin 3", "Bin 4", "Bin 8", "HEAVY DUTY", "Bin 4", "LEV-II LEV", "LEV-II ULEV", "Bin 8", "Bin 8", "HEAVY DUTY", "Bin 4", "LEV-II ULEV", "Bin 8", "Bin 5", "LEV-II SULEV", "Bin 4", "Bin 5", "Bin 8", "HEAVY DUTY", "LEV-II LEV", "Bin 8", "LEV-II LEV", "LEV", "Bin 5", "Bin 5", "LEV-II LEV", "Bin 5", "Bin 5", "HEAVY DUTY", "Bin 5", "Bin 5", "Bin 5", "LEV", "Bin 8", "LEV-II LEV", "Bin 5", "LEV-II ULEV", "LEV-II ULEV", "LEV-II LEV", "LEV-II SULEV", "LEV-II ULEV", "LEV-II LEV", "Bin 8", "Bin 8", "Bin 8", "LEV", "LEV-II LEV", "LEV", "Bin 5", "Bin 5", "Bin 8", "Bin 5", "Bin 8", "Bin 4", "Bin 8", "LEV-II LEV", "Bin 5", "Bin 5", "LEV-II ULEV", "HEAVY DUTY", "Bin 8", "LEV-II ULEV", "Bin 5", "HEAVY DUTY", "LEV-II LEV", "LEV-II LEV", "Bin 5", "Bin 5", "LEV", "Bin 8", "LEV-II LEV", "LEV-II LEV", "LEV-II LEV", "Bin 8", "Bin 5", "Bin 5", "Bin 5", "Bin 5", "LEV-II LEV", "Bin 5", "Bin 4", "Bin 5", "LEV-II LEV", "Bin 8", "Bin 4", "LEV-II ULEV", "Bin 5", "HEAVY DUTY", "HEAVY DUTY", "Bin 5", "LEV", "Bin 5", "LEV", "LEV", "Bin 5", "LEV", "Bin 8", "LEV-II ULEV", "Bin 8", "Bin 5", "Bin 5", "Bin 8", "HEAVY DUTY", "LEV-II LEV", "LEV-II ULEV", "Bin 8", "Bin 5", "LEV-II LEV", "Bin 5", "LEV-II SULEV", "Bin 4", "Bin 5", "LEV-II LEV", "LEV-II ULEV", "HEAVY DUTY", "LEV-II LEV", "LEV", "Bin 4", "Bin 5", "Bin 5", "LEV-II LEV", "Bin 5", "Bin 4", "LEV-II LEV", "Bin 8", "LEV-II LEV", "HEAVY DUTY", "Bin 5", "LEV-II LEV", "Bin 5", "LEV", "LEV-II ULEV", "Bin 5", "Bin 5", "Bin 5"], ["Acer", "Loder", "Razer", "Logitech", "Razer", "Microsoft", "Logitech", "Genius", "Razer", "Logitech", "Logitech", "3D Connexion", "Logitech", "Apple", "Genius", "Gold", "Alienware", "HP", "Logitech", "Acer", "Logitech", "Hama", "Microsoft", "Logitech", "Razer", "Loder", "3D Connexion", "Logitech", "Logitech", "Logitech", "Logitech", "Razer", "Logitech", "Logitech", "Razer", "Logitech", "Logitech", "Logitech", "Razer", "Logitech", "Logitech", "Logitech", "Razer", "Logitech", "Logitech", "Roccat", "Logitech", "Genius", "Genius", "Microsoft", "Genius", "Logitech", "Logitech", "Razer", "Razer", "Logitech"], ["Facilitation", "Facilitation", "MTR_900", "MTR_2700", "MTR_2700", "MTR_900", "STR_900", "MTR_2700", "MTR_900", "MTR_2700", "MTR_2700", "MTR_2700", "MTR_2700", "MTR_Both", "Facilitation", "MTR_900", "STR_900", "MTR_900", "MTR_2700", "MTR_900", "MTR_2700", "MTR_900", "MTR_2700", "MTR_2700", "MTR_900", "Facilitation", "Facilitation", "Facilitation", "MTR_2700", "MTR_Both", "MTR_2700", "MTR_Both", "Facilitation", "MTR_2700", "MTR_2700", "STR_900", "MTR_Both", "Facilitation", "STR_2700", "MTR_2700", "STR_900", "MTR_Both", "MTR_2700", "STR_2700", "STR_900", "STR_900", "Facilitation", "STR_900"], ["LEV-II LEV", "LEV-II LEV", "LEV-II ULEV", "Bin 5", "LEV-II ULEV", "Bin 5", "Bin 5", "Bin 5", "Bin 5", "Bin 5", "Bin 4", "LEV-II ULEV", "LEV-II ULEV", "Bin 5", "Bin 5", "Bin 5", "Bin 5", "LEV-II LEV", "LEV-II ULEV", "LEV-II ULEV", "LEV-II LEV", "Bin 5", "Bin 5", "Bin 4", "Bin 5", "Bin 5", "Bin 5", "LEV-II SULEV", "Bin 5", "Bin 5", "LEV-II ULEV", "LEV-II SULEV", "LEV-II LEV", "LEV-II LEV", "LEV-II ULEV", "Bin 5", "Bin 4", "Bin 5", "LEV-II ULEV", "LEV-II LEV", "LEV-II SULEV", "Bin 5", "LEV-II ULEV", "Bin 5", "LEV-II ULEV", "Bin 4", "Bin 5", "Bin 5", "LEV-II LEV", "LEV-II ULEV", "Bin 5", "LEV-II ULEV", "Bin 5", "HEAVY DUTY", "Bin 5", "LEV-II LEV", "Bin 5", "LEV-II ULEV", "LEV-II LEV", "Bin 5", "LEV-II LEV", "LEV-II ULEV", "LEV-II LEV", "Bin 4", "LEV-II LEV", "LEV-II ULEV", "Bin 5", "Bin 5", "LEV-II LEV", "Bin 4", "LEV-II ULEV", "Bin 5", "Bin 5", "Bin 4", "Bin 5", "Bin 5", "Bin 5", "Bin 4", "LEV-II LEV", "Bin 5", "Bin 5", "LEV-II SULEV", "Bin 5", "LEV-II ULEV", "Bin 5", "Bin 5", "LEV-II LEV", "Bin 8", "Bin 5", "Bin 5", "LEV-II LEV", "Bin 5", "LEV-II ULEV", "LEV-II SULEV", "LEV-II LEV", "Bin 5", "LEV-II LEV", "Bin 5", "LEV-II ULEV", "Bin 4", "Bin 5", "HEAVY DUTY", "LEV-II LEV", "LEV-II ULEV", "Bin 5", "LEV-II ULEV", "LEV-II LEV", "LEV-II ULEV", "LEV-II ULEV", "Bin 5", "Bin 5", "Bin 5", "Bin 5", "LEV-II ULEV", "Bin 8", "LEV-II SULEV", "Bin 5", "LEV-II ULEV", "Bin 5", "Bin 5", "Bin 5", "LEV-II ULEV", "Bin 5", "LEV-II ULEV", "Bin 4", "Bin 4", "Bin 5", "LEV-II ULEV", "Bin 4", "Bin 5", "Bin 5", "Bin 4", "Bin 5", "LEV-II LEV", "Bin 4", "LEV-II LEV", "Bin 4", "Bin 5", "Bin 4", "LEV-II ULEV", "Bin 5", "Bin 5", "Bin 5", "Bin 5", "Bin 5", "Bin 5", "LEV-II LEV", "Bin 4", "LEV-II ULEV", "LEV-II LEV", "LEV-II LEV", "LEV-II LEV", "Bin 5", "Bin 5", "LEV-II ULEV", "LEV-II LEV", "LEV-II ULEV", "LEV-II LEV", "Bin 5", "LEV-II LEV", "Bin 5", "Bin 5", "Bin 4", "LEV-II ULEV", "LEV-II ULEV", "Bin 5", "LEV-II LEV", "Bin 5", "LEV-II ULEV", "LEV-II ULEV", "Bin 5", "Bin 5", "LEV-II SULEV", "Bin 4", "Bin 5", "LEV-II LEV", "Bin 3", "Bin 4", "Bin 4", "Bin 5", "LEV-II ULEV", "LEV-II ULEV", "Bin 5", "Bin 5", "Bin 5", "Bin 4", "Bin 5", "LEV-II LEV", "Bin 5", "Bin 4", "Bin 4", "LEV-II ULEV", "LEV-II LEV", "LEV-II ULEV", "LEV-II LEV", "Bin 5", "LEV-II LEV", "LEV-II SULEV", "LEV-II ULEV", "LEV-II ULEV", "LEV-II LEV", "Bin 8", "LEV-II ULEV", "LEV-II ULEV", "LEV-II LEV", "LEV-II ULEV", "LEV-II ULEV", "Bin 5", "Bin 5", "LEV-II LEV", "Bin 5", "LEV-II ULEV", "LEV-II ULEV", "Bin 5", "LEV-II ULEV", "LEV-II ULEV", "LEV-II ULEV", "Bin 5", "Bin 5", "Bin 4", "Bin 5", "Bin 5", "Bin 4", "Bin 5", "LEV-II LEV", "Bin 5", "Bin 5", "Bin 5", "Bin 5", "Bin 5", "LEV-II ULEV", "Bin 4", "Bin 5", "LEV-II LEV", "Bin 5", "Bin 5", "LEV-II SULEV", "Bin 8", "Bin 5", "Bin 5", "Bin 5", "Bin 5", "Bin 5", "Bin 5", "LEV-II ULEV", "Bin 5", "LEV-II LEV", "Bin 5", "Bin 5", "Bin 5", "Bin 5", "Bin 5", "Bin 5", "LEV-II LEV", "Bin 5", "Bin 5", "Bin 5", "LEV-II ULEV", "Bin 5", "LEV-II ULEV", "LEV-II LEV", "LEV-II SULEV", "LEV-II SULEV", "Bin 5", "LEV-II ULEV", "LEV-II LEV", "Bin 5", "Bin 5", "LEV-II ULEV", "Bin 5", "Bin 5", "LEV-II LEV", "Bin 8", "Bin 5", "Bin 5", "Bin 5", "Bin 5", "LEV-II LEV", "LEV-II ULEV", "Bin 5", "Bin 5", "Bin 5", "Bin 5", "LEV-II LEV", "Bin 5", "LEV-II LEV", "Bin 5", "HEAVY DUTY", "Bin 4", "Bin 5", "Bin 5", "Bin 5", "LEV-II LEV", "LEV-II LEV", "Bin 5", "Bin 5", "Bin 5", "LEV-II ULEV", "Bin 4", "Bin 5", "Bin 5", "HEAVY DUTY", "LEV-II ULEV", "Bin 5", "LEV-II LEV", "Bin 4", "LEV-II LEV", "LEV-II LEV", "HEAVY DUTY", "Bin 3", "LEV-II SULEV", "LEV-II LEV", "LEV-II LEV", "LEV-II LEV", "Bin 5", "Bin 5", "LEV-II LEV", "Bin 5", "LEV-II SULEV", "Bin 5", "Bin 4", "LEV-II LEV", "Bin 5", "LEV-II LEV", "Bin 5", "LEV-II LEV", "LEV-II LEV", "Bin 5", "Bin 5", "Bin 5", "LEV-II ULEV", "Bin 5", "LEV-II ULEV", "HEAVY DUTY", "LEV-II SULEV", "LEV-II SULEV", "Bin 5", "Bin 5", "Bin 5", "Bin 5", "Bin 5", "LEV-II ULEV", "Bin 4", "LEV-II LEV", "Bin 5", "Bin 5", "Bin 5", "LEV-II SULEV", "LEV-II LEV", "Bin 5", "LEV-II LEV", "Bin 5", "Bin 5", "LEV-II ULEV", "LEV-II LEV", "LEV-II LEV", "Bin 5", "LEV-II ULEV", "Bin 5", "Bin 5", "Bin 5", "Bin 5", "HEAVY DUTY", "LEV-II SULEV", "LEV-II LEV", "Bin 5", "Bin 5", "Bin 5", "Bin 5", "Bin 4", "Bin 4", "LEV-II ULEV", "LEV-II ULEV", "LEV-II ULEV", "Bin 5", "Bin 5", "LEV-II ULEV", "Bin 5", "LEV-II SULEV", "HEAVY DUTY", "Bin 5", "Bin 3", "Bin 4", "LEV-II LEV", "Bin 4", "Bin 5", "Bin 5", "LEV-II LEV", "LEV-II ULEV", "LEV-II LEV", "Bin 5", "Bin 5", "Bin 4", "HEAVY DUTY", "LEV-II LEV", "Bin 5", "Bin 5", "Bin 5", "Bin 5", "Bin 5", "LEV-II LEV", "LEV-II LEV", "Bin 5", "Bin 5", "Bin 5", "Bin 5", "Bin 5", "Bin 5", "Bin 5", "Bin 5", "Bin 4", "LEV-II LEV", "Bin 5", "Bin 5", "LEV-II ULEV", "Bin 5", "LEV-II LEV", "Bin 5", "Bin 5", "Bin 5", "Bin 5", "Bin 3", "Bin 5", "Bin 5", "LEV-II ULEV", "LEV-II ULEV", "Bin 5", "Bin 5", "Bin 5", "Bin 5", "Bin 5", "Bin 5", "Bin 5", "LEV-II LEV", "Bin 2", "Bin 4", "Bin 4", "Bin 4", "Bin 5", "Bin 5", "LEV-II ULEV", "HEAVY DUTY", "LEV-II ULEV", "Bin 5", "LEV-II SULEV", "LEV-II ULEV", "LEV-II LEV", "LEV-II ULEV", "Bin 5", "LEV-II SULEV", "LEV-II LEV", "LEV-II ULEV", "Bin 5", "Bin 5", "Bin 4", "Bin 5", "LEV-II LEV", "HEAVY DUTY", "Bin 5", "Bin 4", "Bin 5", "Bin 5", "Bin 4", "LEV-II LEV", "LEV-II LEV", "Bin 5", "LEV-II LEV", "Bin 5", "LEV-II ULEV", "LEV-II ULEV", "LEV-II SULEV", "LEV-II LEV", "Bin 5", "Bin 5", "Bin 4", "Bin 5", "Bin 5", "Bin 5", "Bin 5", "LEV-II ULEV", "Bin 5", "LEV-II ULEV", "Bin 5", "LEV-II ULEV", "LEV-II LEV", "Bin 5", "LEV-II ULEV", "Bin 5", "LEV-II SULEV", "LEV-II ULEV", "Bin 5", "LEV-II ULEV", "Bin 4", "LEV-II ULEV", "LEV-II SULEV", "Bin 5", "Bin 5", "Bin 5", "LEV-II LEV", "Bin 5"], ["Annual", "Supra-annual", "Supra-annual", "Annual", "Sub-annual", "Sub-annual", "Sub-annual", "Supra-annual", "Sub-annual", "No cyclicity", "No cyclicity", "Annual", "Sub-annual", "Supra-annual", "Supra-annual", "No cyclicity", "Annual", "Supra-annual", "Supra-annual", "Annual", "Sub-annual", "Sub-annual", "Sub-annual", "Annual", "Sub-annual", "Sub-annual", "Annual", "Sub-annual", "Annual", "Supra-annual", "No cyclicity", "Sub-annual", "Sub-annual", "Annual", "Sub-annual", "Supra-annual", "Annual", "Sub-annual", "Sub-annual", "Annual", "Annual", "Sub-annual", "Annual", "Sub-annual", "Sub-annual", "Sub-annual", "Annual", "Sub-annual", "Annual", "Sub-annual", "Supra-annual", "Sub-annual", "Annual", "Supra-annual", "Supra-annual", "Annual", "No cyclicity", "Supra-annual", "Sub-annual", "Annual", "Supra-annual", "Annual", "Supra-annual", "Supra-annual", "Sub-annual", "Supra-annual", "Sub-annual", "Annual", "No cyclicity", "Annual", "Supra-annual", "Annual", "Supra-annual", "Annual", "Sub-annual", "No cyclicity", "Annual", "Annual", "Annual", "Sub-annual", "Annual", "Sub-annual", "Sub-annual", "Annual", "Annual", "Sub-annual", "Annual", "Annual", "Annual", "No cyclicity", "Sub-annual", "Annual", "Annual", "No cyclicity", "Annual", "Sub-annual", "Annual", "Supra-annual", "Sub-annual", "Supra-annual", "Sub-annual", "Sub-annual", "Annual", "Supra-annual", "Sub-annual", "Supra-annual", "Sub-annual", "No cyclicity", "Annual", "Supra-annual", "Sub-annual", "Annual", "Sub-annual", "No cyclicity", "Annual", "Sub-annual", "Sub-annual", "No cyclicity", "Annual", "Supra-annual", "Sub-annual", "Annual", "Annual", "Annual", "Sub-annual", "Annual", "Annual", "Supra-annual", "Annual", "Annual", "No cyclicity", "Supra-annual", "Annual", "Sub-annual", "Supra-annual", "Annual", "Sub-annual", "Annual", "Annual", "Sub-annual", "No cyclicity", "Supra-annual", "Sub-annual", "Sub-annual", "Sub-annual", "No cyclicity", "No cyclicity", "No cyclicity", "Annual", "Annual", "Supra-annual", "Supra-annual", "Supra-annual", "Annual", "Annual", "Sub-annual", "Annual", "Supra-annual", "No cyclicity", "Sub-annual", "Supra-annual", "Supra-annual", "Annual", "Annual", "Sub-annual", "Sub-annual", "Sub-annual", "Sub-annual", "No cyclicity", "Sub-annual", "No cyclicity", "Sub-annual", "Supra-annual", "Annual", "Sub-annual", "Annual", "No cyclicity", "Supra-annual", "Annual", "Sub-annual", "Supra-annual", "Sub-annual", "Annual", "Annual", "Annual", "No cyclicity", "Supra-annual", "No cyclicity", "No cyclicity", "Annual", "Sub-annual", "Sub-annual", "Sub-annual", "Annual", "Sub-annual", "Annual", "Annual", "Annual", "Sub-annual", "Annual", "Sub-annual", "Sub-annual", "Sub-annual", "Annual", "Sub-annual", "Supra-annual", "No cyclicity", "Sub-annual", "No cyclicity", "Annual", "Sub-annual", "No cyclicity", "No cyclicity", "Annual", "No cyclicity", "Annual", "No cyclicity", "Sub-annual", "Supra-annual", "No cyclicity", "Supra-annual", "Supra-annual", "Sub-annual", "Annual", "Sub-annual", "Sub-annual", "Sub-annual", "Annual", "Annual", "Annual", "Annual", "Sub-annual", "Supra-annual", "No cyclicity", "Annual", "No cyclicity", "No cyclicity", "Annual", "Supra-annual", "Annual", "Annual", "Supra-annual", "Annual", "Supra-annual", "No cyclicity", "No cyclicity", "Sub-annual", "No cyclicity", "Annual", "Sub-annual", "Supra-annual", "Supra-annual", "Annual", "No cyclicity", "Annual", "Sub-annual", "No cyclicity", "Sub-annual", "Annual", "Supra-annual", "Annual", "Supra-annual", "Sub-annual", "Annual", "Supra-annual", "Sub-annual", "Supra-annual", "Sub-annual", "Annual", "Sub-annual", "Annual", "Annual", "Annual", "Supra-annual", "No cyclicity", "Annual", "Sub-annual", "Annual", "Annual", "Supra-annual", "Annual", "Annual", "Annual", "Sub-annual", "Annual", "Supra-annual", "No cyclicity", "Annual", "Annual", "Supra-annual", "Sub-annual", "Sub-annual", "Sub-annual", "Sub-annual", "Annual", "Annual", "Sub-annual", "No cyclicity", "No cyclicity", "Supra-annual", "Sub-annual", "Sub-annual", "No cyclicity", "Annual", "Annual", "Sub-annual", "Sub-annual", "Annual", "Sub-annual", "Annual", "No cyclicity", "Annual", "No cyclicity", "No cyclicity", "No cyclicity", "Supra-annual", "Annual", "Annual", "Annual", "Supra-annual", "No cyclicity", "Annual", "Supra-annual", "No cyclicity", "Sub-annual", "No cyclicity", "Supra-annual", "Supra-annual", "Annual", "No cyclicity", "Annual", "Supra-annual", "Annual", "Sub-annual", "No cyclicity", "No cyclicity", "Sub-annual", "Annual", "Annual", "Annual", "Annual", "Sub-annual", "Sub-annual", "Sub-annual", "Annual", "No cyclicity", "Annual", "No cyclicity", "No cyclicity", "Sub-annual", "Annual", "Annual", "Supra-annual", "Sub-annual", "Supra-annual", "Sub-annual", "Sub-annual", "No cyclicity", "Annual", "Sub-annual", "Supra-annual", "Supra-annual", "Sub-annual", "Sub-annual", "Supra-annual", "Supra-annual", "Annual", "Annual", "Annual", "Sub-annual", "Annual", "Annual", "Sub-annual", "Sub-annual", "Supra-annual", "Annual", "Annual", "Supra-annual", "Sub-annual", "Sub-annual", "Annual", "Sub-annual", "Annual", "Annual", "No cyclicity", "Annual", "Sub-annual", "Sub-annual", "No cyclicity", "Annual", "Sub-annual", "Annual", "Sub-annual", "Annual", "Annual", "Sub-annual", "Sub-annual", "No cyclicity", "Annual", "Sub-annual", "Annual", "Annual", "Sub-annual", "Sub-annual", "No cyclicity", "Annual", "No cyclicity", "Sub-annual", "Supra-annual", "Annual", "Sub-annual", "Annual", "Supra-annual", "Sub-annual", "Sub-annual", "Sub-annual", "Sub-annual", "Sub-annual", "Supra-annual", "Supra-annual", "Annual", "No cyclicity", "Sub-annual", "Supra-annual", "Supra-annual", "Sub-annual", "No cyclicity", "Sub-annual", "Sub-annual", "Annual", "Annual", "Sub-annual", "Annual", "Sub-annual", "Sub-annual", "Annual", "Sub-annual", "Annual", "Annual", "Supra-annual", "Sub-annual", "Annual", "Sub-annual", "Annual", "Annual", "Sub-annual", "No cyclicity", "Annual", "Sub-annual", "Supra-annual", "Sub-annual", "Annual", "Annual", "Annual", "Supra-annual", "No cyclicity", "Annual", "Sub-annual", "No cyclicity", "Supra-annual", "Supra-annual", "Annual", "Sub-annual", "Annual", "Annual", "Supra-annual", "Supra-annual", "Supra-annual", "Annual", "Supra-annual", "Annual", "Annual", "Annual", "Sub-annual", "Annual", "Sub-annual", "Supra-annual", "No cyclicity", "Sub-annual", "Annual", "Annual", "Supra-annual", "No cyclicity", "Supra-annual", "Sub-annual", "Annual", "No cyclicity", "Sub-annual", "Sub-annual", "Annual", "Sub-annual", "Sub-annual", "Annual", "Supra-annual", "Annual", "Sub-annual", "Supra-annual", "No cyclicity", "Supra-annual", "Supra-annual"], ["2005 to 2009", "after 2010", "up to 2004", "2005 to 2009", "up to 2004", "up to 2004", "2005 to 2009", "2005 to 2009", "2005 to 2009", "after 2010", "2005 to 2009", "2005 to 2009", "2005 to 2009", "up to 2004", "2005 to 2009", "after 2010", "2005 to 2009", "2005 to 2009", "up to 2004", "2005 to 2009", "up to 2004", "after 2010", "up to 2004", "after 2010", "after 2010", "up to 2004", "after 2010", "2005 to 2009", "2005 to 2009", "2005 to 2009", "up to 2004", "after 2010", "2005 to 2009", "up to 2004", "2005 to 2009", "after 2010", "2005 to 2009", "up to 2004", "2005 to 2009", "after 2010", "up to 2004", "up to 2004", "up to 2004", "after 2010", "2005 to 2009", "2005 to 2009", "2005 to 2009", "2005 to 2009", "2005 to 2009", "up to 2004", "after 2010", "up to 2004", "2005 to 2009", "up to 2004", "after 2010", "up to 2004", "2005 to 2009", "up to 2004", "after 2010", "2005 to 2009", "up to 2004", "2005 to 2009", "up to 2004", "2005 to 2009", "2005 to 2009", "2005 to 2009", "up to 2004", "up to 2004", "after 2010", "2005 to 2009", "up to 2004", "up to 2004", "up to 2004", "2005 to 2009", "2005 to 2009", "up to 2004", "2005 to 2009", "2005 to 2009", "2005 to 2009", "up to 2004", "after 2010", "2005 to 2009", "2005 to 2009", "up to 2004", "up to 2004", "after 2010", "2005 to 2009", "2005 to 2009", "up to 2004", "2005 to 2009", "2005 to 2009", "up to 2004", "2005 to 2009", "up to 2004", "up to 2004", "up to 2004", "after 2010", "after 2010", "2005 to 2009", "up to 2004", "up to 2004", "2005 to 2009", "after 2010", "after 2010", "up to 2004", "up to 2004", "after 2010", "2005 to 2009", "2005 to 2009", "after 2010", "up to 2004", "2005 to 2009", "2005 to 2009", "2005 to 2009", "2005 to 2009", "up to 2004", "2005 to 2009", "2005 to 2009", "up to 2004", "2005 to 2009", "up to 2004", "2005 to 2009", "2005 to 2009", "2005 to 2009", "2005 to 2009", "2005 to 2009", "2005 to 2009", "2005 to 2009", "2005 to 2009", "up to 2004", "after 2010", "after 2010", "up to 2004", "up to 2004", "up to 2004", "2005 to 2009", "2005 to 2009", "2005 to 2009", "2005 to 2009", "2005 to 2009", "up to 2004", "after 2010", "up to 2004", "up to 2004", "after 2010", "up to 2004", "2005 to 2009", "up to 2004", "2005 to 2009", "up to 2004", "2005 to 2009", "up to 2004", "2005 to 2009", "up to 2004", "up to 2004", "2005 to 2009", "2005 to 2009", "2005 to 2009", "up to 2004", "up to 2004", "2005 to 2009", "2005 to 2009", "2005 to 2009", "up to 2004", "after 2010", "2005 to 2009", "up to 2004", "after 2010", "after 2010", "up to 2004", "2005 to 2009", "up to 2004", "2005 to 2009", "2005 to 2009", "up to 2004", "2005 to 2009", "after 2010", "up to 2004", "2005 to 2009", "2005 to 2009", "up to 2004", "after 2010", "up to 2004", "after 2010", "2005 to 2009", "2005 to 2009", "up to 2004", "up to 2004", "up to 2004", "2005 to 2009", "up to 2004", "up to 2004", "2005 to 2009", "after 2010", "2005 to 2009", "up to 2004", "after 2010", "2005 to 2009", "2005 to 2009", "2005 to 2009", "up to 2004", "2005 to 2009", "up to 2004", "2005 to 2009", "after 2010", "up to 2004", "2005 to 2009", "up to 2004", "2005 to 2009", "2005 to 2009", "up to 2004", "up to 2004", "up to 2004", "after 2010", "up to 2004", "after 2010", "after 2010", "2005 to 2009", "after 2010", "2005 to 2009", "2005 to 2009", "up to 2004", "2005 to 2009", "2005 to 2009", "after 2010", "after 2010", "after 2010", "2005 to 2009", "2005 to 2009", "2005 to 2009", "2005 to 2009"], ["COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "MUNICIPALS", "COMMON STOCK", "COMMON STOCK", "GNMA I", "COMMON STOCK", "COMMON STOCK", "GNMA I", "MUNICIPALS", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "BANK LOAN", "BANK LOAN", "BANK LOAN", "BANK LOAN", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "FHLMC", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "OP-EQUITY", "COMMON STOCK", "FHLMC", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "BANK LOAN", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "MUNICIPALS", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "MUNICIPALS", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "FHLMC", "BANK LOAN", "BANK LOAN", "COMMON STOCK", "BANK LOAN", "COMMON STOCK", "COMMON STOCK", "GNMA I", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "BANK LOAN", "COMMON STOCK", "MUNICIPALS", "FHLMC", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "BANK LOAN", "BANK LOAN", "COMMON STOCK", "FNMA", "MUNICIPALS", "COMMON STOCK", "COMMON STOCK", "BANK LOAN", "COMMON STOCK", "MUTUAL FUNDS", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "OP-EQUITY", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "BANK LOAN", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "FNMA", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "BANK LOAN", "COMMON STOCK", "BANK LOAN", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "GNMA I", "BANK LOAN", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "BANK LOAN", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "MUTUAL FUNDS", "GNMA I", "COMMON STOCK", "BANK LOAN", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "BANK LOAN", "COMMON STOCK", "GNMA I", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "BANK LOAN", "BANK LOAN", "FHLMC", "COMMON STOCK", "BANK LOAN", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "BANK LOAN", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "GNMA I", "BANK LOAN", "COMMON STOCK", "COMMON STOCK", "FHLMC", "BANK LOAN", "COMMON STOCK", "COMMON STOCK", "BANK LOAN", "BANK LOAN", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "OP-EQUITY", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "BANK LOAN", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "BANK LOAN", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "FHLMC", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "GNMA I", "BANK LOAN", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "BANK LOAN", "MUNICIPALS", "GNMA I", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "MUTUAL FUNDS", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "BANK LOAN", "COMMON STOCK", "BANK LOAN", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "MUTUAL FUNDS", "BANK LOAN", "COMMON STOCK", "COMMON STOCK", "MUNICIPALS", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "BANK LOAN", "BANK LOAN", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "WARRANTS", "COMMON STOCK", "MUNICIPALS", "COMMON STOCK", "COMMON STOCK", "MUNICIPALS", "COMMON STOCK", "BANK LOAN", "COMMON STOCK", "COMMON STOCK", "BANK LOAN", "BANK LOAN", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "MUNICIPALS", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "BANK LOAN", "COMMON STOCK", "BANK LOAN", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "MUNICIPALS", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "FNMA", "FHLMC", "COMMON STOCK", "COMMON STOCK", "GNMA I", "COMMON STOCK", "FNMA", "COMMON STOCK", "BANK LOAN", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "BANK LOAN", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "BANK LOAN", "COMMON STOCK", "BANK LOAN", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "GNMA I", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "BANK LOAN", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "MUNICIPALS", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "BANK LOAN", "COMMON STOCK", "BANK LOAN", "COMMON STOCK", "COMMON STOCK", "BANK LOAN", "GNMA I", "COMMON STOCK", "MUNICIPALS", "COMMON STOCK", "MUNICIPALS", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "GNMA I", "COMMON STOCK", "BANK LOAN", "MUTUAL FUNDS", "BANK LOAN", "COMMON STOCK", "MUNICIPALS", "COMMON STOCK", "BANK LOAN", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "BANK LOAN", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "MUTUAL FUNDS", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "BANK LOAN", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "OP-EQUITY", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "BANK LOAN", "COMMON STOCK", "COMMON STOCK", "FHLMC", "BANK LOAN", "BANK LOAN", "BANK LOAN", "BANK LOAN", "COMMON STOCK", "COMMON STOCK", "MUTUAL FUNDS", "BANK LOAN", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "BANK LOAN", "BANK LOAN", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "MUNICIPALS", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK", "COMMON STOCK"], ["COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "KENAI_BRIDGE", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "KENAI_BRIDGE", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "KENAI_BRIDGE", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "SNUG_HARBOR", "COOK", "KENAI_BRIDGE", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "KENAI_BRIDGE", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "SNUG_HARBOR", "COOK", "COOK", "COOK", "COOK", "COOK", "KENAI_BRIDGE", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "SNUG_HARBOR", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "SNUG_HARBOR", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "KENAI_BRIDGE", "INLET_FISH", "COOK", "COOK", "COOK", "COOK", "INLET_FISH", "COOK", "COOK", "KENAI_BRIDGE", "COOK", "COOK", "SNUG_HARBOR", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "INLET_FISH", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "KENAI_BRIDGE", "COOK", "SNUG_HARBOR", "COOK", "COOK", "COOK", "COOK", "SNUG_HARBOR", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "KENAI_BRIDGE", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "KENAI_BRIDGE", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "KENAI_BRIDGE", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "SNUG_HARBOR", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "KENAI_BRIDGE", "COOK", "COOK", "COOK", "COOK", "COOK", "INLET_FISH", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "KENAI_BRIDGE", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "INLET_FISH", "COOK", "INLET_FISH", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "KENAI_BRIDGE", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "INLET_FISH", "COOK", "COOK", "COOK", "COOK", "COOK", "SNUG_HARBOR", "COOK", "COOK", "COOK", "KENAI_BRIDGE", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "SNUG_HARBOR", "KENAI_BRIDGE", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "INLET_FISH", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "SNUG_HARBOR", "KENAI_BRIDGE", "COOK", "COOK", "COOK", "COOK", "COOK", "KENAI_BRIDGE", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "KENAI_BRIDGE", "INLET_FISH", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "KENAI_BRIDGE", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK", "COOK"], ["API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "Notification", "API", "API", "API", "API", "API", "API", "API", "API", "API", "Notification", "API", "API", "API", "API", "API", "API", "API", "Notification", "API", "API", "API", "API", "API", "API", "Notification", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "Notification", "API", "API", "API", "API", "Notification", "API", "API", "API", "API", "API", "API", "Notification", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "Notification", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "Notification", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "Notification", "API", "API", "API", "API", "API", "API", "API", "API", "Notification", "API", "API", "Notification", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "Notification", "API", "API", "API", "API", "API", "API", "Notification", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "Notification", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "Notification", "API", "API", "API", "Notification", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "Notification", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "Notification", "API", "API", "Notification", "API", "API", "Notification", "API", "API", "API", "API", "API", "Notification", "API", "API", "API", "API", "API", "API", "Notification", "API", "API", "API", "Notification", "API", "API", "Notification", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "Notification", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "Notification", "API", "API", "Notification", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "Notification", "API", "API", "API", "API", "API", "API", "Notification", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "Notification", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "Notification", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "Notification", "API", "API", "API", "Notification", "API", "API", "API", "API", "API", "API", "API", "API", "API", "Notification", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "Notification", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "API", "Notification", "API", "API", "API", "API", "API", "API", "API", "API"], ["passed rules", "passed rules", "passed rules", "passed rules", "passed rules", "passed rules", "passed rules", "passed rules", "passed rules", "passed rules", "passed rules", "passed rules", "passed rules", "passed rules", "passed rules", "passed rules", "passed rules", "passed rules", "passed rules", "passed rules", "passed rules", "passed rules", "passed rules", "passed rules", "passed rules", "passed rules", "passed rules", "passed rules", "passed rules", "passed rules", "passed rules", "passed rules", "passed rules", "passed rules", "passed rules", "passed rules"], ["13020020MO10A", "13013360CF10A", "14001185CF10A", "12023915MM10A", "13002183CF10A", "12047991TC10A", "13019495MM10A", "13009580MM10A", "13006441CF10A", "13014326CF10A", "13016206MM10A", "13001555CF10A", "13015326CF10A", "13012918CF10A", "13009112MM10A", "13012607CF10A", "12003092CF10A", "13021252MM10A", "13004470CF10A", "13014372CF10A", "13016097CF10A", "14003668CF10A", "13013426TC20A", "14001896CF10A", "13012305CF10A", "13008355MM10A", "13015966MM10A", "13012897MM10A", "13002666CF10A", "14012344MU10A", "14003627TC10A", "13012730MM10A", "13006123CF10A", "13001879MO10A", "13021320MM10A", "13002923MM10A", "12009076CF10A", "13003470CF10A", "13020015MM10A", "13001376MM10A", "13021770MM10A", "13006988MM10A", "14002407CF10A", "14001401CF10A", "13008835MM10A", "13012029CF10A", "13005836MM10A", "14004735MM10A", "13002220MM10A", "13006126CF10A", "13014594MM10A", "12015061CF10A", "14006771CF10A", "13008632MM10A", "13018327MM10A", "12017664CF10A", "13013387CF10A", "13007997MM10A", "13007307CF10A", "13003794CF10A", "12012054CF10A", "13002313CF10A", "13011540CF10A", "08002767MM40A", "13012610CF10A", "14002175CF10A", "13015711CF10A", "14003527CF10A", "13006834CF10A", "13002371MM10A", "13012674CF10A", "11014296CF10A", "13019413MM10A", "13002034CF10A", "13001964CF10A", "13006142TC10A", "14005435MM10A", "13005681CF10A", "13001486CF10A", "13012061CF10A", "13006767MM10A", "13002752CF10A", "13003930MM10A", "13016990CF10A", "14000304CF10A", "13009896MM10A", "13004542CF10A", "13007047CF10A", "13002993CF10A", "14002740CF10A", "13002543MM10A", "13014186CF10A", "14008779CF10A", "13011607CF10A", "13017167CF10A", "13012513CF10A", "13014650CF10A", "13015626MM10A", "13016288CF10A", "13002614CF10A", "14001353CF10A", "13000126CF10A", "13000988CF10A", "14001512CF10A", "14005510MM10A", "13004001MM10A", "13020735MM10A", "13016306CF10A", "14000129CF10A", "13011506CF10A", "13001158CF10A", "13009808MM10A", "13003684CF10A", "14001254CF10A", "14002949CF10A", "13004538CF10A", "13018598MM10A", "14003495MM10A", "13006418MM10A", "11008987MM10A", "13006819CF10A", "14000577CF10A", "12014646CF10A", "14000164CF10A", "13005886CF10A", "13023823MM10A", "13002333CF10A", "14000484CF10A", "13005388CF10A", "13002401MM10A", "14002312CF10A", "14000150CF10A", "13020661MM10A", "13003681CF10A", "13014080CF10A", "13005037CF10A", "11020553CF10A", "13015978CF10A", "13000335CF10A", "11005074MM10B", "13007371CF10A", "13000613CF10A", "13010142CF10A", "13028890TC10A", "13001429MM10A", "13013891CF10A", "14003774CF10A", "13019317MM10A", "13012142CF10A", "13004194CF10A", "13007533CF10A", "13007430CF10A", "13020111MM10A", "13006694CF10A", "13016966CF10A", "14000244MM30A", "13010493MM10A", "13017071MM10A", "14002787CF10A", "14008729MM10A", "13007781MM10A", "95026071MM10A", "14002330CF10A", "13006110CF10A", "13014984CF10A", "11004711CF10A", "14003005CF10A", "13006099CF10A", "13004269CF10A", "13005088MM10A", "13003758CF10A", "13016612CF10A", "13007024CF10A", "13003080CF10A", "13017888MM10A", "13002190MM10A", "13005982MM10A", "13010048MM10A", "97045105TC30A", "14000189MM10A", "14005666MU10A", "13012884CF10A", "13013638CF10A", "13010086CF10A", "13006036CF10A", "13005872TC10A", "14000581CF10A", "14008754CF10A", "13005305CF10A", "13008830MM10A", "13002104MM10A", "13015575CF10A", "13004836CF10A", "13014651CF10A", "14001814MM10A", "14000687CF10A", "13018188TC10A", "14017089CF10A", "13004626CF10A", "13003102CF10A", "12006115CF10A", "13020101MM10A", "14000052CF10A", "13020322MM10A", "13014475MM10A", "13006069CF10A", "13004968CF10A", "13000289CF10A", "14002666CF10A", "13010134MM10A", "14000160CF10A", "13017986CF10A", "13004687CF10A", "13000817CF10A", "14000375MU10A", "14003635CF10A", "13020967TC10A", "14002703CF10A", "13015695CF10A", "12015748MM10A", "13015161MM10A", "13003937CF10A", "13002086CF10A", "13021823MM10A", "13015612MM10A", "13001629CF10A", "13004248CF10A", "13003749MM10A", "13006130MM10A", "13012428CF10A", "14003736CF10A", "13009083MM10A", "13006054CF10A", "12011021MM10A", "13007065CF10A", "13013818CF10A", "12010496CF10A", "14003572MM10A", "13001282CF10A", "13017791CF10A", "13014176MM10A", "13010099CF10A", "13003495CF10A", "13001461CF10A", "13010504MM10A", "13001025CF10A", "13007691MM10A", "13001778CF10A", "13015967MM10A", "08021085MM10A", "13006615CF10A", "14000990CF10A", "11012788CF10A", "14003189CF10A", "13007177MM10A", "14000418MM10A", "13011710CF10A", "13000390CF10A", "13003159CF10A", "13000290CF10A", "14000458CF10A", "09016467CF10A", "13011422CF10A", "13015965CF10A", "13012310CF10A", "13013779CF10A", "13021606MM10A", "14016475CF10A", "13006170MM10A", "13012006CF10A", "13018331MM10A", "13014123CF10A", "10002822CF10A", "14002253MM10A", "13005613CF10A", "14006232MM10A", "13002463CF10A", "13002206CF10A", "13007374MM10A", "13022837MM10A", "13015117CF10A", "13004527MM10A", "13003509CF10A", "13016847CF10A", "12003600CF10A", "13002959MM10A", "13005908CF10A", "13000056MM10A", "13013382CF10A", "13012705CF10A", "13002053CF10A", "13012957CF10A", "13014809CF10A", "13018424MM10A", "13010777CF10A", "13000251CF10A", "13023579MM10A", "14001403MM10A", "13005930CF10A", "13008193CF10A", "14000940CF10A", "13043243TC10A", "13003613MM10A", "14001448CF10A", "13006597CF10A", "14001476CF10A", "13017736CF10A", "10015383CF10A", "14009173CF10A", "13013261CF10A", "13010109MM10A", "13006497MM10A", "12016112CF10A", "13011211CF10A", "13013217CF10A", "13002360MM10A", "13021245MM10A", "13004567CF10A", "13003773TC10A", "13002177CF10A", "13002338CF10A", "13007964MM10A", "13006255CF10A", "13018928MM10A", "13012228MM10A", "13000630CF10A", "13011514CF10A", "11009021CF10A", "13004649CF10A", "13012788CF10A", "13000017CF10A", "13005322CF10A", "13020090MM10A", "13017980CF10A", "13002961CF10A", "13009141MM10A", "13021612MM10A", "13013342CF10A", "13009398CF10A", "11000338CF10A", "13014815CF10A", "13016989MM10A", "13015037CF10A", "13004552MM10A", "14011556CF10A", "13005008CF10A", "13004111CF10A", "08015707CF10A", "13016878MM10A", "13006538CF10A", "13018696MM10A", "13014751MM10A", "13016064CF10A", "13000053MM10A", "13006644CF10A", "14011300CF10A", "13002672CF10A", "13000599CF10A", "13000796MM10A", "13023727MM10A", "13004791MM10A", "13011146CF10A", "13018140MM10A", "13000765MM10A", "13010461MM10A", "13005554CF10A", "12012106CF10A", "13015693CF10A", "13002085MM10A", "13014279CF10A", "13001641CF10A", "13014106CF10A", "13017373CF10A", "13015187CF10A", "13001015CF10A", "13002600CF10A", "12010013CF10A", "14000145CF10A", "13019327TC10A", "13022342MM10A", "13005083CF10A", "13008618CF10A", "13001701MM10A", "13015685CF10A", "14004080MM10A", "13015812CF10A", "13002888CF10A", "13003985CF10A", "13007477CF10A", "13014746TC20A", "13015300CF10A", "13005373CF10A", "12011072CF10A", "14002842CF10A", "13012819CF10A", "13005462CF10A", "13006365MM10A", "13008678CF10A", "13003259CF10A", "13009851MM10A", "13013581CF10A", "13006415CF10A", "14011759CF10A", "13000137CF10A", "14005495MM10A", "14016488MM10A", "13005684CF10A", "13014011CF10A", "13005748MM10A", "13018920MM10A", "13016144CF10A", "13002928CF10A", "13003290CF10A", "14000280MM10A", "14003508MM10A", "08027204MM10A", "13003923CF10A", "14001125MM10A", "13017910CF10A", "13000441CF10A", "13017762CF10A", "13001878MM10A", "13013358TC10A", "13015943TC10A", "13009140CF10A", "13010846CF10A", "13007798MM10A", "13020651MM10A", "13005191CF10A", "13014644CF10A", "12023063MM10A", "13022078MM10A", "14002366CF10A", "13009266MM10A", "13002469CF10A", "13001085CF10A", "14014474CF10A", "12022229TC10A", "13004719MM10A", "14004534MM10A", "13015696CF10A", "13017492CF10A", "13015018CF10A", "14004245MM10A", "13011816CF10A", "13017620CF10A", "13011815CF10A", "13007601MM10A", "13000246CF10A", "14001660CF10A", "14000051CF10A", "13002247CF10A", "11013444CF10A", "13001781TC10A", "13001223CF10A", "05002511CF10A", "13008699MM10A", "13009539CF10A", "13003466CF10A", "14015731CF10A", "14002691CF10A", "13010467CF10A", "14005660MU10A", "13014619CF10A", "14003418CF10A", "13017379CF10A", "13000180MM10A", "13010092MM10A", "13003239CF10A", "13007454CF10A", "13001296MM10A", "13012733MM10A", "13013598CF10A", "13011017CF10A", "13007822CF10A", "13006827CF10A", "13003199CF10A", "13005160MM10A", "13016640CF10A", "13004343CF10A", "13000430CF10A", "13020899MM10A", "13004783MM10A", "13017362CF10A", "11083457TC20A", "13002684CF10A", "13015392MM10A", "14002669CF10A", "13002930MM10A", "13021839MM10A", "14004701MM10A", "12010890CF10A", "13013931CF10A", "13007235CF10A", "13019860MM10A", "13012624CF10A", "13004518CF10A", "13001306MM10A", "14001373CF10A", "13021541MM10A"], ["harrell", "fontes", "davis", "harris", "robles", "daniels", "calvert", "wiggins", "chamberlain", "lamore", "morgan", "lambert", "garzon", "rayoni", "sherman", "dejesus", "penaranda", "moody", "james", "humberto", "hamilton", "wilson", "carrington", "robins", "major", "parker", "kirk", "davis", "varela", "schneider", "simon", "kinchen", "amos", "cooke", "mcdade", "jackson", "jackson", "comete", "kinchen", "fernandez", "stsuria", "tate", "calle", "harvey", "williams", "nerestant", "walls", "webber", "wallace", "sari", "ariastabima", "cedieu", "randazzo", "harnarrine", "moreno", "baxter", "monroe", "ceron", "maquez", "sims", "brown", "mitchell", "lambke", "mitchell", "price", "ellison", "ross", "fabre", "carter", "pauleuc", "stephan", "kumar", "moore", "farlow", "brown", "bonair", "gray", "armstrong", "bryden", "sifuentes", "demard", "castanon", "smith", "denicola", "dixon", "dolph", "walker", "johnson", "burkland", "beachem", "lapaix", "mondestin", "lall", "oconnell", "ruiz", "mccray", "phillips", "elliott", "adger", "sanderns", "robichaud", "smith", "johnson", "castano", "pena", "ferguson", "knight", "carvallo", "obrien", "holmes", "messina", "jean", "hedges", "gustave", "hopkins", "haffner", "fleury", "criscione", "jarjour", "rodriguez", "pierre", "lovett", "huffman", "collier", "grant", "ware", "spillane", "walker", "martin", "mccloud", "ervin", "scott", "lewis", "idowu", "saunders", "blackwood", "kiffin", "younger", "austin", "soltau", "watts", "cobb", "smith", "triana", "burton", "culmer", "walden", "giard", "navarro", "hanna", "lara", "martins", "duval", "bennett", "raphael", "dismuke", "hopkinson", "ferdinand", "woodson", "bowers", "mcminn", "pryor", "williams", "garcon", "cabrera", "fernandez", "thomas", "scott", "wardlaw", "malone", "farrow", "kasten", "llaguna", "cortes", "frazier", "lewis", "greenslade", "perry", "aquino", "debbik", "fals", "scalisi", "parker", "wesley", "marks", "dixon", "curtis", "daniels", "hylton", "schoen", "larmond", "voltaire", "bohannon", "rawiszer", "mckinley", "chaj", "meixner", "sheppard", "walker", "ricks", "santamaria", "rowe", "powers", "costino", "jardine", "ford", "robinson", "luzon", "stevens", "louis", "pulliam", "harris", "miranda", "pendergrass", "crayton", "broadway", "sandrin", "delisi", "scott", "palmer", "hines", "morla", "thompson", "bogans", "thompson", "phillips", "dean", "blackshure", "lamar", "kitt", "cambridge", "duran", "wyatt", "espino", "diaz acosta", "cataldo", "hise", "george", "johnson", "adderley", "bigger", "bard", "melchor", "vitale", "ashen", "lewis", "dowds", "grant", "gwynn", "depalma", "del-carmen", "marcelin", "reid", "merritt", "brantman", "peralta", "collazos", "wilson", "johnson", "scott", "perez", "santiago", "lara", "beljour", "brooks", "grisham", "igelesias", "black", "kasdorf", "diz", "millican", "smellie", "sweet-foy", "zayas", "salow", "petinaud", "leon", "primose", "white", "gonzalez", "evans", "coppin", "gonzalez", "cross", "hill", "malaric", "dumera", "brown", "thomas", "cerra", "lamparter", "obrien", "hemingway", "davis", "sylvester", "fosca", "joseph", "tisdale", "powell", "funez", "johnson", "litherland", "bridges", "miranda", "adams", "ocasio", "clark", "cross", "lynn", "caprice", "lacayo", "simpson", "delcid", "cruse", "byrd", "cure", "villa", "rozo", "walker", "fasano", "spitler", "king", "lee", "may", "hawkins", "brunson", "fluker", "hanson", "dees", "laurent", "ackerman", "fodul", "montalvo", "habersham", "deprima", "collier", "scott", "philus", "williams", "baker", "edwards", "rose", "vera", "freeman", "barry", "cleophar", "blue", "zafir", "campos", "bishop", "ingraham", "gilbert", "exilus", "marshall", "young", "jimenez", "rivera", "duarte", "margadonna", "burnett", "pascal", "de souza", "friedland", "demenezes", "beguiristain", "guide", "powers", "llauro", "tai", "mustafa", "murray", "simpson", "gebar", "ng", "rodriguez", "lawrence", "smith", "campbell", "bastian", "williams", "rodriguez", "tinnell", "fox", "eaton", "howell", "suarez", "russell", "garland", "raudales", "burrows", "joseph", "stanley", "justice", "tarver", "chin", "gordontoylor", "rigaud", "major", "weaver", "brooks", "schwartz", "miller", "english", "harris", "celestin", "holmes", "williams", "johnson", "carlson", "merico", "evans", "spinney", "yates", "dabrezil", "obasogie", "mccarter", "emond", "whittaker", "perry", "jones", "caro", "agenord", "smith", "valencia", "pazgarcia", "mckenzie", "johnson", "brayboy", "ravitz", "strickland", "bryan", "griffin", "forester", "tepper", "quinones", "wiley", "harrison", "wilson", "rivas", "goudreau", "rosemberg", "sarver", "delgado", "dobronozenk", "laurent", "hyman", "blake", "carlo", "jolly", "jones", "jarnagin", "rotati", "rolle", "fields", "castillo", "hawks", "bethea", "mosley", "higgins", "yaggle", "watts", "howard", "gersbach", "adhemar", "garrison", "wilson", "myers", "brinson", "maczko", "taylor", "higgs", "viera", "montgomery", "stephenson", "killings", "floyd", "bass", "casaberry", "black", "reed", "love", "monroe", "forero", "kirkpatrick", "baptista", "beausejour", "perez", "darlington", "kirker", "guedes", "haynes", "cerpa", "bryant", "dagnell", "grab", "vansteenkiste", "walker", "gamaa", "stoney", "meadows"], ["Johnson", "Perkins", "Seitz", "Christensen", "Wertz", "Sherrod", "Jones", "Phillips", "Ricketts", "Case", "Gee", "Schiller", "Harmon", "Fitzmaurice", "Deitz", "Herb", "Adair", "Mcpherson", "Wagner", "Conroy", "Flynn", "Lowder", "Duncan", "Hammett", "Jacobs", "Cook", "Ford", "Jackson", "Pellegrin", "Gardner", "Gomez", "Jensen", "Davis", "Fraser", "Benitez", "Primm", "Runkle", "Willett", "Schilling", "Randolph", "Lynch", "Zimmerman", "Carn", "Joseph", "Pacheco", "Kizer", "Huerta", "Kautz", "Crews", "Dunn", "Childress", "White", "Ebert", "Hull", "Reynolds", "Bracero", "Koenig", "Johnson", "Mathis", "Masters", "Forrest", "Battle", "Lee", "James", "Graham", "Orcutt", "Moya", "Christopherso", "Miller", "Gimbel", "Mccane", "Marko", "Scott", "Salcedo", "Everhart", "Streeter", "Stine", "Thomas", "Sears", "Langston", "Dehn", "Conklin", "Mitchell", "Doolittle", "Hoag", "Shea", "Law", "Crowley", "Barrow", "Elder", "Haffner", "Kelly", "Evenson", "Augustine", "Lewis", "Allen", "Doner", "Beringer", "Darnell", "Adams", "Salem", "Solis", "Green", "Lewis", "Mullen", "Barrie", "Huffman", "Ware", "Araujo", "Furtado", "Humphries", "Gilmore", "Butler", "Smith", "Mccarthy", "Boatright", "Ortega", "Sager", "Martin", "Carmona", "Schneider", "Price", "Mcdonald", "Messick", "Martinez", "Bailey", "Roberts", "Turner", "Romero", "Mccoy", "Porras", "Hart", "Tavares", "Parrish", "Gillespie", "Bennett", "Pagan", "Smith", "Austin", "Kelly", "Cosner", "Butterfield", "Mccarthy", "Smith", "Rasmussen", "Hill", "Stanley", "Howe", "Harris", "Hong", "Lake", "Groom", "Jackson", "Oconnell", "Mack", "Hobbs", "Godfrey", "Padilla", "Presswood", "Alvarez", "Chavez", "Lewis", "Talavera", "Wright", "Perez", "Rausch", "Concepcion", "Hurtado", "White", "Potter", "Johnson", "Hannon", "Richardson", "Williams", "Smith", "Brock", "Sparks", "Stafford", "Martinez", "Dunlap", "Wilder", "Strickland", "Phelps", "Brown", "Pless", "Seigler", "Webb", "Callahan", "Olson", "Ramey", "Franklin", "Eller", "Liu", "Stephens", "Kelley", "Dickens", "Gurganus", "Mason", "Boyle", "Felix", "Davis", "Webb", "Quinn", "Ritchey", "Summers", "Zeller", "Moten", "Sanner", "Roy", "Benson", "Dubay", "Farrar", "Yi", "Gaudet", "Webb", "Hernandez", "Orr", "Smith", "Douglas", "Frisby", "Mcdowell", "Mccloud", "Butler", "Durham", "Yoon", "Starnes", "Tillman", "Foxworth", "Cordova", "Thomas", "Davis", "Hicks", "Blanchard", "Thompson", "Mccutchen", "Gambill", "Wise", "Maxwell", "Martinez", "Davis", "Wieland", "Barber", "Dowdy", "Diaz", "Ly", "Sanders", "Simeon", "Harrington", "Jones", "Kimball", "Woolsey", "Mccray", "Raby", "Sanchez", "Nickell", "Wallace", "Bass", "Embry", "Fugate", "Peters", "Parrish", "Babineau", "Brown", "Mccormick", "Budd", "Starks", "Maginnis", "Cannon", "Stallworth", "Baggett", "Flakes", "Pender", "Wills", "Rogers", "Hinrichs", "Romero", "Braden", "Dailey", "Harvey", "Couch", "Bruce", "Hash", "Smith", "Reed", "Franklin", "Dewitt", "Barfield", "Sullivan", "Watts", "Melvin", "Mcelroy", "Zeiger", "Tolman", "Abbas", "Hebert", "Hicks", "Waters", "Boaz", "Ortiz", "Foley", "Covarrubias", "Hopkins", "Jacobs", "Montoya", "Frazee", "Gibson", "Gibbs", "Jones", "Tyler", "Whitbeck", "Gary", "Garcia", "Giambrone", "Mello", "Riser", "Holland", "Lagunas", "Beard", "William", "Fisher", "Hall", "Webster", "Salgado", "Penny", "Heard", "Lando", "Lucas", "Velazquez", "Blake", "Weber", "Pierre", "Castellanos", "Roberts", "Petty", "Brown", "Monroe", "Story", "Quinones", "Garnett", "Dimartino", "Dukes", "Farley", "Crider", "Mann", "Gorham", "Caston", "Coley", "Morrison", "Mcintyre", "Cahoon", "Jones", "Gasaway", "Hill", "Jones", "Seely", "Fox", "Coates", "Enlow", "Beard", "Hager", "Morlan", "Mcgee", "Alexander", "Snavely", "Roy", "Cloutier", "Pratt", "Stewart", "Harper", "Jones", "Rogers", "Metzger", "Pomeroy", "Roman", "Boone", "Truesdale", "Brake", "Burge", "Angelo", "Gaston", "Rodriguez", "Calhoun", "Butler", "Oliva", "Cole", "Morgan", "Smith", "Valenti", "Alvarez", "Howard", "Anderson", "Dickerson", "Little", "Hall", "Decker", "Lumsden", "Nakamura", "Hoerner", "Johnson", "Dietz", "Fuller", "Lewis", "Say", "Earl", "Huntsberry", "West", "Bailey", "Hargraves", "Davis", "Butler", "Rosol", "Thomas", "Busse", "Fitzpatrick", "Stepp", "Lipscomb", "Reed", "Arterburn", "Allen", "Moultrie", "Griffin", "Menendez", "Behr", "Marsh", "Medina", "Bianchi", "Cho", "Carlton", "Santiago", "Lee", "Oconner", "Hefley", "Breault", "Jackson", "Summers", "Osullivan", "Hayes", "Schultz", "Chamblee", "Amaro", "Wan", "Parshall", "Packard", "Harden", "Daley", "Johnstone", "Osgood", "Baldwin", "Strickland", "Garrett", "Boston", "Black", "Schroeder", "Smith", "Sonnier", "Fisher", "White", "Bonetti", "Gray", "Burleson", "Newkirk", "Bell", "Haase", "Burke", "Backman", "Jackson", "Kilmer", "Anderson", "Corbin", "Allen", "Mcdaniels", "Crow", "Shelton", "Richardson", "Yazzie", "Smith", "Plemmons", "Rodrigue", "Marquis", "Olsen", "Dicken", "Ryan", "Maguire", "Jean", "Sargent", "Hampton", "Carter", "Taylor", "Carbaugh", "Ramos", "Dyer", "Vargas", "Richardson", "Eliason", "Kalish", "Johnson", "Freeman", "Oceguera", "Dunlap", "Stormer"], ["Ritter", "Davenport", "Davis", "Reed", "Wright", "Paquette", "Delossantos", "Anguiano", "Miller", "Kilroy", "Davis", "Edwards", "Brewer", "Walters", "Hage", "Abbott", "Barnes", "Medina", "Brown", "Packard", "Warburton", "Mccarthy", "Pugh", "Bigelow", "Young", "Switzer", "Velez", "Frazier", "Hurst", "Power", "Marquette", "Brown", "Farr", "Morris", "Gonzales", "Walden", "Terry", "Woodward", "Mangrum", "Butler", "Shackelford", "Mackenzie", "Freeman", "Frierson", "Winston", "Boynton", "Williams", "Campos", "Adams", "Case", "Cochrane", "Johnson", "Crews", "Fitz", "Barnard", "Velasquez", "Aaron", "Gillum", "Ripple", "Wright", "Greer", "Gray", "Durrett", "Ruiz", "Criswell", "Shelton", "Duarte", "Ferguson", "Baird", "Monk", "Meinhardt", "Mitton", "Robertson", "Rodriguez", "Malcom", "Hamm", "Garcia", "Lindsay", "Patterson", "Gilbert", "Provencher", "Wilkerson", "Hochstetler", "Stewart", "Harris", "Wegman", "Franklin", "Crist", "Harrison", "Johnson", "Bowden", "Montgomery", "Bonilla", "Cottrell", "Wilson", "Oglesby", "Whitehead", "Frost", "Heath", "Westbrook", "Hill", "Troy", "Woods", "Perkins", "Sizemore", "Nunez", "Rodriguez", "Hay", "Brandon", "Gonzales", "Cox", "Manning", "Williams", "Powers", "Sikora", "Rooker", "Tookes", "Hartley", "Garza", "Smith", "Young", "Watson", "Trotter", "Alexander", "Gaitan", "Knickerbocker", "Wallace", "Clark", "Vanwinkle", "Scott", "Moss", "Gray", "Brown", "Davidson", "Wilber", "Sweeney", "Nettles", "Justice", "Bentley", "Butters", "Bruch", "Cooke", "Chang", "Walker", "Hicks", "Griego", "Fraser", "Wagner", "Ratzlaff", "Emerick", "Jones", "Derry", "Fischer", "Huey", "Lamb", "Aguilar", "Flowers", "Magee", "Everitt", "Chavez", "Strong", "Zehr", "Dixon", "Field", "Silva", "Page", "York", "Longmire", "Cancel", "Beaumont", "Bennett", "Yawn", "Santos", "Dickens", "Chavez", "Mcpeek", "Lott", "Guzman", "Owens", "Montez", "Sanders", "Edwards", "Gibson", "Johnson", "Tipton", "Johnson", "Owen", "Mann", "Lieb", "Houpt", "George", "Lowry", "Shiver", "Frame", "Renner", "Newton", "Phelan", "Soto", "Roark", "Lemieux", "Hubbard", "Vines", "Patterson", "Hernandez", "Leal", "Hickman", "Torres", "Camacho", "Ledesma", "Kepler", "Curry", "Woolley", "Peterson", "Green", "Williams", "Heckart", "Rosario", "Thomas", "Harris", "Loera", "Diggs", "Mesa", "Ransom", "Carpenter", "Welker", "Taylor", "Kasper", "Czapla", "Arce", "Seo", "Wade", "Wade", "Tate", "Tijerina", "Ryan", "Mangum", "Schneider", "Hart", "Hoff", "Melton", "Amis", "Shirley", "Donoho", "Noland", "Booker", "Bryant", "Hoskins", "Fish", "Flint", "Duncan", "Rodriguez", "Lecuyer", "Reese", "Turner", "Daniels", "Niemeyer", "Trotter", "Williams", "Colson", "Harris", "Collins", "Hogue", "Green", "Casares", "Williams", "Horn", "Goddard", "Ocasio", "Boehm", "Sharp", "Jefferies", "Snyder", "Chisolm", "Ponce", "Kerby", "Dalessandro", "Carter", "Deane", "Choate", "Braun", "Augustine", "Casper", "Harris", "Thomas", "Johnson", "Dutton", "Buser", "Daugherty", "Shannon", "Pizarro", "Lindgren", "Knight", "Holmes", "Latham", "Crawford", "Goins", "Morris", "Ringer", "Keene", "Lynn", "Paine", "Oliver", "Garmon", "Parrott", "Calton", "Castillo", "Galli", "Ripley", "Porter", "Golson", "Castillo", "Hill", "Morris", "Wade", "Delarosa", "Wolff", "Ferrell", "Parvin", "Andrus", "Love", "Stewart", "Haley", "Brown", "Samuels", "Butler", "Griffin", "Davis", "Williamson", "Banks", "Fox", "Burns", "Mcconnell", "Bond", "Elwell", "Emerick", "Garcia", "Phelps", "Null", "Travis", "Davis", "Barber", "Phillips", "Lee", "Martinez", "Mohn", "Craft", "Mickey", "Gray", "Beck", "Holt", "Bryant", "Atkins", "Baskin", "Riser", "Clarke", "Parrett", "Mcphee", "Heng", "Garrett", "Tucker", "Hruska", "Moore", "Pickett", "Anderson", "Thompson", "Taylor", "Collins", "Wardell", "Tiedeman", "Korn", "Hoeppner", "Greenlee", "Johnson", "Hamm", "Martin", "Thompson", "Thomas", "Baldwin", "Green", "Negri", "Pennington", "Nunnally", "Harris", "Dickerson", "Simpson", "Zuniga", "Ellington", "Maxwell", "Ellingson", "Morales", "Miller", "Williams", "Yarnell", "Sampson", "Long", "Brandt", "Griggs", "Wickline", "Williams", "Johnson", "King", "Mcnally", "Chenoweth", "Thompson", "Mckee", "Reid", "Brown", "Stackhouse", "Stanfield", "Compton", "Carey", "Bennett", "Phillips", "Dawes", "Gardner", "Jones", "Berkey", "Carrington", "Hull", "Allen", "Agustin", "Hall", "Davila", "Page", "Her", "Sullivan", "Downard", "Vila", "Simpkins", "Allen", "Hay", "Gracia", "Midgett", "Barrera", "Glasscock", "Mascorro", "Jackson", "Vitale", "Bradley", "Glass", "Cahill", "Alvarado", "Dobbins", "Dillon", "Graham", "Collins", "Sabbagh", "Grant", "Wells", "Le", "Hardy", "Campbell", "Holland", "Mcauley", "Burns", "Borges", "Madden", "Rivera", "Reyes", "Young", "Ricketts", "Bonds", "Ross", "Hennig", "Willis", "Miller", "Eads", "Seidl", "Tassone", "Trice", "Gregory", "Hereford", "Clark", "Mcgruder", "Dayton", "Law", "Hudgins", "Norfleet", "Watkins", "Cave", "Baumbach", "Costa", "Curtis", "Ferrer", "Laster", "Blansett", "Martel", "Crocker", "Faber", "Riggs", "Flores", "Bauder", "Bailey", "Gately", "Phillips", "Frank", "Reichard", "Brown", "Rowell", "Marquez"], ["3101264", "349224", "36928", "365222", "330979", "234818", "C 4001", "PC 17757", "111428", "349237", "29751", "S.O.C. 14879", "113789", "21440", "35273", "315097", "349210", "113781", "PC 17754", "342826", "2668", "2668", "347082", "347060", "323592", "363291", "2650", "695", "26360", "3101278", "334912", "349215", "347088", "19943", "349244", "347082", "347061", "C.A. 18723", "367232", "324669", "PC 17604", "312991", "349218", "28220", "112053", "28424", "S.O.C. 14879", "382651", "345770", "SO/C 14885", "13568", "2628", "PC 17477", "PP 4348", "11765", "A/5 2817", "1601", "PC 17599", "C 7075", "36928", "2674", "358585", "382652", "244373", "250644", "SC/Paris 2123", "244252", "11668", "A/4. 39886", "4133", "13502", "C.A. 2315", "C 7076", "29104", "27849", "349214", "W./C. 14263", "26707", "2641", "13502", "113796", "347742", "PC 17755", "A/5 3540", "330959", "29106", "PC 17600", "A/4. 34244", "350047", "PC 17759", "250651", "330932", "2926", "CA 2144", "345769", "347068", "349216", "2699", "233866", "112050", "17474", "SC/PARIS 2131", "376564", "PC 17485", "113800", "2664", "31418", "17453", "315037", "13509", "Fa 265302", "349223", "2665", "2661", "248706", "17421", "392096", "364850", "36864", "382652", "PC 17610", "29105", "2653", "239855", "239853", "230434", "345764", "19877", "347080", "2669", "SC/AH 3085", "239865", "17464", "3101276", "248723", "230136", "368703", "349203", "C.A. 31026", "323951", "226875", "349219", "312992", "S.O./P.P. 3", "250649", "7553", "370129", "S.P. 3464", "347466", "2693", "113055", "4133", "A/5 3594", "24160", "16966", "A/5. 13032", "A/5 21172", "27267", "2694", "W./C. 6608", "PC 17761", "364846", "250646", "3101295", "113803", "31027", "363294", "29750", "367226", "250652", "PC 17558", "17466", "PC 17590", "349237", "229236", "11753", "PC 17596", "C.A. 2673", "C.A. 2673", "345781", "350404", "W./C. 14258", "330931", "11774", "237442", "244367", "LINE", "384461", "347464", "4137", "SC/PARIS 2146", "236852", "PC 17761", "2680", "2678", "2627", "347742", "231945", "347082", "237736", "367228", "28228", "3101295", "2677", "236171", "345780", "A/S 2816", "110465", "SC 1748", "364516", "13502", "28206", "347054", "220845", "C.A. 37671", "382652", "28665", "236853", "347082", "347078", "2631", "315096", "PC 17477", "237565", "248727", "315090", "SC/Paris 2123", "349201", "113760", "239853", "SC/Paris 2163", "330980", "113798", "345767", "36947", "C.A. 5547", "345777", "364849", "231919", "W./C. 6608", "113781", "312993", "PC 17757", "349222", "112058", "CA. 2314", "113794", "234360", "2678", "28134", "2672", "35281", "113788", "65306", "330877", "A4. 54510", "110413", "3101295", "113767", "PC 17760", "CA. 2343", "367229", "7540", "113773", "F.C.C. 13529", "112052", "371110", "C.A. 24580", "CA. 2343", "35852", "LINE", "113803", "113807", "349909", "370371", "8471", "113509", "C.A. 2315", "2625", "394140", "A/5 21174", "349247", "113806", "113501", "110813", "2667", "349208", "SC/PARIS 2133", "349241", "C.A. 31921", "386525", "2659", "A/5 3536", "C.A. 6212", "3101295", "A/5 21173", "371110", "2003", "CA 2144", "PC 17582", "113028", "PC 17475", "111320", "349253", "364500", "12233", "345779", "3101296", "36973", "17465", "A/5. 851", "34218", "17764", "244278", "233639", "2651", "239865", "250647", "2689", "19947", "19950", "29106", "237798", "2666", "347077", "F.C. 12750", "PC 17593", "350050", "239854", "PC 17757", "PC 17593", "250649", "2699", "248727", "345764", "S.O.P. 1166", "248740", "110413", "11751", "PC 17755", "364516", "110152", "113786", "347088", "28403", "2695", "367655", "S.O.C. 14879", "315151", "1601", "374910", "363291", "383121", "2908", "PC 17603", "2651", "110413", "C 17369", "113510", "CA. 2343", "350052", "110465", "14313", "A/5. 2151", "3101277", "347062", "12749", "5727", "PC 17755", "376566", "LINE", "3101295", "1601", "113776", "PC 17569", "PC 17483", "19988", "248738", "A/4 45380", "W/C 14208", "A/5. 3336", "371110", "345765", "113050", "C.A. 29395", "17453", "C.A. 33111", "349249", "113056", "14312", "244310", "347088", "F.C.C. 13529", "349245", "370370", "P/PP 3381", "364498", "PC 17601", "PC 17473", "PC 17608", "363291", "345763", "349233", "17421", "13049", "WE/P 5735", "11755", "2690", "2666", "CA. 2343", "349227", "392091", "3411", "349251", "370129", "C.A. 34260", "36947", "7598", "347088", "364499", "PC 17609", "4133", "1601", "SC/PARIS 2149", "243880", "349909", "370369", "113505", "336439", "315084", "335677", "S.O./P.P. 751", "33638", "19950", "113776", "368323", "349213", "35851", "7546", "110564", "11813", "11668", "3101278", "19972", "7545", "349217", "113781", "250655", "330919", "3101267", "345783", "373450", "345364", "349243", "2666", "PP 9549", "2624", "28213", "PC 17592", "PC 17482", "8475", "111369", "376564", "PC 17611", "347063", "11767", "250643", "350025", "29106", "347080", "PC 17757", "19950", "347088", "358585", "349221", "13567", "C.A. 17248", "PC 17612", "113505", "244358", "349234", "CA. 2343", "PC 17605", "347743", "372622", "347470", "350043", "345778", "2697", "28664", "350029", "250644", "WE/P 5735", "349240", "28425", "A./5. 3235", "A/5 3902", "PC 17758", "1601", "PC 17758"], ["0.0824292212", "0.7694891917", "0.9972415334", "-0.0005926456", "0.0088441674", "0.0804158838", "-0.0007712148", "1.1717543015", "1.0011117658", "0.0162257312", "0.0112737484", "0.339229342", "0.089540287", "0.0111159896", "0.018923469", "1.1488129213", "0.997283935", "0.0711229597", "0.9977998231", "0.9800806773", "0.0131021543", "1.0020360438", "0.0948293423", "0.0280398582", "0.0861766935", "0.010963933", "1.1770433996", "0.0248523217", "0.0128507184", "0.1278614071", "0.011417399", "1.0098215936", "0.0104364572", "0.9986077573", "0.9924050247", "-0.0009102987", "0.0208958329", "0.0254748136", "0.9969950335", "1.054247685", "0.0193212826", "1.0012676926", "0.0002503452", "0.1361766467", "0.0621845395", "0.67512699", "0.0933326234", "0.996452666", "0.8398957201", "1.0769726022", "0.9094089484", "0.0229578458", "0.9847691142", "0.1137420843", "0.0090103841", "0.9972292598", "1.1757301419", "1.0020169172", "0.2508869242", "-0.0008947854", "1.0053703958", "1.0069127096", "0.999283146", "0.9755251023", "0.0179138725", "0.0711878634", "0.9957336278", "0.0120502433", "0.0063065413", "0.9935254249", "0.0902657152", "0.0123618886", "0.0056973794", "0.0805711945", "1.0002250305", "0.0857247351", "0.0811285888", "0.9885418245", "0.9996137375", "0.1079520227", "0.8058161732", "0.9972824009", "1.001023146", "0.1204208642", "0.3187843026", "0.0742502633", "1.0006682347", "0.211478046", "0.0099000241", "0.0201281506", "0.1873458714", "0.282215787", "0.0707493618", "1.0655125528", "1.0047285443", "0.7283444976", "0.0822046786", "1.0022854832", "1.001587481", "1.0021641645", "0.0110311356", "0.0123038245", "0.0823258511", "0.0314471155", "1.0436532521", "0.0098936517", "0.0777157134", "0.0177309373", "1.0914294781", "0.9849109949", "0.0728509607", "0.9883267691", "0.0841414154", "0.0196393636", "0.0718012336", "0.0205310947", "1.0004344399", "0.0134585376", "0.0443198614", "0.5136942108", "0.0963322608", "1.0023399817", "0.0765842485", "-0.0009774408", "1.0055199836", "0.9041422797", "0.009975069", "0.0105682156", "0.0095813509", "0.9988790121", "0.0077991672", "0.9981708957", "0.9984470335", "0.0803254986", "-0.0003916121", "0.4041100015", "0.9999289405", "0.0093912686", "0.0566618181", "0.079623209", "0.0780711196", "0.0708908946", "0.0132165279", "0.9810595395", "1.0033081132", "0.009662117", "0.0301732483", "0.0141881966", "0.072701763", "0.992087712", "0.8802415157", "1.0133993243", "0.00878731", "0.9171667118", "0.0118585982", "0.0290575449", "0.0152346552", "0.9988673535", "0.0679920769", "0.014420544", "0.0125621133", "0.0147289686", "0.9979884395", "0.0271187282", "1.0017223675", "0.9348835573", "1.0195272335", "1.0114719435", "0.0388171658", "0.0810652745", "0.0802646776", "0.154774792", "0.0520422753", "-0.0004699876", "0.0170631385", "0.9926390403", "0.0936732446", "1.0008898129", "1.1612206816", "0.9974448456", "1.0058429652", "1.1629877669", "1.0041160314", "1.0021779137", "0.0159060679", "0.0958376846", "0.0126013092", "0.0744138766", "0.009250887", "0.1651204093", "1.1283729893", "0.0750828256", "1.0361728605", "0.0816975643", "0.0166572424", "1.0284529509", "0.0974088365", "0.0105210946", "0.0969088843", "0.1023298481", "0.0757572897", "0.2666091937", "1.0014925371", "0.0213956189", "0.0218625735", "0.1451885171", "0.0822889284", "1.1479878237", "0.9792406701", "1.000048795", "1.0016602443", "0.9453779815", "0.9798753525", "0.2240554174", "0.0139641021", "0.0816616322", "0.9873583921", "0.1756671505", "0.3004827257", "0.0030434561", "0.0738468549", "0.0173042585", "0.0116898459", "0.3607324024", "0.0151711366", "0.013683573", "0.9802650167", "0.0413217529", "1.0331447384", "0.080757347", "0.995210027", "0.9806245299", "0.382366609", "0.0223625216", "1.0029675908", "0.0101460174", "0.034602367", "1.1211849835", "0.0167950551", "0.0364932556", "0.0070527939", "0.0145489171", "0.0829719981", "0.6046903215", "0.0017148654", "0.0091131863", "1.0026502605", "0.9270068263", "1.1097998905", "0.0242603844", "0.1992344564", "0.0182455492", "0.0893538037", "0.2381944443", "0.0185557156", "0.0105947862", "1.0031159174", "0.0925052297", "0.0115254076", "0.0329497917", "0.0262774916", "1.0004913213", "0.0720254625", "0.0138063578", "1.0064874906", "0.0478795624", "0.0094872114", "1.0003422192", "1.0005517249", "0.999449067", "1.0794818958", "0.9557976593", "1.0047496498", "0.0866164762", "0.0163103442"], ["0.0320240337", "0.0270581551", "0.9958999188", "1.0405779039", "0.0712155792", "0.0082283007", "1.0113103695", "0.0783350788", "0.0113443369", "1.0039148076", "0.0140280417", "-0.0006813519", "0.862634674", "0.0112380322", "0.3021907231", "0.0619247577", "1.0901970936", "0.1992151588", "0.9901730618", "0.0261664118", "0.1667523252", "1.0649074561", "1.0111007363", "0.9855511181", "0.6316947587", "1.0026174515", "0.0199472045", "0.017753955", "1.018800006", "1.0164256884", "0.0122585539", "1.2120531876", "0.0675489739", "1.0190556321", "0.0027583527", "0.9159448337", "0.0102471753", "1.0877814136", "1.2008327852", "0.0304627846", "0.9945239728", "0.0858222295", "0.9905248039", "0.0728211291", "0.7367849884", "0.0124580089", "0.0812793439", "0.0843320652", "0.9821461968", "0.9879985295", "0.1100613594", "0.0160563428", "0.0840070379", "0.2113373103", "0.5561688481", "0.7770695617", "0.0280089148", "0.0156958372", "0.0095985829", "0.9991901757", "1.024567477", "1.0004002556", "0.0718463771", "0.994774316", "0.0116159382", "0.9897852995", "0.0118007544", "0.0291489183", "0.0131059722", "1.0533156598", "0.0124073424", "1.2115848215", "0.0229970018", "1.0074642739", "0.07440119", "0.1044349448", "1.0040258385", "0.0566940323", "0.3601546406", "0.0083715977", "0.0710252648", "0.0151642026", "0.01175865", "0.0127288275", "0.0142101886", "0.0066958505", "0.1391168324", "0.0089840739", "0.0204150522", "1.0326853642", "0.0090703701", "1.1666772087", "0.0826822705", "0.1229523312", "1.2181815671", "0.0945183002", "0.0868819342", "0.9931829555", "0.0786498072", "1.0975351118", "0.9934201463", "0.1306912176", "0.9893987888", "0.0831781119", "1.0122240073", "1.1168794127", "1.0253080209", "0.0108619971", "0.0869149601", "1.0013749946", "0.0337248397", "0.0053740133", "0.9884120534", "0.9905357932", "1.0376291369", "0.0813870037", "0.1776334877", "0.0150909537", "0.9877943722", "0.0816010875", "0.0120168702", "0.0097270355", "0.9887823163", "0.0851458196", "0.9331592745", "0.0783975218", "1.000183788", "0.0357073342", "0.0179592848", "0.0086726253", "0.0104298708", "0.0877889663", "0.9958653025", "0.9979821636", "1.0050141945", "0.9817245161", "0.0437691859", "1.1673830417", "0.0810376791", "0.9983520471", "0.0740202354", "1.1905487733", "0.0016928712", "0.9401725715", "0.2840269043", "0.083636405", "0.0138491635", "1.0186088871", "1.1075683701", "0.0475230801", "0.997047937", "0.0855232463", "0.950595862", "1.0337174197", "0.009290434", "0.9970561761", "0.0164136695", "0.0831482415", "1.1850273767", "1.0017547583", "0.9999461185", "0.0136487157", "0.9720646195", "1.0061814292", "1.0185334429", "1.2173899598", "0.0173031342", "0.0167128626", "1.0009357578", "0.0135243847", "0.0224810205", "0.0517575871", "0.085004992", "0.0195117833", "0.987769235", "0.1477678256", "0.0146880432", "1.0160027639", "0.9914906734", "0.2372827187", "0.2238908549", "0.0170601531", "0.0187849737", "0.267295714", "0.3399916679", "1.1452886965", "0.9917201079", "0.0763153749", "1.0326839052", "0.0107539195", "0.1162915733", "0.040702345", "0.0852390715", "-0.0005880876", "0.0796692244", "0.0707638726", "0.0729099934", "0.0088406198", "0.0105868222", "0.9770233482", "0.0794085807", "0.9850954352", "0.0213460321", "0.8180163085", "1.0767912413", "1.0008138088", "1.0153674518", "0.1887146503", "0.0716819466", "0.9913346478", "0.0773092479", "0.0003224183", "0.0189923773", "-0.0008422818", "0.3212232662", "0.0094689382", "0.6904276798", "0.0811183096", "1.000797034", "0.0159305118", "0.0756172016", "-0.0009417894", "0.0990907473", "0.0085336685", "-0.0004572021", "0.2506612995", "0.0380804296", "1.0400330856", "0.0208347474", "0.0093597828", "0.0877046034", "0.9908658256", "0.0099452008", "0.0109590581", "0.086710392", "-0.0002796289", "1.0102938502", "0.9947032083", "0.9930598094", "0.0099281011", "0.9945567352", "0.0073945212", "1.1327732476", "0.0057974319", "0.4635999858", "0.0133480664", "0.0181008485", "0.0847214782", "0.0797899713", "0.9988312147", "1.0183358901", "1.0180490144", "0.0087356804", "0.0101855979", "0.98763443", "0.0776037286", "0.0153740531", "1.0013701533", "0.972875732", "0.0236657313", "0.0084737602", "0.0787823907", "0.0110606523", "1.1295571628", "0.0098039602", "0.9258769916", "0.1567572416", "0.0707356221", "0.0727671499", "0.0903440568", "0.0128950369", "0.995518242", "0.0252388497", "-0.0009826229", "0.0244095642"], ["0.9980048775", "0.0129906566", "0.9968851041", "1.0756417947", "0.0811545064", "0.0199659591", "0.0896901518", "1.0176612179", "0.0164807467", "0.9843144539", "0.0821629673", "0.9957652624", "1.1998481955", "0.0885064109", "0.0100315248", "0.0154755248", "0.08596085", "0.0138512991", "0.4924261426", "0.0841688097", "0.0780011473", "0.0136550063", "0.0001726443", "0.3028446904", "0.0945831389", "0.0863584872", "0.8034520318", "0.0067164067", "0.0121974376", "0.0301357702", "0.0805272199", "0.0151212422", "0.0349389712", "0.0092922222", "0.9941992541", "0.018854963", "0.9972731572", "0.010577761", "0.0770215063", "0.0781217687", "0.0117979915", "0.0926885421", "0.0143930363", "0.9106277894", "0.011193285", "0.1477571476", "0.0699005147", "0.0908337494", "0.9940662995", "0.0236453727", "0.5864878166", "0.1389103378", "0.1232584704", "0.0087921289", "0.0869367392", "0.0104923512", "0.321858359", "1.0032053039", "0.0204071626", "0.9998083656", "0.0499431575", "0.0096482584", "1.0074647092", "0.0991493908", "1.0047414993", "0.0267918953", "1.0074848873", "0.081362033", "0.0458621765", "0.9588976025", "0.0177494771", "0.9980126621", "0.0158916714", "0.984870033", "0.9979185541", "0.0156278023", "0.0700628698", "0.0917420557", "0.1306617944", "0.9981801043", "1.0124937844", "1.0028284102", "0.9958113886", "0.0752161675", "0.0729391181", "0.1782772881", "0.9972265281", "1.0091600875", "1.0007753652", "1.0000587359", "0.8409052343", "0.9901492717", "0.0180574862", "0.0133729116", "0.9981541954", "0.917755598", "0.997214614", "1.2032087652", "0.0126966053", "0.9990097937", "0.037150913", "0.9975796889", "0.9858919914", "-0.0004844027", "1.0028610088", "0.0106915722", "0.0424447696", "0.9855669989", "0.2388932227", "0.9984280856", "0.0765999576", "0.2685317037", "-0.0009172834", "0.9998866804", "0.9989670989", "0.0921844907", "0.012034799", "1.0179206481", "0.1044215828", "0.0125166202", "0.0191478458", "0.0109872463", "0.9997598823", "1.1045561512", "0.0715743229", "0.0087227499", "0.0153685908", "0.2012071545", "0.2848322996", "0.9985378827", "1.0056643413", "0.9997556245", "0.2532518299", "1.1888728917", "0.1898043219", "0.0231816779", "0.6628255564", "0.0074247147", "0.9844348698", "0.0171660656", "1.1948380519", "0.0130864187", "0.0173247957", "0.0092005424", "1.0070481142", "0.0060046749", "1.065503726", "1.0552100691", "0.9873722416", "1.0887866361", "0.984117402", "0.073907773", "0.9046677006", "0.9975298722", "1.1693920082", "0.0103051815", "0.0778957702", "0.0834110193", "1.1657706804", "0.0017672689", "0.931094328", "0.9990540412", "0.0168550989", "0.0119053651", "0.065418755", "0.0250679027", "0.9934371358", "0.010840414", "0.0799659763", "0.0093476664", "1.0050971629", "0.3846979125", "1.0142234318", "0.9964230112", "0.3632027685", "0.0792730442", "-0.0009603972", "0.0219277428", "0.0259012455", "0.0708540212", "0.0715929956", "0.0085321144", "0.0094679543", "0.0083361566", "1.0090372438", "0.9965355908", "0.0242899723", "0.0124730561", "0.0787410508", "0.9974249235", "1.0960709297", "0.9994235482", "0.0288272067", "0.9821062214", "-0.0003491878", "0.1674362491", "0.0788722815", "0.0597670687", "0.7195842114", "1.1439783499", "1.0361967623", "1.1242573885", "0.0135099741", "0.8827942758", "0.0698452492", "0.0801943995", "0.0085778537", "0.0744305186", "0.7640769705", "0.0907853763", "1.0455840511", "0.0116914821", "0.011228811", "0.0544850092", "0.0790315605", "-0.000600526", "0.2129574937", "0.3422915078", "0.9988986636", "0.0089175728", "0.9986076294", "0.0195244958", "1.0005267354", "0.0114397545", "0.0099984952", "0.0726557728", "0.9372833126", "0.0083457681", "0.0090732232", "0.0395612", "0.0213836008", "0.0028772173", "0.9989694678", "0.0209191663", "0.9993259238", "0.0161767129", "0.9833098961", "-0.0007465696", "0.9499141136", "0.0798474845", "0.9924774667", "0.2256483667", "0.0278632306", "0.0762420561", "0.9917138965", "0.0804355609", "-0.0007580917", "0.0701901691", "1.0010536161", "0.9965522477", "1.0027069075", "0.0782938979", "1.011102848", "0.9999627285", "0.0713181989", "0.0100870189", "0.0101710638", "1.0001278534", "0.0145575247", "1.0428190964", "0.0141330059", "1.1832721333", "1.1374184819", "0.116038224", "0.994953096", "0.0705746816", "0.0331304373", "0.997604915", "0.0183982372", "1.0287497563", "0.1098201618", "0.1576215635", "1.0011138423", "0.0054141096", "0.0314892192"], ["1.1213673726", "0.019798961", "0.9874181907", "0.0121792219", "0.2789535865", "0.0748468324", "0.0849962128", "0.0059261955", "1.0140134739", "0.996033959", "0.1571118154", "0.0095349712", "1.007151366", "0.0089904276", "0.0130466428", "0.0781657428", "0.0425215712", "0.0156089472", "0.025704452", "0.0762633744", "0.0329814633", "0.0755311842", "0.1111542869", "0.0125078018", "0.0844443744", "0.0017584844", "0.9659413644", "0.0778484876", "0.0643123794", "0.1311505568", "0.0970117602", "0.0103027887", "0.0093954908", "0.0109784872", "0.6609006263", "1.0031888832", "0.9963227388", "0.9968833067", "1.0002281956", "1.0083400822", "1.0611666818", "0.0169317237", "0.0053885282", "0.1393550095", "0.0092188858", "1.0013085188", "0.0115321916", "0.0299053706", "0.9800804277", "1.0000824141", "1.0022121765", "0.0140233732", "1.0053238288", "0.0083562611", "0.0825764083", "0.9989890792", "-0.0007777874", "0.3314666179", "0.9996416162", "1.0023737118", "0.9990873336", "0.989424799", "0.0851690712", "0.0122901102", "0.0189861836", "0.2634721662", "0.07515465", "0.0809437649", "0.9941759244", "0.0172978188", "0.0207007093", "0.9958406626", "0.2477513901", "1.0059889933", "1.0012810464", "0.9824779747", "0.0086594413", "0.0098964545", "0.0116186946", "0.9964348492", "0.995572323", "1.0954125699", "0.0865571587", "0.000162921", "0.0193528504", "0.0104969415", "0.0313447367", "0.0084780935", "0.0074583115", "0.0847235367", "0.0993310215", "0.010212833", "0.9951008552", "1.0036805215", "1.1334080027", "0.0540485651", "1.0500973554", "0.7426058211", "0.9972690988", "0.1666502175", "0.0804561187", "0.1055372472", "0.99030916", "0.9914594939", "0.0119933744", "1.0638068366", "0.9999986164", "0.990837536", "0.9286889162", "0.1860083149", "0.1476225326", "0.1012524188", "0.0826192293", "1.0075565367", "0.9930208257", "0.0863784547", "0.9997269618", "0.0249384784", "1.037432261", "0.0885881454", "1.0127746683", "0.0116716358", "0.0158117471", "0.078726204", "0.0202949126", "1.0045491336", "1.0113683096", "1.1127813397", "-0.0005220771", "-0.0003573682", "0.7017031438", "0.0099890751", "0.016097603", "0.9906208716", "1.0080546854", "0.0265696545", "0.01084047", "1.0119314901", "1.0120867507", "0.0142243101", "0.0276384419", "0.5014540983", "0.0737944331", "0.0224260573", "0.0127232165", "0.0103869281", "0.1010383748", "1.1549955239", "0.1005781766", "0.9992663714", "1.0890836733", "0.0064964492", "0.0930370533", "0.0098837795", "1.0691440833", "0.9218510378", "0.8874488927", "0.0234422826", "-0.0009211802", "1.0011371913", "0.0128335967", "1.0154786157", "0.0849308572", "0.9863246171", "0.0111290095", "0.9452088816", "0.9884004637", "0.0840748359", "0.0212278761", "0.0150034979", "0.045858127", "0.0137891131", "1.1445996354", "0.0099396466", "0.0106634489", "0.0240825657", "-0.0004240278", "0.0165671151", "0.0395282821", "0.1171485386", "0.421599173", "0.0110122598", "0.01858834", "0.0132127941", "0.0804842108", "0.01765057", "1.0054025858", "1.1402656438", "0.9995160348", "0.9448897411", "1.0012799114", "1.0043304425", "0.0918258127", "0.0833624695", "0.2333595508", "0.1237162732", "0.0229727615", "-0.0009347473", "1.0009487481", "1.1549918166", "0.0691779749", "0.0178159654", "0.2965169114", "0.0083189726", "0.0151357418", "0.0772297512", "0.7870333228", "0.0825279783", "1.004372548", "0.0744511231", "0.0590993008", "0.2203728946", "0.988513609", "0.196151675", "0.3131408006", "0.1026505002", "1.004424276", "0.0369633698", "0.9884635538", "0.0348725513", "0.1033254516", "0.008794186", "0.1763724672", "0.0092837271", "1.0869895068", "1.0009686414", "0.9868413506", "0.014806759", "0.0963396492", "0.0960776955", "1.006201676", "0.0496914824", "0.9917706484", "1.1039445859", "1.1600658453", "0.9927757454", "0.0090687077", "0.5648558417", "0.0942763716", "0.0182296409", "0.9873260892", "-0.0009411613", "0.0913282941", "0.0135431237", "1.1202902729", "0.0878338589", "0.9878681637", "0.9422850453", "1.0024941084", "1.077350163", "0.9939711504", "0.0085754426", "0.1026238521", "0.0829982619", "1.0055002364", "0.0286113287", "1.0031757982", "0.0118746618", "0.002957627", "0.9193511302", "0.0163793353", "0.0832799768", "0.6168242027", "0.0898787717", "1.030738264", "1.0010455251", "0.0995050832", "0.0133477215", "0.0152980286", "0.8362700311", "0.0748761503", "0.2075135427", "0.0831142758", "0.9932463523", "0.0088506807"], ["0.9981442677", "0.0765442272", "1.0005004109", "1.0044686826", "0.0294131282", "1.0055484424", "0.0883299733", "0.0351190953", "1.2144396035", "0.0108666765", "0.1405238415", "0.0726149132", "1.0006836507", "0.077659001", "0.0098522199", "0.0905503319", "0.073625703", "0.0371618262", "0.1041281772", "1.0103762515", "0.0054743406", "1.00205481", "0.0836044135", "0.0127025049", "1.0323588799", "0.9820981531", "0.0137700557", "0.2960315004", "1.0096642485", "0.1236762955", "0.0140157486", "0.0752453998", "0.0827709225", "1.0078933954", "0.00891693", "0.402278224", "0.9952967243", "0.017291807", "1.0035303984", "0.0225122089", "0.0220781753", "1.0001642367", "0.997691141", "0.887188952", "0.0184443022", "1.0064894394", "1.0057579103", "0.0689324152", "1.00717464", "0.0001970857", "0.0963645285", "0.0739784873", "0.0087067945", "0.0867935952", "1.2258309418", "0.0094416189", "1.0193046404", "0.9734358226", "0.0136610585", "1.2006705413", "0.0533573158", "0.0190991828", "1.23301101", "0.0773417217", "0.0215380505", "0.9967022307", "0.0131887062", "1.0000874556", "0.0018425533", "0.0206018708", "0.0420964032", "0.9989914617", "0.9971125051", "1.1597424325", "0.9154248032", "0.015244065", "0.9842969809", "0.0143703118", "0.0197661444", "0.9176858788", "0.069243681", "0.0780786704", "0.0673951428", "0.9762409279", "1.0043464983", "1.1813765996", "1.0292122091", "0.0095450888", "0.0118166364", "0.0250576654", "0.0257268627", "0.9940352392", "1.1815591689", "0.0201982412", "0.0130206466", "0.0719342282", "0.6398528048", "0.0121884621", "-0.0005826213", "1.0044393257", "1.0042238202", "0.0840470967", "0.9728112299", "0.2338815538", "0.0992198445", "1.0875696541", "0.998178223", "0.0061617827", "0.0805350207", "0.0274929845", "0.9857119577", "0.0100966503", "0.0320074414", "0.0681259162", "1.0317876725", "0.9742333983", "-0.0007763768", "1.0205047736", "0.314260069", "0.2208650672", "0.9892698677", "0.9982134229", "1.0164335713", "0.9965886109", "1.2096486521", "1.0986021494", "0.0176762196", "0.3564648057", "0.934000041", "1.1364395444", "0.5428721907", "0.017905461", "0.0107449531", "0.1097008533", "0.0170510209", "0.0946154798", "0.9991652582", "0.0265741158", "0.0097995357", "0.0210634967", "1.0050842552", "0.9973739579", "0.8146828496", "0.0765141312", "0.0112016985", "0.0283612169", "1.0716116345", "0.0700742619", "-0.0003247273", "0.0490340294", "1.0518672761", "0.0098200585", "1.0186056443", "0.098623466", "0.0134663115", "0.0231409664", "0.0194247097", "0.0120299246", "1.0044906911", "1.0321641536", "0.9953834822", "0.012361727", "0.0711799503", "0.0929251096", "0.9740242286", "0.0092343031", "0.0168260436", "0.2077234196", "0.116518785", "0.0965892766", "1.1147717064", "0.4258597038", "0.9956487749", "0.0147741091", "0.0142050575", "0.9997006744", "0.9894320923", "0.7723857559", "0.9946568864", "1.0026055136", "0.9548491701", "1.0417944635", "0.0792932544", "0.9287187844", "0.0394144341", "1.0011663512", "0.9727350465", "0.2628385563", "1.0009306326", "0.0677437908", "0.0186144724", "1.0013915136", "0.016540862", "0.0115098853", "0.0700943252", "0.0069875726", "0.1825449473", "0.9700564549", "0.0581509685", "1.0011255574", "1.0008448923", "0.0985932987", "0.1600724227", "0.0116538427", "0.9997453343", "1.0248661102", "0.0087906624", "0.0777686526", "0.0704813644", "0.0904609027", "1.0620168576", "0.063908777", "0.0157327624", "0.0673989028", "0.0939137235", "-0.0010328155", "-0.0008243083", "0.0777746434", "0.0146488095", "0.0104083969", "0.0754457635", "0.0243729697", "0.0676206309", "0.9994975402", "0.045277166", "0.0334569186", "0.0778241437", "0.0090579752", "0.012768901", "0.1501649506", "0.0075651027", "-0.0006130439", "0.9974309153", "0.011208563", "0.0104785713", "0.3794790284", "0.2477186664", "1.225068283", "0.0682872017", "0.0086866585", "0.0162248601", "0.03069398", "1.1413053688", "0.9761873702", "0.0030900327", "0.0813776844", "1.0132225075", "0.0106821307", "1.0122543911", "0.8520307619", "0.0872210341", "0.0776556763", "0.9767312983", "1.0082814366", "0.9920324492", "0.0103569921", "1.0831692418", "0.0113733577", "0.717362891", "0.3343590913", "0.016249539", "0.9559726988", "0.0150967006", "0.9896640563", "0.0991985611", "0.0093328112", "0.1710565267", "0.2787723282", "0.1951578731", "0.0125399532", "1.0224413292", "0.1319836469", "1.011847563", "-0.0009750585", "1.0340783763"], ["0.020794898", "0.0405495781", "0.0199818822", "0.9963116732", "1.0014189951", "0.9967692511", "0.0693301949", "0.7354796723", "-0.0007973808", "0.9960162611", "0.0087771815", "0.0103711178", "0.9998703496", "0.0159440979", "1.0031346548", "1.0447032439", "0.0177567532", "0.024740487", "0.0308351933", "0.0876757608", "0.0139622201", "0.0093103883", "0.0672074881", "0.0295361489", "0.9940437103", "0.0101962781", "0.9912718385", "0.0110854324", "0.999658198", "0.9954619468", "1.1158928062", "0.0096671241", "1.0485430982", "1.035331824", "0.998875004", "1.0001316771", "0.338947511", "1.0067847977", "0.012836512", "0.0792323355", "0.0187574654", "0.0213076115", "0.2812439299", "-0.0009386064", "0.1529103198", "0.9435812787", "0.9937360807", "1.0798030813", "1.0646984701", "1.0098708664", "1.0059886482", "0.105808202", "1.0003611235", "0.0116882955", "1.0075467295", "0.095261244", "0.989613424", "1.0029519174", "0.4046380951", "1.1832623298", "1.0192143532", "0.3187636129", "0.0755261479", "0.0087003916", "1.0009014572", "0.009078336", "0.0089690436", "-0.0003765459", "0.6812840799", "0.0717212771", "0.9788307159", "0.0469778076", "0.0162851548", "0.9815657602", "0.9953633721", "0.0091495451", "1.1361814146", "-0.0008244098", "1.1561894206", "1.0020390588", "0.0770902404", "0.0717300218", "1.0084456618", "1.0089875543", "0.0002027209", "1.0023492909", "0.0240725023", "0.1257929074", "0.8149114099", "0.0690212903", "1.0011624891", "0.0120473206", "0.0379502514", "0.0906385002", "0.1180539408", "1.0276111428", "0.0166419628", "0.0184781234", "0.9965446585", "-0.0007841523", "0.0108284073", "0.0338794477", "0.0930668159", "0.0817149963", "1.007491123", "0.9989342765", "0.0126248001", "0.0734120742", "1.1380924429", "1.00789628", "1.182783366", "-0.0005852904", "0.0701870544", "0.7765892479", "0.0511185884", "0.9998301983", "1.190957904", "0.0947392814", "1.0022077668", "0.0732796453", "0.6099481917", "0.061106428", "0.0114327235", "0.1736325119", "1.0021560289", "0.1340590477", "0.015841543", "0.0703065894", "0.0133701316", "0.0775287109", "0.1976555513", "1.1937512286", "0.0120672574", "0.0085119361", "-0.0004567175", "1.0009799727", "0.0157519603", "0.013663403", "1.0049657659", "0.0106367441", "0.023775275", "0.2102304507", "0.2498539001", "0.0098596849", "1.0965137726", "1.0012545886", "0.0681751445", "0.1431366578", "0.0945031427", "0.0180838039", "0.0673978601", "0.0767081137", "0.0683105235", "0.0085424128", "0.0147349224", "0.9880313405", "1.0048490757", "0.011207281", "0.0140827481", "0.0256393636", "0.987388723", "0.0108162575", "1.0012227777", "0.2992903823", "0.9963833507", "0.0772405321", "0.3833631102", "0.2358913094", "0.0871824688", "1.0974094667", "0.017169029", "0.997275097", "0.0132033162", "0.9975454852", "0.0798101462", "0.3605177185", "0.0223830943", "0.8919438836", "0.8501541842", "0.0775503862", "0.998836983", "0.0113608284", "0.9824780617", "1.0012363067", "0.0016359454", "0.0129489295", "0.0067798322", "0.9999911118", "0.0103001654", "0.9023933737", "0.9982279882", "0.0174282819", "0.2655510974", "0.0807123317", "0.013576627", "0.0144342663", "0.1857003642", "0.9985038841", "0.0677937139", "0.1634076598", "0.0322246822", "0.0779030621", "0.0924914121", "0.1000689208", "0.9845564246", "0.9964998006", "0.9173541426", "0.0729820029", "0.0118322428", "0.9988898778", "1.0157492301", "0.0558033352", "0.0284415355", "0.9899541124", "0.0890728814", "0.0218075291", "0.0076771403", "1.0064365822", "1.0006099457", "0.5175176569", "0.980157837", "0.0838058951", "0.9957203207", "0.9567855294", "0.9950859232", "0.0670279936", "0.0264427933", "0.9984593804", "0.0910843795", "0.9855193673", "0.2221523515", "0.0055670157", "0.0168129737", "0.1115217908", "0.0357981454", "0.0954319481", "1.0011262483", "0.9815621916", "0.0780381878", "0.009327862", "0.9857312406", "0.0192737631", "0.0060971673", "0.9955059261", "0.0846805025", "0.9055196605", "0.0146809817", "0.0154039097", "0.0785044863", "1.0151739544", "0.0845700443", "1.1642000967", "0.0029250829", "1.0541806594", "1.0003948304", "0.0203966602", "1.0012368743", "0.0107164913", "0.9902010456", "0.0103525783", "0.0433859233", "0.0677337214", "0.0742963525", "0.0753865339", "0.019559072", "0.0273599544", "0.0124676235", "0.0123259178", "0.0097285585", "0.9380426792", "0.0095464714", "0.0779552584", "0.0779795265", "1.1731828197", "0.937054271"], ["0.0747089214", "0.0291024256", "0.988694091", "0.0663854355", "1.0172714678", "0.016048708", "0.0799789874", "0.9940332274", "0.0929294095", "0.0122626384", "0.012421714", "0.9956094602", "0.9425573364", "0.989196855", "0.9921066653", "0.0195867687", "0.0032581279", "0.0117393823", "1.0028356597", "1.1868534733", "0.0134371915", "0.0942723506", "0.9993100446", "0.9957069067", "0.0244820378", "0.0185650359", "0.9858203422", "0.9914919133", "0.1498009699", "0.0081398239", "0.3743777349", "0.9899112493", "0.9970978084", "0.0163127255", "0.0759752427", "0.014153564", "1.0030570559", "0.9984831402", "0.0318195593", "0.0093965376", "-0.0008971805", "0.0127784164", "0.0831362478", "0.2313242842", "0.0238461803", "0.9048890702", "0.0215706094", "0.9418219346", "0.0002024617", "0.0114143432", "0.2060199507", "0.0863066438", "0.0129638383", "0.0682522791", "0.0758566917", "0.9951945388", "0.0073461324", "1.0058959393", "1.0134490673", "1.0514795859", "1.0001057698", "0.0548245057", "0.0462901896", "0.0829857903", "1.1278481466", "0.0064316836", "0.025223151", "0.0169648793", "0.1169381999", "0.0601470082", "0.9955090316", "0.9933134812", "0.1818969304", "0.0280899446", "0.9899825162", "0.0120332262", "0.9474335811", "0.9929411354", "0.0912887785", "0.0755079733", "0.033470156", "0.026227317", "1.0006363518", "0.0722949498", "1.019475825", "0.0182061315", "1.1682129532", "0.9897563006", "0.0174271092", "0.0666264933", "0.0085580544", "1.1569289182", "0.009835273", "0.0113587961", "0.0659852477", "0.9858285098", "0.9069375878", "0.0269610925", "0.9940578681", "0.0663001706", "1.1050935997", "0.0017124616", "0.0398866237", "-0.0009580841", "0.0676812251", "0.9912112555", "0.7834965273", "1.002370344", "0.0103675895", "0.0118394574", "0.0991290305", "0.0686561109", "0.0166681337", "0.3975181251", "0.0761402177", "0.9955348126", "1.0034196037", "0.988024804", "1.0022726375", "0.2758106449", "1.0129895506", "-0.0005683714", "0.8977659262", "0.2186279288", "1.0070407097", "0.0801196923", "0.0755236464", "0.0112376351", "0.0105397122", "0.0159733557", "1.0627013603", "0.3320666994", "0.1601666329", "0.0673486846", "0.0106671834", "0.3124046092", "1.2087033326", "1.0098200288", "0.3534941451", "0.0132003053", "0.0092232027", "0.682375229", "0.2935661425", "0.9998907581", "0.0887010488", "-0.0008820009", "0.8224664197", "0.0902402906", "1.2151621059", "0.9912676907", "1.0148550948", "0.0709086406", "0.0143485664", "0.9975415705", "0.0502284935", "0.0427643807", "1.0619592672", "0.0735178321", "1.1981815646", "0.9975230772", "0.0178232139", "0.9971587423", "0.0663108526", "0.9988192096", "0.9874928224", "0.0084417775", "0.9981357924", "0.1938373353", "0.037495358", "0.07782372", "1.0073856853", "1.0015478774", "-0.000446789", "0.0205845449", "0.0210971875", "0.0221586406", "0.0775199315", "0.9941824793", "1.0444514304", "0.0780262787", "0.9823520649", "1.1151474824", "0.0137052662", "0.0100482007", "0.6054236004", "0.9832812104", "0.507930304", "-0.0005421839", "0.0172855861", "0.9962216499", "0.9998273402", "0.0760296731", "1.0898758651", "0.1099680466", "0.090727735", "0.2600799764", "1.0080830797", "1.200481165", "1.0732547318", "0.0088361205", "0.0856962527", "-0.000877771", "0.9999263945", "1.0346245672", "0.0104524849", "0.0137862961", "0.075451816", "0.9972705086", "0.1045590902", "0.0108637496", "0.0095224264", "1.002142362", "0.9965322888", "0.0152108873", "0.0127794434", "0.0233621896", "1.0009481519", "0.0057655436", "1.0110586437", "0.0698522882", "0.0193071464", "0.0156160074", "0.0934209597", "0.010036345", "0.985886148", "0.1407214639", "0.0086886282", "0.0829069519", "1.1475468808", "0.0100854991", "0.0155115908", "0.0189492565", "0.0135895597", "0.0201641287", "0.0720438366", "0.0090470693", "0.009322876", "0.9982562463", "1.0033755051", "0.030472419", "0.0752104718", "0.9905569785", "0.1241079201", "0.8579750857", "0.0875558034", "0.0145791848", "1.0078274846", "0.0746736087", "0.0109235767", "0.7382409216", "0.0081626294", "0.9993785773", "0.0710375198", "1.1842731961", "0.9927599928", "0.9826731429", "0.0668812289", "1.0258762666", "1.021871555", "0.2452393875", "0.0352705452", "0.9972826886", "1.0078215386", "0.9965427875", "0.9184490895", "0.093012106", "0.0089129378", "0.9627275828", "0.1319457794", "0.005338398", "0.0117123798", "0.0083359786", "0.0725842247", "0.0696117022", "0.1707278515"], ["243.922", "153.530314412", "298.37", "256.026", "141.639", "423.099", "223.529", "121.920523729", "221.865", "120.574", "235.839", "89.881820495", "216.027", "212.937", "71.765", "228.399", "177.750002997", "262.189", "74.736099054", "154.896", "397.638", "268.587", "174.065", "262.576", "116.045711728", "218.503", "258.277844796", "80.467279933", "159.663", "125.891578053", "84.214498974", "337.247", "123.711", "217.855", "150.002", "230.574", "208.945", "151.58", "127.778789867", "123.633", "178.514268499", "175.06", "364.654", "202.916", "271.485", "168.628034919", "133.623", "148.121", "150.334", "192.32", "243.304", "172.465", "106.72", "143.659", "198.824", "278.583", "107.871", "227.729", "176.589", "340.426", "125.244538923", "106.902534103", "180.639", "76.266476028", "104.324780942", "194.175", "156.463", "202.384", "209.837", "124.315869286", "157.995209463", "43.119427467", "228.403", "320.562", "86.252", "394.698", "145.256332466", "108.497", "160.469", "167.158", "214.419", "93.847", "574.659636054", "92.456", "99.69124138", "171.340228312", "159.085", "131.658", "321.474", "88.757247202", "89.919", "234.742", "281.346", "260.627", "125.649168768", "181.198", "337.69", "77.242", "136.799", "264.175", "134.69", "154.101", "178.341", "73.778936249", "226.877", "131.124", "90.15", "455.045", "76.583249768", "185.342", "422.904974217", "162.911", "204.474060019", "97.987597948", "154.949", "86.218", "252.648", "97.059072472", "127.472", "143.697", "137.554", "156.341093278", "136.824", "202.55", "167.834", "153.951434511", "111.638", "339.079", "126.357", "102.805", "191.075684767", "179.883", "140.569019171", "130.215", "156.401", "424.959", "248.625", "612.936", "136.688755681", "74.031984795", "292.642", "173.578859266", "158.179", "151.68141751", "130.324515355", "63.868", "122.955306242", "126.718574681", "163.039", "192.51", "121.491104364", "127.555", "92.167175231", "203.926", "201.456100363", "223.521", "115.496", "485.011", "216.692", "146.986", "186.958", "121.905", "115.54", "105.107", "98.842", "113.88168777", "259.066", "198.01", "109.624206417", "166.16", "128.770209733", "192.237", "204.612", "232.724", "188.929071556", "100.34", "152.581", "298.9", "115.377", "128.39795627", "214.938", "79.46", "359.312", "85.537875762", "158.256", "240.994054013", "205.11", "219.216", "227.448", "346.626", "1123.724", "247.165361649", "237.351337438", "109.217040099", "116.590837665", "209.047", "99.384", "60.323220777", "197.548052341", "146.933", "157.714", "234.917", "137.94297953", "85.309220989", "304.518", "395.232", "266.736", "102.298", "143.003", "133.565", "234.771", "281.252", "218.233", "178.589", "120.44", "213.296", "131.422991523", "206.158", "306.629", "149.410464776", "226.932", "153.978", "109.463", "92.490543142", "213.327", "273.718025495", "212.901", "199.059370379", "340.381", "426.867", "467.834087085", "109.421407916", "652.530811599", "250.663", "208.247", "145.065", "384.996", "334.152", "185.472", "220.096", "250.279", "101.079", "156.838", "119.938066065", "116.103"], ["45.5647297959", "45.564729758", "45.5643601696", "45.5643615029", "45.5647302357", "45.5647297588", "45.5647221387", "45.5643633125", "45.5643616157", "45.5647297484", "45.5647297626", "45.5643361183", "45.5647297847", "45.5647298443", "45.5647298265", "45.5646689219", "45.5647297685", "45.565227635", "45.5647297545", "45.5643616238", "45.5647759171", "45.5647297533", "45.5647297959", "45.5652472533", "45.564729758", "45.5647298415", "45.5643616238", "45.564729758", "45.5647298443", "45.5647299641", "45.5643661937", "45.5647312902", "45.5647298094", "45.5643210825", "45.5647387684", "45.5643617141", "45.5652395365", "45.5647298094", "45.5644368418", "45.564746459", "45.5647323163", "45.5647268074", "45.5643616238", "45.5652472533", "45.5647297756", "45.5647297626", "45.5643616238", "45.5647297525", "45.5647298658", "45.5647298944", "45.5647348482", "45.5647297573", "45.5647297545", "45.5646805154", "45.5643583631", "45.5643642086", "45.5647462578", "45.5647301195", "45.5647298156", "45.5652472533", "45.5647300572", "45.5647298385", "45.5647300901", "45.5647301183", "45.5643607197", "45.564729758", "45.564730113", "45.564730511", "45.5647300325", "45.5643616238", "45.5652461269", "45.5647297959", "45.5647297545", "45.5643616238", "45.5643616377", "45.5643616377", "45.5647297545", "45.5647298385", "45.5652395365", "45.5643605353", "45.5643614623", "45.5647337552", "45.5643615526", "45.5647083113", "45.5647297626", "45.5647297545", "45.5652472533", "45.5647288942", "45.5652472533", "45.564729758", "45.5643616238", "45.5647299542", "45.564345639", "45.5647295562", "45.564959134", "45.5652472533", "45.5647298265", "45.5647301448", "45.564728072", "45.564731214", "45.5647303131", "45.5643637449", "45.5643616238", "45.5652472533", "45.5652472533", "45.5647298286", "45.5652472533", "45.5647302505", "45.5647297545", "45.5647297545", "45.5647297747", "45.5652472533", "45.5647297626", "45.5647297959", "45.5647297959", "45.564729758", "45.5643616238", "45.5647297842", "45.5647297545", "45.5647298216", "45.5647300668", "45.5643562226", "45.5643617077", "45.5645746835", "45.5647299251", "45.5643618897", "45.5652472533", "45.5643615526", "45.5652472533", "45.5647301353", "45.5643605353", "45.5647297818", "45.5647297842", "45.5643616238", "45.5647298488", "45.5647299909", "45.5643616104", "45.5652472533", "45.5652472533", "45.564729758", "45.5647297525", "45.5647297545", "45.5647299862", "45.5647297959", "45.5647300208", "45.5647250267", "45.5643683468", "45.5647301449", "45.564729758", "45.564730137", "45.5647297017", "45.564729758", "45.5647297519", "45.5647298357", "45.5647297712", "45.5647297545", "45.5643620293", "45.5647298357", "45.5647297756", "45.5647311341", "45.5652472533", "45.5646077268", "45.5643753407", "45.5643640843", "45.564729758", "45.5646478404", "45.5643616238", "45.5647247298", "45.5643616238", "45.5647297685", "45.5647297756", "45.5643732849", "45.5647301414", "45.5647297959", "45.5652472533", "45.5643614836", "45.5647297626", "45.5643616168", "45.5643543765", "45.5647300022", "45.5643616238", "45.5647304632", "45.5647297545", "45.5647287087", "45.5647297545", "45.5643616238", "45.5647301406", "45.5647297545", "45.5647298385", "45.5647247298", "45.5646884345", "45.5646895944", "45.564730511", "45.5647298977", "45.5647300237", "45.5647485011", "45.5643616195", "45.5647301279", "45.5651367187", "45.5647302454", "45.5647299509", "45.5647299377", "45.5643607231", "45.5652472533", "45.5647301124", "45.5647304859", "45.5647297756", "45.5647318258", "45.5643616059", "45.5647297626", "45.5647297545", "45.5647297756", "45.5647301468", "45.5652472533", "45.5647297545", "45.5647297545", "45.5647298614", "45.5645029302", "45.5646962731", "45.5647298756", "45.5643567482", "45.5647297545", "45.5647297545", "45.5647297626", "45.5647297842", "45.5645275884", "45.5647335525", "45.5647297545", "45.5647298201", "45.5652472533", "45.5643639814", "45.5647415279", "45.5647371898", "45.5647297626", "45.5643616737", "45.5643616238", "45.5643616283", "45.5646987778", "45.5643616238", "45.5647301318", "45.5643616238", "45.56472982", "45.5652472533", "45.5652472533", "45.5647297545", "45.5643616238", "45.5647301108", "45.5647297959", "45.564729758", "45.5647083113", "45.5643753407", "45.5647298756", "45.5643616238", "45.564729758", "45.5652472533", "45.5643583631", "45.5647297685", "45.5647297525", "45.564729758", "45.5647297407", "45.564729758", "45.5647297573", "45.564729907", "45.5647298094", "45.5652472533", "45.5647297573", "45.5647297959", "45.5647298286", "45.5647288686", "45.5652472533", "45.5643616238", "45.5643616238", "45.5647298094", "45.5647297545", "45.5647297626", "45.5644642598", "45.5647297772", "45.5647313092", "45.5643594004", "45.5647298128", "45.5647303429", "45.5646478404", "45.5647297525", "45.5647297685", "45.5647297959", "45.5647297545", "45.5649842066", "45.5647302046", "45.5647298094", "45.564729758", "45.5647313092", "45.5647297545", "45.5650827202", "45.5646570099", "45.5647297573", "45.5647297545", "45.5647307318", "45.5647297545", "45.5647297818", "45.5643615468", "45.5647297634", "45.5651015547", "45.5643621234", "45.564361416", "45.5647140088", "45.5643616238", "45.5643616124", "45.5643616238", "45.5647297545", "45.5647297545", "45.5647297685", "45.5652472533", "45.5647298265", "45.5643616238", "45.565169868", "45.5643197133", "45.5647301513", "45.5643329891", "45.5647297772", "45.5652472533", "45.5643616238", "45.5643971634", "45.564361882", "45.5647164633", "45.5643621515", "45.5647298848", "45.5650060081", "45.5647299339", "45.5644887062", "45.5647297959", "45.5644790512", "45.5643562226", "45.564729758", "45.5647297545", "45.5647298094", "45.5643616238", "45.564730113", "45.5647324432", "45.5643616195", "45.5643560465", "45.5646689219", "45.5647297545", "45.5647297545", "45.5647298977", "45.5646895944", "45.5647297772", "45.5652092252", "45.5647297545", "45.5647299026", "45.5647297959", "45.5643616104", "45.5647297626", "45.5643616651", "45.5647298658", "45.5652472533", "45.5647298286", "45.5647297756", "45.5647297626", "45.564751851", "45.5647303569", "45.5647297626", "45.5643745982", "45.5647298128", "45.5651015547", "45.5647235299", "45.5646894032", "45.5649842066", "45.5647298317", "45.5652472533", "45.564729758", "45.5652472533", "45.5643616238", "45.5652472533", "45.5643616238", "45.5652472533", "45.5643614163", "45.5647297842", "45.5647299502", "45.5652472533", "45.5647285729", "45.5647297685", "45.564729758", "45.5652472533", "45.564360464", "45.5647301448", "45.5647298488", "45.5647297626", "45.5651964614", "45.5645617574", "45.5643617154", "45.5647297545", "45.564730511", "45.5652472533", "45.5643735199", "45.5643616969", "45.5643601696", "45.5647297659", "45.5645381502", "45.5647295562", "45.5643621234", "45.564730113", "45.5647298385", "45.5647297685", "45.5647301206", "45.5652472533", "45.5647183797", "45.5647299251", "45.5652436361", "45.5643616238", "45.5644524455", "45.5643615468", "45.5647297756", "45.5643616238", "45.5649133567", "45.5647297545", "45.5643617215", "45.5647301353", "45.5643701793", "45.5647299169", "45.5643616238", "45.5647429567", "45.5647297818", "45.5647300997", "45.5647297685", "45.5647297484", "45.5643616238", "45.5647297545", "45.5647297818", "45.5646679913", "45.5647297747", "45.5647462578", "45.5647303774", "45.564729969", "45.5647297685", "45.5652472533", "45.5647297525", "45.5643616238", "45.5643616238", "45.5647304469", "45.5647297545", "45.5647297563", "45.5647299725", "45.5643613066", "45.5647347088", "45.564729758", "45.5652472533", "45.5646570099", "45.5647311341", "45.5647297959", "45.564730118", "45.5652472533", "45.5647297959", "45.5645746835", "45.5643626305", "45.5652472533", "45.5647297959", "45.5647300655", "45.5647297545", "45.5647297525", "45.5643616238", "45.5647298357", "45.5643616104", "45.5643616238", "45.5647297525", "45.5643618185", "45.5646478404", "45.5647297685", "45.5652472533", "45.564728654", "45.5647297626", "45.5647312902", "45.5647305494", "45.5643702623", "45.5643702623", "45.5647297756", "45.564706574", "45.5643616211", "45.5647297756", "45.5647224561", "45.5647298895", "45.564729758", "45.5643616238", "45.5647308457", "45.5643616238", "45.5648073622", "45.5643444132", "45.5643616737", "45.5647297626", "45.5652472533", "45.5647313565", "45.5643616238", "45.5647298438", "45.564729887", "45.5647297484", "45.5646829613", "45.5647297959", "45.5647516413", "45.5647297545", "45.564729758", "45.5643616238"], ["020 8944 9822", "020 8673 9955", "020 7228 1067", "020 8780 5649", "020 8767 4968", "0844 477 3135", "0844 4773783", "020 8812 4175", "0844 4773 405", "020 8392 3678", "020 8682 4376", "020 7498 0271", "020 8672580", "020 8780 9468", "0333 200 1719", "020 8672 5049", "020 8812 535", "020 7350 5200", "020 8675 9757", "020 8672 6864", "020 8780 0831", "020 8672 6532", "020 8772 2316", "020 7498 5530", "020 7924 5737", "020 8874 3682", "0844 4773 232", "020 7498 5206", "020 7801 0748", "020 7978 4550", "020 7978 1927", "020 8673 5794", "020 7978 5119", "0208 780 0201", "020 8789 4768", "020 8870 7991", "020 8677 8982", "020 8673 3312", "020 8812 5480", "020 8788 2404", "020 8672 2525", "020 8772 8510", "020 7924 3375", "020 8544 9337", "020 8788 9445", "020 8675 3800", "0844 477 3406", "020 8871 9764", "020 7411 5775", "020 8673 8146", "020 8870 7695", "020 8789 9914"], ["020 3458 5600", "020 8673 1776", "020 8812 4170", "020 8675 3521", "020 8874 1700", "020 7801 1460", "020 8392 3679", "0844 4773 500", "020 8544 2311", "020 8394 7690", "020 8673 1476", "020 8672 3331", "020 8673 8268", "020 7627 7100", "020 8788 1188", "020 8677 0083", "020 7924 4413", "020 3092 2556", "020 7228 1619", "020 8788 4844", "020 8788 3252", "020 8875 5429", "020 8772 8772", "020 3764 0822", "020 8788 0686", "020 7622 1923", "020 8682 0352", "020 7228 4172", "020 8780 5770", "020 8780 0125", "020 7411 5720", "020 8672 9980", "020 8812 5400", "020 3458 5800", "020 8874 7113", "020 7622 5642", "020 8682 0521", "020 8673 1386", "020 8812 5350", "020 7228 0195", "020 8673 1720", "020 8672 1948", "020 8946 5681", "020 8874 2471", "020 3458 5700", "020 3370 4723", "0333 200 1718", "020 8673 3495", "020 7622 9295", "0844 477 1877", "020 7223 5520", "020 3006 2741"], ["Alabaster", "Falmouth", "Riyadh", "Stavanger", "Jiddah", "Jiddah", "Jiddah", "Riyadh", "Houston", "Memphis", "Ottawa", "Jiddah", "Riyadh", "Jiddah", "Barnsley", "Riyadh", "Tulsa", "Decker", "Abu Dhabi", "Jiddah", "Jiddah", "Dhahran", "Ad Dammam", "Mecca", "San Francisco", "Bellevue", "Al-Madinah", "Jiddah", "Cibubur", "Salina", "Ad Dammam", "Sydney", "New York", "Temecula", "Riyadh", "London", "Al Ain", "Al Hufuf", "Sydney", "Newry", "Georgetown", "Jiddah", "Madison", "Atlanta", "Cleveland", "Dubai", "Coatesville", "Riyadh", "Homebush", "Tampa", "Staten Island", "Chico", "Toowoomba", "Riyadh", "Khobar", "Arlington", "Mecca", "Blackpool", "Khobar", "Brastad", "Canton", "Knoxville", "London", "Vineburg", "Ravenna", "Riyadh", "Dover", "Tampa", "Launceston", "Docklands", "London", "Hoje Tastrup", "Riyadh", "Riyadh", "Caerphilly", "Cirencester", "Sylva", "Darwin", "San Benito", "Dignams Creek", "Cologne", "Riyadh", "Quezon City", "Louisville", "Zanesville", "Riyadh", "Bellevue", "Strathpine", "Atlanta", "Brisbane", "Homebush", "Drammen", "Middleboro", "Riyadh", "Manassas", "San Francisco", "Galashiels", "Jiddah", "Lynn Haven"], ["9520-04000409", "9520-04012863", "9520-16007039", "9520-04001224", "9520-16000419", "9520-04000383", "9520-04001852", "9520-04006728", "9520-16002788", "9520-16000062", "9520-16015939", "9520-16014967", "9520-04001751", "9520-04006813", "9520-04002698", "9520-16012879", "9520-16000181", "9520-16000420", "9520-16015881", "9520-04008253", "9520-16004293", "9520-04006986", "9520-16003819", "9520-04009791", "9520-04007101", "9520-04006876", "9520-04003679", "9520-04001222", "9520-04000387", "9520-16004491", "9520-04002935", "9520-04005924", "9520-04011200", "9520-16002450", "9520-16001614", "9520-04009781", "9520-16010809", "9520-04008972", "9520-04001236", "9520-16011528", "9520-04000394", "9520-16012864", "9520-04001156", "9520-04006953", "9520-16007726", "9520-16010645", "9520-16000421"], ["Dr Winstock", "Dr Kumar", "Dr Bowen", "Dr Scott", "Dr Bloch", "Dr Ilves", "Dr Mittal", "Dr Iyer", "Dr Khan", "Dr Jegasothy", "Dr Shiraz", "Dr Ansari", "Dr Ashton", "Dr Rankin", "Dr Ghufoor", "Dr Shah", "Dr. Rohde", "Dr Durham", "Dr Kroll", "Dr Earney", "Dr Williams", "Dr Ali", "Dr Lane", "Dr Smith", "Dr Ala", "Dr Bower", "Dr Gordon", "Dr Okonmah", "Dr Grannell", "Dr Alissa", "Dr Jawed Ali", "Dr Deuchar", "Dr Begg", "Dr Ansari", "Dr Ayub", "Dr Amin", "Dr Ban Haider", "Dr Roberts", "Dr Bower", "Dr Bearn", "Dr Patel", "Dr Evans", "Dr Ghufoor", "Dr Peach", "Dr Puvinathan", "Dr Naha"], ["COOK_174.0", "COOK_184.8", "COOK_184.8", "COOK_166.5", "COOK_174.0", "COOK_174.0", "COOK_181.2", "COOK_174.0", "COOK_177.6", "COOK_174.0", "COOK_174.0", "COOK_166.5", "COOK_161.5", "COOK_179.4", "KENAI_BRIDGE", "COOK_159.0", "COOK_159.0", "COOK_190.2", "COOK_161.5", "COOK_179.4", "COOK_181.2", "COOK_183.0", "COOK_161.5", "COOK_179.4", "COOK_188.4", "COOK_179.4", "COOK_179.4", "LOW_CHK_SONAR", "IN_FISH", "SN_HBR", "COOK_181.2", "COOK_179.4", "COOK_183.0", "COOK_177.6", "COOK_174.0", "COOK_179.4", "COOK_184.8", "COOK_159.0", "COOK_183.0", "COOK_190.2", "COOK_177.6", "COOK_177.6", "COOK_174.0", "COOK_159.0", "COOK_184.8", "COOK_181.2", "COOK_174.0", "LOW_CHK_SONAR", "COOK_179.4", "COOK_174.0", "COOK_188.4", "COOK_159.0", "COOK_179.4", "COOK_181.2", "COOK_174.0", "COOK_186.6", "IN_FISH", "COOK_184.8", "COOK_159.0", "COOK_179.4", "COOK_159.0", "COOK_159.0", "COOK_179.4", "COOK_188.4", "COOK_174.0", "COOK_183.0", "IN_FISH", "LOW_CHK_SONAR", "COOK_183.0", "COOK_184.8", "COOK_161.5", "LOW_CHK_SONAR", "COOK_177.6", "IN_FISH", "COOK_177.6", "COOK_174.0", "COOK_179.4", "COOK_181.2", "COOK_174.0", "IN_FISH", "COOK_181.2", "COOK_159.0", "COOK_177.6", "COOK_181.2", "COOK_174.0", "SN_HBR", "COOK_181.2", "COOK_159.0", "COOK_184.8", "KENAI_BRIDGE", "COOK_188.4", "COOK_190.2", "COOK_164.0", "KENAI_BRIDGE", "COOK_177.6", "KENAI_BRIDGE", "IN_FISH", "COOK_186.6", "COOK_174.0", "COOK_174.0", "COOK_174.0", "COOK_161.5", "COOK_181.2", "COOK_184.8", "COOK_164.0", "COOK_184.8", "COOK_174.0", "COOK_174.0", "COOK_183.0", "COOK_179.4", "COOK_175.8", "COOK_174.0", "COOK_183.0", "COOK_166.5", "IN_FISH", "COOK_183.0", "KENAI_BRIDGE", "COOK_174.0", "COOK_164.0", "COOK_161.5", "COOK_183.0", "COOK_164.0", "COOK_164.0", "COOK_181.2", "COOK_188.4", "COOK_181.2", "COOK_181.2", "COOK_159.0", "COOK_174.0", "COOK_184.8", "COOK_175.8", "COOK_174.0", "COOK_190.2", "COOK_177.6", "COOK_177.6", "COOK_164.0", "COOK_179.4", "KENAI_BRIDGE", "COOK_164.0", "COOK_159.0", "COOK_174.0", "COOK_181.2", "COOK_183.0", "COOK_161.5", "COOK_161.5", "COOK_174.0", "COOK_159.0", "COOK_175.8", "COOK_181.2", "COOK_159.0", "COOK_188.4", "COOK_181.2", "COOK_184.8", "COOK_190.2", "KENAI_BRIDGE", "COOK_174.0", "KENAI_BRIDGE", "COOK_183.0", "COOK_166.5", "COOK_186.6", "COOK_174.0", "IN_FISH", "COOK_174.0", "COOK_177.6", "COOK_159.0", "COOK_181.2", "COOK_183.0", "COOK_183.0", "COOK_177.6", "COOK_181.2", "COOK_179.4", "COOK_175.8", "COOK_159.0", "COOK_159.0", "COOK_174.0", "KENAI_BRIDGE", "COOK_161.5", "COOK_159.0", "COOK_174.0", "COOK_177.6", "COOK_188.4", "COOK_174.0", "COOK_183.0", "COOK_164.0", "COOK_177.6", "COOK_184.8", "COOK_188.4", "IN_FISH", "COOK_181.2", "COOK_188.4", "COOK_177.6", "COOK_179.4", "COOK_183.0", "COOK_175.8", "COOK_174.0", "COOK_164.0", "COOK_174.0", "COOK_174.0", "COOK_179.4", "COOK_175.8", "COOK_190.2", "COOK_184.8", "COOK_166.5", "COOK_177.6", "COOK_164.0", "COOK_164.0", "KENAI_BRIDGE", "COOK_179.4", "COOK_179.4", "COOK_181.2", "COOK_183.0", "COOK_159.0", "COOK_174.0", "COOK_179.4", "COOK_174.0", "COOK_190.2", "COOK_190.2", "COOK_179.4", "LOW_CHK_SONAR", "KENAI_BRIDGE", "LOW_CHK_SONAR", "KENAI_BRIDGE", "COOK_177.6", "COOK_181.2", "COOK_179.4", "COOK_179.4", "COOK_174.0", "COOK_184.8", "COOK_166.5", "COOK_184.8", "COOK_188.4", "COOK_161.5", "COOK_181.2", "COOK_174.0", "COOK_181.2", "COOK_177.6", "KENAI_BRIDGE", "COOK_181.2", "COOK_179.4", "COOK_174.0", "COOK_181.2", "COOK_179.4", "COOK_179.4", "COOK_177.6", "LOW_CHK_SONAR", "COOK_179.4", "COOK_184.8", "COOK_177.6", "COOK_175.8", "COOK_161.5", "COOK_179.4", "COOK_175.8", "COOK_188.4", "COOK_174.0", "COOK_183.0", "COOK_177.6", "COOK_166.5", "COOK_174.0", "COOK_179.4", "COOK_179.4", "COOK_181.2", "COOK_159.0", "COOK_174.0", "COOK_161.5", "COOK_175.8", "KENAI_BRIDGE", "COOK_177.6", "COOK_183.0", "COOK_181.2", "COOK_161.5", "COOK_181.2", "COOK_164.0", "COOK_184.8", "COOK_164.0", "COOK_161.5", "COOK_183.0", "COOK_183.0", "SN_HBR", "LOW_CHK_SONAR", "COOK_179.4", "COOK_179.4", "COOK_164.0", "COOK_164.0", "COOK_183.0", "COOK_179.4", "COOK_184.8", "COOK_179.4", "COOK_175.8", "COOK_181.2", "COOK_159.0", "COOK_184.8", "COOK_181.2", "COOK_177.6", "COOK_161.5", "KENAI_BRIDGE", "COOK_181.2", "COOK_179.4", "COOK_186.6", "COOK_161.5", "COOK_183.0", "COOK_159.0", "IN_FISH", "COOK_183.0", "COOK_159.0", "IN_FISH", "COOK_177.6", "COOK_174.0", "COOK_181.2", "COOK_159.0", "COOK_161.5", "COOK_174.0", "COOK_177.6", "IN_FISH", "COOK_164.0", "COOK_190.2", "COOK_174.0", "COOK_181.2", "COOK_175.8", "COOK_179.4", "IN_FISH", "COOK_181.2", "COOK_174.0", "COOK_183.0", "COOK_179.4", "COOK_164.0", "COOK_177.6", "COOK_179.4", "COOK_175.8", "COOK_161.5", "COOK_161.5", "COOK_181.2", "COOK_183.0", "COOK_166.5", "COOK_181.2", "COOK_166.5", "COOK_159.0", "COOK_183.0", "COOK_175.8", "COOK_161.5", "COOK_183.0", "COOK_177.6", "COOK_174.0", "COOK_181.2", "KENAI_BRIDGE", "COOK_183.0", "COOK_179.4", "COOK_164.0", "COOK_179.4", "SN_HBR", "COOK_184.8", "COOK_186.6", "COOK_174.0", "COOK_159.0", "COOK_174.0", "COOK_174.0", "COOK_177.6", "COOK_177.6", "COOK_179.4", "COOK_181.2", "COOK_174.0", "COOK_159.0", "COOK_179.4", "COOK_183.0", "COOK_175.8", "COOK_159.0", "COOK_177.6", "KENAI_BRIDGE", "COOK_161.5", "LOW_CHK_SONAR", "COOK_159.0", "SN_HBR", "COOK_184.8", "COOK_190.2", "COOK_181.2", "COOK_181.2", "COOK_183.0", "COOK_177.6", "COOK_159.0", "COOK_181.2", "COOK_166.5", "COOK_174.0", "COOK_183.0", "COOK_177.6", "COOK_174.0", "COOK_186.6", "COOK_183.0", "COOK_174.0", "COOK_175.8", "SN_HBR", "COOK_159.0", "COOK_166.5", "COOK_183.0", "COOK_159.0", "COOK_179.4", "COOK_177.6", "COOK_164.0", "KENAI_BRIDGE", "COOK_184.8", "COOK_190.2", "COOK_177.6", "COOK_164.0", "COOK_181.2", "COOK_159.0", "KENAI_BRIDGE", "COOK_174.0", "COOK_166.5", "COOK_179.4", "COOK_179.4", "COOK_183.0", "COOK_179.4", "SN_HBR", "COOK_174.0", "COOK_190.2", "COOK_177.6", "COOK_179.4", "COOK_177.6", "COOK_159.0", "COOK_159.0", "COOK_181.2", "COOK_181.2", "COOK_177.6", "COOK_164.0", "COOK_177.6", "COOK_161.5", "COOK_188.4", "COOK_179.4", "COOK_181.2", "COOK_177.6", "COOK_175.8", "COOK_179.4", "COOK_177.6", "COOK_174.0", "COOK_183.0", "LOW_CHK_SONAR", "COOK_177.6", "COOK_166.5", "COOK_174.0", "COOK_179.4", "COOK_161.5", "COOK_161.5", "KENAI_BRIDGE", "COOK_188.4", "KENAI_BRIDGE", "LOW_CHK_SONAR", "COOK_174.0", "COOK_183.0", "COOK_188.4", "COOK_175.8", "COOK_179.4", "COOK_183.0", "LOW_CHK_SONAR", "COOK_183.0", "COOK_179.4", "COOK_161.5", "COOK_179.4", "COOK_177.6", "COOK_184.8", "COOK_177.6", "COOK_183.0", "COOK_184.8", "COOK_181.2", "COOK_179.4", "COOK_175.8", "COOK_181.2", "COOK_177.6", "COOK_188.4", "COOK_179.4", "COOK_159.0", "COOK_177.6", "COOK_184.8", "COOK_177.6", "KENAI_BRIDGE", "COOK_179.4", "COOK_166.5", "COOK_159.0", "COOK_188.4", "COOK_179.4", "COOK_166.5", "COOK_184.8", "COOK_159.0", "COOK_179.4", "COOK_179.4", "COOK_183.0", "COOK_184.8", "COOK_188.4", "COOK_177.6", "COOK_161.5", "IN_FISH", "COOK_175.8", "COOK_177.6", "COOK_164.0", "COOK_177.6", "COOK_174.0", "COOK_179.4", "COOK_161.5", "COOK_177.6", "COOK_164.0", "COOK_166.5", "COOK_179.4", "COOK_166.5"], ["3.00 NC 0.50", "5.00 NC 0.50", "3.00 NC 0.50", "4.00 NC 1.00", "3.00 NC 1.00", "2.99 NC 0.49", "4.00 NC 1.00", "3.00 NC 0.50", "3.75 NC 0.50", "3.00 NC 2.00", "4.00 NC 0.50", "3.00 NC 0.50", "3.75 NC 0.50", "3.50 NC 0.50", "5.00 NC 0.50", "3.50 NC 0.50", "5.00 NC 0.50", "4.24 NC 0.50", "3.00 NC 1.00", "4.00 NC 0.50", "3.50 NC 0.50", "3.74 NC 0.48", "5.00 NC 1.00", "3.00 NC 1.00", "3.50 NC 0.50", "4.24 NC 0.50", "3.24 NC 1.00", "4.99 NC 0.50", "3.50 NC 1.00", "5.00 NC 1.00", "5.00 NC 2.00", "3.00 NC 1.00", "3.74 NC 0.48", "3.00 NC 0.50", "3.00 NC 0.50", "3.00 NC 0.50", "3.75 NC 0.50", "5.00 NC 0.50", "3.50 NC 0.50", "4.00 NC 0.50", "3.00 NC 0.50", "5.00 NC 0.50", "3.00 NC 1.00", "3.01 NC 2.01", "3.00 NC 0.50", "4.00 NC 0.50", "3.00 NC 0.50", "5.00 NC 1.00", "3.00 NC 1.00", "4.24 NC 1.00", "3.00 NC 0.50", "3.00 NC 2.00", "5.00 NC 1.00", "4.42 NC 1.17", "5.00 NC 2.00", "5.00 NC 0.50", "3.50 NC 1.00", "3.00 NC 1.00", "3.00 NC 0.50", "3.00 NC 1.00", "3.24 NC 0.50", "3.00 NC 0.50", "3.00 NC 0.50", "3.50 NC 1.00", "3.49 NC 0.49", "5.00 NC 0.50", "5.00 NC 1.00", "5.00 NC 0.50", "3.00 NC 1.00", "4.24 NC 0.50", "3.50 NC 1.00", "3.50 NC 1.00", "3.25 NC 0.50", "5.00 NC 2.00", "3.00 NC 0.50", "5.00 NC 1.00", "3.00 NC 0.50", "5.00 NC 0.50", "4.00 NC 0.50", "5.00 NC 0.50", "3.00 NC 0.50", "3.00 NC 1.00", "3.50 NC 0.50", "3.50 NC 1.00", "3.00 NC 0.50", "3.50 NC 1.00", "3.00 NC 1.00", "3.00 NC 0.50", "4.00 NC 0.50", "5.00 NC 0.50", "3.00 NC 1.00", "5.00 NC 2.00", "5.00 NC 1.00", "3.99 NC 0.99", "2.98 NC 0.48"], ["Western Grebe", "Egrets", "Coyote", "Urban setting", "Brant", "Black Skimmer", "Small birds", "Cooper's Hawk", "Spider's web", "Cordgrass", "Shorebirds", "Jimson Weed", "Sandbar"], ["Wimbledon", "Balham", "Balham", "Balham", "Roehampton", "Lambeth", "Streatham", "Battersea", "Tooting", "Battersea", "Battersea", "Streatham", "Tooting", "Roehampton", "Balham", "Tooting", "Battersea", "Battersea", "Balham", "Battersea", "Colliers Wood", "Tooting", "Wandsworth", "Wimbledon", "Putney", "Battersea", "Wimbledon", "Putney", "Roehampton", "Balham", "Battersea", "Battersea", "Clapham", "Wandsworth", "Tooting", "Balham", "Roehampton", "Lambeth", "Roehampton", "Wandsworth", "Southfields", "Wandsworth", "Battersea", "Streatham", "Putney", "Tooting", "Vauxhall", "Wandsworth", "Battersea", "Southfields", "Battersea", "Balham"], ["YARDLEY", "ERDINGTON", "NORTHFIELD", "HALL GREEN", "NORTHFIELD", "EDGBASTON", "LADYWOOD", "SELLY OAK", "LADYWOOD", "SELLY OAK", "LADYWOOD", "LADYWOOD", "YARDLEY", "NORTHFIELD", "LADYWOOD", "YARDLEY", "PERRY BARR", "ERDINGTON", "NORTHFIELD", "LADYWOOD", "HALL GREEN", "SELLY OAK", "ERDINGTON", "LADYWOOD", "LADYWOOD", "EDGBASTON", "SELLY OAK", "NORTHFIELD", "NORTHFIELD", "NORTHFIELD", "HODGE HILL", "PERRY BARR", "PERRY BARR", "SELLY OAK", "EDGBASTON", "NORTHFIELD", "ERDINGTON", "LADYWOOD", "LADYWOOD", "PERRY BARR", "PERRY BARR", "LADYWOOD", "HALL GREEN", "PERRY BARR", "HALL GREEN", "LADYWOOD", "SELLY OAK", "HALL GREEN", "LADYWOOD", "NORTHFIELD", "HODGE HILL", "SELLY OAK", "HODGE HILL", "LADYWOOD", "LADYWOOD", "HALL GREEN", "ERDINGTON", "HALL GREEN", "HALL GREEN", "EDGBASTON", "HALL GREEN", "ERDINGTON", "EDGBASTON", "NORTHFIELD", "LADYWOOD", "NORTHFIELD", "HALL GREEN", "LADYWOOD", "SELLY OAK", "LADYWOOD", "HALL GREEN", "OUTSIDE B'HAM", "LADYWOOD", "LADYWOOD", "LADYWOOD", "EDGBASTON", "PERRY BARR", "HALL GREEN", "NORTHFIELD", "HALL GREEN", "ERDINGTON", "PERRY BARR", "NORTHFIELD", "HODGE HILL", "LADYWOOD", "YARDLEY", "NORTHFIELD", "LADYWOOD", "OUTSIDE B'HAM", "YARDLEY", "HODGE HILL", "LADYWOOD", "LADYWOOD", "LADYWOOD", "LADYWOOD", "HODGE HILL", "NORTHFIELD", "YARDLEY", "LADYWOOD", "LADYWOOD", "LADYWOOD", "LADYWOOD", "NORTHFIELD", "HODGE HILL", "LADYWOOD", "EDGBASTON", "EDGBASTON", "PERRY BARR", "NORTHFIELD", "PERRY BARR", "HALL GREEN", "SELLY OAK", "NORTHFIELD", "NORTHFIELD", "ERDINGTON", "NORTHFIELD", "NORTHFIELD", "LADYWOOD", "HODGE HILL", "LADYWOOD", "ERDINGTON", "EDGBASTON", "SELLY OAK", "HODGE HILL", "LADYWOOD", "EDGBASTON", "SELLY OAK", "PERRY BARR", "LADYWOOD", "HODGE HILL", "EDGBASTON", "HODGE HILL", "HODGE HILL", "SELLY OAK", "EDGBASTON", "HODGE HILL", "NORTHFIELD", "HALL GREEN", "LADYWOOD", "HALL GREEN", "LADYWOOD", "YARDLEY", "NORTHFIELD", "YARDLEY", "NORTHFIELD", "NORTHFIELD", "HALL GREEN", "HODGE HILL", "HALL GREEN", "NORTHFIELD", "LADYWOOD", "NORTHFIELD", "PERRY BARR", "NORTHFIELD", "HODGE HILL", "HALL GREEN", "NORTHFIELD", "PERRY BARR", "LADYWOOD", "YARDLEY", "NORTHFIELD", "LADYWOOD", "SELLY OAK", "LADYWOOD", "ERDINGTON", "ERDINGTON", "HALL GREEN", "LADYWOOD", "HALL GREEN", "NORTHFIELD", "NORTHFIELD", "ERDINGTON", "HODGE HILL", "LADYWOOD", "SELLY OAK", "HODGE HILL", "LADYWOOD", "ERDINGTON", "LADYWOOD", "LADYWOOD", "EDGBASTON", "SELLY OAK", "NORTHFIELD", "HODGE HILL", "EDGBASTON", "LADYWOOD", "SELLY OAK", "EDGBASTON", "LADYWOOD", "NORTHFIELD", "SELLY OAK", "SELLY OAK", "YARDLEY", "YARDLEY", "SELLY OAK", "HODGE HILL", "LADYWOOD", "HALL GREEN", "LADYWOOD", "LADYWOOD", "HALL GREEN", "EDGBASTON", "LADYWOOD", "ERDINGTON", "SELLY OAK", "NORTHFIELD", "ERDINGTON", "SELLY OAK", "NORTHFIELD", "LADYWOOD", "LADYWOOD", "NORTHFIELD", "HODGE HILL", "SELLY OAK", "EDGBASTON", "OUTSIDE B'HAM", "LADYWOOD", "NORTHFIELD", "EDGBASTON", "EDGBASTON", "HALL GREEN", "HODGE HILL", "ERDINGTON", "EDGBASTON", "NORTHFIELD", "EDGBASTON", "ERDINGTON", "ERDINGTON", "NORTHFIELD", "HALL GREEN", "HALL GREEN", "HALL GREEN", "LADYWOOD", "ERDINGTON", "NORTHFIELD", "NORTHFIELD", "NORTHFIELD", "EDGBASTON", "SELLY OAK", "EDGBASTON", "HODGE HILL", "NORTHFIELD", "YARDLEY", "ERDINGTON", "ERDINGTON", "PERRY BARR", "LADYWOOD", "YARDLEY", "EDGBASTON", "EDGBASTON", "HODGE HILL", "HALL GREEN", "LADYWOOD", "YARDLEY", "HODGE HILL", "PERRY BARR", "YARDLEY", "EDGBASTON", "EDGBASTON", "SELLY OAK", "HODGE HILL", "LADYWOOD", "PERRY BARR", "NORTHFIELD", "ERDINGTON", "PERRY BARR", "LADYWOOD", "HODGE HILL", "OUTSIDE B'HAM", "HODGE HILL", "LADYWOOD", "YARDLEY", "EDGBASTON", "NORTHFIELD", "NORTHFIELD", "EDGBASTON", "YARDLEY", "HODGE HILL", "LADYWOOD", "LADYWOOD", "PERRY BARR", "NORTHFIELD", "HODGE HILL", "LADYWOOD", "ERDINGTON", "EDGBASTON", "HODGE HILL", "ERDINGTON", "LADYWOOD", "LADYWOOD", "EDGBASTON", "NORTHFIELD", "LADYWOOD", "NORTHFIELD", "SELLY OAK", "NORTHFIELD", "HALL GREEN", "SELLY OAK", "NORTHFIELD", "LADYWOOD", "SELLY OAK", "YARDLEY", "YARDLEY", "ERDINGTON", "LADYWOOD", "YARDLEY", "HALL GREEN", "HODGE HILL", "PERRY BARR", "SELLY OAK", "SELLY OAK", "ERDINGTON", "NORTHFIELD", "YARDLEY", "YARDLEY", "YARDLEY", "LADYWOOD", "OUTSIDE B'HAM", "YARDLEY", "SELLY OAK", "LADYWOOD", "EDGBASTON", "LADYWOOD", "EDGBASTON", "PERRY BARR", "YARDLEY", "HODGE HILL", "SELLY OAK", "LADYWOOD", "NORTHFIELD", "NORTHFIELD", "HODGE HILL", "NORTHFIELD", "EDGBASTON", "YARDLEY", "HALL GREEN", "EDGBASTON", "NORTHFIELD", "LADYWOOD", "PERRY BARR", "YARDLEY", "YARDLEY", "OUTSIDE B'HAM", "HALL GREEN", "LADYWOOD", "LADYWOOD", "YARDLEY", "NORTHFIELD", "LADYWOOD", "YARDLEY", "PERRY BARR", "YARDLEY", "YARDLEY", "LADYWOOD", "LADYWOOD", "LADYWOOD", "HALL GREEN", "YARDLEY", "EDGBASTON", "LADYWOOD", "HALL GREEN", "NORTHFIELD", "ERDINGTON", "LADYWOOD", "EDGBASTON", "OUTSIDE B'HAM", "YARDLEY", "LADYWOOD", "NORTHFIELD", "SELLY OAK", "HALL GREEN", "YARDLEY", "NORTHFIELD", "ERDINGTON", "LADYWOOD", "LADYWOOD", "ERDINGTON", "HODGE HILL", "NORTHFIELD", "LADYWOOD", "YARDLEY", "NORTHFIELD", "NORTHFIELD", "ERDINGTON", "PERRY BARR", "SELLY OAK", "LADYWOOD", "YARDLEY", "LADYWOOD", "NORTHFIELD", "NORTHFIELD", "LADYWOOD", "PERRY BARR", "NORTHFIELD", "EDGBASTON", "LADYWOOD", "SELLY OAK", "YARDLEY", "NORTHFIELD", "SELLY OAK", "YARDLEY", "HODGE HILL", "SELLY OAK", "EDGBASTON", "ERDINGTON", "YARDLEY", "EDGBASTON", "LADYWOOD", "NORTHFIELD", "ERDINGTON", "EDGBASTON", "HODGE HILL", "EDGBASTON", "YARDLEY", "LADYWOOD", "YARDLEY", "LADYWOOD", "LADYWOOD", "LADYWOOD", "NORTHFIELD", "LADYWOOD", "SELLY OAK", "OUTSIDE B'HAM", "NORTHFIELD", "SELLY OAK", "SELLY OAK", "LADYWOOD", "SELLY OAK", "ERDINGTON", "NORTHFIELD", "HALL GREEN", "SELLY OAK", "YARDLEY", "LADYWOOD", "HALL GREEN", "LADYWOOD", "LADYWOOD", "NORTHFIELD", "LADYWOOD", "YARDLEY", "LADYWOOD", "LADYWOOD", "LADYWOOD", "YARDLEY", "NORTHFIELD", "LADYWOOD", "LADYWOOD", "HALL GREEN", "ERDINGTON", "LADYWOOD", "HODGE HILL", "PERRY BARR", "LADYWOOD", "ERDINGTON", "SELLY OAK", "SELLY OAK", "SELLY OAK", "LADYWOOD", "LADYWOOD", "HALL GREEN", "PERRY BARR", "HODGE HILL", "LADYWOOD", "SELLY OAK", "HODGE HILL", "PERRY BARR", "LADYWOOD", "LADYWOOD", "SELLY OAK", "LADYWOOD", "PERRY BARR", "HALL GREEN", "SELLY OAK", "EDGBASTON", "EDGBASTON", "ERDINGTON", "LADYWOOD", "SELLY OAK", "NORTHFIELD", "HODGE HILL", "ERDINGTON", "PERRY BARR", "LADYWOOD", "HALL GREEN", "LADYWOOD", "HODGE HILL", "NORTHFIELD", "EDGBASTON", "PERRY BARR", "SELLY OAK", "YARDLEY", "HALL GREEN", "YARDLEY", "HODGE HILL", "LADYWOOD", "OUTSIDE B'HAM", "SELLY OAK", "YARDLEY", "YARDLEY", "NORTHFIELD"], ["SHOP", "STORES", "CAR PARK", "OFFICE", "OFFICES", "OFFICES", "OFFICE", "OFFICE", "HAND CAR WASH", "OFFICES", "OFFICES", "STORE"], ["Food", "Food", "Food", "Grocery", "Food", "Entertainment", "Travel", "Bills", "Entertainment", "Fuel", "Food", "Grocery", "Bills", "Fuel", "Grocery", "Bills", "Bills", "Grocery", "Entertainment", "Grocery", "Grocery", "Food", "Fuel", "Food", "Food", "Entertainment", "Entertainment", "Bills", "Fuel", "Grocery", "Bills", "Grocery", "Entertainment", "Fuel", "Fuel", "Food", "Grocery", "Grocery", "Food", "Travel", "Bills", "Grocery", "Food", "Grocery", "Grocery", "Fuel", "Entertainment", "Fuel", "Bills", "Grocery", "Grocery", "Travel", "Grocery", "Grocery", "Fuel", "Fuel", "Fuel", "Entertainment", "Food", "Fuel", "Fuel", "Food", "Bills", "Fuel", "Fuel", "Food", "Food", "Grocery", "Entertainment", "Food", "Entertainment", "Food", "Entertainment", "Grocery", "Grocery", "Bills", "Grocery", "Food", "Fuel", "Bills", "Fuel", "Bills", "Fuel", "Food", "Entertainment", "Food", "Bills", "Entertainment", "Grocery", "Fuel", "Fuel", "Bills", "Grocery", "Fuel", "Food", "Entertainment", "Travel", "Bills", "Food", "Bills", "Bills", "Bills", "Entertainment", "Grocery", "Bills", "Bills", "Entertainment", "Fuel", "Entertainment", "Bills", "Fuel", "Food", "Grocery", "Bills", "Food", "Bills", "Fuel", "Bills", "Fuel", "Entertainment", "Entertainment", "Bills", "Fuel", "Entertainment", "Fuel", "Entertainment", "Bills", "Fuel", "Food", "Grocery", "Food", "Entertainment", "Entertainment", "Fuel", "Food", "Bills", "Food", "Grocery", "Bills", "Bills", "Food", "Grocery", "Bills", "Fuel", "Food", "Fuel", "Grocery", "Food", "Food", "Grocery", "Fuel", "Bills", "Food", "Entertainment", "Bills", "Grocery", "Bills", "Entertainment", "Food", "Bills", "Grocery", "Food", "Entertainment", "Grocery", "Fuel", "Grocery", "Entertainment", "Entertainment", "Bills", "Food", "Grocery", "Grocery", "Bills", "Grocery", "Food", "Bills", "Bills", "Grocery", "Grocery", "Bills", "Fuel", "Bills", "Fuel", "Food", "Bills", "Entertainment", "Bills", "Entertainment", "Bills", "Fuel", "Bills", "Food", "Food", "Food", "Bills", "Entertainment", "Grocery", "Food", "Fuel", "Entertainment", "Grocery", "Fuel", "Bills", "Grocery", "Travel", "Fuel", "Grocery", "Entertainment", "Entertainment", "Entertainment", "Grocery", "Grocery", "Fuel", "Food", "Entertainment", "Bills", "Fuel", "Entertainment", "Bills", "Grocery", "Bills", "Bills", "Bills", "Food", "Entertainment", "Entertainment", "Food", "Food", "Bills", "Grocery", "Entertainment", "Food", "Bills", "Entertainment", "Food", "Grocery", "Fuel", "Bills", "Bills", "Food", "Entertainment", "Fuel", "Food", "Grocery", "Fuel", "Bills", "Fuel", "Food", "Fuel", "Fuel", "Bills", "Entertainment", "Fuel", "Grocery", "Grocery", "Fuel", "Grocery", "Fuel", "Food", "Fuel", "Fuel", "Grocery", "Bills", "Entertainment", "Fuel", "Grocery", "Fuel", "Grocery", "Fuel", "Grocery", "Entertainment", "Grocery", "Fuel", "Bills", "Food", "Food", "Grocery", "Food", "Entertainment", "Food", "Grocery", "Entertainment", "Bills", "Grocery", "Food", "Grocery", "Food", "Grocery", "Bills", "Bills", "Food", "Grocery", "Bills", "Entertainment", "Bills", "Food", "Entertainment", "Entertainment", "Food", "Grocery", "Bills", "Bills", "Grocery", "Food", "Entertainment", "Grocery", "Entertainment", "Bills", "Grocery", "Fuel", "Fuel", "Bills", "Entertainment", "Food", "Food", "Food", "Fuel", "Bills", "Fuel", "Entertainment", "Fuel", "Food", "Food", "Food", "Grocery", "Grocery", "Fuel", "Food", "Grocery", "Bills", "Food", "Entertainment", "Bills", "Bills", "Bills", "Grocery", "Grocery", "Food", "Grocery", "Food", "Fuel", "Bills", "Food", "Bills", "Bills", "Fuel", "Fuel", "Bills", "Grocery", "Food", "Food", "Entertainment", "Grocery", "Bills", "Entertainment", "Bills", "Bills", "Bills", "Fuel", "Bills", "Bills", "Fuel", "Food", "Grocery", "Grocery", "Fuel", "Food", "Entertainment", "Bills", "Grocery", "Food", "Grocery", "Fuel", "Bills", "Bills", "Fuel", "Bills", "Food", "Entertainment", "Entertainment", "Bills", "Food", "Bills", "Fuel", "Grocery", "Grocery", "Travel", "Food", "Food", "Travel", "Grocery", "Entertainment", "Grocery", "Food", "Entertainment", "Grocery", "Fuel", "Bills", "Grocery", "Bills", "Food", "Food", "Food", "Food", "Bills", "Grocery", "Entertainment", "Food", "Entertainment", "Grocery", "Fuel", "Fuel", "Entertainment", "Entertainment", "Food", "Food", "Grocery", "Entertainment", "Food", "Food", "Fuel", "Food", "Fuel", "Bills", "Grocery", "Bills", "Bills", "Grocery", "Food", "Grocery", "Fuel", "Entertainment", "Bills", "Bills", "Bills", "Grocery", "Food", "Fuel", "Food", "Food", "Fuel", "Travel", "Entertainment", "Entertainment", "Fuel", "Grocery", "Grocery", "Bills", "Food", "Fuel", "Bills", "Fuel", "Bills", "Food", "Bills", "Food", "Bills", "Fuel", "Food", "Grocery", "Food", "Grocery", "Fuel", "Bills", "Grocery", "Food", "Fuel", "Bills", "Grocery", "Entertainment", "Bills", "Fuel", "Food", "Entertainment", "Entertainment", "Entertainment", "Entertainment", "Grocery", "Entertainment", "Food", "Grocery", "Food", "Grocery", "Food", "Entertainment", "Entertainment", "Bills", "Entertainment", "Bills", "Grocery", "Bills", "Grocery", "Bills", "Food", "Fuel", "Food", "Entertainment", "Grocery", "Grocery", "Entertainment"], ["West Midlands", "East Midlands", "West Midlands", "London", "West Midlands", "London", "Scotland", "Scotland", "West Midlands", "West Midlands", "Scotland", "Wales", "Scotland", "Scotland", "West Midlands", "Scotland", "London", "Scotland", "London", "Wales", "Scotland", "Scotland", "East Midlands", "West Midlands", "Scotland", "West Midlands", "London", "Scotland", "Scotland", "London", "East Midlands", "London", "London", "West Midlands", "Wales", "London", "Wales", "Scotland", "London", "London", "Scotland", "London", "West Midlands", "Scotland", "London", "London", "London", "Wales", "London", "West Midlands", "London", "Wales", "Scotland", "Scotland", "Scotland", "Scotland", "West Midlands", "Scotland", "Scotland", "West Midlands", "London", "East Midlands", "East Midlands", "Wales", "West Midlands", "West Midlands", "Scotland", "Scotland", "London", "Scotland", "Wales", "London", "Wales", "East Midlands", "Wales", "Wales", "Wales", "West Midlands", "Scotland", "Scotland", "Scotland", "East Midlands", "West Midlands", "Scotland", "West Midlands", "Scotland", "Scotland", "Scotland", "West Midlands", "Scotland", "Wales", "London", "Scotland", "East Midlands", "East Midlands", "Wales", "West Midlands", "West Midlands", "West Midlands", "East Midlands", "West Midlands", "London", "Scotland", "West Midlands", "Scotland", "West Midlands", "Scotland", "West Midlands", "London", "Wales", "London", "East Midlands", "London", "West Midlands", "West Midlands", "Scotland", "West Midlands", "Scotland", "Wales", "Scotland", "London", "London", "London", "London", "Scotland", "East Midlands", "Wales", "London", "West Midlands", "Wales", "West Midlands", "Scotland", "Scotland", "West Midlands", "London", "Scotland", "Scotland", "East Midlands", "Scotland", "Scotland", "West Midlands", "London", "East Midlands", "London", "Wales", "Scotland", "East Midlands", "Wales", "West Midlands", "West Midlands", "Scotland", "Scotland", "West Midlands", "Wales", "London", "London", "West Midlands", "London", "Wales", "West Midlands", "West Midlands", "Scotland", "London", "West Midlands", "Wales", "West Midlands", "Scotland", "Wales", "London", "London", "Scotland", "London", "West Midlands", "West Midlands", "Scotland", "Wales", "Scotland", "West Midlands", "West Midlands", "West Midlands", "London", "Scotland", "East Midlands", "Scotland", "London", "West Midlands", "Scotland", "Scotland", "London", "Scotland", "Scotland", "London", "Scotland", "Wales", "Wales", "East Midlands", "Scotland", "East Midlands", "Wales", "London", "Wales", "Scotland", "Wales", "Scotland", "East Midlands", "Wales", "London", "Scotland", "London", "Scotland", "Scotland", "London", "Wales", "East Midlands", "Scotland", "Wales", "Wales", "London", "Wales", "Scotland", "London", "Scotland", "West Midlands", "London", "London", "London", "London", "Scotland", "London", "Wales", "Scotland", "Wales", "West Midlands", "London", "West Midlands", "Wales", "Scotland", "Scotland", "Scotland", "West Midlands", "East Midlands", "Scotland", "West Midlands", "Scotland", "West Midlands", "London", "London", "East Midlands", "Wales", "West Midlands", "Scotland", "London", "Wales", "Wales", "Scotland", "East Midlands", "Wales", "West Midlands", "West Midlands", "London", "Scotland", "Wales", "London", "Wales", "Scotland", "London", "Scotland", "West Midlands", "Scotland", "London", "West Midlands", "East Midlands", "Scotland", "East Midlands", "London", "East Midlands", "Scotland", "East Midlands", "Wales", "London", "Wales", "Scotland", "Scotland", "London", "West Midlands", "London", "Wales", "West Midlands", "Scotland", "West Midlands", "West Midlands", "East Midlands", "Wales", "London", "Scotland", "West Midlands", "West Midlands", "West Midlands", "London", "London", "Scotland", "Scotland", "Scotland", "Wales", "London", "Scotland", "Scotland", "Scotland", "London", "Scotland", "Wales", "West Midlands", "London", "Scotland", "Scotland", "London", "London", "Wales", "Scotland", "Scotland", "Wales", "Scotland", "Wales", "Wales", "East Midlands", "West Midlands", "Wales", "East Midlands", "East Midlands", "Scotland", "London", "Wales", "Scotland", "Wales", "West Midlands", "West Midlands", "East Midlands", "Scotland", "East Midlands", "West Midlands", "Scotland", "East Midlands", "Scotland", "West Midlands", "East Midlands", "Scotland", "Scotland", "Wales", "Scotland", "West Midlands", "Scotland", "Scotland", "West Midlands", "London", "Scotland", "Scotland", "West Midlands", "London", "London", "Scotland", "Scotland", "Scotland", "Scotland", "West Midlands", "Scotland", "London", "Scotland", "Scotland", "London", "London", "East Midlands", "Scotland", "Wales", "Scotland", "London", "London", "Scotland", "Scotland", "London", "London", "Scotland", "East Midlands", "Scotland", "Scotland", "Scotland", "Wales", "East Midlands", "West Midlands", "London", "London", "London", "London", "London", "Scotland", "London", "Scotland", "West Midlands", "London", "Wales", "Wales", "Scotland", "East Midlands", "East Midlands", "Scotland", "West Midlands", "Scotland", "Wales", "Wales", "West Midlands", "West Midlands", "West Midlands", "London", "Scotland", "London", "Scotland", "West Midlands", "Scotland", "Scotland", "Scotland", "Scotland", "Scotland", "Scotland", "Wales", "Scotland", "London", "East Midlands", "West Midlands", "Scotland", "London", "London", "Scotland", "Wales", "Wales", "London", "Scotland", "Scotland", "West Midlands", "Scotland", "London", "West Midlands", "Wales", "West Midlands", "London", "Scotland", "East Midlands", "London", "Scotland", "West Midlands", "Scotland", "Scotland", "London", "London", "Wales", "Scotland", "London", "London", "Scotland", "Wales", "Scotland", "West Midlands", "Scotland", "Wales", "London", "West Midlands", "Scotland", "West Midlands", "Scotland", "Scotland", "West Midlands", "Scotland", "West Midlands", "London", "Scotland", "Scotland", "London", "Wales", "London", "Scotland", "London", "Scotland", "Scotland", "Scotland", "London", "Wales", "Wales", "Scotland", "Wales", "Wales", "Scotland", "Wales", "West Midlands", "Scotland", "Wales", "London", "London", "Scotland", "Scotland", "East Midlands", "London", "East Midlands"], ["SuDocs", "SuDocs", "SuDocs", "OTS", "SuDocs", "Clearinghouse", "SuDocs", "SuDocs", "SuDocs", "NTIS", "SuDocs", "SuDocs", "SuDocs", "Clearinghouse", "SuDocs", "SuDocs", "SuDocs", "SuDocs", "OTS", "SuDocs", "SuDocs", "Clearinghouse", "OTS", "Clearinghouse", "Clearinghouse", "SuDocs", "NTIS", "SuDocs", "Clearinghouse", "Clearinghouse", "Clearinghouse", "SuDocs", "Clearinghouse", "NTIS", "OTS", "SuDocs", "SuDocs", "SuDocs", "Clearinghouse", "SuDocs", "SuDocs", "SuDocs", "SuDocs", "Clearinghouse", "SuDocs", "NTIS", "SuDocs", "NTIS", "Clearinghouse", "Clearinghouse", "OTS", "Clearinghouse", "NTIS", "SuDocs", "Clearinghouse", "SuDocs", "SuDocs", "OTS", "NTIS", "SuDocs", "SuDocs", "SuDocs", "SuDocs", "SuDocs", "SuDocs", "OTS", "Clearinghouse", "OTS", "SuDocs", "SuDocs", "SuDocs", "Clearinghouse", "Clearinghouse", "OTS", "NTIS", "OTS", "OTS", "NTIS", "SuDocs", "Clearinghouse", "SuDocs", "Clearinghouse", "Clearinghouse", "SuDocs", "NTIS", "Clearinghouse", "Clearinghouse", "SuDocs", "Clearinghouse", "SuDocs", "Clearinghouse", "NTIS", "NTIS", "NTIS", "OTS", "Clearinghouse", "SuDocs", "Clearinghouse", "NTIS", "NTIS", "NTIS", "SuDocs", "Clearinghouse", "NTIS", "OTS", "Clearinghouse", "OTS", "Clearinghouse", "Clearinghouse", "SuDocs", "Clearinghouse", "NTIS", "SuDocs", "NTIS", "SuDocs", "SuDocs", "SuDocs", "Clearinghouse", "Clearinghouse", "Clearinghouse", "SuDocs", "NTIS", "NTIS", "SuDocs", "NTIS", "NTIS", "SuDocs", "SuDocs", "NTIS", "SuDocs", "SuDocs", "NTIS", "SuDocs", "OTS", "SuDocs", "SuDocs", "NTIS", "Clearinghouse", "NTIS", "Clearinghouse", "Clearinghouse", "SuDocs", "Clearinghouse", "NTIS", "SuDocs", "SuDocs", "NTIS", "Clearinghouse", "OTS", "Clearinghouse", "NTIS", "SuDocs", "OTS", "Clearinghouse", "SuDocs", "NTIS", "Clearinghouse", "Clearinghouse", "OTS", "NTIS", "NTIS", "NTIS", "Clearinghouse", "SuDocs", "OTS", "Clearinghouse", "NTIS", "SuDocs", "Clearinghouse", "OTS", "SuDocs", "SuDocs", "Clearinghouse", "NTIS", "OTS", "NTIS", "Clearinghouse", "Clearinghouse", "Clearinghouse", "SuDocs", "Clearinghouse", "OTS", "NTIS", "SuDocs", "SuDocs", "SuDocs", "OTS", "OTS", "SuDocs", "SuDocs", "NTIS", "Clearinghouse", "Clearinghouse", "NTIS", "NTIS", "SuDocs", "NTIS", "SuDocs", "NTIS", "Clearinghouse", "SuDocs", "SuDocs", "Clearinghouse", "SuDocs", "Clearinghouse", "OTS", "Clearinghouse", "Clearinghouse", "NTIS", "SuDocs", "Clearinghouse", "SuDocs", "SuDocs", "SuDocs", "SuDocs", "SuDocs", "Clearinghouse", "NTIS", "Clearinghouse", "NTIS", "Clearinghouse", "NTIS", "SuDocs", "OTS", "NTIS", "Clearinghouse", "Clearinghouse", "OTS", "SuDocs", "Clearinghouse", "Clearinghouse", "SuDocs", "NTIS", "NTIS", "SuDocs", "NTIS", "NTIS", "NTIS", "SuDocs", "OTS", "NTIS", "Clearinghouse", "SuDocs", "NTIS", "Clearinghouse", "SuDocs", "NTIS", "Clearinghouse", "Clearinghouse", "Clearinghouse", "Clearinghouse", "SuDocs", "SuDocs", "OTS", "Clearinghouse", "SuDocs", "SuDocs", "NTIS", "SuDocs", "OTS", "NTIS", "Clearinghouse", "NTIS", "NTIS", "NTIS", "Clearinghouse", "NTIS", "Clearinghouse", "SuDocs", "SuDocs", "NTIS", "Clearinghouse", "Clearinghouse", "NTIS", "SuDocs", "Clearinghouse", "SuDocs", "NTIS", "Clearinghouse", "SuDocs", "NTIS", "NTIS", "NTIS", "SuDocs", "SuDocs", "SuDocs", "NTIS", "SuDocs", "SuDocs", "Clearinghouse", "SuDocs", "Clearinghouse", "NTIS", "NTIS", "SuDocs", "NTIS", "NTIS", "SuDocs", "NTIS", "OTS", "Clearinghouse", "SuDocs", "NTIS", "OTS", "Clearinghouse", "NTIS", "SuDocs", "SuDocs", "Clearinghouse", "NTIS", "Clearinghouse", "NTIS", "Clearinghouse", "OTS", "OTS", "Clearinghouse", "NTIS", "SuDocs", "Clearinghouse", "SuDocs", "Clearinghouse", "OTS", "SuDocs", "Clearinghouse", "NTIS", "SuDocs", "Clearinghouse", "NTIS", "SuDocs", "Clearinghouse", "SuDocs", "NTIS", "SuDocs", "Clearinghouse", "NTIS", "OTS", "SuDocs", "OTS", "NTIS", "SuDocs", "Clearinghouse", "NTIS", "OTS", "SuDocs", "SuDocs", "NTIS", "OTS", "NTIS", "Clearinghouse", "Clearinghouse", "SuDocs", "OTS", "Clearinghouse", "SuDocs", "OTS", "Clearinghouse", "Clearinghouse", "NTIS", "SuDocs", "SuDocs", "NTIS", "Clearinghouse", "NTIS", "Clearinghouse", "NTIS", "Clearinghouse", "NTIS", "SuDocs", "SuDocs", "OTS", "OTS", "OTS", "OTS", "NTIS", "SuDocs", "OTS", "Clearinghouse", "Clearinghouse", "NTIS", "Clearinghouse", "Clearinghouse", "OTS", "NTIS", "SuDocs", "SuDocs", "Clearinghouse", "OTS", "Clearinghouse", "SuDocs", "SuDocs", "SuDocs", "NTIS", "Clearinghouse", "SuDocs", "SuDocs", "OTS", "SuDocs", "SuDocs", "Clearinghouse", "Clearinghouse", "Clearinghouse", "Clearinghouse", "Clearinghouse", "SuDocs", "OTS", "Clearinghouse", "Clearinghouse", "SuDocs", "SuDocs", "OTS", "SuDocs", "SuDocs", "NTIS", "Clearinghouse", "SuDocs", "Clearinghouse", "Clearinghouse", "Clearinghouse", "Clearinghouse", "SuDocs", "NTIS", "NTIS", "Clearinghouse", "SuDocs", "Clearinghouse", "SuDocs", "SuDocs", "Clearinghouse", "NTIS", "Clearinghouse", "Clearinghouse", "Clearinghouse", "OTS", "Clearinghouse", "Clearinghouse", "OTS"], ["Speed only", "Hanlon; Speed", "Hanlon; Speed", "Speed only", "Speed only", "Speed only", "All", "Speed only", "Speed only", "Speed only", "Speed only", "Speed only", "Speed only", "Speed only", "Speed only", "Hanlon; Speed", "Speed only", "All", "All", "All", "Speed only", "East; Speed", "Speed only", "Hanlon; Speed", "Speed only", "All", "Speed only", "East; Speed", "All", "All", "Speed only", "All", "Speed only", "East; Speed", "All", "All", "East; Speed", "Speed only", "Speed only", "Speed only", "All", "All", "Hanlon; Speed", "All", "Speed only", "All", "Speed only"], ["No preference", "Other", "No treatment", "No treatment", "No treatment", "No preference", "No preference", "No preference"], ["CLO", "NRM", "ArtDatabanken", "CLO", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "CLO", "ArtDatabanken", "CLO", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "NRM", "ArtDatabanken", "ArtDatabanken", "CLO", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "DOF", "UWBM", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "DOF", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "NRM", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "CLO", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "naturgucker", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "TCWC", "ArtDatabanken", "DOF", "CLO", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "NOF", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "CLO", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "GEO", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "NOF", "ArtDatabanken", "NOF", "ArtDatabanken", "ArtDatabanken", "NOF", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "NRM", "CLO", "ArtDatabanken", "UWBM", "UWBM", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "NRM", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "NRM", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "CLO", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "NOF", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "NOF", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "NOF", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "NOF", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "NOF", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "naturgucker", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "DOF", "ArtDatabanken", "ArtDatabanken", "naturgucker", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "YPM", "NRM", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "CLO", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "CLO", "ArtDatabanken", "ArtDatabanken", "CLO", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "DOF", "DOF", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "NRM", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "CLO", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "NRM", "DOF", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "DOF", "NOF", "ArtDatabanken", "CLO", "ArtDatabanken", "ArtDatabanken", "CLO", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "CLO", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "USNM", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "CLO", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "naturgucker", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "CLO", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "NRM", "ArtDatabanken", "CLO", "CLO", "ArtDatabanken", "ArtDatabanken", "naturgucker", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "CLO", "YPM", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "CLO", "NRM", "naturgucker", "ArtDatabanken", "CLO", "CLO", "ArtDatabanken", "CLO", "ArtDatabanken", "NRM", "ArtDatabanken", "NOF", "ArtDatabanken", "DOF", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "DOF", "NOF", "NOF", "ArtDatabanken", "NRM", "ArtDatabanken", "YPM", "ArtDatabanken", "ArtDatabanken", "CLO", "NRM", "ArtDatabanken", "ArtDatabanken", "CLO", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "naturgucker", "ArtDatabanken", "CLO", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "CLO", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "NOF", "ArtDatabanken", "CLO", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "CLO", "ArtDatabanken", "naturgucker", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "NRM", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "CLO", "ArtDatabanken", "ArtDatabanken", "CLO", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "UWBM", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "CLO", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "CLO", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "CLO", "ArtDatabanken", "CLO", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "DOF", "ArtDatabanken", "NOF", "ArtDatabanken", "NRM", "ArtDatabanken", "DOF", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "NRM", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "CLO", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "naturgucker", "ArtDatabanken", "ArtDatabanken", "ArtDatabanken", "naturgucker", "ArtDatabanken", "ArtDatabanken"], ["People", "People", "Place", "Resources", "People", "Resources", "People", "Place", "People", "Resources", "People", "People", "People", "People", "People", "Place", "People", "People", "People", "People", "People", "People", "Resources", "People", "Place", "People", "People", "People", "Place", "People", "People", "People", "People", "People", "People", "People", "Place", "People", "People", "Place", "People", "People", "People", "People", "People", "People", "Place", "Place", "Resources", "People", "Place", "People", "People", "People", "People", "People", "Resources", "Place", "Place", "People", "People", "People", "People", "Place", "People", "Place", "People", "People", "People", "People", "People", "People", "People", "Place", "People", "People", "People", "People", "People", "People", "People", "People", "People", "People", "People", "People", "People", "People", "Resources", "Resources", "Public Health", "Place", "Place", "Place", "People", "People", "Place", "Resources", "People", "Place", "People", "Resources", "People", "People", "Resources", "Place", "People", "Resources", "People", "Resources", "People", "People", "Place", "Resources", "People", "People", "Place", "Resources", "People", "People", "People", "People", "People", "Place", "People", "People", "People", "Place", "Place", "People", "People", "People", "People", "People", "People", "People", "People", "People", "People", "People", "People", "People", "People", "People", "People", "People", "Place", "Place", "People", "People", "People", "People", "People", "People", "People", "People", "People", "Place", "People", "Place", "Resources", "People", "People", "Place", "People", "People", "People", "People", "People", "People", "People", "Resources", "People", "People", "Resources", "People", "People", "Place", "People", "Resources", "People", "People", "People", "Place", "People", "People", "People", "People", "People", "People", "People", "People", "Place", "People", "People", "Place", "People", "People", "People", "Place", "Place", "People", "Place", "People", "Resources", "Place", "People", "People", "People", "People", "People", "People", "Place", "People", "Resources", "People", "People", "People", "People", "Resources", "People", "People", "People", "People", "People", "Place", "People", "People", "Place", "People", "Place", "Place", "Resources", "People", "People", "People", "Resources", "People", "People", "People", "People", "Place", "Resources", "People", "Resources", "Resources", "Place", "Place", "People", "People", "People", "People", "People", "Place", "People", "People", "People", "People", "People", "Place", "People", "People", "People", "People", "People", "Place", "People", "Place", "Place", "Place", "People", "People", "Place", "People", "Place", "People", "People", "People", "People", "People", "Place", "People", "Place", "Resources", "People", "People", "People", "People", "People", "People", "People", "People", "People", "People", "People", "People", "People", "People", "People", "People", "People", "People", "People", "Place", "People", "People", "People", "Place", "Place", "People", "Resources", "People", "People", "Resources", "Place", "People", "Resources", "People", "People", "People", "People", "Place", "Place", "People", "Place", "People", "People", "People", "People", "People", "People", "Place", "People", "People", "Place", "People", "People", "People", "People", "People", "People", "People", "People", "Resources", "People", "Place", "Place", "People", "Resources", "People", "Resources", "People", "Place", "People", "People", "Place", "Place", "Place", "People", "Place", "People", "Place", "People", "Place", "People", "People", "Place", "Place", "Place", "Place", "People", "People", "Place", "Resources", "Place", "Place", "People", "Place", "People", "Place", "Resources", "People", "People", "People", "Place", "Place", "Resources", "People", "Place", "People", "People", "People", "Resources", "People", "Resources", "People", "People", "People", "People", "People", "Place", "Place", "People", "People", "People", "Place", "People", "People", "People", "People", "People", "Place", "Place", "People", "People", "People", "People", "Place", "People", "Place", "People", "Resources", "Place", "People", "People", "People", "Place", "Place", "Resources", "Place", "Place", "People", "Place", "People", "Resources", "Place", "People", "People", "People", "People", "People", "Place", "Place", "People", "People", "People", "People", "People", "Place", "Place", "People", "People", "Place", "Place", "Resources", "People", "People", "People", "Place", "People", "People", "Resources", "People", "Resources", "Place", "Place", "People", "People", "People", "Resources", "People", "People", "People", "People", "People", "Place", "People", "Place", "Place", "Place", "People", "People", "People", "Resources", "People", "People", "People", "Place", "People", "People", "People", "Place", "People", "People", "People", "Place", "People", "People", "People", "Place"], ["Quarterly", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "One time", "Quarterly", "Quarterly", "Quarterly", "One time", "One time", "Quarterly", "Annually", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "One time", "Quarterly", "One time", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "One time", "Quarterly", "One time", "One time", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "One time", "One time", "Quarterly", "One time", "Quarterly", "Quarterly", "One time", "One time", "Quarterly", "Quarterly", "One time", "Quarterly", "One time", "One time", "One time", "Quarterly", "One time", "Quarterly", "Quarterly", "One time", "Quarterly", "One time", "One time", "Quarterly", "One time", "Quarterly", "Quarterly", "Quarterly", "One time", "One time", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "One time", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "One time", "One time", "Quarterly", "Quarterly", "Semi-Annually", "Annually", "One time", "Quarterly", "One time", "One time", "Quarterly", "One time", "Quarterly", "One time", "One time", "Quarterly", "Quarterly", "One time", "One time", "Quarterly", "One time", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "One time", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "One time", "Annually", "One time", "Quarterly", "Quarterly", "One time", "One time", "Quarterly", "Quarterly", "One time", "Quarterly", "Quarterly", "One time", "One time", "One time", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "One time", "One time", "Quarterly", "Quarterly", "Quarterly", "One time", "One time", "Quarterly", "Quarterly", "Quarterly", "One time", "Quarterly", "One time", "One time", "Quarterly", "One time", "Quarterly", "One time", "One time", "Annually", "One time", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "One time", "Annually", "One time", "Quarterly", "Quarterly", "Quarterly", "One time", "Quarterly", "Quarterly", "Quarterly", "One time", "Quarterly", "Quarterly", "Quarterly", "One time", "Quarterly", "One time", "One time", "Quarterly", "One time", "One time", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "One time", "One time", "Quarterly", "One time", "Quarterly", "One time", "One time", "Quarterly", "One time", "Quarterly", "Quarterly", "One time", "Quarterly", "Quarterly", "Quarterly", "One time", "One time", "Quarterly", "One time", "One time", "One time", "Quarterly", "One time", "One time", "Quarterly", "Quarterly", "One time", "Quarterly", "Quarterly", "Quarterly", "One time", "Quarterly", "One time", "Semi-Annually", "Quarterly", "Quarterly", "Quarterly", "One time", "One time", "Quarterly", "Quarterly", "Quarterly", "One time", "Quarterly", "Quarterly", "One time", "One time", "Quarterly", "One time", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "One time", "Quarterly", "One time", "One time", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "One time", "One time", "One time", "Quarterly", "Quarterly", "One time", "Quarterly", "Quarterly", "One time", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "One time", "Quarterly", "One time", "One time", "One time", "One time", "Quarterly", "One time", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "One time", "One time", "One time", "One time", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "Annually", "Quarterly", "One time", "Quarterly", "Quarterly", "One time", "One time", "One time", "One time", "Quarterly", "One time", "One time", "One time", "One time", "One time", "Quarterly", "One time", "Quarterly", "One time", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "Semi-Annually", "Quarterly", "Continuously", "One time", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "One time", "Quarterly", "One time", "One time", "One time", "Quarterly", "Quarterly", "One time", "One time", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "One time", "One time", "Quarterly", "Quarterly", "Quarterly", "One time", "Quarterly", "Quarterly", "One time", "One time", "Quarterly", "One time", "Quarterly", "One time", "Quarterly", "Quarterly", "One time", "Quarterly", "One time", "Quarterly", "Quarterly", "One time", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "One time", "One time", "Quarterly", "Quarterly", "Quarterly", "One time", "Quarterly", "One time", "One time", "One time", "One time", "Quarterly", "Quarterly", "One time", "Quarterly", "Quarterly", "Quarterly", "One time", "Quarterly", "One time", "One time", "Quarterly", "Quarterly", "Quarterly", "One time", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "One time", "One time", "One time", "One time", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "One time", "Quarterly", "Quarterly", "Semi-Annually", "One time", "Quarterly", "One time", "Quarterly", "Quarterly", "One time", "Quarterly", "Quarterly", "Annually", "Quarterly", "One time", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "One time", "Quarterly", "Quarterly", "One time", "Quarterly", "One time", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "One time", "One time", "Quarterly", "Annually", "Quarterly", "One time", "Quarterly", "One time", "Continuously", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "One time", "Quarterly", "Quarterly", "Continuously", "One time", "One time", "One time", "Quarterly", "One time", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "One time", "Quarterly", "One time", "Quarterly", "Quarterly", "One time", "Quarterly", "Quarterly", "Quarterly", "One time", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "Quarterly", "One time", "One time", "Quarterly", "One time", "Quarterly", "Quarterly"], ["SuperCenter", "Wal-MartStore", "SuperCenter", "Wal-MartStore", "SuperCenter", "Wal-MartStore", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "Wal-MartStore", "SuperCenter", "SuperCenter", "SuperCenter", "Wal-MartStore", "Wal-MartStore", "SuperCenter", "SuperCenter", "SuperCenter", "Wal-MartStore", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "Wal-MartStore", "SuperCenter", "Wal-MartStore", "SuperCenter", "Wal-MartStore", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "Wal-MartStore", "Wal-MartStore", "Wal-MartStore", "Wal-MartStore", "SuperCenter", "SuperCenter", "Wal-MartStore", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "Wal-MartStore", "SuperCenter", "SuperCenter", "Wal-MartStore", "Wal-MartStore", "Wal-MartStore", "SuperCenter", "SuperCenter", "Wal-MartStore", "SuperCenter", "Wal-MartStore", "Wal-MartStore", "Wal-MartStore", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "Wal-MartStore", "SuperCenter", "Wal-MartStore", "SuperCenter", "SuperCenter", "SuperCenter", "Wal-MartStore", "Wal-MartStore", "SuperCenter", "SuperCenter", "SuperCenter", "Wal-MartStore", "Wal-MartStore", "Wal-MartStore", "SuperCenter", "Wal-MartStore", "SuperCenter", "SuperCenter", "Wal-MartStore", "Wal-MartStore", "SuperCenter", "Wal-MartStore", "SuperCenter", "Wal-MartStore", "SuperCenter", "Wal-MartStore", "Wal-MartStore", "Wal-MartStore", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "Wal-MartStore", "Wal-MartStore", "Wal-MartStore", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "Wal-MartStore", "SuperCenter", "SuperCenter", "SuperCenter", "Wal-MartStore", "Wal-MartStore", "SuperCenter", "SuperCenter", "Wal-MartStore", "Wal-MartStore", "SuperCenter", "Wal-MartStore", "Wal-MartStore", "SuperCenter", "Wal-MartStore", "Wal-MartStore", "SuperCenter", "Wal-MartStore", "SuperCenter", "SuperCenter", "SuperCenter", "Wal-MartStore", "Wal-MartStore", "SuperCenter", "SuperCenter", "SuperCenter", "Wal-MartStore", "SuperCenter", "SuperCenter", "SuperCenter", "Wal-MartStore", "Wal-MartStore", "Wal-MartStore", "Wal-MartStore", "Wal-MartStore", "Wal-MartStore", "Wal-MartStore", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "Wal-MartStore", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "Wal-MartStore", "Wal-MartStore", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "Wal-MartStore", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "Wal-MartStore", "SuperCenter", "SuperCenter", "Wal-MartStore", "SuperCenter", "SuperCenter", "Wal-MartStore", "SuperCenter", "Wal-MartStore", "SuperCenter", "Wal-MartStore", "SuperCenter", "SuperCenter", "Wal-MartStore", "SuperCenter", "SuperCenter", "Wal-MartStore", "SuperCenter", "Wal-MartStore", "SuperCenter", "SuperCenter", "Wal-MartStore", "Wal-MartStore", "SuperCenter", "SuperCenter", "SuperCenter", "Wal-MartStore", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "Wal-MartStore", "Wal-MartStore", "Wal-MartStore", "Wal-MartStore", "SuperCenter", "Wal-MartStore", "SuperCenter", "Wal-MartStore", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "Wal-MartStore", "Wal-MartStore", "SuperCenter", "SuperCenter", "Wal-MartStore", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "Wal-MartStore", "SuperCenter", "Wal-MartStore", "Wal-MartStore", "SuperCenter", "Wal-MartStore", "Wal-MartStore", "Wal-MartStore", "SuperCenter", "SuperCenter", "Wal-MartStore", "Wal-MartStore", "Wal-MartStore", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "Wal-MartStore", "Wal-MartStore", "Wal-MartStore", "SuperCenter", "SuperCenter", "SuperCenter", "Wal-MartStore", "SuperCenter", "SuperCenter", "SuperCenter", "Wal-MartStore", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "Wal-MartStore", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "Wal-MartStore", "SuperCenter", "SuperCenter", "Wal-MartStore", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "Wal-MartStore", "Wal-MartStore", "Wal-MartStore", "Wal-MartStore", "SuperCenter", "Wal-MartStore", "Wal-MartStore", "SuperCenter", "Wal-MartStore", "SuperCenter", "Wal-MartStore", "SuperCenter", "SuperCenter", "SuperCenter", "Wal-MartStore", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "Wal-MartStore", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "Wal-MartStore", "SuperCenter", "SuperCenter", "Wal-MartStore", "Wal-MartStore", "Wal-MartStore", "Wal-MartStore", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "Wal-MartStore", "SuperCenter", "Wal-MartStore", "SuperCenter", "Wal-MartStore", "SuperCenter", "Wal-MartStore", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "Wal-MartStore", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "Wal-MartStore", "Wal-MartStore", "SuperCenter", "Wal-MartStore", "Wal-MartStore", "Wal-MartStore", "SuperCenter", "SuperCenter", "Wal-MartStore", "SuperCenter", "Wal-MartStore", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "Wal-MartStore", "SuperCenter", "SuperCenter", "SuperCenter", "Wal-MartStore", "SuperCenter", "SuperCenter", "Wal-MartStore", "SuperCenter", "Wal-MartStore", "SuperCenter", "Wal-MartStore", "Wal-MartStore", "SuperCenter", "Wal-MartStore", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "Wal-MartStore", "SuperCenter", "SuperCenter", "SuperCenter", "Wal-MartStore", "SuperCenter", "SuperCenter", "Wal-MartStore", "Wal-MartStore", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "Wal-MartStore", "SuperCenter", "SuperCenter", "Wal-MartStore", "Wal-MartStore", "Wal-MartStore", "SuperCenter", "SuperCenter", "SuperCenter", "Wal-MartStore", "SuperCenter", "SuperCenter", "SuperCenter", "Wal-MartStore", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "Wal-MartStore", "SuperCenter", "SuperCenter", "Wal-MartStore", "Wal-MartStore", "SuperCenter", "Wal-MartStore", "SuperCenter", "Wal-MartStore", "SuperCenter", "SuperCenter", "Wal-MartStore", "SuperCenter", "SuperCenter", "SuperCenter", "Wal-MartStore", "Wal-MartStore", "Wal-MartStore", "SuperCenter", "Wal-MartStore", "Wal-MartStore", "Wal-MartStore", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "Wal-MartStore", "SuperCenter", "SuperCenter", "SuperCenter", "Wal-MartStore", "SuperCenter", "Wal-MartStore", "SuperCenter", "SuperCenter", "Wal-MartStore", "SuperCenter", "Wal-MartStore", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "Wal-MartStore", "Wal-MartStore", "SuperCenter", "Wal-MartStore", "Wal-MartStore", "Wal-MartStore", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "Wal-MartStore", "SuperCenter", "Wal-MartStore", "SuperCenter", "Wal-MartStore", "Wal-MartStore", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "Wal-MartStore", "SuperCenter", "SuperCenter", "SuperCenter", "Wal-MartStore", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "SuperCenter", "Wal-MartStore", "SuperCenter", "SuperCenter", "Wal-MartStore", "SuperCenter"], ["Leasehold", "Leasehold", "Leasehold", "Leasehold", "Licence", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Licence", "Licence", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Unavailable", "Licence", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Unavailable", "Unavailable", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Licence", "Leasehold", "Licence", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Unavailable", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Unavailable", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Unavailable", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Unavailable", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Unavailable", "Licence", "Licence", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Licence", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Unavailable", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Unavailable", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Unavailable", "Leasehold", "Unavailable", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Unavailable", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Unavailable", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Unavailable", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Unavailable", "Leasehold", "Licence", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Unavailable", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Unavailable", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Unavailable", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Licence", "Leasehold", "Leasehold", "Leasehold", "Licence", "Unavailable", "Leasehold", "Leasehold", "Licence", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Unavailable", "Leasehold", "Unavailable", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Unavailable", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Licence", "Leasehold", "Unavailable", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Licence", "Leasehold", "Leasehold", "Unavailable", "Leasehold", "Licence", "Unavailable", "Unavailable", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Licence", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Unavailable", "Unavailable", "Leasehold", "Leasehold", "Leasehold", "Unavailable", "Leasehold", "Licence", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Licence", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Unavailable", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Unavailable", "Leasehold", "Leasehold", "Leasehold", "Unavailable", "Leasehold", "Unavailable", "Leasehold", "Unavailable", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Licence", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Unavailable", "Leasehold", "Leasehold", "Unavailable", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Unavailable", "Leasehold", "Licence", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Unavailable", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Unavailable", "Licence", "Unavailable", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Licence", "Leasehold", "Leasehold", "Unavailable", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Sub Leasehold", "Leasehold", "Licence", "Leasehold", "Leasehold", "Leasehold", "Licence", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Unavailable", "Unavailable", "Leasehold", "Leasehold", "Licence", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Unavailable", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Licence", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Licence", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Unavailable", "Leasehold", "Leasehold", "Unavailable", "Leasehold", "Leasehold", "Leasehold", "Unavailable", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Licence", "Leasehold", "Licence", "Unavailable", "Leasehold", "Leasehold", "Leasehold", "Unavailable", "Leasehold", "Licence", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Unavailable", "Leasehold", "Licence", "Leasehold", "Unavailable", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Licence", "Leasehold", "Unavailable", "Leasehold", "Licence", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Leasehold", "Licence", "Leasehold", "Unavailable", "Leasehold", "Unavailable", "Leasehold", "Unavailable", "Leasehold", "Leasehold"], ["SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST", "SPITBACK TEST"], ["Mandal (2012)", "Mandal (2012)", "Mandal (2012)", "Mandal (2012)", "Mandal (2012)", "Mandal (2012)", "Mandal (2012)", "Mandal (2012)", "Mandal (2012)", "Mandal (2012)", "Mandal (2012)", "Mandal (2012)", "Mandal (2012)", "Mandal (2012)", "Mandal (2012)"], ["COMMON D CASH"], ["INDUSTRIAL DR", "INDUSTRIAL DR", "INDUSTRIAL DR", "INDUSTRIAL DR", "INDUSTRIAL DR"], ["model_mrp_bom", "model_mrp_bom", "model_mrp_bom", "model_mrp_bom"], ["323 Smith Rd", "59 Causeway St", "5 Gaywalk St", "2168 86th St", "1501 N 52nd St", "1245 N Main St", "101 White St", "1069 E 9th St", "230 Main St", "72 Bridge St", "40 Hudson Pl", "111 Route 6A", "217 Main St", "155 Spring St", "147 North St", "4 Uxbridge Rd", "2a Wilson Rd", "494 Main St", "312 Maple St", "132 Nassau St", "36 Maple Ave", "3600 Boston St", "301 E 10th Ave", "150 Stadium St", "9827 River Rd", "10 Landis Ave", "573 Lyell Ave", "195 S. Main St", "4268 Ridge Ave", "215 E Main St", "481 Warren Ave", "2921 James St", "116 Lewis St", "909 Church Rd", "145 Sharon St", "5370 Broad St", "138 S Main St", "2373 N Main St", "6923 Post Rd", "105 W 1st Ave", "1042 S 6th Ave", "601 2nd Ave", "1261 Gulf Blvd", "5301 Chew Ave", "615 Meadow St", "9208 Ogden Ave", "742 Davis St", "1317 S 1st Ave", "91 E Main St", "1044 Hope St", "39 Monroe St", "56 Park Rd", "338 Squire Rd", "424 Main St", "967 Post Rd", "1118 Broad St", "110 S East St", "64 Fulton St", "859 Main St", "236 Rahway Ave", "3 N. Smith St", "1148 Beacon St", "401 Main St", "335 George St", "25 Boston St", "1235 Route 33", "577 Main St", "800 Sloan Ave", "325 Route 146", "43 Range Rd", "421 N Broadway", "10020 Main St", "443 Essex St", "4014 Boardwalk", "420 Newbury St", "3320 Grant Ave", "62 State St", "975 E Ridge Rd", "12550 49th St", "454 Main St", "96 E Main St", "814 Derby Ave", "1602 2nd St", "270 Main St", "251 Smith St", "34 Elm St", "317 N Pearl St", "681 E Main St", "1 Bay St # B", "38 A Mill Rd", "240 Social St", "615 N Watt Rd", "8 E Weiss St", "485 Main St", "104 N Main St", "2 E Genesee St", "20 Central Row", "1009 Smith St", "442 Orchard St", "415 N. Main St", "936 Us Route 1", "553 Pond St", "250 Broadway", "150 S Main St", "200 Sargent Dr", "269 E Main St", "33 Union Pl", "219 N Main St", "192 Elm St", "150 Passaic St", "1001 South St", "2258 1st Ave", "950 Main Ave", "9774 Glades Rd", "1461 Main St", "150 E Main St", "10 Brody Way", "430 W Vine St", "255 E Main St", "434 Main St", "575 Fulton St", "65 Merrow Rd", "5073 Camp Rd", "32 Piermont Rd", "28 Winn St", "2567 Broad St", "632 Main St", "323 N Main St", "4926 Avenue K", "122 Main St", "18021 Main St", "190 Route 3", "6 Colby Corner", "1 S Lake Dr", "2 Ashleigh Dr", "1442 S Main St", "515 S. Neil St", "279 Troy Rd", "318 Main St", "4199 Route 9 N", "1 Congress St", "407 Ave P", "650 West Ave", "Rte 12 & 119", "521 W 23rd St", "364 Silver Ln", "13013 66th St", "587 Main St", "84 Dalton Ave", "315 Bridge St", "2001 Court St", "1345 Rte 1", "105 E Oak St", "9400 Joliet Rd", "6127 US 301 S", "1583 Route 22", "10712 71st Ave", "17 Myrick St", "1100 Walnut St", "266 First Ave", "1 Galleria Dr", "2380 Route 52", "1007 Main St", "495 S Main St", "1380 E Penn St", "1300 Hicks Rd", "8611 Winton Rd", "224 Post Rd", "1041 Route 73", "455 Park Ave S", "1 Long Hill Rd", "1457 Bells Hwy", "191 S. Main St", "60 Access Rd", "66-70 Main St", "341 Walnut St", "2756 County St", "4353 Rte 130 S", "285 Boston Ave", "448 Main St", "44 North Rd", "2 Dover Rd", "51 Pond St", "175 State Rd", "3 Penn Plz E", "45 Foster Ave", "148 Dolson Ave", "5109 Broadway", "3 Leavey Dr", "345 Main St", "33 E Lake St", "5 Brewster St", "1500 Market St", "50 Broadway", "7117 North Ave", "1155 E King St", "1407 Hwy 20 W", "12 Ocean Blvd", "59 Orange Tpke", "415 South St", "784 River St", "11 Tapley St", "38 Winter St", "693 9th Ave", "1930 Lisbon St", "906 W Pike St", "97 Main St", "500 Valley St", "937 Easton Rd", "1559 N Main St", "201 S Main St", "122 Fulton St", "416 Route 28", "129 Main St", "100 Maiden Ln", "866 GA Hwy 96", "113 Salem Tpke", "1218 State St", "13 Court St", "604 Route 739", "1002 Ocean Ave", "2820 Paxton St", "4100 Park Ave", "805 Main St", "4653 Duke St", "985 Orange Ave", "529 Main St", "315 High St", "31 E Adams St", "70 Storey Ave", "172 Bath Rd", "225 Essex St", "21522 73rd Ave", "283 N Main St", "575 Bank St", "244 Elm St", "556 Myrtle Ave", "947 2nd St", "333 E. Main St", "1670 Nixon Dr", "107 River Rd", "619 Broadway", "70 Route 4", "770 Forest Ave", "3440 Route 46", "1401 Reid St", "535 Hialeah Dr", "3369 Broadway", "1941 Main St", "80H Bethany Rd", "40 South St", "645 Bridge St", "30 Squire Rd", "306 Fayette St", "123 Summer St", "36 Main St", "300 Access Rd", "8221 Glades Rd", "5307 Route 251", "100 Broad St", "1011 Route 109", "907 Knox Rd", "5510 5th Ave", "4 Harding Ave", "23 Main St", "450 Broadway", "171 Broad St", "419 Main St", "59 Mayville", "50 Birch St", "430 Salem St", "6546 Main St", "3001 E Main Rd", "31 Schuyler St", "7804 Senoia Rd", "180 River Rd.", "26416 Baker Dr", "1096 West St", "2734 US-19 Alt", "7328 103rd St", "50 E 161st St", "4235 Main St", "3040 Main St", "599 Warren Ave", "20411 Route 19", "318 Main St", "1863 Route 6", "65 Route 108", "875 Windham Rd", "366 W. Main St", "90 North St", "3166 Route 22", "210 Demming St", "260 E 161st St", "101 E 16th St", "215 Winter St", "Upper Broadway", "492 Ct Rte 2", "92 W. Main St", "811 SE 10th St", "71 Oxford Rd", "1002 Route 94", "50 S Main St", "101 S Main St", "168 W Main St", "170 3rd St", "6641 Dixie Hwy", "100 Main St", "124 Newbury St", "25 Route 59", "85 North Ave", "306 N. Main St", "88 Elm St", "8119 Watson St", "100 Church Rd.", "563 Main St", "319 Kennedy Dr", "69 Empire St", "65 Newport Ave", "4550 S 27th St", "809 S Broad St", "395 Hudson St", "123 Bridge St", "700 Depot St", "3 E Grove St", "20 Main St", "35 Vassar Rd", "50 Berlin Rd", "33 Montauk Hwy", "741 Lake Ave", "1750 Fifth Ave", "900 Route 73 S", "329 Derry St", "8025 Vaughn Rd", "11 Rt 36", "4395 Union Rd", "606 Post Rd", "22 Beacon St", "361 Main St", "2001 York Rd", "103 W. Main St", "3781 Mendon Rd", "3544 Plank Rd", "2345 G A R Hwy", "200 E Ohio St", "574 Merrick Rd", "2 Brighton Ave", "316 W 34th St", "304 Belmont St", "360 Route 17M", "7 Passaic Ave", "407 Jackson St", "481 Route 28", "8 Liberty Sq", "66 Concord St", "8924 Third Ave", "1844 Hwy 421-B", "4740 Ridge Rd", "855 Candia Rd", "21 E Water St", "2506 PGA Blvd", "1 White St", "36 Jerome Dr", "3600 Broadway", "104 NC Hwy 67", "6 Queen St", "165 7th St", "602 Plank Rd", "45 Chauncy St", "1039 Route 88", "1031 Paxton Dr", "3325 Hart St", "15 Lower Rd", "3683 Route 9", "3117 30th Ave", "3853 Main St", "1862 Ocean St", "293 Elm St", "158 Harmon Dr", "528 Main St.", "360 W. 31st St", "134 N Mill St", "647 Maple Ave", "360 Center St", "333 Lynnway", "741 Cassat Ave", "210 W. 50th St", "2004 West St", "30 Water St", "2265 South Rd", "542 Myrtle Ave", "41 Nashua Rd.", "1909 Teall Ave", "105 Samoset St", "1470 SW 8th St", "323 North Ave", "475 Hwy 29 N", "895 Morton St", "2715 Route 1", "1918 Dover Rd", "350 E 103rd St", "60 Route 46 E", "9803 Main St", "14 Wilson Ave", "863 Harvest Ln", "8 Harvard St", "771 Prince Ave", "77 W State St", "901 Market St", "200 E 89th St", "10730 Q St", "668 Liberty St", "709 Harry L Dr", "391 S Main St", "824 Union Blvd", "BWI Airport Rd", "5600 W 16th St", "88 Derry Rd", "3014 Route 50", "4727 Forest Dr", "51 County Rd", "10 E. Main St", "25 Lakeside Dr", "2138 Route 88", "38 Montauk Hwy", "15231 Hall Rd", "110 Durham Ave", "48 Main St", "704 Foxon Rd", "19 W. Main St", "1250 Easton Rd", "1030 154th St", "5753 Wayne Ave", "2 Meadow St", "6821 Paxton St", "4 Oak St", "295 Wall St", "5 E. Grand Ave", "125 Rte 46 E", "624 Bayway Ave", "505 Main St", "8775 Bay Pkwy", "534 Boulevard", "528 Raritan St", "101 W 23rd St", "327 Ruby Rd", "1880 3rd Ave", "261 Lloyd St", "222 Broadway", "575 Broadway", "458 Amboy Ave", "401 N Main St", "2875 Main St", "550 E 12300 S", "7 Glenwood Rd", "394 Odlin Rd", "231 Main St", "9500 179th St", "300 Access Rd", "1019 Rte 202", "55 Raritan Ave", "289 7th Ave", "1106 State St", "901 NW 17th St", "63 Main St", "929 Kempton St", "92 Bridge St", "680 Route 9", "16 Park St", "2445 75th St", "2300 State Rd", "126 35th St", "1113 Market St", "1295 S Main St", "Route 130", "213 Concord St", "1 Elliot Way", "1434 Brace Rd", "130 N. East Rd", "277 Linden St", "57 Eastern Ave", "10 Rt 46 E", "747 Wolcott Rd", "125 E Court St", "845 E. 49th St", "431 W 14th St", "175 Broad St", "1413 S Fern St", "315 Rt 206", "2739 Medina Rd", "3633 Route 9 N", "250 Granite St", "366 Centre St", "1301 N Wolf Rd", "544 E Main St", "20 S Wedge St", "1730 Marsh Rd", "506 Union Blvd", "1200 Route 3", "1621 Union St"], ["F-SAT-N3-11.5E", "AMS-C8-18E", "AMS-C3-48E", "GESACOM-2", "YAHSAT-G8-20E", "HISPASAT-29A", "NSS-G2-20", "VNSAT-4A8", "VNSAT-2A5", "EGYNILE3", "QZSS-GS5", "NSS-G2-18", "AMS-C8-43E", "ITS-23.5E", "ENSAT-14.5E", "EMARSAT-9U", "MCSAT-3E018", "VIETSAT-132", "AST-3-84E", "SKYNET-4A", "F-SAT-N1-88.5E", "EDRS-31E", "USGOVSAT-18R", "SECOMSAT-59W", "ITS-70.5E", "INSAT-2M (83)", "N-SAT-Y12-124E", "CHNSAT-A-2W", "YAHSAT-G10-50W", "MEASAT-5.7E-R", "TURKSAT-55E-F", "UKNETSAT-34.5W", "QATARSAT-G3-73", "EMARSAT-9G", "ENSAT-KA-67E", "AMS-C5-42E", "STRATSAT-5-R1", "MCSAT W060", "LUX-G10-40", "LUX-G9-41", "BDSAT", "YAHSAT-G10-55W", "N-SAT-Y13-72E", "VIDEOSAT-6", "YAHSAT-G7-110E", "TURKSAT-31E-C", "NSS-G5-15", "NSS-G4-25", "MCSAT-3W042", "YAHSAT-G7-130W", "USLL-ATL3", "AMS-B2-0E", "AMS-A3-36W", "INMARSAT-6-64E", "LUX-G10-41", "YAHSAT-G9-110E", "AST-5-24E", "MCSAT-2 E012", "YAHSAT-G9-55E", "F-SAT-N5-13E", "VNSAT-3A7", "AMS-C6-67.25E", "YAHSAT-G7-115E", "YAHSAT-G8-5E", "MCSAT-3E042", "EGYCOMM7A", "AZERSAT 154E", "AST-5-12E", "NAVISAT-9A", "LUX-G10-57", "NAVISAT-2A", "F-SAT-N5-57W", "PACIFISAT-78E", "AMS-C3-78E", "NAVISAT-12A", "LUX-G10-53", "AST-5-36E", "TURKSAT-5W-F", "PACIFISAT-4", "NALEDI-14E", "QATARSAT-G3-55", "N-SAT-Y15-30W", "VNSAT-4A1", "CGSAT-A03", "APSTAR-1", "VNSAT-2A3", "NEWSAT-1D-41E", "F-SAT-N4-80.5E", "YAHSAT-G5-43W", "LUX-G9-7", "AMS-A6-26W", "TURKSAT-70E-F", "MCSAT-2 W012", "AMS-C4-90E", "S-SAT-126E", "AMS-C3-90E", "YAHSAT-N-25.5E", "TURKSAT-64E-F", "N-SAT-Y13-72W", "CHINASAT-D16", "THAICOM-LSX3R", "AMS-C2-48E", "AST-4-60W", "F-SAT-N-6W", "RAGGIANA-23", "TURKSAT-56W-F", "CHINASAT-D15", "GK2-128.2E", "LUX-G10-29", "RASCOM-5G-C", "RAGGIANA-25", "AMS-C5-120E", "LUX-G9-48", "JCSAT-FO-136E", "HISPASAT-29A", "AMS-CK-33W", "MSG-53.5E", "GOES-4-89.5W", "LUX-G9-37", "EGYCOMM23A", "GENESIS-14", "EGJAN11B", "LUX-G10-49", "AUS-NBN-3", "AMS-A8-24W", "NSS-G5-16", "N-SAT-Y13-26W", "LUX-G8-39", "EMARSAT-9Z/M", "ITS-37.5E-N", "LUX-G9-26", "MCSAT-2 W156", "EMARSAT-11P", "EUTELSAT 2-7E", "YAHSAT-G9-115E", "AMS-C5-23E", "NSS-35", "LUX-G10-40", "REDSAT-4B", "MCSAT-3W150", "ITS-KA-D", "TURKSAT-42E-F", "EGYCOMM19A", "AMS-C5-114E", "TURKSAT-31E-C", "THAICOM-C1", "QZSS-GS5", "YAHSAT-G10-85E", "EMARSAT-11R", "TURKSAT-47W-F", "VNSAT-100E", "EMARSAT-11Z", "AMS-C5-78E", "NSS-G4-17", "AMS-A8-36W", "F-SAT-N-E-16E", "CHINASAT-C11", "EMARSAT-9P", "AMS-C7-42E", "VNSAT-3A8", "AMS-C4-24E", "JCSAT-FO-150E", "THAICOM-LSX2R", "QATARSAT-G3-62", "VIETSAT-132", "AST-4-144W", "BBISS-2E", "EMARSAT-9Z/M", "LUX-G9-11", "AMS-C4-48E", "ASIASAT-105.3T", "HISPASAT-39A", "VNSAT-3A10", "LUX-G7-38B", "VNSAT-3A2", "AST-4-72W", "TURKSAT-31E-D", "NEWSAT-1G-48W", "ITS-31.5E-N", "MCSAT E126", "N-SAT-Y15-126W", "MCSAT E132", "NIGSAT-41.8E", "NSS-G5-21", "KYPROS-ORION", "F-SAT-N2-66.5W", "AMG-65.5W", "KYPROS-OKEANOS", "AUSSAT F 152E", "EMARSAT-9L", "RSS-VSD-133E", "AST-4-138E", "AMS-B5-140E", "YAHSAT-G8-35W", "ASIASAT-46R", "AST-5-54W", "RASCOM-6G-G", "YAHSAT-G7-5W", "N-SAT-Y15-96W", "SMMSAT-10", "EMARSAT-9F", "TELKOM-108E", "RASCOM-3G-K", "AMS-C7-120E", "NSS-G4-9", "AMS-C5-43E", "EMARSAT-12V", "OLYMPUS-1F", "USASAT-9D", "AFBS-5", "AMS-B4-0E", "AST-5-60E", "USASAT-31M", "F-MILSATCOM-8W", "EMARSAT-11D/M", "QATARSAT-G3-38", "B-SAT-1W-2", "AST-5-84E", "AMS-B3-6W", "LUX-G7-10", "TURKSAT-50E-F", "YAHSAT-G10-95W", "AMS-C1-82.5E", "TURKSAT-7E-F", "EMARSAT-12I", "QATARSAT-G3-16", "KYPROS-138W", "AMS-CK-82.5E", "AMS-B7-6E", "EMARSAT-12X-M", "CANSAT-64", "YAHSAT-G10-50E", "AMS-B5-12W", "TURKSAT-49E-F", "N-SAT-Y15-126W", "LUX-G10-39", "MCSAT-3E006", "CHINASAT-D9", "ARABSAT 8J-39E", "TURKSAT-65W-F", "USASAT-26G", "AMS-B6-12W", "LUX-G9-57", "AMS-C4-67.25E", "QATARSAT-G3-52", "MCSAT-3E174", "OLYMPUS-1C", "MCSAT-3W012", "AST-4-72W", "TUPAK KATARI-1", "EMARSAT-11P", "QZSS-GS3", "AMS-C7-102E", "LUX-G10-52", "LUX-G7-20", "F-SAT-N4-158W", "EMARSAT-9Z/M", "F-SAT-E-164.1E", "SMMSAT-9", "VNSAT-4A9", "KYPROS-ZEUS-2", "KYPROS-155E", "ITS-114.5E", "EMARSAT-11I/M", "YAHSAT-G8-55E", "EMARSAT-10E/M", "INTELSAT6 157E", "TURKSAT-31E-F", "LUX-G8-9", "QATARSAT-G3-45", "AMS-C5-90E", "LUX-G8-5", "AMS-A6-36W", "TURKSAT-42E-F", "QATARSAT-3", "F-SAT-N2-66.5W", "YAHSAT-G10-50E", "TURKSAT-23W-F", "APSTAR-142E", "AMS-C2-90E", "VNSAT-4A11", "YAHSAT-G10-20W", "ITS-93W", "YAHSAT-G7-5E", "N-SAT-Y13-54E", "MCSAT E036", "YAHSAT-G9-100E", "EMARSAT-11W/M", "LUX-G10-44", "AMS-C1-17E", "NSS-G5-11", "AMS-B4-132E", "EMARSAT-12O", "GOES-WEST-4", "TOR-13M", "USOBO-5A", "YAHSAT-G8-40W", "MILSTAR 5", "MCSAT-3E126", "AMS-B4-6E", "ITS-KA-A", "LUX-G10-44", "EMARSAT-12X", "AMS-C6-18E", "ASIASAT-60T", "ASAT-P3B", "N-SAT-Y15-168W", "AMS-C2-43E", "F-SAT-N4-11W", "EMARSAT-12X", "LUX-G9-10", "EMARSAT-11V", "MCSAT-2 W102", "EGYNILE9", "JORSAT-20E", "YAHSAT-G8-45W", "TURKSAT-9.5W-A", "CHINASAT-163E", "IRANSAT-41.5E", "LUX-G10-41", "EMARSAT-10C", "USASAT-24S", "AMS-C4-90E", "VNSAT-100E", "QATARSAT-G3-52", "KYPROS-114W", "YAHSAT-G9-35E", "LUX-G7-20", "LUX-G8-6", "CYMZSAT-6", "TURKSAT-28E-F", "EMARSAT-1G", "MCSAT E072", "QATARSAT-G3-1", "AMS-A4-26W", "N-SAT-Y15-78W", "YAHSAT-G7-125E", "ASIASAT-118R", "ARABSAT 7B-26E", "THAICOM-LSX2R", "CHNSAT-103E", "YAHSAT-G9-175W", "LUX-G9-38-A", "LUX-G8-9", "H2SAT-0.5E", "AMS-B3-132E", "CHNSAT-A-2W", "YAHSAT-G8-105E", "YAHSAT-G7-90W", "TURKSAT-74W-F", "LUX-G9-49", "VNSAT-3A6", "YAHSAT-60E", "MADAR-28W", "IRANSAT-27.2E", "AMS-C3-43E", "INSAT-KA61E", "EMARSAT-12R", "YAHSAT-G9-15W", "NALEDI-10W", "TURKSAT-35W-F", "YAHSAT-G9-35W", "QATARSAT-G3-50", "YAHSAT-G9-150E", "ANIK-F3R", "AMS-C6-65E", "YAHSAT-G8-57E", "YAHSAT-G9-45E", "RASCOM-5G-A", "APSTAR-4", "YAHSAT-G7-120E", "AST-5-102W", "MCSAT W168", "YAHSAT-G5-43W", "CGSAT-A09", "MCSAT-3E036", "LUX-G9-31", "AMS-A7-48W", "LUX-G8-41", "AST-4-138W", "MEASAT-LA1A", "AMS-C3-114E", "AST-5-12E", "YAHSAT-G7-140W", "AST-3-180E", "CHINASAT-49", "EMARSAT-9B/M", "QATARSAT-G3-79", "ARABSAT 5D-17E", "KYPROS-66W", "AST-4-30E", "SINOSAT-5", "AST-5-84W", "EMARSAT-11U/M", "DFH-3-OC M", "F-SAT-N4-94W", "YAHSAT-G10-95E", "EMARSAT-10W/M", "VNSAT-4A8", "YAHSAT-G10-45E", "RAGGIANA-6", "MCSAT W162", "RST-2", "F-SAT-N5-37.5E", "QATARSAT-G3-33", "AMS-C6-90E", "CHINASAT-C11", "DFH-5-01A", "NSS-G5-8", "NSS-G5-13", "RAGGIANA-25", "MCSAT W090", "RAGGIANA-32", "AMS-C8-90E", "EMARSAT-9I", "AMS-C4-36E", "TURKSAT-85E-F", "LUX-G10-25", "F-SAT-N3-13E", "LUX-G9-11", "NALEDI-16W", "QATARSAT-G3-22", "NSS-G4-22", "QATARSAT-9", "H2SAT-11.5E", "MCSAT-3W060", "INSAT-EK83R", "VNSAT-4A3", "LUX-G9-49", "ALCOMSAT-27.6W", "YAHSAT-G9-170W", "AMS-B6-132E", "LUX-G10-42", "F-SAT-N4-140E", "AST-4-60E", "F-SAT-N3-136E", "TURKSAT-88E-F", "EMARSAT-12B-M", "MCSAT-3E090", "F-SAT-N2-144W", "F-SAT-N4-21W", "DFH-G1-09", "SE-6-178E", "TURKSAT-49E-F", "MEASAT-2B", "TURKSAT-97E-F", "EMARSAT-11J", "CHNSAT-A-130E", "AMS-A7-48W", "HISPASAT-17A", "EMARSAT-10A", "ASIASAT-100.3U", "MCSAT E126", "EGYCOMM19A", "MCSAT-2 W102", "IOMESAT-1", "CHNBSAT-G4-10", "YAHSAT-G10-95W", "MCSAT-2 W030", "CD-SAT 152E", "NIGSAT-20W", "AMS-C3-82.5E", "AMS-A8-30W", "SMMSAT-2", "AMS-C6-18E", "USASAT-24L", "CHNBSAT-G4-4", "CHINASAT-D6", "CHINASAT-C14", "AMS-C5-96E", "RASCOM-3G-G", "NALEDI-2E", "N-SAT-Y15-18E", "LUX-G10-18", "LUX-G10-57", "AMS-C2-120E", "VNSAT-4A7", "YAHSAT-G7-175W", "SKYNET-5C-KA", "F-SAT-N5-11W", "TURKSAT-97E-F", "QATARSAT-G3-26", "KYPROS-150W", "EXPRESS-8B", "ASAT W026", "AST-4-30W", "YAHSAT-G8-125E", "F-SAT-N5-14.5E", "LUX-G9-55", "CANSAT-49", "AMS-B3-126E", "QATARSAT-G3-41", "SE-6-99W", "PALAPA-C4-A", "THAICOM-N5", "N-SAT-Y15-102E", "VNSAT-3A10", "CGSAT-A14", "EMARSAT-10J", "EMARSAT-9K"], ["6213 18 AVENUE", "3607 BROADWAY", "3825 AVENUE L", "2418 BROADWAY", "6108 5 AVENUE", "302 AVENUE U", "81-15 BROADWAY", "5217 5 AVENUE", "5101 AVENUE D", "2618 AVENUE D", "8507 21 AVENUE", "1150 BROADWAY", "89-14 63 DRIVE", "80 AVENUE O", "8910 37TH AVE", "1665 1 AVENUE", "13 AVENUE A", "3476 BROADWAY", "3740 3 AVENUE", "440 E 75TH ST", "3920 5 AVENUE", "3126 AVENUE U", "2808 AVENUE D", "409 7TH AVENUE", "2948 AVENUE X", "7324 20 AVENUE", "509 72 STREET", "6719 14 AVENUE", "325 1 AVENUE", "199 1 AVENUE", "1121 39 STREET", "47-18 BROADWAY", "6217 5 AVENUE", "371 MANOR ROAD", "7123 20 AVENUE", "7523 20 AVENUE", "611 AVENUE Z", "6813 20 AVENUE", "898 4 AVENUE", "1829 2 AVENUE", "13809 84TH DR", "507 84 STREET", "442 39 STREET", "5524 3 AVENUE", "2491 65 STREET", "951 HOE AVE", "84-09 3 AVENUE", "5606 7TH AVE", "381 AVENUE X", "504 46 STREET", "8923 5 AVENUE", "1067 1 AVENUE", "42-12 BROADWAY", "2809 86 STREET", "5513 5 AVENUE", "4705 AVENUE N", "2730 23 STREET", "4504 8 AVENUE", "5801 6 AVENUE", "6805 20 AVENUE", "7124 5 AVENUE", "1769 84 STREET", "4841 BROADWAY", "6724 11 AVENUE", "2325 2 AVENUE", "401 3 AVENUE", "5611 8 AVENUE", "6624 AVENUE U", "1206 AVENUE Z", "2373 86 STREET", "3060 3 AVENUE", "8315 20 AVENUE", "6023 5 AVENUE", "2407 65 STREET", "670 9TH AVENUE", "245 JEWETT AVE", "8018 17 AVENUE", "302 8 AVENUE", "343 BROADWAY", "86 CANAL ST", "159 SAND LANE", "4204 AVENUE J", "3440 BROADWAY", "9214 AVENUE L", "419 92ND ST", "1692 2 AVENUE", "2217 AVENUE U", "7719 13 AVENUE", "3911 5 AVENUE", "83-35 BROADWAY", "8210 3 AVENUE", "97 AVENUE A", "8512 4 AVENUE", "1717 1 AVENUE", "385 BAY STREET", "714 5 AVENUE", "2916 8 AVENUE", "9814 4 AVENUE", "44 AVENUE B", "2035 3 AVENUE", "208 AVENUE A", "2253 3 AVENUE", "4524 3 AVENUE", "14-56 31 DRIVE", "450 6 AVENUE", "7605 3 AVENUE", "69 AVENUE C", "1612 AVENUE Z", "768 57 STREET", "2117 8 AVENUE", "113 4 AVENUE", "2946 AVENUE R", "1215 8 AVENUE", "4113 8 AVENUE", "3046 AVENUE X", "7415 15 AVENUE", "8920 3 AVENUE", "530 2 AVENUE", "1138 1 AVENUE", "6733 3 AVENUE", "4115 4 AVENUE", "309 5 AVENUE", "4522 6 AVENUE", "2156 2 AVENUE", "204 8 AVENUE", "101 7 AVENUE", "55 2 AVENUE", "2026 AVENUE X", "1810 AVENUE U", "95-39A 40 ROAD", "79 4 AVENUE", "131 5 AVENUE", "123 3 AVENUE", "722 AVENUE U", "2272 2 AVENUE", "4116 BROADWAY", "1469 BROADWAY", "276 SAND LANE", "1330 5 AVENUE", "64-07 BROADWAY", "1602 AVENUE H", "2210 AVENUE X", "7022 13 AVENUE", "3517 31 AVENUE", "773 55 STREET", "334 9 STREET", "27-04 23RD AVE", "703 10 AVENUE", "1521 8 AVENUE", "1605 2 AVENUE", "8122 18 AVENUE", "3012 AVENUE D", "2264 1 AVENUE", "646 1 AVENUE", "21-13 BROADWAY", "4112 14 AVENUE", "4307 14 AVENUE", "5A HULL STREET", "491 7TH AVENUE", "2593 8 AVENUE", "1065 BROADWAY", "335 1 AVENUE", "250 8 AVENUE", "4624 AVENUE J", "5201 6 AVENUE", "99 5 AVENUE", "3706 3 AVENUE", "376 3 AVENUE", "8413 5 AVENUE", "51-11 BROADWAY", "3605 15 AVENUE", "835 BROADWAY", "784 4 AVENUE", "8015 20 AVENUE", "1386 2 AVENUE", "414 AVENUE M", "5910 7 AVENUE", "6811 11 AVENUE", "3875 BROADWAY", "656 10 AVENUE", "1689 1 AVENUE", "547 6TH AVENUE", "4124 AVENUE D", "8403 20 AVENUE", "48-08 BROADWAY", "3147 BROADWAY", "169 AVENUE W", "3802 BROADWAY", "358 6 AVENUE", "842 9 AVENUE", "47-14 7 AVENUE", "1208 AVENUE U", "60-47 56 ROAD", "1737 2 AVENUE", "6901 6 AVENUE", "704 9 AVENUE", "161 4 AVENUE", "1507 BROADWAY", "4514 AVENUE D", "335 2 AVENUE", "135 7 AVENUE", "772 59 STREET", "6738 5 AVENUE", "774 52 STREET", "5905 4 AVENUE", "375 BROADWAY", "5116 8 AVENUE", "4822 6 AVENUE", "274 56 STREET", "683 60 STREET", "470 4 AVENUE", "504 5 AVENUE", "43-08 34TH AVE", "6412 11 AVENUE", "471 5 AVENUE", "204 AVENUE S", "1502 AVENUE H", "5416 7 AVENUE", "8218 5 AVENUE", "194 1 AVENUE", "811 AVENUE H", "2006 61 STREET", "6924 8 AVENUE", "2420 RALPH AVE", "1523 AVENUE U", "90-11 63 DRIVE", "34-10 9 STREET", "9122 3 AVENUE", "4823 6 AVENUE", "4912 4 AVENUE", "54 5 AVENUE", "3723 AVENUE S", "5217 4 AVENUE", "378 95 STREET", "477 3 AVENUE", "888 8 AVENUE", "425 7 AVENUE", "719 2 AVENUE", "2707 8 AVENUE", "6512 60 PLACE", "874 MANOR ROAD", "1689 1 AVENUE", "512 4 AVENUE", "1612 AVENUE H", "6914 4 AVENUE", "1549 2 AVENUE", "4232 10 AVENUE", "5119 4 AVENUE", "622 KINGS HWY", "124 AVENUE C", "4133 53RD ST", "674 5 AVENUE", "6810 18 AVENUE", "3643 BROADWAY", "852 BAY STREET", "2301 65 STREET", "2606 AVENUE U", "1519 AVENUE J", "416 4TH AVENUE", "9512 AVENUE L", "1785 BROADWAY", "2115 AVENUE Z", "7605 5 AVENUE", "5310 4 AVENUE", "60 AVENUE B", "530 4 AVENUE", "105-21 64 ROAD", "1670 3 AVENUE", "5802 23 AVENUE", "4517 AVENUE L", "1906 AVENUE Y", "543 86 STREET", "4122 10 AVENUE", "1814 3 AVENUE", "5106 AVENUE N", "5921 4 AVENUE", "21-39 45TH RD", "2004 2 AVENUE", "50 8TH AVENUE", "33-13 BROADWAY", "1320 2 AVENUE", "390 2 AVENUE", "560 3 AVENUE", "25-23 BROADWAY", "34-17 BROADWAY", "3716 13 AVENUE", "1244 AVENUE U", "6655 BROADWAY", "3921 7 AVENUE", "4126 BROADWAY", "124 AVENUE O", "2929 AVENUE S", "704 4 AVENUE", "7320 5 AVENUE", "4615 8 AVENUE", "375 BROADWAY", "52-69 65 PLACE", "1628 BROADWAY", "6027 BROADWAY", "233 9 AVENUE", "794 9 AVENUE", "513 5 AVENUE", "715 4 AVENUE", "185 AVENUE C", "2295 1 AVENUE", "5804 4 AVENUE", "7708 17 AVENUE", "309 E 37 ST", "1909 AVENUE M", "4815 108TH ST", "3914 47 AVE", "2714 AVENUE U", "951 HOE AVE", "8003 5 AVENUE", "2432 86 STREET", "452 9 AVENUE", "7719 5 AVENUE", "198 9 AVENUE", "2141 2 AVENUE", "53-78 65 PLACE", "129 AVENUE S", "207 AVENUE M", "2069 7 AVENUE", "7824 3 AVENUE", "525 9 AVENUE", "8813 AVENUE L", "6601 11 AVENUE", "178 7 AVENUE", "4521 7 AVENUE", "8619 3 AVENUE", "6841 79 STREET", "5821 5 AVENUE", "204 5 AVENUE", "7007 3 AVENUE", "3267 3 AVENUE", "3007 AVENUE J", "2275 3 AVENUE", "8919 80 STREET", "1711 BROADWAY", "5910 14 AVENUE", "6401 14 AVENUE", "46-05 BROADWAY", "5509 4 AVENUE", "6517 14 AVENUE", "2811 86 STREET", "1194 NECK ROAD", "7906 16 AVENUE", "3357 BROADWAY", "1415 2 AVENUE", "1502 86 STREET", "7021 18 AVENUE", "9012 AVENUE B", "2921 AVENUE K", "621 4 AVENUE", "5413 AVENUE N", "6821 20 AVENUE", "883 60 STREET", "142 1 AVENUE", "134 AVENUE U", "1435 1 AVENUE", "6509 20 AVENUE", "11 LOTT PLACE", "6208 20 AVENUE", "287 6 AVENUE", "190 AVENUE U", "5022 12 AVENUE", "133-53 41 ROAD", "4401 BROADWAY", "1707 65 STREET", "2928 AVENUE P", "299 BROADWAY", "1695 86 STREET", "6114 4 STREET", "33 1 AVENUE", "6305 5 AVENUE", "1020 8 AVENUE", "259 3 AVENUE", "97 2 AVENUE", "173 7 AVENUE", "3411 AVENUE H", "2306 86 STREET", "6905 5 AVENUE", "4305 BROADWAY", "418 BROADWAY", "176 3 AVENUE", "6222 11 AVENUE", "4309 8 AVENUE", "18 AVENUE O", "565 5 AVENUE", "4416 4 AVENUE", "2783 BROADWAY", "7212 18 AVENUE", "7921 5 AVENUE", "1028 2 AVENUE", "5715 6 AVENUE", "6111 4 AVENUE", "5803 AVENUE T", "1978 2 AVENUE", "2234 1 AVENUE", "593 4 AVENUE", "5211 7 AVENUE", "7520 18 AVENUE", "6906 15 AVENUE", "1142 2 AVENUE", "1615 1 AVENUE", "121-10 14 ROAD"], ["ROOM A/P10B", "ROOM A/P10A", "ROOM 40022", "F42", "UNIT 2", "1ST FLOOR", "PORTWAY HOTEL", "CAR SPACE 87", "ROOM 231 3000", "PT 2ND FLR", "UNIT LS10", "GND FLR", "CAR SPACE 77", "PT GND FLR", "16 RED", "PT 1ST FLR", "UNIT 1", "DS 11 PT BST", "NEXT 519", "NATIONWIDE ATM", "NO 2, ARCHES", "UNIT 3", "CAR SPACE 28", "ROOM 7 GND FLR", "58 BEECH ROAD", "ROOM 110-111", "NO 10, ARCHES", "NO 1 ARCHES", "ROSELANDS", "NO 24 IN BST", "4 RED", "F37", "1ST & 2ND FLR", "61 KINGSWAY", "1ST FLOOR", "YARD 2", "C8", "UNIT D 5TH FLR", "ROOM 264", "PT 1ST FLR", "ROOM 226", "HIGH BANK INN", "NO 23 IN BST", "UNIT 17", "NO B R/O 15", "4TH FLR 69-75", "UNIT NF8", "UNIT 14", "A 34B-35", "CAR SPACE 10", "CAR SPACE NO 4", "UNITS 27-30", "ROOM 147", "CAR SPACE 78", "4TH FLR", "CAR SPACE 35", "NEAR 30", "ROOM 40084", "NO 29 IN BST", "SUITE 3", "R/O", "PORTMAN TRAVEL", "CAR SPACE 80", "ON", "CAR SPACE 312", "105 BEECH ROAD", "CAR SPACE 7", "F20", "F41", "ATM SITE AT", "NO 2 IN BST", "B17 IN BST 2-6", "CAR SPACE NO 1", "ROOM 137 3000", "BASEMENT", "UNIT 5 AT", "ROOM 8 1ST FLR", "ATM SITE AT", "BASEMENT", "ROOM 213-214", "BST STORE 3", "SUITE 0.3", "UNIT 22", "CAR SPACE 92", "UNITS 15-18 GF", "OFFICE 1.1", "H MOUSA", "16 ALBERT ROAD", "1ST FLR", "24 SCHOOL LANE", "ATM SITE AT", "UNIT 1 AT", "RIGHT PART", "CAR SPACE NO 9", "CAR PARK R/O", "OFFICE", "NO 6,ARCHES", "10 MEDWAY WALK", "4 OLDHAM ROAD", "SUB-BST", "YOGA SHALA", "NO 4 ARCH", "2 CHURCH ROAD", "PT BST", "CAR SPACE 32", "CAR SPACE NO 4", "BST", "LOFT 3 4TH FLR", "CAR SPACES 1-3", "KINGSWAY HOTEL", "7 PATON STREET", "ROOM 111", "108 TIB STREET", "ROOM 140", "60 GOLD", "STALL NF30", "44 BEECH ROAD", "UNIT 5B", "ARCH 89", "NO 12 2ND FLR", "TYREWORX AT", "UNIT 10", "CPS 7 BST", "NOS 5-8A", "84 TIB STREET", "16 KEPPEL ROAD", "24 DEANSGATE", "PT BST LEFT", "CAR SPACE 105", "GND FLR", "109 PT 1ST FLR", "UNIT 19 AT", "PT GND FLR 7-9", "ROOM 124 3000", "BROOMPARK MGMT", "CAR SPACE 104", "109 NORTH ROAD", "NO 8 IN BST", "STALLS FC5-FC6", "CAR SPACE 4", "20 DEANWAY", "CPS 9 & 13 BST", "ON", "UNIT 115", "NEXT 9", "1ST FLR R/O 1", "GND FLR 6", "CAR SPACE 3", "309B", "UNITS 25-27", "UNIT LS18", "CAR SPACE 3", "UNIT 2D AT", "1ST FLOOR", "27 HALL LANE", "UNIT 14C (FF)", "D8", "ADJ 49", "ON", "CAR SPACE NO 9", "PT 1ST FLR", "UNIT 16 AT", "F17", "CAR SPACE 5", "SUITE S7", "CAR SPACE 43", "19 RED", "14 HALE TOP", "CAR SPACE 3", "UNIT 15C", "UNIT 7", "1ST FLR", "RETAIL UNIT A3", "CHURCH INN 1", "17 LIME SQUARE", "ROOM G17", "ROOM 116 3000", "DS 15 PT BST", "1 REDDISH LANE", "ARCH 120A", "BST ROOM 1-2", "TEMPLE TYERS", "9 RED", "CAR SPACE NO 6", "PCT CAR SPACES", "ROOMS 209-210", "ARCHIES", "BST STORE 19", "D 14B SHOP", "CAR SPACE 10", "UNIT 3", "25 RED", "2ND FLOOR", "DSV CAR SPACES", "CAR SPACE 13", "B 2-3", "ROOM 126 3000", "A 15-16A", "NO 3 ARCH", "PT GND FLR", "UNIT 1B", "ADJ", "ROOM 141", "UNIT NF4", "NO 100 ARCHES", "ATM AT", "NO 4 IN BST", "BST STORE 15", "ROOM 215", "HAPPY MAN", "ROOM 268", "UNIT 8A", "38 MELDON ROAD", "BST STORE 7", "ROOM 206", "2ND FLR", "ARCH 80", "OUTLOOK HOMES", "F21-22", "GND FLR 84", "THE SURGERY", "104 SALE ROAD", "DS 16 PT BST", "ATM SITE AT", "MAIDEN NO 1698", "1ST FLR", "NO 9, ARCHES", "PT 2ND FLR", "UNIS 1 & 2", "UNIT 1A", "ROOM 2005", "UNITS 1 & 2", "HUNTSMAN INN", "UNIT 2", "NO 6, ARCHES", "NO 42 IN BST", "GROUND FLOOR", "TITAN 2358", "SWAN INN", "UNIT 2F AT", "PT 1ST FLOOR", "STUDIO T18", "RAILWAY HOTEL", "PT 1ST FLR", "2ND FLR", "UNIT 6", "RETAIL 2", "UNIT 18 AT", "NO 3 IN BST", "PLATT CHAPEL", "96 LONDON ROAD", "908", "ROOM G07 3000", "STALL P18", "R/O", "382 KINGSWAY", "CAR SPACE 66", "ROOM 214", "NO 8 IN BST", "UNIT 6 GND FLR", "SUITE 2", "A 39", "BST", "CAR SPACE 68", "GABLE 705", "FRONT GROUND", "3RD FLR", "CAR SPACE NO 2", "BST ROOM 4", "ROOM 207", "CAR SPACE NO 4", "UNIT 2 BST", "UNIT 13B", "BST", "PT GND FLR", "SUITE 1C", "7A VALE STREET", "89 SCHOOL LANE", "ROOM 261", "1ST FLR", "UNIT 7E AT", "4TH FLOOR", "NO2, ARCHES", "UNIT 1 AT", "NO 50 IN BST", "UNIT14A (FF)", "GROUND FLOOR", "UNIT NF32", "ROOM 248", "REAR YARD IDL", "47 GROVE LANE", "B 33", "NAVIGATION INN", "CAR SPACE NO 5", "C38-C39", "NO 13 IN BST", "NO 15 IN BST", "PRIMESIGHT AT", "ROOM 106", "STALL W12", "UNIT 2A", "66 GOLD", "CAR SPACE NO 1", "GND FLOOR", "CAR SPACES 5-6", "UNIT 6", "NO 22 IN BST", "UNIT 4", "ROOM 112 3000", "CAR SPACE 22", "C28", "UNIT 62", "S2 PT BST", "ROOM 0320", "R/O 66", "ON", "C11", "CAR SPACE 2", "5TH FLR", "PT 1ST FLOOR", "45 HALL LANE", "R/O 161-197", "NO 10 IN BST", "CAR SPACE 25", "UNIT NF53", "GND FLR", "COMPOUND 3", "2ND FLR", "2 RED", "CAR SPACE 35", "8 CABLE STREET", "NO 19 IN BST", "68 GOLD", "PARKVIEW", "GORTON ROAD", "NEXT 79", "2ND FLOOR", "CAR SPACE 37", "NO 20 IN BST", "ATM AT", "UNIT 3 AT", "58 PORT STREET", "CAR SPACE NO 1", "NO 10, ARCHES", "NO 3 IN BST", "UNIT 2 GND FLR", "UNIT 9", "BASEMENT", "BST STORE 17", "UNIT 3 AT", "NO 18 IN BST", "UNIT 79", "THE LODGE", "OFFICE 5 AT NO", "ROOM 111 3000", "CAR SPACE 51", "CAR SPACE NO 9", "CAR SPACE 111", "REAR OF", "345 DEANSGATE", "UNIT 15B", "D38-39 OFFICES", "ARCH 13", "UNITS 2-4", "ON YORK AVENUE", "558 HYDE ROAD", "PHOTO-ME BOOTH", "26 RED", "147 GOLD", "CAR SPACE NO 4", "OFFICE 1", "1ST FLR", "ROOM 259", "FLAT 3", "LAND NEXT", "CAR SPACE NO 3", "TERENCE CONTY", "UNIT 17", "UNIT 7", "1ST FLR 16", "NO 11, ARCHES", "4TH FLR", "1ST FLR", "PT GND FLR", "347", "ATM AT", "1ST-2ND FLRS", "DS 4 PT BST", "2ND FLOOR", "CAR SPACE 52", "CAR PARK", "UNIT 7 PT BST", "UNIT PR2", "OAP CLUB", "B T POSNER", "UNIT 8", "E3-4", "WORKSHOP 5", "ARCH", "BST STORE 5", "CAR SPACE 39", "PT BST", "F35", "UNIT 10", "ATM SITE AT", "CAR SPACE NO 3", "ROOM 0903", "OFFICE 10.18", "CAR SPACE 162", "CAR SPACE 12", "GND FLR", "1ST & 2ND FLRS", "AVON HOUSE", "CAR SPACE NO 1", "ROOM 41009", "2 PLATT LANE", "139 BLUE", "REAR OF", "ROOM 5 1ST FLR", "UNIT 11", "NO 6, ARCHES", "1ST FLR MIDDLE", "326 SLADE LANE", "504 PORTWAY", "UNIT 12", "1ST FLOOR", "66 (RIGHT)", "BST STORE 2", "NEXT 39", "ARTHUR MAIDEN", "NO 2 IN BST", "ROOM 113 3000", "CHURCH INN", "STATION HOTEL", "UNIT J3", "NOS 19-21 R/O", "THE LODGE", "ROOM 1820", "36 RUSSET ROAD", "ROOM 239", "CAR SPACE 4 AT", "BST STORE 14", "F34", "3RD FLR", "UNIT 2 AT", "UNIT 5", "ATM SITE AT", "UNIT LS9", "OFFICE AT B21", "NO 7, ARCHES", "NO 13, ARCHES", "UNIT 4", "70 GOLD", "BST", "CAR PARK AT", "REAR PT BST", "UNITS 7 & 8", "CAR SPACE NO 1", "GND FLR FRONT", "2ND FLOOR", "F33", "ATM SITE AT", "CAR SPACE 19", "SITE OF", "PT BST", "MR E MORGAN", "NOS 13-15 R/O", "UNIT 27 AT", "153 GOLD", "NO 9, ARCHES", "GROUND FLOOR", "PT 3RD FLR", "FIRST FLOOR", "UNIT 2", "NO 9 IN BST", "NO 106 ARCHES", "3RD FLOOR", "GND FLOOR", "UNIT 4", "NO 1, ARCHES", "ROOM G28 3000", "7 SLADE LANE", "CAR SPACE 73B", "RED BANK COURT", "CAR SPACE 17", "CAR SPACE 8", "JOSEPH HOLT", "UNIT 1 1ST FLR", "F31", "VICTORIA BATHS", "1299-1303", "UNIT 7 GND FLR", "ATM SITE AT", "UNIT PR5", "138 BLUE", "PART BASEMENT", "GND FLR", "UNIT 3", "CAR SPACES", "NO 9 OPP 4,"], ["ARMADA 2WD", "GS 350", "CX-9 4WD", "RABBIT", "ECLIPSE", "A3", "CHARGER", "CIVIC", "EXPLORER 2WD", "SPECTRA", "TUCSON 4WD", "GALANT", "RAV4 2WD", "C15 SIERRA 2WD", "CIVIC", "TRIBUTE FWD", "M45X", "135I", "A6 QUATTRO", "HHR FWD", "OUTLANDER 4WD", "A4", "SX4 SEDAN AWD", "S63 AMG", "ARMADA 4WD", "650CI", "S65 AMG", "COLORADO 2WD", "TUCSON 2WD", "SCION XD", "GL450 4MATIC", "TUCSON 4WD", "G5", "XL7 FWD", "MAZDA 6", "EDGE FWD", "AZERA", "G37X", "V50 FWD", "CTS AWD", "BORREGO 4WD", "SX4 AWD", "RANGE ROVER", "MINI CLUBMAN", "MKS FWD", "G5", "PATRIOT 4WD", "550I", "VIBE", "COMMANDER 4WD", "LANCER", "SEBRING", "DURANGO 4WD", "300 AWD", "CLS63 AMG", "4RUNNER 2WD", "S40 AWD", "PATRIOT 2WD", "PASSAT CC", "R350 4MATIC", "COMMANDER 2WD", "TORRENT FWD", "CHARGER AWD", "CLS550", "9-7X AWD", "ACADIA AWD", "E63 AMG", "CIVIC", "911 GT2", "JETTA", "C15 SIERRA 2WD", "HHR PANEL FWD", "ARMADA 2WD", "GTI", "A4", "MAGNUM", "G5 XFE", "SKY", "X5 XDRIVE48I", "ESCAPE 4WD", "E150 WAGON FFV", "TRAVERSE AWD", "PT CRUISER", "TT COUPE", "WRANGLER 4WD", "CTS", "GTI", "JOURNEY 4WD", "GENESIS", "ECLIPSE SPYDER", "328CI XDRIVE", "S4 CABRIOLET", "CANYON 4WD", "SABLE AWD", "K15 SIERRA 4WD", "ENDEAVOR 2WD", "LIMOUSINE", "TL 2WD", "SLR", "TL 4WD", "SONATA", "CR-V 2WD", "F350 2WD", "CAYENNE GTS", "GENESIS", "WRANGLER 4WD", "X6 XDRIVE35I", "V70 FWD", "S63 AMG", "TORRENT AWD", "ENCLAVE FWD", "ROUTAN FWD", "AVEO 5", "STS", "C15 SIERRA 2WD", "PHANTOM COUPE", "CANYON 4WD", "LEGACY AWD", "SONATA", "SEBRING AWD", "S8", "FORESTER AWD", "COBALT", "S450", "B2300 2WD", "LIBERTY 2WD", "BORREGO 4WD", "ML350", "A3 QUATTRO", "G37", "G6", "550I", "LANCER", "E350 4MATIC", "X6 XDRIVE35I", "ARNAGE", "DURANGO 2WD", "LUCERNE", "TITAN 4WD", "XLR", "V50 FWD", "SORENTO 4WD", "IMPALA", "ALTIMA COUPE", "CANYON 2WD", "STS", "9-3 SPORTCOMBI", "9-3 SPORTCOMBI", "SPORTAGE 2WD", "S8", "CTS", "VIBE", "RIO", "X5 XDRIVE30I", "SORENTO 2WD", "NEW BEETLE", "328I", "EOS", "ALTIMA", "C30 FWD", "MKS AWD", "SC 430", "JETTA", "E350", "MKX FWD", "G6", "SANTA FE 2WD", "528I", "PILOT 4WD", "K15 SIERRA 4WD", "FJ CRUISER 4WD", "DBS COUPE", "CORVETTE", "XC 70 AWD", "C300 4MATIC", "MILAN FWD", "TL 2WD", "CIVIC HYBRID", "VUE HYBRID", "ENCLAVE FWD", "SL600", "PASSAT CC", "K15 SIERRA 4WD", "ENTOURAGE", "PASSAT 4MOTION", "ASPEN 4WD", "MKX FWD", "S550", "SONATA", "CTS", "335CI", "EQUATOR 4WD", "GS 450H", "G5 GT", "FORESTER AWD", "JAGUAR XJ8L", "ECLIPSE SPYDER", "R8", "4RUNNER 2WD", "MARINER FWD", "ML350", "DURANGO 4WD", "CAMRY", "K15 SIERRA 4WD", "MAGNUM AWD", "MKS FWD", "SPECTRA", "M6", "X5 XDRIVE48I", "VERACRUZ 4WD", "ENDEAVOR AWD", "SLK350", "VENZA AWD", "9-5 SPORTCOMBI", "A4 QUATTRO", "CANYON 4WD", "S40 FWD", "SPORTAGE 4WD", "SEBRING", "A3 QUATTRO", "RABBIT", "JETTA", "DURANGO 4WD", "335I", "AVALON", "F350 2WD", "ML63 AMG", "IS 350", "4RUNNER 4WD", "SEQUOIA 4WD", "TIGUAN", "SEQUOIA 4WD", "STS", "AZERA", "CALIBER", "VERSA", "AURA", "G8", "SLK350", "MILAN AWD", "E350 WAGON", "MAYBACH 57", "ESCALADE AWD", "ELEMENT 2WD", "STS AWD", "335I XDRIVE", "AVENGER", "RAV4 2WD", "911 TURBO", "MAZDA 5", "K15 SIERRA 4WD", "SOLSTICE", "RX 350 2WD", "SLK300", "RANGER 4WD", "LANCER", "LR2", "VERACRUZ 4WD", "CHALLENGER", "TAURUS X AWD", "X6 XDRIVE50I", "ODYSSEY 2WD", "JAGUAR XK", "FUSION FWD", "MINI CLUBMAN S", "PASSAT CC", "300/SRT-8", "HIGHLANDER 2WD", "RAV4 4WD", "FRONTIER 4WD", "PACIFICA FWD", "R350", "TORRENT AWD", "M3 COUPE", "COMMANDER 4WD", "GT-R", "MURCIELAGO", "528I XDRIVE", "335I", "LS 460", "4RUNNER 2WD", "MALIBU", "JOURNEY 2WD", "COROLLA MATRIX", "M3", "SEBRING", "LIBERTY 4WD", "CIVIC", "ALTIMA COUPE", "C15 SIERRA 2WD", "135I", "R8", "XLR", "ARMADA 4WD", "CX-9 2WD", "G5", "MALIBU", "C25 SIERRA 2WD", "K15 SIERRA 4WD", "ML550 4MATIC", "TAURUS X AWD", "SCION TC", "MARINER FWD", "FORESTER AWD", "TSX", "JETTA", "M35", "E350", "WRANGLER 4WD", "C15 SIERRA 2WD", "AURA", "ACCENT", "VUE HYBRID", "K15 SIERRA 4WD", "IMPREZA AWD", "EQUATOR 2WD", "G37 COUPE", "F350 2WD", "328CI XDRIVE", "COBALT", "HHR FWD", "SPORTAGE 2WD", "EOS", "ALTIMA COUPE", "RIDGELINE 4WD", "CTS AWD", "MKX AWD", "VENZA AWD", "535I", "G5 GT", "OUTLANDER 4WD", "FIT", "JAGUAR VDP", "328CI", "JETTA", "TUCSON 2WD", "FX50 AWD", "MAXIMA", "F150 SFE 2WD", "SEQUOIA 2WD", "K15 SIERRA 4WD", "CHALLENGER", "OUTLANDER 2WD", "IMPALA", "AVEO", "LR3", "STS", "FX35 AWD", "SANTA FE 4WD", "ENDEAVOR AWD", "TUCSON 2WD", "NEW BEETLE", "CL550 4MATIC", "IS 250", "A5 QUATTRO", "CHARGER", "SEBRING", "F350 2WD", "XTERRA 4WD", "QX56 4WD", "ARNAGE RL", "ROGUE AWD", "VENZA", "G55 AMG", "AZURE", "MAYBACH 62", "AURA", "CX-7 2WD", "ALTIMA COUPE", "SANTA FE 2WD", "335I XDRIVE", "TITAN 4WD", "E350 WAGON FFV", "FIT", "PACIFICA FWD", "V70 FWD", "CHARGER AWD", "TRAVERSE FWD", "C300", "PATRIOT 2WD", "S40 FWD", "ELEMENT 4WD", "NITRO 4WD", "JAGUAR XJ", "CTS", "K35 SIERRA 4WD", "ACCENT", "SL550", "MURANO AWD", "F350 4WD", "MINI COOPER", "PATRIOT 2WD", "ARNAGE", "PILOT 2WD", "328I XDRIVE", "OUTLOOK FWD", "ES 350", "CL65 AMG", "S80 AWD", "MAXIMA", "S6", "F350 2WD", "CX-7 4WD", "ENVOY 2WD", "G6", "GTI", "OUTLOOK FWD", "MILAN AWD", "CAYENNE S", "CL63 AMG", "S80 AWD", "UPLANDER FWD", "Q7", "ENVOY 4WD", "C350", "LR3", "G5 XFE", "300/SRT-8", "RABBIT", "MAYBACH 62S", "SANTA FE 4WD", "CIVIC HYBRID", "CAMRY", "S600", "M45", "CHALLENGER", "CHARGER", "LEGACY AWD", "COBALT", "9-3 SPORTCOMBI", "G550", "128I", "ML350 4MATIC", "ALTIMA", "S80 FWD", "EX35", "LIBERTY 2WD", "AVEO 5", "CAYENNE", "IS F", "128I", "GENESIS", "TRIBUTE FWD", "FUSION FWD", "EQUINOX FWD", "SORENTO 4WD", "COLORADO 2WD", "COROLLA", "C8", "TSX", "A4 CABRIOLET", "RAV4 4WD", "G37", "TOUAREG", "COMMANDER 2WD", "RONDO", "PATHFINDER 2WD", "OPTIMA", "F350 4WD", "A8 L", "MALIBU", "SX4 AWD", "FLEX FWD", "CIVIC HYBRID", "AVENGER", "ML63 AMG", "CLS63 AMG", "EQUATOR 2WD", "VUE FWD", "CR-V 4WD", "IMPREZA AWD", "TRAVERSE AWD", "C35 SIERRA 2WD", "MUSTANG", "WRANGLER 4WD", "SEBRING", "CAYENNE GTS", "CHARGER AWD", "RS4 CABRIOLET", "PATRIOT 2WD", "CARAVAN FWD", "RABBIT", "SRX AWD", "RDX 4WD", "QUEST", "XC60 AWD", "X5 XDRIVE30I", "S40 FWD", "V8 VANTAGE", "MKZ FWD", "SX4 SPORT", "EQUINOX AWD", "CAMRY HYBRID", "GS 350", "WRANGLER 2WD", "ECLIPSE", "C350 4MATIC", "JETTA", "VIPER COUPE", "PHANTOM"], ["4144.488258282", "8145.444", "7818.795", "9025.763671813", "6630.12549146", "8427.301", "3641.608", "3517.999457821", "6280.831", "4945.67", "6643.05", "6515.004", "7772.384", "4998.123", "3965.703", "2374.99", "9213.588", "3544.781", "14248.05", "5366.42439737", "3186.434253108", "9965.626", "4090.414", "9552.294468091", "4417.689", "6412.207", "7682.788", "6518.537", "5469.612971511", "6488.224", "8949.833253726", "13309.883", "5579.833", "5966.267", "3098.167087593", "4209.73", "1998.17597872", "6792.685", "9581.242", "5366.263", "8001.313", "6057.62594142", "7085.805", "10384.714", "3369.693379728", "5392.666", "2739.097", "6831.254252636", "4078.376", "7021.623", "6486.742147475", "3902.505", "7553.539", "5013.299", "6144.547826328", "7579.043", "5981.091", "3292.954", "4995.015186287", "7689.101", "5050.329839851", "5078.55449934", "5376.224", "5265.182", "3593.668", "2933.581", "4406.964762081", "6192.488", "8746.480785212", "5253.929", "8253.233", "5633.126", "10574.611", "5438.347", "3805.585", "5108.077", "12530.731", "6961.387", "15634.247", "8776.719", "9938.006247534", "7593.45763901", "4098.156", "10454.432", "4701.79433719", "772.969", "9365.677", "14930.448", "5930.947", "4446.649", "5768.904354603", "3615.981", "10588.274", "3363.922394409", "6591", "7104.981", "8961.345333767", "6775.358", "8219.453911198", "8072.266", "15067.784", "4276.982243609", "3622.689", "13632.444", "5373.999", "8961.246", "9529.4", "5461.703", "7731.101", "7462.312", "6190.846830537", "3969.867", "6793.528", "5793.334", "8140.957", "4740.985101616", "3430.937", "3832.004", "5782.663", "12261.477", "6971.617874172", "5872.908", "9040.477015621", "10300.829", "3734.72903753", "5048.334", "7458.965", "2858.057", "3497.545", "13272.022", "11718.025", "12813.314", "5453.785", "6187.943", "5178.58", "9955.696", "9288.465", "6252.157", "9740.945760928", "8815.574328775", "7399.918", "12066.551", "8338.517", "9046.035", "7549.441", "4958.326", "6806.656", "9889.478", "7345.32", "6692.92", "6795.081", "5155.235", "16525.495", "4882.867", "4570.827164892", "8344.353", "4530.00559416", "3337.102946571", "5354.717", "13949.869", "10064.273", "5044.505", "3108.953", "5623.408", "1212.406", "8442.734", "6684.013", "3365.472981204", "7219.276973609", "7899.684", "12588.659", "16233.18", "4492.85", "3681.156327929", "8778.124", "6770.300041519", "6865.131546518", "9898.925", "6576.27", "7899.096", "6382.903", "3607.006843421", "4656.714", "5449.332831754", "3748.444125903", "5875.854692661", "20421.292", "5754.442909868", "2209.55252015", "6176.726", "13511.36946698", "5192.76", "9694.564", "6710.910842559", "9189.739", "9466.749", "9481.006", "13883.507", "13885.654", "5493.785", "4799.109", "6324.241", "6149.784", "7487.862580416", "14921.77", "6633.467", "8431.152180791", "5404.561906978", "7407.247243535", "4057.689", "23506.473", "7413.695", "3086.66", "6293.211", "10897.762", "9422.935", "5963.485", "5015.54", "17163.812", "5314.008", "11715.41", "12565.386", "3718.898", "13999.738", "2917.962", "9261.551", "8080.95614318", "9168.289443612", "5080.59443863", "8141.201", "4519.869423001", "9151.323", "5112.417", "7593.15", "4980.061"], ["LS 430", "GRAND PRIX", "ML350 4MATIC", "F150 FFV 2WD", "4RUNNER 2WD", "S80 AWD", "COLORADO 2WD", "R500", "FERRARI F141", "PT CRUISER", "JETTA", "MAGNUM AWD", "STS", "TITAN 2WD", "C280", "CARAVAN 2WD", "C230", "NAVIGATOR 4WD", "GRAND MARQUIS", "DB9 VOLANTE", "TORRENT AWD", "CANYON 2WD", "XTERRA 4WD", "CAMRY", "STS", "TERRAZA FWD", "EXPLORER 2WD", "SANTAFE 4WD", "Z4 3.0I", "ENVOY XUV 2WD", "A6 QUATTRO", "4RUNNER 4WD", "CANYON 4WD", "CROWN VICTORIA", "TERRAZA AWD", "B2300 2WD", "9-3 SPORTCOMBI", "MILAN", "ELEMENT 2WD", "SWIFT+", "XC 90 AWD", "FREESTYLE AWD", "C8 LAVIOLETTE", "SIENNA 4WD", "S60 FWD", "F350 4WD", "G6", "AERIO SX AWD", "A4 QUATTRO", "NEW BEETLE", "9-2X WAGON AWD", "ES 330", "SALEEN S7", "CAYENNE S", "TSX", "S40 FWD", "CARAVAN 2WD", "RIDGELINE 4WD", "TRIBUTE 4WD", "RAV4 4WD", "S60 R AWD", "MAZDA 5", "XC 70 AWD", "EXPEDITION 2WD", "VIBE", "SEBRING 4-DR", "DTS", "OPTRA 5", "R350 4MATIC", "TORRENT FWD", "LIMOUSINE", "350Z", "TRIBUTE 2WD", "MONTEGO AWD", "V8 VANTAGE", "CROWN VICTORIA", "COLORADO 2WD", "INSIGHT", "325XI", "S60 R AWD", "SCION XB", "MAZDA 3", "ML500", "F350 2WD", "CROWN VICTORIA", "SABLE FFV", "B200", "JAGUAR XJ8L", "SEQUOIA 4WD", "S60 FWD", "MAGNUM AWD", "INSIGHT", "INSIGHT", "E350 2WD", "ELEMENT 4WD", "TORRENT AWD", "TUCSON 2WD", "ENVOY 4WD", "DTS", "RABBIT", "G6", "CAMRY", "EQUINOX AWD", "XC 90 FWD", "MAXIMA", "SEQUOIA 2WD", "ODYSSEY 2WD", "JAGUAR XJR", "CAMRY", "NPR FLAT BED", "R350", "S80 FWD", "G35", "ENVOY XL 4WD", "Z4 M ROADSTER", "LUCERNE", "G500", "GRAND PRIX", "FREESTYLE FWD", "F150 FFV 2WD", "Z4 M ROADSTER", "TUCSON 4WD", "E350 2WD", "525I", "CR-V 4WD", "DTS", "DTS", "SCION TC", "JAGUAR XK8", "MAGNUM AWD", "S40 FWD", "PILOT 4WD", "V70 FWD", "B3000 4WD", "STRATUS 4-DR", "A3 QUATTRO", "FUSION", "A8 L", "WAVE", "UPLANDER FWD", "STS", "NEW BEETLE", "ENVOY 4WD", "X3", "G6", "CANYON 4WD", "LUCERNE", "AERIO", "FUSION", "530XI", "COLORADO 4WD", "DB9 COUPE", "X5 4.8IS", "ACCORD", "XC 90 FWD", "ODYSSEY 2WD", "KIA SEDONA", "CANYON 2WD", "MDX 4WD", "CAMRY", "A6 QUATTRO", "TUCSON 2WD", "F150 FFV 4WD", "GRAND PRIX", "F350 4WD", "E350 2WD", "PATHFINDER 4WD", "JAGUAR XJ8", "650CI", "C350", "GS 300 4WD", "JAGUAR X-TYPE", "X5", "CROWN VICTORIA", "CLK350", "C55 AMG", "750LI", "RABBIT", "SL55 AMG", "ARMADA 4WD", "A8", "525I", "S40 AWD", "PACIFICA 2WD", "SANTAFE 2WD", "TL", "EXPLORER 2WD", "IMPREZA AWD", "COMMANDER 4WD", "GRAND MARQUIS", "V70 AWD", "E350 (WAGON)", "M6", "GRAND PRIX", "GX 470", "TRIBUTE 4WD", "ENVOY XL 2WD", "ION", "ZEPHYR", "F350 2WD", "IMPALA", "S500", "V50 FWD", "COLORADO 2WD", "300C AWD", "LEGACY AWD", "CIVIC", "RAINIER AWD", "QUEST", "ECLIPSE", "PATHFINDER 2WD", "MARINER FWD", "IMPALA", "TRIBUTE 2WD", "S60 FWD", "ARMORED DTS", "E500 (WAGON)", "OUTLANDER 2WD", "CAYENNE TURBO", "TRIBUTE 4WD", "OPTRA WAGON", "H3 4WD", "ELANTRA", "JETTA", "A6 QUATTRO", "VIBE", "COROLLA MATRIX", "PACIFICA 2WD", "G55 AMG", "RANGE ROVER", "Z4 M COUPE", "PHANTOM", "EXPLORER 2WD", "SENTRA", "TOWN CAR", "OPTRA WAGON", "MARINER FWD", "MONTEGO AWD", "RX 400H 2WD", "Q45 SPORT", "C8 LAVIOLETTE", "V70 FWD", "MALIBU MAXX", "300C/SRT-8", "CIVIC HYBRID", "B3000", "CHARGER", "FRONTIER 2WD", "XC 90 AWD", "PACIFICA 2WD", "SEBRING 4-DR", "MONTEGO FWD", "EQUINOX AWD", "S430", "Z4 3.0SI", "OUTLANDER 2WD", "PACIFICA AWD", "530I", "C280", "ENVOY XUV 4WD", "EQUINOX FWD", "NPR FLAT BED", "CARAVAN 2WD", "RX 400H 4WD", "ENVOY XL 4WD", "AERIO SX", "CAMRY", "G3500 FLAT BED", "F350 2WD", "COMMANDER 2WD", "MURANO AWD", "CIVIC", "STRATUS 4-DR", "300C/SRT-8", "CIVIC", "KIA SEDONA", "STS", "TIBURON", "EQUINOX AWD", "FOCUS FWD", "FRONTIER 2WD", "S430 4MATIC", "IS 250 AWD", "ARMORED DTS", "MARK LT", "ENVOY 4WD", "4RUNNER 4WD", "CHARGER", "CAYENNE", "MONTE CARLO", "F350 2WD", "TRIBUTE 2WD", "F350 2WD", "MALIBU MAXX", "MALIBU MAXX", "330I", "LIMOUSINE", "TOUAREG", "RELAY FWD", "ENDEAVOR 4WD", "Q45 SPORT", "IS 350", "FX35 AWD", "X3", "RAV4 4WD", "9-3 SPORTCOMBI", "SANTAFE 4WD", "325CI", "B4000 2WD", "CAMRY", "B4000 4WD", "530XI", "TUCSON 4WD", "A4 CABRIOLET", "STRATUS 4-DR", "ENVOY XUV 2WD", "GRAND PRIX", "M3", "E500 (WAGON)", "KIA OPTIMA", "F150 FFV 4WD", "WAVE", "SLK350", "JETTA", "ALTIMA", "FUSION", "CARAVAN 2WD", "MINI COOPER S", "G6", "GRAND PRIX", "MAGNUM AWD", "FORENZA WAGON", "RAINIER 2WD", "PASSAT", "S4 CABRIOLET", "E55 AMG", "SLR", "LIMOUSINE", "MAZDA 3", "PACIFICA AWD", "MPV", "ENDEAVOR 2WD", "TRIBUTE 4WD", "GS 300/GS 430", "JAGUAR XKR", "F350 4WD", "GRAND PRIX", "F350 4WD", "550I", "LUCERNE", "SONATA", "A6", "AERIO", "TIBURON", "HIGHLANDER 2WD", "GX 470", "RELAY AWD", "ION", "GTI", "TOWN CAR", "MARINER FWD", "LS 430", "MALIBU", "M5", "IS 350", "MONTE CARLO", "FREESTYLE FWD", "EXPEDITION 4WD", "F350 2WD", "M35", "HIGHLANDER 2WD", "300C AWD", "SRX AWD", "B4000 4WD", "STS AWD", "GRAND VITARA", "S60 FWD", "TOWN CAR", "LUCERNE", "9-5 SPORTCOMBI", "E350 2WD", "AVEO 5", "QX56 4WD", "M45", "300C/SRT-8", "PHAETON", "TIBURON", "R350 4MATIC", "S40 FWD", "E350 2WD", "IMPALA", "X5", "TOWN CAR", "F350 2WD", "DURANGO 4WD", "SEBRING 4-DR", "ESCAPE FWD", "A6", "ARMORED DTS", "MAZDA RX-8", "SABLE", "COROLLA MATRIX", "SABLE FFV", "MILAN", "325CI", "ION", "COROLLA MATRIX", "MAGNUM", "GRAND PRIX", "TOWN CAR", "B3000 4WD", "CANYON 4WD", "CAMRY", "MAGNUM", "TRIBUTE 2WD", "GRAND MARQUIS", "V70 AWD", "UPLANDER FWD", "F150 FFV 2WD", "COMMANDER 4WD", "SENTRA", "STS AWD", "V70 R AWD", "SC 430", "CROWN VICTORIA", "A4 QUATTRO", "LUCERNE", "CAYENNE TURBO", "GRAND VITARA", "KIA OPTIMA(MS)", "S500 4MATIC", "X5 4.8IS", "SIENNA 4WD", "SEBRING 4-DR", "COLORADO 2WD", "ENVOY 2WD", "MAGNUM", "SL600", "S500", "HIGHLANDER 2WD", "FOCUS FWD", "CLS55 AMG", "CIVIC", "DB9 VOLANTE", "C350 4MATIC", "MAGNUM", "CROWN VICTORIA", "XLR", "SRX 2WD", "KIA AMANTI", "ENVOY XL 2WD", "300C/SRT-8", "SANTAFE 4WD", "E500 4MATIC", "TOUAREG", "ENDEAVOR 4WD", "CONTINENTAL GT", "KIA OPTIMA(MS)", "ACCORD", "XC 90 AWD", "LIMOUSINE", "ELEMENT 4WD", "RABBIT", "CR-V 4WD", "COLORADO 4WD", "EPICA", "ELEMENT 2WD", "SIENNA 2WD", "UPLANDER FWD", "SRX AWD", "TRIBUTE 4WD", "SOLSTICE", "BAJA AWD", "SLK55 AMG", "F350 2WD", "STS AWD", "750I", "ESCAPE 4WD", "OPTRA 5", "FUSION", "LANCER", "COBALT", "GT 2WD", "FREESTYLE FWD", "SLK350", "STS AWD", "M45", "ECLIPSE", "9-2X WAGON AWD", "MALIBU", "F350 4WD", "CANYON 2WD", "ZEPHYR", "760I", "760LI", "300C AWD", "GTI", "LUCERNE", "ML500 4MATIC", "S60 FWD"], ["King Street", "Marston Road", "High Street", "Kirkgate", "Camwal Road", "Church Avenue", "Cold Bath Road", "Ellingstring", "Hookstone Oval", "Castlegate", "Park Street", "Windsor House", "Skipton Road", "Harrogate Road", "North Street", "Bondgate", "Dragon Road", "Grove Road", "High Street", "High Street", "Spring Grove", "Studley Road", "Main Street", "Main Street", "Kings Road", "Market Place", "Market Place", "Low Green", "Low Moor Lane", "Low Mill Road", "Fountains", "Park Street", "Castle Yard", "Aldfield", "Lofthouse", "Barugh Close", "Kirkgate", "Thruscross", "Fountains", "Hopperton", "Windsor House", "Ripley Castle", "Station Parade", "Anchor Road", "Castlegate", "Fishergate", "Windsor House", "Freemans Way", "Brewery Close", "Harrogate Road", "Green Lane", "York Place", "Knapping Hill", "Askwith Lane", "Wetherby Road", "Roundwood", "High Street", "Station Parade", "Wetherby Road", "Spa Terrace", "Allhallowgate", "Kirkby Lane", "New York Mills", "Ripley Road", "Camwal Road", "Kirkgate", "High Street", "Forest Avenue", "Haggs Road", "Forest Avenue", "Station Yard", "Windsor House", "Albert Street", "Warsill", "Fishergreen", "Melmerby", "Beulah Street", "Hookstone Road", "Grove Road", "Fearby", "Sheepcote Lane", "Markington", "Station Bridge", "Wormald Green", "Brickyard Road", "Low Lane", "Nesfield", "Royal Parade", "Church Avenue", "Ellingstring", "Church Avenue", "Manse Lane", "Market Place", "Main Street", "Claro Road", "Windsor House", "Park Street", "The Grove", "Franklin Road", "Harrogate Road", "Otley Road", "Silver Street", "Harrogate Road", "Ure Bank Top", "Angram", "Pannal Road", "Pottery Lane", "Iles Lane", "Bower Road", "Kingsley Road", "Station Road", "Coppice Drive", "Fountains Road", "Ash Road", "High Street", "Westgate", "The Avenue", "York Road", "Warren Hill", "Tofts Lane", "Finkle Street", "Regent Parade", "Carr Lane", "Clint Rise", "Silver Street", "Dragon Terrace", "Station Parade", "Bondgate Green", "Bondgate Green", "Spa Lane", "North Road", "Fewston", "Ripon Road", "King Street", "Mayfield Grove", "Pannal Road", "Bogs Lane", "Tofts Lane", "Leeds Road", "Horsefair", "Aldwark Bridge", "Bower Road", "Fountains Road", "High Street", "Kirk Hammerton", "Market Place", "Summerbridge", "Market Place", "Cornwall Road", "North Street", "Copt Hewick", "Main Street", "Rudgate", "Low Moor Lane", "Manse Lane", "High Street", "Station Road", "Leeds Road", "Swinton", "The Grove", "High Street", "Studley Road", "King Street", "Fellbeck", "Arthurs Avenue", "East Parade", "York Place", "Dragon Avenue", "Windsor House", "Blazefield", "Copt Hewick", "Horsefair", "Main Street", "Bridge Hewick", "Bilton Lane", "Oxford Street", "Oxford Street", "York Road", "Regent Parade", "Low Moor Lane", "Fishergreen", "Village Green", "High Street", "The Mount", "Duck Hill", "Ripon Road", "Conyngham Hall", "Manor Road", "High Street", "East Parade", "Ripon Road", "Thistle Hill", "Cornwall Road", "East Parade", "Franklin Road", "Cornwall Road", "Fishergate", "Wetherby Road", "North Street", "Orchard Lane", "Cambridge Road", "Princes Square", "Queen Street", "Main Street", "Granby Road", "Buttersyke Bar", "Alexandra Road", "Moss Arcade", "Masham", "Whixley", "Conyngham Hall", "Leeds Road", "Beech Avenue", "High Street", "Bar Lane", "Hartwith Way", "Mowbray Square", "Sykes Grove", "Ure Bank Top", "Claro Road", "High Street", "High Skellgate", "Low Moor Lane", "Dacre Banks", "Cold Bath Road", "Park Parade", "Keld Close", "Bellman Walk", "Park Grove", "Galphay", "Fishergate", "Windsor House", "Angram", "Regent Parade", "Steven Way", "Skipton Road", "Valley Drive", "Windsor House", "Kirkgate", "Summerbridge", "Greenhow Hill", "Bewerley", "Keld Close", "Albert Street", "Whincup Avenue", "East Parade", "Main Street", "Camwall Road", "St Johns Road", "High Street", "Kirkgate", "Windsor House", "Oatlands Drive", "Harrogate Road", "Conyngham Hall", "Hilton Lane", "Windsor House", "Morton Row", "North Street", "Elmwood Street", "Windsor House", "Cold Bath Road", "Cowthorpe", "Kirkgate", "Ash Grove", "Ripon Road", "Rudgate", "Tockwith Road", "Cornwall Road", "High Street", "High Street", "Claro Court", "Kirkby Road", "Low Mill Road", "Fountains Road", "Otley Road", "Back Lane", "Swindon Lane", "Spring Mount", "Claro Park", "Harrogate Road", "Allhallowgate", "Haggs Road", "Healey", "Harrogate Road", "Cornwall Road", "Station Road", "Fishergate", "Finkle Street", "Fountains Road", "Birstwith", "Bogs Lane", "Cundall", "Harrogate Road", "Westgate", "Red House Lane", "Station Parade", "Brewery Close", "Ripon Road", "Station Parade", "East Parade", "Valley Drive", "Moor Road", "High Street", "Crab Lane", "Blossomgate", "Main Street", "Wetherby Road", "Market Place", "Castlegate", "Grafton", "Peter Lane", "Mickley", "Regent Parade", "Felliscliffe", "Haywra Street", "Low Moor Lane", "Fountains Road", "Windsor House", "Barugh Close", "Grantley", "Ripon Road", "Kendal Lane", "Valley Mount", "High Moor Lane", "Conyngham Hall", "Ure Bank Top", "Main Street", "Cornwall Road", "West Park", "New Row", "Station Parade", "Wighill Park", "Oxford Street", "Bower Road", "Brewery Close", "King Street", "Copt Hewick", "Dishforth", "Franklin Road", "Dairy Lane", "Oxford Street", "Windsor House", "Fishergreen", "East Parade", "Kirkgate", "Ramsgill", "Station Bridge", "Mayfield Grove", "Bondgate", "Station Bridge", "Regent Parade", "Main Street", "Ash Grove", "Windsor House", "Station Parade", "The Avenue", "Main Street", "Westgate", "Princes Square", "East Parade", "Norton Le Clay", "Langbar", "New Row", "Galphay", "Harrogate Road", "Union Street", "Main Street", "Elmwood Street", "Westgate", "Ash Grove", "Pannal Road", "Fishergate", "Camwal Road", "High Skellgate", "Newby Hall", "Princes Square", "Leeds Road", "Glasshouses", "Station Parade", "Valley Mount", "Ripon Road", "Windsor House", "Cornwall Road", "Dragon Parade", "Moor Lane", "Red House Lane", "King Street", "Farnham", "Cold Bath Road", "Cheapside", "Kings Road", "Princes Street", "Navigation Way", "Grewelthorpe", "Belmont Road", "King Street", "Market Place", "Dacre Banks", "Fishergreen", "Station Parade", "Princes Street", "Copt Hewick", "Station Parade", "Cold Bath Road", "Dacre", "Claro Road", "Omega Street", "Kings Road", "Skipton Road", "Cheapside", "Valley Drive", "Market Place", "Abbey Road", "Ouseburn Road", "Allhallowgate", "Braythorn", "Melmerby", "Conyngham Hall", "High Street", "Middlesmoor", "Alexandra Road", "Bilton Lane", "Missies Lane", "Hookstone Oval", "Fewston", "Goldsborough", "Regent Parade", "Scotton", "High Street", "York Road", "High Street", "Horsefair", "Fountains Road", "Camwal Terrace", "Foundry Yard", "New York Mills", "Ainsty Road", "Alexandra Road", "High Street", "Boroughbridge", "Station Bridge", "Parklands", "Wilsill", "South View", "Raglan Street", "Skipton Road", "Winksley", "Bishop Monkton", "Blands Hill", "Horsefair", "Harrogate Road", "West Park", "Angram", "Fountains Road", "Main Street", "Allhallowgate", "Boroughbridge", "Copt Hewick", "Main Street", "North Street", "Harrogate Road", "Moor Lane", "High Street", "Cold Bath Road", "Ripon Road", "Park Street", "Market Place", "Cornwall Road", "Kings Road", "Hookstone Park", "Cold Bath Road", "Healey", "Wetherby Road", "High Street", "Staveley", "Clint Bank", "North Street", "Abbey Road", "Castlegate", "Minskip", "Oxford Street", "Kings Road", "Harrogate Road", "The Avenue", "Castle Street", "Clint Bank", "Castlegate", "Harrogate Road", "Summerbridge", "Ilton Lane", "Wetherby Road", "Ripley", "High Street", "Clarence Drive", "Haggs Road", "Mayfield Grove", "High Street", "Haggs Road", "Claro Road"], ["(314) 515-4900", "(212) 809-0579", "(646) 845-0036", "(212) 449-1000", "(312) 604-8000", "(212) 310-9500", "(212) 756-9165", "(212) 509-2300", "(215) 665-6000", "(212) 267-6011", "(201) 222-9400", "(214) 765-1100", "(212) 326-1100", "(216) 443-2300", "(212) 408-5700", "(212) 668-8700", "(212) 272-2000", "(414) 765-3500", "(212) 425-2320", "(212) 980-5050", "(212) 668-8700", "(212) 421-2500", "(617) 855-8722", "(212) 363-1050", "(212) 747-9450", "(213) 688-8000", "(212) 514-2400", "(201) 557-5000", "(212) 841-3000", "(646) 424-6000", "(954) 652-7900", "(212) 856-4000", "(212) 632-6000", "(305) 374-3600", "(310) 595-0126", "(212) 320-3000", "(212) 284-2300", "(212) 761-4000", "(312) 362-3713", "(212) 668-8700", "(312) 432-5100", "(212) 905-0525", "(212) 943-8787", "(917) 388-8000", "(804) 780-2000", "(312) 836-6700", "(203) 618-5700", "(512) 807-5300", "(201) 424-1821", "(212) 217-0074", "(212) 667-9000", "(212) 668-8700", "(914) 694-5800", "(800) 223-3810", "(610) 617-2600", "(212) 531-8500", "(212) 250-2500", "(800) 800-6890", "(704) 374-3369", "(212) 668-8700", "(212) 656-5000", "(212) 542-8266", "(212) 267-6011", "(201) 898-2525", "(212) 588-4000", "(816) 285-6400", "(212) 887-7777", "(617) 563-7000", "(212) 670-2000", "(212) 549-8900", "(646) 568-2320", "(212) 943-5225", "(312) 205-8900", "(617) 664-3619", "(312) 395-3116", "(312) 341-0816", "(213) 402-1563", "(212) 715-2830", "(212) 269-7800", "(312) 244-5900", "(312) 884-3879", "(212) 525-5000", "(212) 344-3116", "(212) 468-7500", "(617) 664-4000", "(212) 762-4000", "(212) 885-6300", "(212) 471-6768", "(612) 303-6000", "(212) 993-7375", "(610) 293-2000", "(212) 858-7000", "(212) 668-8000", "(201) 332-4596", "(212) 225-6500", "(501) 377-2000", "(314) 955-3000", "(914) 225-5510", "(646) 393-4800", "(212) 883-0600", "(312) 236-1600", "(201) 413-2301", "(212) 832-5280", "(212) 816-6000", "(212) 824-5000", "(214) 720-0055", "(212) 480-3417", "(212) 902-1000", "(610) 862-0880", "(212) 486-5800", "(713) 333-3700", "(212) 656-5000", "(212) 723-7600", "(203) 719-3000", "(212) 668-8700", "(212) 293-1444", "(212) 509-1982", "(212) 765-2500", "(617) 426-0500", "(201) 352-3000", "(212) 480-1400", "(646) 562-1000", "(212) 278-6000", "(312) 663-3655", "(212) 409-2000", "(212) 482-8689", "(212) 612-7000", "(913) 815-7000", "(212) 325-2000", "(502) 588-8400", "(312) 924-4700", "(727) 573-3800", "(214) 859-9164", "(212) 742-8472", "(212) 656-5000", "(212) 785-1941", "(646) 375-1104", "(310) 448-6800", "(212) 702-1200", "(646) 943-5400", "(212) 785-0200", "(804) 643-1811", "(630) 482-7100", "(212) 526-7000", "(917) 720-3332", "(212) 285-1191", "(212) 625-5700", "(212) 651-6070", "(212) 344-5661", "(212) 644-2400", "(800) 774-0163", "(212) 418-0116", "(314) 342-2000", "(843) 352-8000", "(646) 562-1000", "(312) 542-1000", "(212) 401-8982"], ["rs10169469.TG", "rs3128318.AA", "rs2766534.GT", "rs363538.CC", "rs7043217.AG", "rs348458.AG", "rs13321783.TC", "rs11904814.GG", "rs4261913.TC", "rs3123554.AG", "rs2319399.GA", "rs11076017.TC", "rs11677077.CC", "rs10873637.AC", "rs6680132.TC", "rs541098.GG", "rs11642346.TT", "rs10802816.CC", "rs10809911.TT", "rs1574175.GG", "rs935653.TC+TT", "rs2070037.TT", "rs4620530.GG", "rs28536662.GA", "rs12630592.GT", "rs962369.GA", "rs980365.GG", "rs9813864.TC", "rs7314376.AA", "rs7557421.GG", "rs6787134.TT", "rs7195732.TG", "rs7925924.TT", "rs6680132.TT", "rs3732361.GA", "rs1519480.TT", "rs10772703.TC", "rs4586906.GT", "rs4942587.AA", "rs6348.CC", "rs226082.CT", "rs6545976.GG", "rs6703669.TC", "rs348471.GA", "rs16147.GG", "rs1984490.CT", "rs610231.CT+CC", "rs17361936.TC", "rs935653.CC", "rs3928987.AG", "rs6795653.TC", "rs735555.AA", "rs6275.TT", "rs2665272.AG", "rs708258.AG", "rs2236860.AG", "rs220563.AA", "rs837697.TG", "rs2284406.CC", "rs2770293.TC", "rs7644234.GT", "rs348471.GG", "rs468771.CC", "rs12624279.AA", "rs10029313.TT", "rs6800622.CA", "rs17204878.GT", "rs9534511.CC", "rs10865212.GT", "rs4578034.TC", "rs1187323.AA", "rs3097489.GG", "rs2002453.TT", "rs28373064.AA", "rs334563.GT", "rs541098.AG", "rs2072100.GG", "rs3128322.AA", "rs363510.TT", "rs8038920.AA", "rs1719894.GA", "rs1008619.TT", "rs1105.AG", "rs3121819.GG", "rs9873477.AG", "rs608139.TT", "rs1008400.TC", "rs12910925.CC", "rs1519480.CT", "rs3097489.AG", "rs2295633.TT", "rs4649123.AG", "rs9878473.TC", "rs7979850.GG", "rs1382061.TT", "rs6438552.AG", "rs7026417.TT", "rs610231.TT", "rs16969968.AG", "rs1732170.GA", "rs529520.GT", "rs1076562.AA", "rs10029313.GG", "rs334533.GA", "rs1611131.AA", "rs608139.CT+CC", "rs391460.TT", "rs2245633.CC", "rs6792572.AC", "rs6805251.CT", "rs11674329.CA", "rs7175756.CC", "rs10802779.TC", "rs610529.CT", "rs6677208.AA", "rs3128323.AA", "rs2501431.GA", "rs7175581.AA", "rs17289394.AG", "rs363518.TT", "rs1307279.TT", "rs4649124.AA", "rs6497676.GA", "rs2083828.TT", "rs6719779.CT", "rs10519587.AA", "rs4649124.AG", "rs3774084.AA", "rs6662982.AG", "rs34902309.GA", "rs2876981.CA", "rs2502993.TC", "rs9534511.TC", "rs6348.TC+TT", "rs3107669.TG", "rs2296973.GG", "rs2319398.GT", "rs2252094.CC", "rs17361950.TC", "rs2832431.CC"], ["Maldives", "Zambia", "Burkina Faso", "Cambodia", "Angola", "Grenada", "Venezuela", "Serbia", "Philippines", "Turkmenistan", "Yemen", "Samoa", "Montserrat", "Indonesia", "Ukraine", "Guyana", "Anguilla", "Morocco", "Turkey", "Tokelau", "Zimbabwe", "Ethiopia", "Guatemala", "Somalia", "Suriname", "Malawi", "Palau", "Niue", "El Salvador", "Ecuador", "Mauritius", "Mexico", "Algeria", "Uganda", "Viet Nam", "China", "Laos", "Sudan", "Iraq", "Sierra Leone", "Barbados", "Niger", "Liberia", "Mali", "Kiribati", "Cuba", "Tajikistan", "Bangladesh", "St.Kitts-Nevis", "Thailand", "Rwanda", "Ghana", "C", "Belarus", "Haiti", "Malaysia", "Djibouti", "Argentina", "St.Lucia", "Madagascar", "Nigeria", "Congo, Rep.", "Uzbekistan", "Nepal", "Moldova", "Korea, Dem.", "Sri Lanka", "Kyrgyz Rep.", "Armenia", "Paraguay", "Colombia", "Costa Rica", "Cameroon", "Togo", "Chad", "Kenya", "Vanuatu", "Dominica", "Namibia", "Libya", "Gambia", "Seychelles", "Honduras", "Comoros", "Afghanistan", "Bolivia", "Brazil", "Tanzania", "Senegal", "Fiji", "India", "Chile", "Botswana", "Gabon", "Cape Verde", "Uruguay", "Nicaragua", "Montenegro", "Swaziland", "Mongolia", "Lebanon", "Tonga", "Jordan", "Macedonia, FYR", "Eritrea", "Egypt", "St.Helena", "Belize", "Pakistan", "Tuvalu", "Nauru", "Georgia", "Burundi", "Oman", "Mozambique", "Lesotho", "Tunisia", "Kazakhstan", "Benin", "Jamaica", "Iran", "Azerbaijan", "Syria", "Timor Leste", "Mayotte", "Panama", "Peru", "Albania", "Bhutan", "Cook Islands", "Mauritania", "South Africa", "Croatia", "Guinea", "Guinea-Bissau"], ["Van Halen", "U2", "Billy Joel", "Hollies", "Aerosmith", "Rush", "Jimi Hendrix", "Pat Benatar", "Bob Seger", "Foo Fighters", "Fleetwood Mac", "Joe Cocker", "The Ramones", "The Kinks", "Aerosmith", "Deep Purple", "Jackson Browne", "Scorpions", "Rolling Stones", "UFO", "Vixen", "Van Halen", "The Outlaws", "Loverboy", "Rolling Stones", "Cat Stevens", "Ringo Starr", "UB40", "David Bowie", "Whitesnake", "Queensryche", "Genesis", "The Beatles", "AC/DC", "Jimi Hendrix", "Rolling Stones", "Bob Marley", "Joe Walsh", "AC/DC", "The Kinks", "Baton Rouge", "Triumph", "Steven Stills", "Pearl Jam", "Billy Joel", "John Fogerty", "Whitesnake", "Chuck Berry", "Eric Clapton", "Van Halen", "Led Zeppelin", "Van Morrison", "Foghat", "Led Zeppelin", "The Firm", "Black Sabbath", "Stevie Nicks", "Aerosmith", "Lou Gramm", "Elton John", "Van Halen", "Styx", "Iron Maiden", "AC/DC", "U2", "Fleetwood Mac", "Genesis", "Pink Floyd", "Heart", "Eric Clapton", "The Beatles", "The Who", "Asia", "Queen", "Sammy Hagar", "Harry Nilsson", "Queen", "The Beatles", "Eric Clapton", "David Lee Roth", "The Who", "Whitesnake", "Van Halen", "Bob Welch", "The Clash", "Aerosmith", "Buckcherry", "Chicago", "Rush", "Rolling Stones", "U2", "Janis Joplin", "Supertramp", "Phil Collins", "Arlo Guthrie", "The Who", "Dire Straits", "The Black Keys", "Bon Jovi", "Extreme", "The Band", "Foo Fighters", "Foo Fighters", "Billy Joel", "David Essex", "Night Ranger", "Lenny Kravitz", "Foreigner", "The Cars", "Steppenwolf", "Mungo Jerry", "The Beatles", "Iron Maiden", "Nickelback", "Genesis", "Boston", "Ozzy Osbourne", "School Of Fish", "Lynyrd Skynyrd", "David Lee Roth", "Lynyrd Skynyrd", "The Doors", "Mr. Big", "Led Zeppelin", "Motley Crue", "The Doors", "3 Doors Down", "Todd Rundgren", "Warren Zevon", "Led Zeppelin", "Gerry Rafferty", "The Beatles", "Stevie Nicks", "Styx", "Green Day", "Tonic", "Elton John", "Eve 6", "Dishwalla", "Boston", "Heart", "Steve Winwood", "Chevelle", "Van Halen", "Elton John", "Grateful Dead", "Jimi Hendrix", "U2", "The Police", "Traffic", "The Beatles", "Rolling Stones", "Foghat", "Bad Company", "Rush", "Rod Stewart", "U2", "Eagles", "Eric Clapton", "Def Leppard", "Pink Floyd", "Aerosmith", "Bob Seger", "Journey", "Blondie", "AC/DC", "Wet Willie", "The Who", "U2", "The Police", "Eric Clapton", "Styx", "Neil Young", "Mitch Ryder", "Heart", "Journey", "Fleetwood Mac", "Red Rider", "Van Morrison", "Joan Jett", "Eric Clapton", "Leon Russell", "ZZ Top", "Judas Priest", "Warrant", "The Who", "The Cars", "Winger", "Genesis", "The Cars", "Genesis", "The New Eagles", "Bush", "Santana", "Eagles", "Foreigner", "Rolling Stones", "HellYeah", "Clarks", "Procol Harum", "Rush", "Joan Jett", "The Who", "Metallica", "Winger", "Guess Who", "Nazareth", "Dire Straits", "Joe Walsh", "Turtles", "Faith No More", "Bad Company", "Led Zeppelin", "Sweet", "Dire Straits", "Cinderella", "Queen", "Glenn Frey", "The Beatles", "The Beatles", "Stevie Nicks", "Dave Mason", "AC/DC", "David Essex", "Bob Seger", "Dave Mason", "The Kinks", "Zebra", "Heart", "Led Zeppelin", "Santana", "The Beatles", "Def Leppard", "Rainbow", "Van Morrison", "Rolling Stones", "Kansas", "Canned Heat", "Led Zeppelin", "Jimi Hendrix", "Bob Marley", "AC/DC", "The Beatles", "John Lennon", "Bon Jovi", "Led Zeppelin", "Metallica", "The Beatles", "Ted Nugent", "Led Zeppelin", "Motley Crue", "Grateful Dead", "John Lennon", "Ozzy Osbourne", "Chicago", "Van Halen", "The Kinks", "Rush", "Clarks", "The Beatles", "Smash Mouth", "Yes", "Fleetwood Mac", "Boston", "David Bowie", "Elton John", "Jimi Hendrix", "Led Zeppelin", "Led Zeppelin", "Boston", "Journey", "The Beatles", "Iron Maiden", "Elton John", "Cinderella", "Europe", "Fleetwood Mac", "Bob Seger", "Led Zeppelin", "Donnie Iris", "Heart", "Don Henley", "Fleetwood Mac", "The Tubes", "Yes", "The Who", "Rolling Stones", "Boston", "Grateful Dead", "Autograph", "Joe Cocker", "Ringo Starr", "The Pretenders", "Elton John", "Skid Row", "Black Sabbath", "The Tubes", "Poison", "Scorpions", "Lynyrd Skynyrd", "Whitesnake", "Billy Idol", "Orleans", "Pink Floyd", "Heart", "Steely Dan", "Pink Floyd", "Led Zeppelin", "James Gang", "Squeeze", "Rolling Stones", "Van Halen", "Metallica", "Phil Collins", "Guns N' Roses", "Grateful Dead", "The Beatles", "Genesis", "The Beatles", "Talking Heads", "Foo Fighters", "Sublime", "Rush", "The Police", "Skid Row", "The Beatles", "Puddle of Mudd", "The Beatles", "R.E.M.", "AC/DC", "Loverboy", "The Beatles", "ZZ Top", "Nirvana", "The Beatles", "Stray Cats", "Pat Benatar", "The Beatles", "Rolling Stones", "Lynyrd Skynyrd", "Janis Joplin", "Santana", "Aerosmith", "Cheap Trick", "Alannah Myles", "REO Speedwagon", "Extreme", "ZZ Top", "Pat Benatar", "The Kings", "AC/DC", "Rush", "Led Zeppelin", "Clarks", "The Beatles", "Black Sabbath", "Zebra", "Lynyrd Skynyrd", "Phil Collins", "Peter Frampton", "Blind Melon", "Rainbow", "Van Halen", "Tesla", "The Beatles", "Bon Jovi", "Pink Floyd", "Ted Nugent", "Jethro Tull", "The Police", "Aerosmith", "Billy Squier", "Rolling Stones", "Everclear", "Bob Seger", "Ringo Starr", "Aerosmith", "Rolling Stones", "ZZ Top", "Pearl Jam", "Led Zeppelin", "Gin Blossoms", "Santana", "Sammy Hagar", "Jeff Beck", "Don McLean", "AC/DC", "Chicago", "Dire Straits", "The Beatles", "Talking Heads", "Rolling Stones", "Ozzy Osbourne", "The Cars", "Joe Walsh", "Van Halen", "The Beatles", "J. Geils Band", "John Prine", "Tesla", "Cream", "The Beatles", "Pink Floyd", "Whitesnake", "Genesis", "ZZ Top", "Queen", "Aerosmith", "Led Zeppelin", "Eddie Money", "Led Zeppelin", "Pink Floyd", "Robert Plant", "ZZ Top", "The Police", "Foghat", "Elvis Costello", "Eagles", "Ram Jam", "Fleetwood Mac", "Led Zeppelin", "Iron Maiden", "The Beatles", "Great White", "Styx", "Guns N' Roses", "Bob Seger", "Cheap Trick", "Monroes", "Steve Winwood", "Junkyard", "Gregg Allman", "Lenny Kravitz", "Sammy Hagar", "Neil Young", "Nirvana", "Lita Ford", "Harry Chapin", "Black Sabbath", "Van Morrison", "Soft Cell", "Steely Dan", "Neil Young", "Janis Joplin", "The Who", "Deep Purple", "Rolling Stones", "REO Speedwagon", "The Who", "The Ramones", "Elton John", "U2", "AC/DC", "Soundgarden", "Neil Young", "Journey", "Bob Seger", "Faces", "David Bowie", "Genesis", "Judas Priest", "Van Halen", "Led Zeppelin", "Ted Nugent", "Heartsfield", "Peter Gabriel", "Pink Floyd", "Heart", "Rolling Stones", "Led Zeppelin", "Carole King", "Aerosmith", "ZZ Top", "Jackson Browne", "Guns N' Roses", "Fleetwood Mac", "Eagles", "Rolling Stones", "Santana", "Genesis", "Elvis Costello", "Rolling Stones", "The Beatles", "The Beatles", "The Band", "Stevie Nicks", "The Beatles", "Alice Cooper", "Chicago", "Kingofthehill", "Steely Dan", "The Who", "The Beatles", "U2", "Elton John", "The Beatles", "Ozzy Osbourne", "Badfinger", "Bob Marley", "Eric Clapton"], ["AVALON HOSPICE", "HOSPICE AUSTIN", "VISTACARE", "HOSPICE EAST", "MERCY HOSPICE", "BEACON HOSPICE", "UINTA HOSPICE", "HOME CARE TCH", "A-PLUS HOSPICE", "HARBOR HOSPICE", "BRIO HOSPICE", "PEC HOSPICE", "ABBEY HOSPICE", "SOMC HOSPICE", "AEGIS HOSPICE", "UNITY HOSPICE", "AMITY CARE", "MERCY HOSPICE", "AVERAATHOME", "MESUN", "TIP HOSPICE", "CANON HOSPICE", "NARSIR HOSPICE", "UTAH HOSPICE", "MARIAN HOSPICE", "GRANE HOSPICE", "VISTACARE", "TETON HOSPICE", "JUDSON HOSPICE", "HORN HOSPICE", "LEGACY HOSPICE", "CIMA HOSPICE", "MERCY HOSPICE", "CURO HOSPICE", "BEACON HOSPICE", "SHOLOM HOSPICE", "SSM HOSPICE", "FHN HOSPICE", "MERCY HOSPICE", "TUOMEY HOSPICE", "OSF HOSPICE", "ACACIA HOSPICE", "MERCY HOSPICE", "TEXAS HOSPICE", "MERCY HOSPICE", "MERCY HOSPICE", "MERCY HOSPICE", "OC HOSPICE", "ADORAY HOSPICE", "BRIO HOSPICE", "ELITE HOSPICE", "BJC HOSPICE", "GRACE HOSPICE", "FAMILY HOSPICE", "APREVA HOSPICE", "MERCY HOSPICE", "MERCY CARE", "LAMOILLE HHA", "SERENITY CARE", "KINDER HEARTS", "CANYON HOSPICE", "ALAMO HOSPICE", "STAR HOSPICE", "HOSPICE ALPHA", "IMAGE HOSPICE", "MERCY HOSPICE", "ABODE HOSPICE", "COMMUNITY VNA", "STAR HOSPICE", "CIMA HOSPICE", "ANGEL OF MERCY", "AMITY HOSPICE", "VISTA HOSPICE", "BJC HOSPICE", "HOSPICE MAUI", "HOPE HOSPICE", "ARBOR HOSPICE", "BANNER HOSPICE", "CROWN HOSPICE", "FAMILY HOSPICE", "VNA CALIFORNIA", "TEXAS HOSPICE", "CARE PARTNERS", "VNA AT HCS", "CMC HOSPICE", "BASIN HOSPICE", "VCHS HOSPICE", "CITY HOSPICE", "JHC HOSPICE", "ICARE HOSPICE", "AIM HOSPICE", "KAUAI HOSPICE", "RHM-KCINO", "VNA", "FAMILY HOSPICE", "MOHAVE HOSPICE", "SKIFF HOSPICE", "MY HOSPICE", "MERCY HOSPICE", "WELLS HOUSE", "HOSPICE SUNSET", "VALLEY HOSPICE", "LORNA HOSPICE", "LEGACY HOSPICE", "SHALOM HOSPICE", "OMEGA HOSPICE", "VNA HOSPICE", "ISLAND HOSPICE", "ANGELS OF HOPE", "UNC HOSPICE", "GRACE HOSPICE", "IMAGE HOSPICE", "VISTACARE", "LEGACY HOSPICE", "LEGACY HOSPICE", "FAMILY HOSPICE", "SUMMIT HOSPICE", "MERCY HOSPICE", "UNITY HOSPICE", "SYMBII HOSPICE", "FAMILY CARE", "ARDENT HOSPICE", "MERCY HOSPICE", "DUKE HOSPICE", "VALLEY HOSPICE", "KELLER HOSPICE", "AMARIS HOSPICE", "ALLEVE HOSPICE", "GRACE HOSPICE", "CIMA HOSPICE", "HOPE HOSPICE", "HOME HOSPICE", "ALTUS HOSPICE", "THEE HOSPICE", "INCARE HOSPICE", "MCH&HS HOSPICE", "CANON HOSPICE", "ASPEN HOSPICE", "HPH HOSPICE", "MARY T HOSPICE", "ACCORD HOSPICE", "UNITED HOSPICE", "AVERAATHOME", "SUNSET HOSPICE", "AVALON HOSPICE", "CARLE HOSPICE", "AAA HOSPICE", "MERCY HOSPICE", "CHOICE HOSPICE", "VISTACARE", "KATHY CARES", "RUTH HOSPICE", "ROPER HOSPICE", "AVALON HOSPICE", "HEART AND SOUL", "HOSPARUS INC", "MUNSON HOSPICE", "CONNECTCARE", "VISTACARE", "ILLUMINA LLC", "TIP HOSPICE", "GRACE HOSPICE", "ALIGN HOSPICE", "BEACON HOSPICE", "LEGACY HOSPICE", "SIERRA HOSPICE", "MERCY HOSPICE", "OSF HOSPICE", "VICAR HOSPICE", "TAYLOR HOSPICE", "HAVEN HOSPICE", "HOSPICE HAWAII", "CROZER HOSPICE", "HOPE HOSPICE", "LION HOSPICE", "YRMC HOSPICE", "UNITY HOSPICE", "FAITH HOSPICE", "GRACE HOSPICE", "VESPER HOSPICE", "HEARTH, LLC", "MERCY HOSPICE", "HAVEN HOSPICE", "VISTACARE", "JCMH HOSPICE", "MERCY HOSPICE", "AMARA HOSPICE", "BAYADA HOSPICE", "ACCESS HOSPICE", "COZY HOSPICE", "ALAMO HOSPICE", "AVALON HOSPICE", "EMBLEM HOSPICE", "HOSPICE CARE", "HAVEN HOSPICE", "HOSPICE ANGELS", "HOME HOSPICE", "CALM CARE, INC", "GRACE HOSPICE", "PATIENT CARE", "PAX HOSPICE", "UVALDE HOSPICE", "HOSPICE PLUS", "FOCUS HOSPICE", "LEGACY HOSPICE", "HALO HOSPICE", "ACTS HOSPICE", "VISTACARE", "CNS HOSPICE", "FORBES HOSPICE", "ENVOY HOSPICE", "TEXAS HOSPICE", "ALAMO HOSPICE"], ["0", "235098", "0", "10111.3", "30050.68", "36175.8", "0", "124719.79", "590351.55", "288943.24", "144469.27", "90000", "1707900.21406", "15600", "126481.8", "0", "0", "3831118.5", "160926.78", "34751.33", "27427.5", "13236", "2026.25", "58013.5", "6575", "36988.18", "2049517.94", "18970.05", "5553186.03", "0", "73575.01", "6055118.89", "105000", "125969.5", "3000510.8", "0", "17360", "51776.35", "142293", "5653648.03", "0", "30783", "307050", "239320.9", "227312.69", "4497526.828", "3997844.88", "22293.65", "87643.49", "0", "10833", "67883.09", "107574.76", "345632.83", "58475", "822466.65", "290.13", "6690", "988666.794", "16038.42", "38187.5", "0", "42824", "6185", "97548.14", "11670", "137076.33", "326026.33", "0", "34272660.38", "42244.41", "12837.7", "0", "20089.58", "73142", "202765.5", "517863", "341745.12", "0", "32683.5", "0", "234149", "288885.61", "52103649.16", "5143660.39", "9703.29", "484662.01", "923283.1", "0", "673402.79", "36644.5", "0", "72695.7", "24900", "0", "0", "10907.5", "2499352.8", "282905", "15000", "1400372.09863", "59561", "62352.47", "0", "3330727.09", "58078.12", "0", "4388029.78", "15224.91", "115685.6", "1542657.04", "82239.59", "133365.1", "27357.7", "165157.27", "12990.39", "34566.2", "10097.26", "109207.9", "4097370.23", "14200", "306106.86", "2129845.69", "50994.31", "1779758.57", "80804404.89", "1546303.96", "30537", "181330679.11", "548524.41", "3317883.42", "0", "44067", "73012.5", "0", "0", "425088", "16983.8", "229060.74", "1885625", "23806131.35", "320443.51", "80163.94", "190093.5", "53700341.80844", "23650", "23174.5", "22972", "33122.67", "128075", "138006.72", "0", "15871", "6072969.2", "27650", "0", "33515", "34375", "22029.5", "9564.86", "2551759.662", "47665.4", "1928878.21", "124804.37", "94490.5", "0", "15161.56", "41525.01", "496889.62", "71308.11", "0", "6013.35", "189745", "54531.21", "411773.73", "120111.71", "36334.97", "28738.35", "0", "15193.0758", "0", "1351364.43", "2680387.24", "370046.43", "3156098.4", "313214.61", "12510", "0", "61559.06005", "692751.03", "2080", "1136282.17", "1378531.3"], ["New Jersey", "Oklahoma", "Utah", "New York City", "California", "Atlanta", "Cambridge GIS", "King County", "South Dakota", "Colorado", "Chattanooga", "San Diego", "Nevada", "Ohio", "Minnesota", "New York", "Denver", "New York", "Sacramento", "Texas", "Norfolk", "North Carolina", "Louisiana", "Massachusetts", "Iowa", "Wake County", "Ann Arbor", "Illinois", "Boston", "Wellington", "Hawaii", "Providence", "Maryland", "Cobb County", "Charleston", "Hawaii", "Massachusetts", "Albuquerque", "Pennsylvania", "Bonner County", "San Francisco", "Nebraska", "Chattanooga", "Portland", "Oregon", "Belleville", "Michigan", "Kansas", "Scottsdale", "Minnesota", "Tennessee", "Wisconsin", "Montana", "Champaign", "Houston", "Washington", "Oregon", "Oakland", "Oklahoma", "Reno", "Chicago", "New Orleans", "Maryland", "New Hampshire", "Tulsa", "Arvada", "Cook County", "Baltimore", "Nebraska", "Idaho", "Mississippi", "Hawaii GIS", "Delaware", "Missouri", "Ohio", "North Dakota", "Louisville", "Idaho", "Lynchburg", "Honolulu", "Wyoming", "Florida", "Redmond", "Newark", "Arizona", "Hartford", "Weatherford", "Asheville", "Virginia", "Santa Cruz", "Kansas City", "Georgia", "Illinois", "Maine", "Oakland", "Alaska", "Connecticut", "Williamsburg", "Palo Alto", "Somerville", "Connecticut", "Cincinnati", "Virginia Beach", "Lexington", "De Leon", "Maine", "Salt Lake City", "Madison", "Glynn County", "Austin", "Rhode Island", "Vermont", "New Mexico", "Rockford", "Gainesville", "Texas", "Delaware", "Richmond", "New Hampshire", "Gilpin County", "Colorado", "Indiana", "Colorado", "Indiana", "South Carolina", "Hawaii", "Philadelphia", "Arkansas", "Seattle", "Rhode Island", "Raleigh", "Washington", "Alabama", "Utah", "Florida", "Delaware", "West Virginia", "South Bend"], ["KINGSDEAN LLP", "ARQIVA LTD", "OVERBURY PLC", "PRIMESIGHT LTD", "NORDEXUK LTD", "PRIMESIGHT LTD", "PRIMESIGHT LTD", "SMARTKEM LTD", "CITIBASE PLC", "NQC LIMITED", "WTF AGENCY LTD", "GRESHAM LLP", "CITIBASE PLC", "AMPLIFON LTD", "IPEC LIMITED", "CLEAR LAW LLP", "ARQIVA LTD", "BJL GROUP LTD", "AMPLIFON LTD", "VODAFONE LTD", "BDO LLP", "BT GROUP PLC", "CLOVERDALE LTD", "KIER GROUP PLC", "ASE RE A LLP", "PARUM LTD", "BERG LEGAL LTD", "I2 OFFICE LTD", "MEARS 24/7 LLP", "RICSION LLP", "ARQIVA LTD", "HAAIG LTD", "CITIBASE PLC", "RICSION LLP", "I2 OFFICE LTD", "NORDEX UK LTD", "ARQIVA LTD", "ANS GROUP PLC", "EQUISTONE LLP", "ZECOL LTD", "CITIBASE PLC", "PHAUS LTD", "PRIMESIGHT LTD", "SHAH KNIT LTD", "JO-Y-JO LTD", "EP1 LLP", "VODAFONE LTD", "BT GROUP PLC", "ARQIVA LTD", "PRIMESIGHT LTD", "VODAFONE LTD", "STAR AA LTD", "ARQIVA LTD", "AMPLIFON LTD", "PRIMESIGHT LTD", "FINROB LIMITED", "AVECTO LTD", "ZARA IMAAN LTD", "SMARTKEM LTD", "CITIBASE PLC", "DOT 100 LTD", "TTHC LTD", "VELFAC LIMITED", "AMPLIFON LTD", "KOSMONAUT LTD", "Y & Y (UK) LTD", "SYNEXUS LTD", "DNATA LTD", "I2 OFFICE LTD", "NISBETS PLC", "CITIBASE PLC", "VODAFONE LTD", "PRIMESIGHT LTD", "CITIBASE PLC", "LUBRIZOL LTD", "TSB BANK PLC", "G-MEX LTD", "LJREAL 1A LTD", "FREETHS LLP", "TELEREAL LTD", "PRIMESIGHT LTD", "HILBY LIMITED", "AMPLIFON LTD", "PRIMESIGHT LTD", "PRIMESIGHT LTD", "OCS LIMITED", "HAAIG LTD", "ASACERT UK LTD", "HILTEX LTD", "PRIMESIGHT LTD", "AMPLIFON LTD", "CITIBASE PLC", "PRIMESIGHT LTD", "EP1 LLP", "OCS GROUP LTD", "IPEC LIMITED", "SAHELI LIMITED", "ARQIVA LTD", "EQUE2 LIMITED", "SHOWTECH LTD", "PRIMESIGHT LTD", "CODETHINK LTD", "AMPLIFON LTD", "JLTHREE LTD", "ENYA LTD", "VODAFONE LTD", "IPEC LIMITED", "TOWRY LAW LTD", "VENN GROUP LTD", "RICSION LLP", "I PROPHETS LTD", "AMPLIFON LTD", "ALTUS UK LLP", "FRESH FIVE LTD", "SYNEXUS LTD", "CACI LIMITED", "S.J.M. LIMITED", "NO CHINTZ LTD", "AMPLIFON LTD", "CALROM LIMITED", "I2 OFFICE LTD", "CITIBASE PLC", "VODAFONE LTD", "CITIBASE PLC", "CLOVERDALE LTD", "CITIBASE PLC", "VODAFONE LTD", "COSTA LIMITED", "AMPLIFON LTD", "OJK LTD", "CITIBASE PLC", "PRO-IMAGE LTD", "CITIBASE PLC", "QC LEGAL LTD", "PARUM LTD", "SWISSPORT LTD", "PRIMESIGHT LTD", "CITIBASE PLC", "ARQIVA LTD", "KATHCARE LTD", "ARQIVA LTD", "VODAFONE LTD", "CITIBASE PLC", "AMPLIFON LTD", "KIDS START LTD", "CITIBASE PLC", "STAR AA LTD", "MLM LTD", "TBI 2000 LTD", "AMPLIFON LTD", "VODAFONE LTD", "I2 OFFICE LTD", "PRIMESIGHT LTD", "TBLIS LTD", "ALLGOOD PLC", "INPOST UK LTD", "O2 UK LIMITED", "AMPLIFON LTD", "PRIMESIGHT LTD", "DAWOOD 1 LTD", "REKOOP LIMITED", "SHERYN LTD", "TTHC LIMITED", "SYNEXUS LTD", "CIA UK LTD", "INPOST UK LTD", "DNATA LTD", "CIPTEX LTD", "KPMG LLP", "RICSION LLP", "ECUS LIMITED", "SWATCH LIMITED", "RICSION LLP", "EP1 LLP", "BERG LEGAL LTD", "CITIBASE PLC", "GLENLUNA LTD", "ANS GROUP PLC", "CITIBASE PLC", "HAAIG LTD", "REKOOP LIMITED", "PRIMESIGHT LTD", "HAAIG LTD", "CITIBASE PLC", "GORGEMEAD LTD", "E. SURV LTD", "PRIMESIGHT LTD", "JENICS LIMITED", "CITIBASE PLC", "BIZSPACE LTD", "GATELEY PLC", "ARQIVA LTD", "CITIBASE PLC", "38 UGS LIMITED", "BJL GROUP LTD", "WESTPOINT LTD", "PRIMESIGHT LTD", "CITIBASE PLC", "BERG LEGAL LTD", "TOWLBUCKLE LTD", "PRIMESIGHT LTD", "HTA DESIGN LLP", "NQC LIMITED", "INPOST UK LTD", "CITIBASE PLC", "MACRO 4 PLC", "AMSBRA LTD", "PRIMESIGHT LTD", "AMEY OW LTD", "VELFAC LIMITED", "LIGS LTD", "BERG LEGAL LTD", "EURODA LTD", "G-MEX LTD", "OVERBURY PLC", "AMPLIFON LTD", "BJL GROUP LTD", "BJL GROUP LTD", "BPS LAW LLP", "POTTERSBY LTD", "GIA NORTH LLP", "LIGS LIMITED", "TUI UK LTD", "AMPLIFON LTD", "AMPLIFON LTD", "PRIMESIGHT LTD", "PS 121 LIMITED", "SHERYN LIMITED", "BJL GROUP LTD", "AMPLIFON LTD", "KINGSDEAN LLP", "KINGSDEAN LLP", "NCG-MDL UK LTD", "AMPLIFON LTD", "EP1 LLP", "AMPLIFON LTD", "PRO-IMAGE PLC", "GATELEY PLC", "O2 UK LIMITED", "SIEMENS PLC", "CITIBASE PLC", "ZILICO LIMITED", "BT GROUP PLC", "CITIBASE PLC", "RSK GROUP PLC", "TTHC LTD", "SHORTBITE LTD", "CITIBASE PLC", "PAS LIMITED", "EP1 LLP", "UTC (UK) LTD", "PRIMESIGHT LTD", "EP1 LLP", "PRIMESIGHT LTD", "KKS LTD", "PRIMESIGHT LTD", "CITIBASE PLC", "EP1 LLP", "UTC UK LIMITED", "PRIMESIGHT LTD", "MENDUK LIMITED", "NCP LIMITED", "AMPLIFON LTD", "GATELEY PLC", "I2 OFFICE LTD", "BERMANS LLP", "CITIBASE PLC", "VODAFONE LTD", "AMPLIFON LTD", "CITIBASE PLC", "JAY TRIM LTD", "CITIBASE PLC", "SR MAILING LTD", "AMPLIFON LTD", "CITIBASE PLC", "MAGNUS LTD", "PRIMESIGHT LTD", "LAPWINE LTD", "MOVVI LIMITED", "AMPLIFON LTD", "G-MEX LTD", "DATESAND LTD", "CITIBASE PLC", "LANAI LIMITED", "FUTURESERV LTD", "AMPLIFON LTD", "GATELEY PLC", "W H SMITH LTD", "BERG LEGAL LTD", "NAEL LIMITED", "GATELEY PLC", "PRIMESIGHT LTD", "AMPLIFON LTD", "STAR AA LTD", "NORDEX UK LTD", "CITIBASE PLC", "PRIMESIGHT LTD", "PRIMESIGHT LTD", "CITIBASE PLC", "VITABLEND LTD", "CENTRICA PLC", "VODAFONE LTD", "G-MEX LTD", "PRIMESIGHT LTD", "DORBIERE LTD", "VISSOC LIMITED", "INTERDELTA LTD", "BERG LEGAL LTD", "IDVAC LTD", "CITIBASE PLC", "PRIMESIGHT LTD", "KINGSDEAN LLP", "LIDL LIMITED", "APPLEARN LTD", "CITIBASE PLC", "DSV ROAD LTD", "HAAIG LTD", "HILBY LIMITED", "BJL GROUP LTD", "E.SURV LIMITED", "WESTPOINT LTD", "PRIMESIGHT LTD", "WESTPOINT LTD", "PRIMESIGHT LTD", "SHERYN LIMITED", "REKOOP LIMITED", "CITIBASE PLC", "CITIBASE PLC", "CITIBASE PLC", "MACE LTD", "AMPLIFON LTD", "DBNAUDILE LTD", "PRIMESIGHT LTD", "PKW FOODS LTD", "GORGEMEAD LTD", "CITIBASE PLC", "CITIBASE PLC", "AMPLIFON LTD", "HAAIG LTD", "AMPLIFON LTD", "AMPLIFON LTD", "JET 2 LTD", "MAGNUS LTD", "HILL QUAYS LLP", "AM ROYSTON LTD", "NORDEX UK LTD", "MOLOKAI LTD", "VEENO LTD", "RICSION LLP", "KPMG LLP", "BERG LEGAL LTD", "AMPLIFON LTD", "CLICKOO LTD", "CORUS UK LTD", "NQC LIMITED", "FRESH 5 LTD", "SWATCH LIMITED", "CITIBASE PLC", "VODAFONE LTD", "PARUM LTD", "I2 OFFICE LTD", "RSK GROUP PLC", "MAGNUS LTD", "AMPLIFON LTD", "PRIMESIGHT LTD", "PRIMESIGHT LTD", "CITIBASE PLC", "BDO LLP", "TREKGATE LTD", "SONQ LTD", "BT GROUP PLC", "PRIMESIGHT LTD", "CODETHINK LTD", "SQUARE OWL LTD", "DNATA LTD", "TOWBUCKLE LTD", "AMPLIFON LTD", "KINGSDEAN LLP", "O2 UK LIMITED", "MARSTON'S PLC", "ANS GROUP PLC", "GATELEY PLC", "QC LEGAL LTD", "S & F TEAM LTD", "VODAFONE LTD", "JEWSON LTD", "AMPLIFON LTD", "VODAFONE LTD", "ATICUS LAW LTD", "PRIMESIGHT LTD", "CHI LAND LTD", "DNATA LTD", "CITIBASE PLC", "A. BURNS LTD", "JOHN LEWIS PLC", "CLEARYS LTD", "VLL LIMITED", "AQORD LIMITED", "CITIBASE PLC", "QUILTER LTD", "VELFAC LIMITED", "AFLSP LIMITED", "KINGSDEAN LLP", "AMPLIFON LTD", "KINGSDEAN LLP", "EP1 LLP", "CITIBASE PLC", "AMPLIFON LTD", "VODAFONE LTD", "PRIMESIGHT LTD", "CITIBASE PLC", "BLUEMANTLE LTD", "SYNEXUS LTD", "PRIMESIGHT LTD", "BIZSPACE LTD", "KEIA LTD", "SHUDEHILL LTD", "AMPLIFON LTD", "CBRE LTD", "BT GROUP PLC", "UTC UK LIMITED", "ARQIVA LTD", "PRIMESIGHT LTD", "RICSION LLP", "ARQIVA LTD", "GRESHAM LLP", "NS EURO LTD", "ARQIVA LTD", "CHI LAND LTD", "ZERCO LIMITED", "O2 UK LIMITED", "O2 UK LIMITED", "BERG LEGAL LTD", "DNATA LTD", "AMPLIFON LTD", "TOWBUCKLE LTD", "CLEAR LAW LLP", "DNATA LTD", "NET SOURCE LTD", "MLM LTD", "CLUE HQ LTD", "PRIMESIGHT LTD", "GATELEY PLC", "CS2 LIMITED", "NORDEX UK LTD", "JOHN LEWIS PLC", "BERG LEGAL LTD", "AMPLIFON LTD", "VISTAUK LTD", "AMPLIFON LTD", "KIER GROUP PLC", "RICSION LLP", "BONDAX LIMITED", "PRIMESIGHT LTD", "SEIC LIMITED", "JOHN LEWIS PLC", "UFS LIMITED", "CITIBASE PLC", "THEHAIRLAB LTD", "AMPLIFON LTD", "NQC LIMITED", "2004 LIMITED", "AMPLIFON LTD", "BERG LEGAL LTD", "BERMANS LLP", "AMPLIFON LTD", "FYG LIMITED", "CITIBASE PLC", "CITIBASE PLC", "CITIBASE PLC", "NCG-MDL UK LTD", "VELFAC LIMITED", "MOTOR FUEL LTD", "REVEGATE LTD", "VALITUS LTD", "BIZSPACE LTD", "GRESHAM LLP", "CITIBASE PLC", "AMPLIFON LTD", "HILBY LIMITED", "BDO LLP", "KIER GROUP PLC", "AMPLIFON LTD", "RICSION LLP", "L'ARCHE LTD", "CBRE LTD", "VODAFONE LTD", "SACCO MANN LTD", "MOVVI LIMITED", "HSBC BANK PLC", "ATKINS LTD", "CITIBASE PLC", "ARQIVA LTD", "02 LTD", "SUSTRANS LTD", "CODETHINK LTD", "EP1 LLP", "CITIBASE PLC", "PRIMESIGHT LTD", "AMPLIFON LTD"], ["10442 HWY. 17", "11 MAIN STREET", "HWY. 544", "3991 HIGHWAY 7", "24 LONDON ROAD", "84 LYNDEN ROAD", "90 MOSLEY", "7260 HWY 535", "15 YORK STREET", "1 FIRST STREET", "2 NICHOLS ST", "15 MAIN STREET", "5-5085 HWY 69", "4220 INNES RD", "858 MARCH ROAD", "29 PARK AVENUE", "8260 HWY. # 27", "91 MILL STREET", "930 JONES ROAD", "11 PARK STREET", "25846 HWY 35", "1280 BATH ROAD", "4 KING STREET", "772200 HWY 10", "66 HURON WALK", "524 HWY 64", "17240 HWY 27", "17 PLAZA DRIVE", "777 BAY STREET", "HWY. 11", "4246 HWY. # 7", "1 JAMES STREET", "25 ELM STREET", "71 YORK STREET", "122 HWY. 8", "23 MILL STREET", "HWY. 71", "520 HURON ROAD", "55 MARY STREET", "UNIT #116", "779 NEY AVENUE", "11 GROSVENOR", "3 MAIN STREET", "646 DRUM ROAD", "40 B BROADWAY", "10403 HWY 124", "336 BAY STREET", "3132 HWY 169", "293 BAY STREET", "4793 HWY 11/17", "2 LAKE STREET", "10 SHAW STREET", "R.R. #1", "423 HWY. 11", "595 BAY STREET", "HWY. 69", "86 MAIN STREET", "76 MALL ROAD", "39 KING STREET", "3 CENTRE ST.", "1535 HWY 7A", "15 AMY CROFT", "33A HIGHWAY 11", "1700 KING ROAD", "18 DUNN STREET", "400 GIBB ST.", "41 MAIN STREET", "7 SIMCOE PLAZA"], ["1715 Route 46", "Borough Hall", "818 Lacey Road", "316 Route 50", "15 Park Avenue", "City Hall", "One Club Road", "314 Route 539", "City Hall", "916 River Road", "60 Main Street", "15 Main Street", "165 Broadway", "71 Main Street", "One Ace Road", "509 Route 523", "1385 Route 22", "965 Broadway", "601 Union Lane", "135 Broadway", "665 Radio Road", "City Hall", "55 Park Avenue", "61 Church Road", "171 Bay Avenue", "6 High Street", "277 Clove Road", "567 Boulevard", "9 Main Street", "2093 Rt. 57", "DeKorte Drive", "1180 Route 40", "540 Ridge Road", "12 Main Street", "443 Route 94", "65 Main Street", "5 Retreat Road", "JFK Plaza", "214 Ridge Road", "344 Broadway", "732 Broadway", "Village Hall", "City Hall", "City Hall", "38 Park Avenue", "5 Union Avenue", "50 North Road", "3943 Route 563", "1077 Route 202", "405 Mine Road", "431 Route 77", "2 Main Street", "77 Main Street", "22 Beach Road", "City Hall", "29 Park Avenue", "46 Main Street", "City Hall", "455 Broadway", "18 York Street", "P.O. Box 8", "20 Road C", "5 Brophy Lane", "500 Elm Avenue", "1 Salem Road", "491 Route 45", "901 Boulevard", "120 Route 522", "500 Main St.", "930 River Road", "City Hall", "400 Boulevard", "1 Cabin Circle", "748 River Road", "One Rumsey Way", "133 Route 645", "455 Hoes Lane", "286-B Route 46", "City Hall", "1000 Route 10"], ["245 W 17TH ST", "919 MISSION RD", "1021 S F ST", "6955 BROACH RD", "305 GRAPE ST", "201 N FM 1660", "224 W PAGE AVE", "1100 SOUTH ST", "1300 N MAYS ST", "504 CENTER AVE", "215 W OLMOS DR", "501 HAWKINS", "2451 C R 135", "417 WESLEY ST", "101 FAIRWAY DR", "5425 POLK ST", "503 URBAN LOOP", "4020 N 22ND ST", "407 AVENUE F", "9055 MANION DR", "2611 W MAIN ST", "4655 S FM 1258", "506 TOWN SQ", "629 FARLEY ST", "7680 HWY 377", "2706 82ND ST", "16333 HAFER RD", "4404 IDALOU RD", "3411 73RD ST", "201 N FM 1660", "711 76TH ST", "4000 FM 511", "20800 FM 150 W", "7303 BLANCO RD", "2609 MARKET ST", "605 BELKNAP PL", "1808 ONYX CV", "3031 W IH 10", "325 TENAHA ST", "4800 MANOR RD", "1035 E 11TH ST", "309 E 14TH ST", "2705 SWISS AVE", "114 EARLY BLVD", "912 BURNETT ST", "302 E RIECK RD", "430 S VINE AVE", "3804 AVENUE B", "2917 N 23RD ST", "901 AVENUE B", "6487 WHITBY RD", "3610 VINE ST"], ["Poland", "Bahrain", "Malta", "Lithuania", "Czech Republic", "Norway", "Finland", "Spain", "Switzerland", "Italy", "Austria", "Belgium", "Mexico", "Peru", "Cyprus", "Latvia", "Portugal", "Luxembourg", "United States", "Slovakia", "Spain", "Mexico", "South Africa", "Canada", "Estonia", "Greece", "Belgium", "Estonia", "Israel", "Sweden", "Hong Kong", "Austria", "Hong Kong", "Spain", "United Kingdom", "Belgium", "United Kingdom", "Puerto Rico", "Bulgaria", "Switzerland", "Finland", "Sweden", "Australia", "Lithuania", "Poland", "United Kingdom", "Ireland", "Brazil", "Sweden", "Japan", "Australia", "Canada", "Finland", "United Kingdom", "New Zealand", "Romania", "France", "Ireland", "El Salvador", "Denmark", "United States"], ["divvy", "bcycle_boulder", "bcycle_clemson", "cabi", "bcycle_elpaso", "bcycle_madison", "NYC", "bcycle_indego", "bcycle_austin", "bcycle_mcallen", "velgo", "sobi_hamilton", "hubway", "bcycle_bublr", "bcycle_broward", "velonet_cz", "cogo", "biketown_pdx", "bcycle_lametro", "bcycle_spokies", "bcycle_houston", "BA", "bishop_ranch", "bcycle_catbike", "ABU", "bcycle_kc", "bcycle_denver", "niceridemn"], ["Oldfield Lane", "Station Road", "Station Road", "Archway Road", "Eastern Avenue", "The Green", "Watford Road", "Barnet Hill", "Bridge Road", "High Road", "London Road", "Coppice Row", "Eastern Avenue", "Victoria Road", "West End Road", "Station Road", "New North Road", "George Lane", "Bowes Road", "Snakes Lane", "Kingsley Road", "Station Lane", "Long Lane", "Glebe Avenue", "Horsenden Lane", "Station Road", "Bramley Road", "Bath Road", "Forest Road", "Field End Road", "Bittacy Hill", "Church Lane", "The Bridge", "Chigwell Lane"], ["6/8/2016 11:17", "6/8/2016 11:19", "6/8/2016 11:13", "6/8/2016 11:17", "6/8/2016 11:04", "6/8/2016 11:14", "6/8/2016 11:29", "6/8/2016 11:24", "6/8/2016 11:16", "6/8/2016 11:25", "6/8/2016 11:20", "6/8/2016 11:06", "6/8/2016 11:30", "6/8/2016 11:13", "6/8/2016 11:24", "6/8/2016 11:21", "6/8/2016 11:03", "6/8/2016 11:22", "6/8/2016 11:21", "6/8/2016 11:11", "6/8/2016 11:30", "6/8/2016 11:11", "6/8/2016 11:25", "6/8/2016 11:19", "6/8/2016 11:12", "6/8/2016 11:25", "6/8/2016 11:20", "6/8/2016 11:12", "6/8/2016 11:12", "6/8/2016 11:26", "6/8/2016 11:26", "6/8/2016 11:19", "6/8/2016 11:12", "6/8/2016 11:15", "6/8/2016 11:29", "6/8/2016 11:10", "6/8/2016 11:22", "6/8/2016 11:24", "6/8/2016 11:03", "6/8/2016 11:24", "6/8/2016 11:29", "6/8/2016 11:26", "6/8/2016 11:11", "6/8/2016 11:24", "6/8/2016 11:28", "6/8/2016 11:07", "6/8/2016 11:25", "6/8/2016 11:26", "6/8/2016 11:23", "6/8/2016 11:22", "6/8/2016 11:27", "6/8/2016 11:02", "6/8/2016 11:19", "6/8/2016 11:19", "6/8/2016 11:07", "6/8/2016 11:12", "6/8/2016 11:19", "6/8/2016 11:12", "6/8/2016 11:04", "6/8/2016 11:15", "6/8/2016 11:24", "6/8/2016 11:16", "6/8/2016 11:27", "6/8/2016 11:27", "6/8/2016 11:09", "6/8/2016 11:24", "6/8/2016 11:11", "6/8/2016 11:02", "6/8/2016 11:16", "6/8/2016 11:04", "6/8/2016 11:22", "6/8/2016 11:10", "6/8/2016 11:13", "6/8/2016 11:02", "6/8/2016 11:07", "6/8/2016 11:02", "6/8/2016 11:29", "6/8/2016 11:24", "6/8/2016 11:09", "6/8/2016 11:09", "6/8/2016 11:11", "6/8/2016 11:03", "6/8/2016 11:04", "6/8/2016 11:04", "6/8/2016 11:13", "6/8/2016 11:10", "6/8/2016 11:05", "6/8/2016 11:20", "6/8/2016 11:03", "6/8/2016 11:04", "6/8/2016 11:18", "6/8/2016 11:13", "6/8/2016 11:16", "6/8/2016 11:20", "6/8/2016 11:09", "6/8/2016 11:16", "6/8/2016 11:31", "6/8/2016 11:05", "6/8/2016 11:17", "6/8/2016 11:26"], ["Kolkata, India", "Lucknow, India", "Kolkata, India", "Kanpur, India", "Shahdol, India", "Jaipur, India", "Sirohi, India", "Jaipur, India", "Delhi, India", "Chennai, India", "Delhi, India", "Kolkata, India", "Chennai, India", "Pune, India", "Kanpur, India", "Pune, India", "Lucknow, India", "Delhi, India", "Delhi, India", "Pune, India", "Jaipur, India", "Delhi, India", "Delhi, India", "Muktsar, India", "Delhi, India", "Jaipur, India", "Surat, India", "Pune, India", "Pune, India", "Pathri, India", "Delhi, India", "Delhi, India", "Jaipur, India", "Kolkata, India", "Jaipur, India", "Delhi, India", "Delhi, India", "Tohana, India", "Delhi, India", "Jaipur, India", "Chennai, India", "Surat, India", "Kanpur, India", "Delhi, India", "Surat, India", "Delhi, India", "Chennai, India", "Chennai, India", "Soron, India", "Kannur, India", "Delhi, India", "Itarsi, India", "Delhi, India", "Gokak, India", "Pihani, India", "Jaipur, India", "Chennai, India", "Jaipur, India", "Delhi, India", "Mungeli, India", "Delhi, India", "Mahe, India", "Delhi, India", "Surat, India", "Pune, India", "Sillod, India", "Chennai, India", "Delhi, India", "Surat, India", "Sambhal, India", "Lucknow, India", "Chennai, India", "Lucknow, India", "Pune, India", "Palghar, India", "Kanpur, India", "Delhi, India", "Raiganj, India", "Surat, India", "Delhi, India", "Delhi, India", "Lucknow, India", "Delhi, India", "Siwan, India", "Lucknow, India", "Kaithal, India", "Kanpur, India", "Kolkata, India", "Udgir, India", "Pune, India", "Lucknow, India", "Delhi, India", "Kolkata, India", "Delhi, India", "Wardha, India", "Chennai, India", "Surat, India", "Sanand, India", "Ladwa, India", "Munger, India", "Sankari, India", "Surat, India", "Kolkata, India", "Pune, India", "Lucknow, India", "Warora, India", "Delhi, India", "Delhi, India", "Kolkata, India", "Delhi, India", "Sillod, India", "Delhi, India", "Delhi, India", "Jaipur, India", "Habra, India", "Pune, India", "Chennai, India", "Lucknow, India", "Nuzvid, India", "Surat, India", "Kanpur, India", "Sitapur, India", "Delhi, India", "Kharar, India", "Kanpur, India", "Delhi, India", "Phaltan, India", "Delhi, India", "Chennai, India", "Chennai, India", "Delhi, India", "Kolkata, India", "Kanpur, India", "Chennai, India", "Kanpur, India", "Delhi, India", "Surat, India", "Morvi, India", "Delhi, India", "Ramdurg, India", "Lucknow, India", "Pune, India", "Surat, India", "Jammu, India", "Chennai, India", "Lucknow, India", "Delhi, India", "Chennai, India", "Diphu, India", "Chennai, India", "Lucknow, India", "Delhi, India", "Lucknow, India", "Chennai, India", "Bettiah, India", "Chennai, India", "Chennai, India", "Pune, India", "Tanuku, India", "Lucknow, India", "Kanpur, India", "Sasaram, India", "Jaipur, India", "Delhi, India", "Delhi, India", "Chennai, India", "Rajkot, India", "Delhi, India", "Karjat, India", "Chennai, India", "Jaipur, India", "Delhi, India", "Pune, India", "Manmad, India", "Jaipur, India", "Kanpur, India", "Pilani, India", "Jaipur, India", "Korba, India", "Delhi, India", "Kolkata, India", "Delhi, India", "Nashik, India", "Delhi, India", "Delhi, India", "Shahdol, India", "Surat, India", "Pune, India", "Tumsar, India", "Sironj, India", "Kanpur, India", "Delhi, India", "Mansa, India", "Surat, India", "Delhi, India", "Pune, India", "Lucknow, India", "Surat, India", "Jaipur, India", "Chennai, India", "Lucknow, India", "Jammu, India", "Margao, India", "Tenkasi, India", "Delhi, India", "Surat, India", "Delhi, India", "Tura, India", "Surat, India", "Chennai, India", "Chennai, India", "Chennai, India", "Koratla, India", "Durg, India", "Delhi, India", "Kanpur, India", "Delhi, India", "Delhi, India", "Barpeta, India", "Medak, India", "Sasaram, India", "Delhi, India", "Delhi, India", "Ujjain, India", "Delhi, India", "Sidhi, India", "Chennai, India", "Chennai, India", "Pune, India", "Chennai, India", "Jatani, India", "Lucknow, India", "Chennai, India", "Zamania, India", "Kolkata, India", "Jaipur, India", "Kanpur, India", "Delhi, India", "Kanpur, India", "Delhi, India", "Delhi, India", "Surat, India", "Tandur, India", "Kolkata, India", "Jaipur, India", "Pune, India", "Kanpur, India", "Chennai, India", "Lucknow, India", "Surat, India", "Delhi, India", "Lucknow, India", "Chennai, India", "Pune, India", "Pune, India", "Kolkata, India", "Mudhol, India", "Delhi, India", "Nawada, India", "Delhi, India", "Lucknow, India", "Pen, India", "Delhi, India", "Chennai, India", "Kolkata, India", "Chennai, India", "Pune, India", "Deesa, India", "Delhi, India", "Pune, India", "Lucknow, India", "Ujjain, India", "Kolkata, India", "Gurgaon, India", "Kanpur, India", "Chatra, India", "Jaipur, India", "Delhi, India", "Kurnool, India", "Pune, India", "Delhi, India", "Kanpur, India", "Jaipur, India", "Delhi, India", "Sonipat, India", "Delhi, India", "Delhi, India", "Kolkata, India", "Delhi, India", "Kolkata, India", "Chennai, India", "Ponnur, India", "Delhi, India", "Delhi, India", "Thoubal, India", "Jaipur, India", "Delhi, India", "Loni, India", "Surat, India", "Jind, India", "Delhi, India", "Pune, India", "Rudauli, India", "Ozar, India", "Delhi, India", "Delhi, India", "Nawapur, India", "Kolkata, India", "Upleta, India", "Lucknow, India", "Tiptur, India", "Lucknow, India", "Kolkata, India", "Delhi, India", "Tanuku, India", "Lucknow, India", "Chennai, India", "Delhi, India", "Delhi, India", "Pune, India", "Kanpur, India", "Lucknow, India", "Lalsot, India", "Lucknow, India", "Kanpur, India", "Chennai, India", "Tanda, India", "Delhi, India", "Surat, India", "Lahar, India", "Sherkot, India", "Purna, India", "Neemuch, India", "Lucknow, India", "Chennai, India", "Delhi, India", "Chennai, India", "Lucknow, India", "Chennai, India", "Kolkata, India", "Pune, India", "Delhi, India", "Delhi, India", "Jaipur, India", "Lucknow, India", "Buxar, India", "Chirala, India", "Jammu, India", "Pune, India", "Jaipur, India", "Jaipur, India", "Surat, India", "Delhi, India", "Bhainsa, India", "Delhi, India", "Delhi, India", "Itarsi, India", "Jaipur, India", "Jaipur, India", "Delhi, India", "Jaipur, India", "Rath, India", "Kolkata, India", "Purnia, India", "Umred, India", "Delhi, India", "Surat, India", "Delhi, India", "Kolkata, India", "Sanand, India", "Delhi, India", "Pune, India", "Delhi, India", "Kolkata, India", "Arvi, India", "Delhi, India", "Kanpur, India", "Delhi, India", "Kanpur, India", "Kolkata, India", "Lucknow, India", "Pune, India", "Pune, India", "Kanpur, India", "Lucknow, India", "Delhi, India", "Lucknow, India", "Lucknow, India", "Kanpur, India", "Chennai, India", "Delhi, India", "Delhi, India", "Delhi, India", "Delhi, India", "Raisen, India", "Delhi, India", "Delhi, India", "Jaipur, India", "Delhi, India", "Delhi, India", "Delhi, India", "Delhi, India", "Delhi, India", "Raipur, India", "Delhi, India", "Kolkata, India", "Kolkata, India", "Lucknow, India", "Sidhi, India", "Rajpura, India", "Kanpur, India", "Chennai, India", "Pihani, India", "Delhi, India", "Kanpur, India", "Chennai, India", "Kolkata, India", "Pune, India", "Lucknow, India", "Pune, India", "Jagraon, India", "Kanpur, India", "Jaipur, India", "Delhi, India", "Khanna, India", "Delhi, India", "Bhongir, India", "Chennai, India", "Jaipur, India", "Kolkata, India", "Delhi, India", "Kolkata, India", "Sambhal, India", "Pune, India", "Pune, India", "Wai, India", "Surat, India", "Chennai, India", "Delhi, India", "Pune, India", "Mandvi, India", "Nokha, India", "Lucknow, India", "Jaipur, India", "Kanpur, India", "Chennai, India", "Kolkata, India", "Delhi, India", "Shahdol, India", "Jaipur, India", "Sugauli, India", "Delhi, India", "Lanka, India", "Jaipur, India", "Araria, India", "Chennai, India", "Chennai, India", "Delhi, India", "Lucknow, India", "Lanka, India", "Delhi, India", "Shimla, India", "Lucknow, India", "Chennai, India", "Delhi, India", "Udaipur, India", "Surat, India", "Jaipur, India", "Pune, India", "Delhi, India", "Delhi, India", "Amreli, India", "Surat, India", "Jaipur, India", "Narnaul, India", "Delhi, India", "Chennai, India", "Surat, India", "Delhi, India", "Noorpur, India", "Delhi, India", "Pune, India", "Delhi, India", "Delhi, India", "Mokameh, India", "Delhi, India", "Kolkata, India", "Delhi, India", "Delhi, India", "Surat, India", "Kolkata, India", "Delhi, India", "Pune, India", "Chennai, India", "Khanna, India", "Lucknow, India", "Bikaner, India", "Rasra, India", "Gudur, India", "Lakheri, India"], ["THERAPIST", "ACCOUNTANT", "ACCOUNTANT", "TANNING SALON", "DESIGNER", "SALES/SERVICE", "THERAPIST", "SALES/SERVICE", "SALES/SERVICE", "CONSULTANT", "DENTIST", "CONCESSION", "RETAIL SALES", "RETAIL SALES", "CONSULTANT", "PUBLISHER", "RETAIL SALES", "THERAPIST", "CONSULTANT", "SALES/SERVICE", "SALES/SERVICE", "CONSULTANT", "WRITER", "RETAIL SALES", "ACCOUNTANT", "PRIVATE CLUB", "LAWYER", "THERAPIST", "CONSULTANT", "HOME CRAFTS", "BROKER", "PHYSICIAN", "HOME CRAFTS", "CONSULTANT", "CONSULTANT", "ACCOUNTANT", "MANUFACTURING", "MANUFACTURING", "RETAIL SALES", "GAMES ROOM", "CONSULTANT", "THERAPIST", "DESIGNER", "MISCELLANEOUS", "RESTAURANT", "SALES/SERVICE", "ACCOUNTANT", "RETAIL SALES", "RETAIL SALES", "RETAIL SALES", "GREENHOUSE", "RETAIL SALES", "SALES/SERVICE", "BROKER", "RETAIL SALES", "RESTAURANT", "RETAIL SALES", "MANUFACTURING", "RETAIL SALES", "CONSULTANT", "RENTAL AGENCY", "CONSULTANT", "SALES/SERVICE", "RETAIL SALES", "CHIROPRACTOR", "HOME CRAFTS", "RETAIL SALES", "BANK MACHINE", "RETAIL SALES", "SALES/SERVICE", "MECHANIC", "RESTAURANT", "THERAPIST", "RETAIL SALES", "VIDEO RENTALS", "ACCOUNTANT", "MANUFACTURING", "PHYSICIAN", "RETAIL SALES", "RETAIL SALES", "CONSULTANT", "SECURITY", "CONSULTANT", "ACCOUNTANT", "CONCESSION", "PHYSICIAN", "THERAPIST", "RESTAURANT", "DESIGNER", "SALES/SERVICE", "ACCOUNTANT", "PUBLISHER", "DRY CLEANER", "DENTIST", "CONSULTANT", "CONSULTANT", "RETAIL SALES", "RETAIL SALES", "CONSULTANT", "THERAPIST", "SALES/SERVICE", "CONSULTANT", "DENTIST", "BROKER", "STABLES", "SALES/SERVICE", "SALES/SERVICE", "THERAPIST", "APARTMENTS", "VIDEO RENTALS", "MISCELLANEOUS", "MANUFACTURING", "RETAIL SALES", "CONSULTANT", "RETAIL SALES", "RETAIL SALES", "PSYCHOLOGIST", "SALES/SERVICE", "RETAIL SALES", "VETERINARIAN", "RETAIL SALES", "ESCORT SERVICE", "CONSULTANT", "THERAPIST", "BROKER", "RETAIL SALES", "SALES/SERVICE", "PARKING LOT", "ARCHITECT", "CONSULTANT", "PUBLISHER", "THERAPIST", "ARTIST", "MANUFACTURING", "THERAPIST", "CONSULTANT", "CONSULTANT", "RESTAURANT", "CONSULTANT", "HOME CRAFTS", "RETAIL SALES", "RETAIL SALES", "RETAIL SALES", "VIDEO RENTALS", "RESTAURANT", "SALES/SERVICE", "ENGINEER", "APARTMENTS", "GOLF COURSE", "CONSULTANT", "RESTAURANT", "CONSULTANT", "DESIGNER", "MANUFACTURING", "CONSULTANT", "SALES/SERVICE", "SALES/SERVICE", "SALES/SERVICE", "RETAIL SALES", "TANNING SALON", "RESTAURANT", "ACCOUNTANT", "TRAVEL AGENCY", "SALES/SERVICE", "SALES/SERVICE", "PHYSICIAN", "DEVELOPER", "THERAPIST", "PARKING LOT", "CONSULTANT", "RETAIL SALES", "ACCOUNTANT", "THERAPIST", "RESTAURANT", "SALES/SERVICE", "KENNEL", "RETAIL SALES", "RESTAURANT", "CONSULTANT", "CONSULTANT", "APARTMENTS", "PHYSICIAN", "RESTAURANT", "RETAIL SALES", "RETAIL SALES", "THERAPIST", "RETAIL SALES", "APARTMENTS", "RETAIL SALES", "CONSULTANT", "MISCELLANEOUS", "RETAIL SALES", "MISCELLANEOUS", "ARTIST", "DESIGNER", "SALES/SERVICE", "RETAIL SALES", "CONSULTANT", "APARTMENTS", "RETAIL SALES", "CONSULTANT", "RETAIL SALES", "PHYSICIAN", "MANUFACTURING", "BROKER", "SALES/SERVICE", "RETAIL SALES", "RETAIL SALES", "SALES/SERVICE", "THERAPIST", "ENGINEER", "RESTAURANT", "MECHANIC", "RESTAURANT", "RETAIL SALES", "RETAIL SALES", "GREENHOUSE", "DESIGNER", "RETAIL SALES", "RETAIL SALES", "RESTAURANT", "APARTMENTS", "RESTAURANT", "PEST CONTROL", "CONCESSION", "RETAIL SALES", "ARTIST", "MANUFACTURING", "RETAIL SALES", "RETAIL SALES", "KENNEL", "TRAVEL AGENCY", "SALES/SERVICE", "CHIROPRACTOR", "SALES/SERVICE", "RETAIL SALES", "RETAIL SALES", "RETAIL SALES", "CLINIC", "RETAIL SALES", "RETAIL SALES", "APARTMENTS", "HOME CRAFTS", "BROKER", "MANUFACTURING", "RETAIL SALES", "ARCHITECT", "APPRAISER", "THERAPIST", "DRAFTSMAN", "RETAIL SALES", "SALES/SERVICE", "ACCOUNTANT", "CONSULTANT", "RETAIL SALES", "DRAFTSMAN", "CONSULTANT", "THERAPIST", "PHYSICIAN", "RETAIL SALES", "HOME CRAFTS", "PHYSICIAN", "VIDEO RENTALS", "RETAIL SALES", "LAUNDROMAT", "HOME CRAFTS", "RENTAL AGENCY", "RESTAURANT", "RETAIL SALES", "RESTAURANT", "CONSULTANT", "RETAIL SALES", "ESCORT SERVICE", "RENTAL AGENCY", "MANUFACTURING", "PSYCHOLOGIST", "CHIROPRACTOR", "SALES/SERVICE", "RETAIL SALES", "HOME CRAFTS", "SALES/SERVICE", "RESTAURANT", "DENTIST", "RETAIL SALES", "DESIGNER", "PHYSICIAN", "CONSULTANT", "CONSULTANT", "SALES/SERVICE", "RETAIL SALES", "CAR WASH", "RETAIL SALES", "OPTOMETRIST", "RETAIL SALES", "RETAIL SALES", "RETAIL SALES", "CONSULTANT", "SALES/SERVICE", "CLINIC", "NOTARY PUBLIC", "STABLES", "RETAIL SALES", "THERAPIST", "SALES/SERVICE", "CHIROPRACTOR", "PHYSICIAN", "ARTIST", "DRAFTSMAN", "RETAIL SALES", "SALES/SERVICE", "UPHOLSTERER", "ESCORT SERVICE", "ENGINEER", "CONSULTANT", "CONSULTANT", "RETAIL SALES", "SALES/SERVICE", "DESIGNER", "CONSULTANT", "PRINTER", "ART GALLERY", "CONSULTANT", "DESIGNER", "APARTMENTS", "RESTAURANT", "RETAIL SALES", "RETAIL SALES", "APARTMENTS", "CONSULTANT", "CONSULTANT", "CONSULTANT", "RETAIL SALES", "PUBLISHER", "RETAIL SALES", "APARTMENTS", "SALES/SERVICE", "RESTAURANT", "MANUFACTURING", "CONSULTANT", "CHIROPRACTOR", "RETAIL SALES", "RETAIL SALES", "RESTAURANT", "PSYCHOLOGIST", "DESIGNER", "CONSULTANT", "HOME CRAFTS", "DESIGNER", "PHYSICIAN", "RETAIL SALES", "SALES/SERVICE", "SALES/SERVICE", "CLINIC", "RETAIL SALES", "ARTIST", "DESIGNER", "RETAIL SALES", "CONSULTANT", "TRAVEL AGENCY", "THERAPIST", "CLINIC", "THERAPIST", "CONSULTANT", "ACCOUNTANT", "CONSULTANT", "HOME CRAFTS", "CATERING", "RENTAL AGENCY", "SALES/SERVICE", "RENTAL AGENCY", "DESIGNER", "PHYSICIAN", "RETAIL SALES", "RESTAURANT", "RETAIL SALES", "RETAIL SALES", "ACCOUNTANT", "SALES/SERVICE", "DESIGNER", "THERAPIST", "RETAIL SALES", "MANUFACTURING", "HOME CRAFTS", "RETAIL SALES", "MANUFACTURING", "PUBLISHER", "THERAPIST", "DESIGNER", "KENNEL", "CONSULTANT", "RETAIL SALES", "ARCHITECT", "THERAPIST", "CONSULTANT", "CONSULTANT", "CONSULTANT", "HOME CRAFTS", "CONSULTANT", "HOME CRAFTS", "RETAIL SALES", "RETAIL SALES", "RETAIL SALES", "CONSULTANT", "MANUFACTURING", "RESTAURANT", "RESTAURANT", "CLINIC", "RETAIL SALES", "RETAIL SALES", "RETAIL SALES", "SALES/SERVICE", "RETAIL SALES", "CLINIC", "SALES/SERVICE", "RETAIL SALES", "CONSULTANT", "ACCOUNTANT", "LAWYER", "RETAIL SALES", "RETAIL SALES", "SALES/SERVICE", "RETAIL SALES", "RETAIL SALES", "ARTIST", "CONSULTANT", "CONSULTANT", "TOUR COMPANY", "APARTMENTS", "CATERING", "CONSULTANT", "SALES/SERVICE", "CONSULTANT", "RETAIL SALES", "CONSULTANT", "CONSULTANT", "BROKER", "CONSULTANT", "PHYSICIAN", "RETAIL SALES", "LABORATORY", "DESIGNER", "THERAPIST", "DRAFTSMAN", "APARTMENTS", "PHYSICIAN", "HOME CRAFTS", "SALES/SERVICE", "VIDEO RENTALS", "ACCOUNTANT", "SALES/SERVICE", "RETAIL SALES", "WASTE REMOVAL", "HOME CRAFTS", "SALES/SERVICE", "RETAIL SALES", "ENGINEER", "SALES/SERVICE", "NURSERY", "MANUFACTURING", "SALES/SERVICE", "BANK MACHINE", "RETAIL SALES", "SALES/SERVICE", "GREENHOUSE", "RESTAURANT", "PHYSICIAN", "RESTAURANT", "HOME CRAFTS", "THERAPIST", "RETAIL SALES", "DENTIST", "TRAVEL AGENCY", "PUBLISHER", "ARTIST", "RESTAURANT", "RETAIL SALES", "ACCOUNTANT", "RETAIL SALES", "CONSULTANT", "CONSULTANT", "LAWYER", "CONSULTANT", "TOUR COMPANY", "DESIGNER", "CONSULTANT", "HOME CRAFTS", "RETAIL SALES", "CONSULTANT", "PUBLISHER", "CONSULTANT", "MECHANIC", "CONSULTANT", "APARTMENTS", "RETAIL SALES", "CHIROPRACTOR", "MISCELLANEOUS", "CONSULTANT", "RESTAURANT", "DESIGNER", "CONCESSION"], ["10.102057457", "0.10000000149", "10.1005554199", "10.1064777374", "10.1005554199", "0.10000000149", "10.1005496979", "10.1005496979", "10.1005554199", "10.1005554199", "10.1005554199", "10.1050443649", "9.76512527466", "10.1005554199", "10.1005554199", "10.1083011627", "10.1125793457", "10.1033201218", "10.1005554199", "10.1012220383", "0.10000000149", "10.101275444", "10.1005554199", "10.1005554199", "10.1005554199", "10.1005554199", "10.1005554199", "10.1049222946", "10.1005554199", "10.1005554199", "10.1005496979", "10.1005554199", "10.1005554199", "10.1005554199", "0.10000000149", "10.1036634445", "10.1005554199", "10.1064376831", "10.1005496979", "0.10000000149", "10.1005496979", "10.0135822296", "10.1005554199", "10.1005496979", "10.1005554199", "10.1015195847", "10.1005554199", "10.1005496979", "10.1035261154", "10.1005554199", "10.1005554199", "10.1005554199", "10.1024236679", "10.0807752609", "10.1005554199", "10.1005496979", "10.1005554199", "9.9271402359", "10.1005554199", "10.1005554199", "10.1040487289", "10.1005554199", "10.1005496979", "10.1005554199", "10.1125793457", "10.1005554199", "10.1005554199", "10.1016645432", "10.1005554199", "10.1006727219", "0.10000000149", "0.10000000149", "10.0135822296", "10.1023216248", "10.1005554199", "10.1056337357", "10.1005554199", "10.1005554199", "10.1005554199", "10.1005554199", "10.0677747726", "9.9842300415", "10.1012220383", "10.101565361", "10.1005496979", "9.98930549622", "10.0942821503", "10.1004219055", "10.1005554199", "10.1018896103", "0.10000000149", "10.1005554199", "10.1005554199", "10.1005554199", "10.1033945084", "9.97742080688", "10.1037855148", "10.0881185532", "0.10000000149", "10.1099472046", "10.1028528214", "10.1026420593", "10.0582828522", "10.1005554199", "10.1005496979", "10.1005496979", "10.1005554199", "10.1005496979", "10.1005496979", "10.1005554199", "10.1005554199", "10.1005554199", "9.85353565216", "10.0934705734", "10.1005554199", "9.94170570374", "10.1005554199", "10.1005554199", "10.1005554199", "10.1005554199", "10.1005554199", "10.1014966965", "0.10000000149", "0.366541832685", "10.1013441086", "10.1005554199", "10.1005554199", "10.1005554199", "10.10384655", "10.1005554199", "10.1050777435", "0.10000000149", "9.9145488739", "10.1014585495", "10.1005496979", "10.1005554199", "10.1060495377", "10.1005554199", "10.1005554199", "10.1005554199", "10.1005554199", "10.081817627", "10.1005554199", "10.0180273056", "10.1005496979", "10.1005496979", "10.0912065506", "10.1005554199", "10.1032419205", "10.0907020569", "10.1005554199", "10.0813379288", "10.1005554199", "10.1005554199", "10.1005554199", "10.1005554199", "10.1049222946", "10.1008329391", "10.1005554199", "10.1005496979", "10.1005554199", "10.1005554199", "10.1005496979", "10.1040744781", "10.1005496979", "10.1005496979", "10.1005554199", "10.1005496979", "10.0262899399", "10.0808582306", "10.1005496979", "10.1028051376", "10.1005554199", "10.1005554199", "10.1005554199", "10.1005554199", "10.1005554199", "10.1005496979", "10.1005554199", "10.1005554199", "0.10000000149", "10.1005554199", "10.1005496979", "10.081325531", "10.1125793457", "10.1005554199", "10.1005496979", "10.1005554199", "10.1005554199", "10.1005554199", "10.1005554199", "10.1005496979", "10.0749883652", "10.1005554199", "10.0875844955", "10.1059980392", "10.1005496979", "10.1005554199", "10.1022176743", "10.1005496979", "10.0342025757", "10.1049222946", "10.1089096069", "10.1005554199", "10.1005554199", "10.1005554199", "10.1005554199", "10.1028051376", "10.1005554199", "10.1005554199", "10.1036863327", "10.1005554199", "10.1086034775", "10.1005554199", "10.1005496979", "10.0773868561", "10.1005554199", "10.1005554199", "10.1005554199", "10.1005554199", "10.1005554199", "10.1005554199", "10.1005554199", "10.1005554199", "10.1027336121", "9.85353565216", "10.1005554199", "10.1085004807", "10.1005554199", "10.1005554199", "10.1005496979", "10.0893125534", "10.1005554199", "10.1010084152", "10.0849866867", "10.1005554199", "0.10000000149", "10.1005554199", "10.1005554199", "10.1005554199", "10.1005554199", "10.1005496979", "10.1005554199", "10.1077375412", "10.1005496979", "10.1005554199", "10.0930109024", "0.10000000149", "10.1005554199", "10.1005554199", "10.1005554199", "10.1005554199", "10.1005496979", "10.1005554199", "10.1040010452", "10.1005496979", "10.0828380585", "10.1005496979", "10.1125793457", "10.1085004807", "10.0864133835", "10.1005554199", "0.10000000149", "10.1005554199", "0.10000000149", "10.1005554199", "10.1005554199", "10.1024236679", "10.1005554199", "10.1005554199", "9.79291534424", "10.1005554199", "10.1005554199", "10.1005554199", "10.1005496979", "10.1005554199", "10.1005554199", "10.1005554199", "10.1005496979", "10.1040172577", "10.1037855148", "10.1005554199", "10.1005554199", "9.9145488739", "10.1005554199", "10.102057457", "10.1005554199", "10.1099472046", "10.1005554199", "9.72495079041", "0.10000000149", "7.62223100662", "10.1005496979", "10.1005554199", "10.1005554199", "10.1005554199", "10.1005554199", "10.1005554199", "10.1043186188", "10.1041679382", "10.1005496979", "10.0935907364", "10.0823040009", "9.89000415802", "10.1005554199", "10.1044359207", "10.1005554199", "10.1005554199", "10.1005554199", "10.1005496979", "10.1025352478", "10.1011228561", "10.0677242279", "10.1005496979", "10.1036128998", "10.1005496979", "0.10000000149", "10.1005496979", "10.1005496979", "10.1014966965", "10.1005554199", "10.1005554199", "10.083896637", "10.1005554199", "10.1005496979", "9.99486923218", "10.1067733765", "10.093752861", "10.1035165787", "10.1005554199", "10.097489357", "10.1005554199", "10.0934305191", "10.1005554199", "10.1005496979", "10.1005554199", "10.1005496979", "9.96368980408", "10.0992736816", "10.1090698242", "10.1099472046", "10.1005554199", "9.99486923218", "10.1005554199", "10.1005554199", "10.1059980392", "0.10000000149", "10.1005554199", "10.1005554199", "10.1005554199", "10.1005496979", "10.1005554199", "10.100733757", "10.1005496979", "10.1021108627", "10.0865097046", "10.1005554199", "10.1005496979", "10.1005496979", "10.1005496979", "10.1005554199", "10.102560997", "10.1005554199", "10.0807752609", "10.1041240692", "10.1005554199", "10.1043186188", "10.1005554199", "10.1059627533", "10.1005554199", "10.1005554199", "10.1005554199", "10.1005554199", "10.1005554199", "10.0689506531", "10.1005554199", "10.1005554199", "10.1005554199", "10.0808582306", "10.0693979263", "10.1005554199", "9.07366275787", "10.1080417633", "10.1089096069", "10.1005496979", "10.1005554199", "10.1005554199", "10.1059627533", "10.1009397507", "10.1005554199", "10.1005496979", "10.1005554199", "10.1059980392", "10.1005554199", "10.1005554199", "10.1005554199", "10.1005554199", "10.1005496979", "10.1056041718", "10.1005554199", "10.1005554199", "10.1064376831", "10.1094923019", "10.1005554199", "10.1005554199", "10.1005554199", "10.1005554199", "10.1005554199", "10.1005554199", "10.1006727219", "10.1005554199", "10.1005496979", "10.1037321091", "10.1005496979", "10.0922460556", "10.1005496979", "10.1018896103", "10.1005554199", "10.1005554199", "10.0305843353", "10.1005496979", "9.90563869476", "10.1005554199", "10.1005554199", "10.1005554199", "10.1005496979", "10.1005496979", "10.1005496979", "10.0934228897", "10.1005554199", "10.1035251617", "10.1005554199", "10.1005496979", "10.101565361", "10.1020269394", "10.1005554199", "10.1013898849", "10.1011762619", "10.1005554199", "0.115932226181", "10.1005554199", "10.1005554199", "10.105802536", "10.1050958633", "10.1005554199", "10.106171608", "10.1005554199", "10.1005735397", "10.1005554199", "10.1005496979", "10.1011152267", "10.1005554199", "10.1005496979", "0.10000000149", "0.10000000149", "10.1005554199", "10.1005554199", "10.1037321091", "10.1005554199", "10.1005554199", "10.0689477921", "10.1005554199", "10.1005496979", "10.1007108688", "10.1005554199", "10.1005554199", "10.0843153", "10.1005554199", "10.101061821", "0.10000000149", "10.1005496979", "10.1005554199", "10.1005496979", "10.0941429138", "10.1005554199", "10.1032419205", "10.1005554199", "10.1005496979", "10.1005496979", "10.066368103", "10.1005554199", "10.1005554199", "10.1005554199", "10.1005554199", "10.1005554199", "10.102057457", "10.1040010452", "10.0865097046", "10.1005554199", "10.1005496979", "10.0904636383", "10.1005554199", "10.0870504379", "10.1006040573", "10.1005554199", "10.0941429138", "10.1013441086", "10.1005496979", "10.1056337357", "10.110332489"], ["Boston Globe", "Deseret News", "Fresno Bee", "Boston Globe", "Plain Dealer", "Press-Register", "Slate", "Deseret News", "Deseret News", "News Tribune", "Politico", "Times Union", "Boston Herald", "Detroit News", "Boston Globe", "BBC America", "Boston Globe", "Tribune-Review", "Tulsa World", "Hill", "Baltimore Sun", "Boston.com", "Boston Globe", "Seattle Times", "Reading Eagle", "Boston.com", "Deseret News", "State, The", "Atlantic, The", "Oklahoman", "Politico", "Boston Globe", "Boston Globe", "Deseret News", "Newsday"], ["ST JAMES COURT", "ALBION STREET", "MANCHESTER", "MANCHESTER", "MANCHESTER", "MANCHESTER", "ALBION WHARF", "STRANGEWAYS", "BROOK HOUSE", "MANCHESTER", "MANCHESTER", "MANCHESTER", "MANCHESTER", "76 KING STREET", "MADISON HOUSE", "MANCHESTER", "MANCHESTER", "45 DALE STREET", "MANCHESTER", "FOURWAYS HOUSE", "CANADA HOUSE", "BROWNLEY COURT", "CHATLEY STREET", "MANCHESTER", "163 KINGSWAY", "MANCHESTER", "MANCHESTER", "ALLIANCE HOUSE", "MANCHESTER", "69 PICCADILLY", "ALBION STREET", "MANCHESTER", "BLOSSOM STREET", "67 KING STREET", "DEANSGATE", "MANCHESTER", "FORMER SCHOOL", "VICTORIA MILL", "CITY CENTRE", "BANKLEY MILL", "BRUNSWICK MILL", "BARTLE HOUSE", "FOUNTAIN HOUSE", "LEE HOUSE", "WILSONS PARK", "23 QUAY STREET", "CITY CENTRE", "MANCHESTER", "MANCHESTER", "MANCHESTER", "MANCHESTER", "MANCHESTER", "MANCHESTER", "MANCHESTER", "MANCHESTER", "6 ARCHWAY", "KING STREET", "SUNLIGHT HOUSE", "MANCHESTER", "BARTLE HOUSE", "MANCHESTER", "WELCOMB STREET", "HABIB HOUSE", "LEVENSHULME", "ALBION WHARF", "WENDOVER ROAD", "55 KING STREET", "140 KINGSWAY", "92 DEANSGATE", "BRUNSWICK MILL", "MANCHESTER", "BARTLE HOUSE", "MANCHESTER", "PICCADILLY", "MANCHESTER", "MANCHESTER", "NORFOLK STREET"], ["0.702924393723", "0.748895434462", "0.863330696203", "1.0", "0.601941747573", "0.658629441624", "1.0", "1.0", "1.0", "1.0", "1.0", "0.75", "1.0", "0.75", "0.75", "0.747238586156", "0.561328125", "0.5", "0.75", "0.5625", "0.5625", "1.0", "0.804207119741", "0.5625", "0.671548117155", "0.5625", "1.0", "0.745044052863", "0.720796460177", "1.0", "1.0", "1.0", "1.0", "0.966708542714", "1.0", "0.666666666667", "0.966708542714", "1.0", "1.0", "0.715608465608", "1.0", "1.0", "0.56338028169", "0.84375", "0.735766423358", "0.666666666667", "0.7484375", "0.834564541213", "0.678471248247", "0.5625", "1.0", "0.631765899865", "1.0", "0.75", "1.0", "0.5625", "1.0", "0.497426470588", "0.746139705882", "0.799657534247", "0.75", "0.75", "1.0", "0.56338028169", "0.75", "1.0", "0.5625", "0.498159057437", "0.75", "0.744548286604", "1.0", "1.0", "1.0", "1.0", "0.84375", "0.75", "1.0", "0.75", "0.75", "0.499263622975", "0.75", "1.0", "0.996318114875", "0.5", "0.75", "1.0", "0.653026134801", "0.666666666667", "0.845070422535", "0.75", "1.0", "0.75", "1.0", "0.75", "0.845070422535", "0.75", "0.5", "0.75", "0.803816793893", "0.84375", "0.994852941176", "0.63875", "0.870701513067", "0.561328125", "0.75", "0.75", "0.746139705882", "0.842354533153", "0.842354533153", "0.747238586156", "0.495594713656", "0.75", "0.75", "1.0", "0.75", "0.75", "0.932055749129", "0.991007194245", "1.0", "1.0", "0.75", "0.75", "0.747238586156", "0.636439267887", "0.63875", "0.5", "1.0", "0.84375", "0.888443017657", "0.561328125", "1.0", "1.0", "0.747238586156", "1.0", "1.0", "1.0", "0.84375", "0.84375", "0.745044052863", "1.0", "0.5625", "1.0", "1.0", "0.5", "0.75", "0.789267015707", "0.84375", "0.75", "1.0", "0.75", "1.0", "0.75", "0.57765451664", "0.736842105263", "1.0", "0.84375", "1.0", "0.75", "0.996318114875", "0.666666666667", "0.5625", "0.746139705882", "1.0", "0.666666666667", "1.0", "1.0", "0.843495934959", "0.75", "0.75", "0.5625", "1.0", "0.5", "1.0", "0.75", "0.5625", "0.666666666667", "0.75", "1.0", "0.792613636364", "1.0", "1.0", "0.84375", "1.0", "0.994852941176", "0.666666666667", "0.747269890796", "0.75", "0.75", "1.0", "1.0", "0.911392405063", "0.75", "1.0", "0.746139705882", "0.8419921875", "1.0", "0.57765451664", "0.75", "1.0", "0.5", "0.993392070485", "0.747238586156", "1.0", "1.0", "1.0", "1.0", "0.5", "1.0", "0.745709828393", "0.499263622975", "1.0", "0.942060085837", "1.0", "0.42174796748", "0.993392070485", "0.5", "0.666666666667", "1.0", "0.56338028169", "0.912068965517", "0.5625", "0.556376360809", "0.531155015198", "0.75", "0.75", "0.678471248247", "0.660792951542", "1.0", "1.0", "1.0", "0.75", "1.0", "0.7484375", "1.0", "0.663235294118", "1.0", "1.0", "0.5", "0.5", "0.75", "0.75", "0.75", "1.0", "0.492324561404", "1.0", "0.75", "1.0", "1.0", "0.666666666667", "0.75", "0.5625", "1.0", "1.0", "1.0", "0.5625", "1.0", "0.63262195122", "0.666666666667", "0.84375", "0.75", "0.5625", "1.0", "0.75", "1.0", "1.0", "0.84375", "1.0", "1.0", "1.0", "1.0", "1.0", "1.0", "0.713414634146", "0.576740506329", "0.75", "1.0", "0.669128508124", "1.0", "1.0", "0.75", "1.0", "0.57345971564", "1.0", "0.490510948905", "0.84375", "0.75", "1.0", "0.994852941176", "0.75", "1.0", "0.739568081991", "1.0", "0.842354533153", "1.0", "1.0", "0.529411764706", "1.0", "1.0", "1.0", "1.0", "0.75", "0.5625", "0.84375", "0.75", "0.75", "1.0", "0.75", "1.0", "0.75", "1.0", "1.0", "0.75", "0.735294117647", "0.5", "0.75", "0.747238586156", "0.535877862595", "0.84375", "1.0", "0.97238372093", "0.5625", "1.0", "0.84375", "0.75", "1.0", "1.0", "0.5625", "0.75", "1.0", "1.0", "1.0", "0.681073025335", "0.99852724595", "1.0", "0.411096256684", "0.75", "0.5625", "0.75", "0.75", "0.599757673667", "1.0", "1.0", "0.994852941176", "0.75", "1.0", "0.989736070381", "0.740482233503", "0.5", "1.0", "0.5", "1.0", "0.748895434462", "1.0", "0.728813559322", "1.0", "1.0", "0.666666666667", "0.75", "0.642547033285", "0.5625", "1.0", "1.0", "1.0", "1.0", "0.84375", "0.56375", "0.75", "1.0", "0.75276957164", "0.84375", "1.0", "1.0", "1.0", "1.0", "1.0", "0.5", "1.0", "0.75", "1.0", "1.0", "1.0", "1.0", "0.828488372093", "0.748895434462", "0.84375", "0.666666666667", "0.75", "0.842354533153", "1.0", "1.0", "0.75", "1.0", "0.666666666667", "0.5625", "0.421177266576", "0.5625", "0.84815830721", "0.599757673667", "1.0", "1.0", "0.677521008403", "0.989736070381", "0.75", "0.75", "0.842354533153", "1.0", "0.793816388467", "1.0", "0.75", "0.666666666667", "1.0", "0.993392070485", "1.0", "0.496696035242", "0.75", "0.5", "1.0", "1.0", "1.0", "0.5", "0.745044052863", "0.875", "0.691176470588", "0.5", "0.374521072797", "1.0", "0.75", "1.0", "0.75", "0.75", "1.0", "0.963820549928", "0.75", "1.0", "0.472779369628", "0.75", "0.987536656891", "0.5", "1.0", "0.575553797468", "0.532453416149", "0.84375", "0.578296703297", "0.5", "0.5625", "1.0", "1.0", "0.920792079208", "0.75", "1.0", "0.842354533153", "0.84375", "1.0", "0.7484375", "0.976785714286", "0.522624434389", "0.84375", "1.0", "0.5625", "0.665684830633", "0.741835147745", "1.0", "1.0", "0.5", "1.0", "1.0", "0.599757673667", "0.84375", "1.0", "1.0", "0.5625", "1.0", "1.0", "0.84375", "0.75", "0.498159057437", "0.75", "0.690690690691", "0.854757929883", "1.0", "0.75", "0.75", "0.84375", "0.739543726236", "1.0", "1.0", "1.0", "0.75", "0.75", "0.75", "1.0", "1.0", "1.0", "0.502588757396", "0.843495934959", "1.0", "0.544615384615", "1.0", "1.0", "0.75"], ["Ri (New Earth)", "Io (New Earth)", "Id (New Earth)", "Aa (New Earth)", "Santa Claus", "Yz (New Earth)", "DJ (New Earth)", "GenderTest", "Monitor Bob"], ["Ficus 97", "Xylopia sp593", "Vitex doniana", "Panda oleosa", "Ficus mucuso", "Parkia bicolor", "Cola lizae", "Ongokea gore"], ["Felix E. Guda", "Froilan Parado", "Rosita De Asis", "June M. Belen", "Rico B. Geron", "Lorna R. Derez", "Myren Sastado", "Cel Calma"], ["New York", "New York", "Greenwich", "New York", "Richmond", "Cleveland", "Scarsdale", "Milwaukee", "Bala Cynwyd", "St. Louis", "Berwyn", "New York", "New York", "Chicago", "New York", "New York", "New York", "Dallas", "New York", "Boston", "Saint Louis", "Chicago", "New York", "New York", "New York", "Manhattan", "Jersey City", "Chicago", "Richmond", "New York", "Lenexa", "New York", "Houston", "New York", "New York", "Jersey City", "Jersey City", "New York", "New York", "New York", "New York", "Los Angeles", "New York", "Los Angeles", "New York", "New York", "New York", "Chicago", "New York", "Mount Pleasant", "Little Rock", "New York", "New York", "Plantation", "Charlotte", "Boston", "New York", "New York", "New York", "New York", "Minneapolis", "New York", "New York", "New York", "New York", "Chicago", "New York", "New York", "Purchase", "Purchase", "New York", "New York", "New York", "New York", "New York", "New York", "Boston", "Dallas", "St. Louis", "New York", "New York", "New York", "New York", "Chicago", "Chicago", "New York", "New York", "Boston", "New York", "New York", "Dallas", "New York", "New York", "Boston", "New York", "New York", "Great Neck", "New York", "New York", "New York", "New York", "New York", "New York", "New York", "Conshohocken", "New York", "New York", "New York", "New York", "New York", "New York", "Jersey City", "New York", "New York", "Philadelphia", "New York", "Austin", "New York", "New York", "New York", "Chicago", "Boston", "New York", "New York", "New York", "New York", "New York", "New York", "Chicago", "New York", "New York", "Coral Gables", "Sea Cliff", "New York", "New York", "Weehawken", "New York", "Chicago", "New York", "New York", "Kansas City", "Louisville", "New York", "New York", "Newtown", "New York", "New York", "New York", "Los Angeles", "Geneva", "New York", "New York", "Chicago", "New York", "New York", "New York"], ["NOT APPLICABLE", "NOT APPLICABLE", "MASSAGE", "NOT APPLICABLE", "LANDSCAPING", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "CARPENTER", "CONSULTANT", "JANITORIAL", "OFFICE SUPPLY", "FOOD/BEVERAGE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "PHOTOGRAPHER", "NOT APPLICABLE", "NOT APPLICABLE", "MASSAGE", "NOT APPLICABLE", "JANITORIAL", "NOT APPLICABLE", "NOT APPLICABLE", "FOOD/GROCERIES", "NOT APPLICABLE", "PAINTING", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "ROOFING", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "JANITORIAL", "WEDDING", "NOT APPLICABLE", "BUILDING", "NOT APPLICABLE", "PAINTING", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "MASSAGE", "NOT APPLICABLE", "NOT APPLICABLE", "FLOORING", "FLOORING", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "PLUMBING", "NOT APPLICABLE", "TAXIDERMIST", "SECOND HAND", "NOT APPLICABLE", "MORTGAGES", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "LANDSCAPING", "LATHING", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "TAKEOUT/DELI", "NOT APPLICABLE", "NOT APPLICABLE", "MASSAGE", "NOT APPLICABLE", "CONSULTANT", "MASSAGE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "LANDSCAPING", "NOT APPLICABLE", "NOT APPLICABLE", "ELECTRICAL", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "PHOTOGRAPHER", "RENOVATIONS", "JANITORIAL", "OPTICAL", "LANDSCAPING", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "CARPENTER", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "MASSAGE", "NOT APPLICABLE", "BAKERY", "CLOTHING", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "VIDEO GAMES", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "PHOTOGRAPHER", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "LANDSCAPING", "NOT APPLICABLE", "REPAIR SERVICE", "NOT APPLICABLE", "CARPENTER", "NOT APPLICABLE", "CARPENTER", "NOT APPLICABLE", "BUILDING", "ELECTRICAL", "NOT APPLICABLE", "NOT APPLICABLE", "RENOVATIONS", "NOT APPLICABLE", "NOT APPLICABLE", "INSTALLATIONS", "INSTALLATIONS", "CARPENTER", "NOT APPLICABLE", "CONSULTANT", "NOT APPLICABLE", "NOT APPLICABLE", "WELDING", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "JANITORIAL", "NOT APPLICABLE", "NOT APPLICABLE", "MANAGEMENT", "NOT APPLICABLE", "NOT APPLICABLE", "LANDSCAPING", "NOT APPLICABLE", "NOT APPLICABLE", "CLOTHING", "ELECTRICAL", "NOT APPLICABLE", "POOL HALL", "LATHING", "NOT APPLICABLE", "NOT APPLICABLE", "CABINET MAKING", "NOT APPLICABLE", "PAINTING", "BAKERY", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "TRUCKING", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "JANITORIAL", "NOT APPLICABLE", "NOT APPLICABLE", "POOL HALL", "NOT APPLICABLE", "CONFECTIONER", "HEATING", "TREE SURGEON", "ROOFING", "BUILDING", "NOT APPLICABLE", "NOT APPLICABLE", "WEDDING", "CONSULTANT", "MECHANICAL", "NOT APPLICABLE", "BUILDING", "NOT APPLICABLE", "CONSULTANT", "NOT APPLICABLE", "NOT APPLICABLE", "RENOVATIONS", "NOT APPLICABLE", "NOT APPLICABLE", "REPAIR SERVICE", "CARPENTER", "NOT APPLICABLE", "NOT APPLICABLE", "REPAIR SERVICE", "NOT APPLICABLE", "BUILDING", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "PAINTING", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "LANDSCAPING", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "POOL HALL", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "RENOVATIONS", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "FOOD/GROCERIES", "INSTALLATIONS", "MASSAGE", "NOT APPLICABLE", "NOT APPLICABLE", "ELECTRICAL", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "BUILDING", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "MASSAGE", "INSURANCE", "NOT APPLICABLE", "NOT APPLICABLE", "REPAIR SERVICE", "NOT APPLICABLE", "NOT APPLICABLE", "PAINTING", "NOT APPLICABLE", "NOT APPLICABLE", "POOL HALL", "NOT APPLICABLE", "PHYSIOTHERAPY", "MOVING COMPANY", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "RENOVATIONS", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "JANITORIAL", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "MORTGAGES", "NOT APPLICABLE", "NOT APPLICABLE", "PLUMBING", "NOT APPLICABLE", "POOL HALL", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "MASSAGE", "NOT APPLICABLE", "BUILDING", "BUILDING", "TAXIDERMIST", "NOT APPLICABLE", "STOCKS & BONDS", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "EDUCATIONAL", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "WEDDING", "NOT APPLICABLE", "HEATING", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "FLOORING", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "MORTGAGES", "RENOVATIONS", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "MASSAGE", "TAKEOUT/DELI", "NOT APPLICABLE", "POOL HALL", "NOT APPLICABLE", "JANITORIAL", "NOT APPLICABLE", "NOT APPLICABLE", "BUILDING", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "FLORIST", "CLOTHING", "RENOVATIONS", "NOT APPLICABLE", "NOT APPLICABLE", "CABINET MAKING", "NOT APPLICABLE", "TAKEOUT/DELI", "NOT APPLICABLE", "PLUMBING", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "MASSAGE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "CONSULTANT", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "PHOTOGRAPHER", "CARPENTER", "NOT APPLICABLE", "NOT APPLICABLE", "PHOTOGRAPHER", "NOT APPLICABLE", "OPTICAL", "MASSAGE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "FLORIST", "NOT APPLICABLE", "LATHING", "BUILDING", "ELECTRICAL", "CONCRETE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "COFFEE SHOP", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "PAINTING", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "REPAIR SERVICE", "NOT APPLICABLE", "MANAGEMENT", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "CONSULTANT", "CARPENTER", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "PAINTING", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "ELECTRICAL", "PHOTOGRAPHER", "NOT APPLICABLE", "REPAIR SERVICE", "STOCKS & BONDS", "LANDSCAPING", "NOT APPLICABLE", "NOT APPLICABLE", "ELECTRICAL", "NOT APPLICABLE", "NOT APPLICABLE", "MASSAGE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "ENGINEERING", "CARPENTER", "NOT APPLICABLE", "CONSULTANT", "NOT APPLICABLE", "INSTALLATIONS", "LANDSCAPING", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "HEATING", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "BUILDING", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "CONSULTANT", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "BUILDING", "NOT APPLICABLE", "NOT APPLICABLE", "NOT APPLICABLE", "ELECTRICAL", "PAINTING", "NOT APPLICABLE", "WEDDING", "NOT APPLICABLE"], ["Principal", "Vice Principal", "Superintendent", "Other", "Superintendent", "Superintendent", "Other", "Superintendent", "Vice Principal", "Superintendent", "Superintendent", "Principal", "Other", "Superintendent", "Superintendent", "Principal", "Superintendent", "Superintendent", "Superintendent", "Vice Principal", "Superintendent", "Other", "Vice Principal", "Other", "Vice Principal", "Superintendent", "Superintendent", "Superintendent", "Other", "Other", "Superintendent", "Accountant", "Other", "Superintendent", "Other", "Principal", "Psychologist", "Other", "Superintendent", "Superintendent", "Other", "Other", "Other", "Other", "Other", "Superintendent", "Other", "Other", "Superintendent", "Other", "Other", "Other", "Superintendent", "Principal", "Other", "Superintendent", "Superintendent", "Principal", "Other", "Other", "Superintendent", "Other", "Principal", "Other", "Other", "Principal", "Accountant", "Superintendent", "Secretary", "Superintendent", "Superintendent", "Superintendent", "Superintendent", "Principal", "Other", "Superintendent", "Other", "Superintendent", "Other", "Superintendent", "Other", "Superintendent", "Other", "Superintendent", "Other", "Other", "Principal", "Other", "Secretary", "Superintendent", "Principal", "Other", "Other", "Superintendent", "Other", "Superintendent", "Accountant", "Superintendent", "Other", "Superintendent", "Superintendent", "Superintendent", "Superintendent", "Other", "Other", "Superintendent", "Superintendent", "Other", "Secretary", "Other", "Superintendent", "Other", "Other", "Other", "Superintendent", "Superintendent", "Superintendent", "Other", "Secretary", "Other", "Principal", "Superintendent", "Superintendent", "Superintendent", "Superintendent", "Superintendent", "Superintendent", "Principal", "Accountant", "Superintendent", "Superintendent", "Other", "Principal", "Superintendent", "Other", "Principal", "Other", "Vice Principal", "Other", "Attorney", "Principal", "Superintendent", "Principal", "Superintendent", "Principal", "Other", "Other", "Other", "Superintendent", "Superintendent", "Other", "Superintendent", "Principal", "Other", "Other", "Principal", "Principal", "Teacher", "Other", "Secretary", "Other", "Other", "Other", "Secretary", "Principal", "Superintendent", "Other", "Superintendent", "Accountant", "Other", "Superintendent", "Principal", "Secretary", "Principal", "Other", "Superintendent", "Other", "Superintendent", "Vice Principal", "Superintendent", "Other", "Other", "Superintendent", "Superintendent", "Principal", "Superintendent", "Superintendent", "Secretary", "Superintendent", "Other", "Other", "Other", "Superintendent", "Superintendent", "Superintendent", "Other", "Principal", "Teacher", "Superintendent", "Superintendent", "Principal", "Other", "Superintendent", "Other", "Other", "Principal", "Secretary", "Principal", "Other", "Principal", "Principal", "Superintendent", "Superintendent", "Other", "Superintendent", "Teacher", "Superintendent", "Superintendent", "Principal", "Other", "Superintendent", "Other", "Superintendent", "Principal", "Other", "Accountant", "Superintendent", "Superintendent", "Secretary", "Other", "Principal", "Other", "Superintendent", "Other", "Other", "Other", "Principal", "Other", "Principal", "Other", "Vice Principal", "Other", "Superintendent", "Other", "Other", "Superintendent", "Principal", "Superintendent", "Superintendent", "Other", "Superintendent", "Superintendent", "Other", "Superintendent", "Superintendent", "Other", "Superintendent", "Social Worker", "Other", "Superintendent", "Other", "Superintendent", "Other", "Other", "Other", "Superintendent", "Other", "Other", "Accountant", "Other", "Principal", "Superintendent", "Superintendent", "Other", "Superintendent", "Superintendent", "Other", "Superintendent", "Superintendent", "Secretary", "Superintendent", "Other", "Other", "Principal", "Superintendent", "Superintendent", "Superintendent", "Accountant", "Social Worker", "Superintendent", "Superintendent", "Principal", "Other", "Superintendent", "Other", "Superintendent", "Superintendent", "Superintendent", "Other", "Other", "Superintendent", "Superintendent", "Other", "Superintendent", "Other", "Other", "Other", "Superintendent", "Other", "Psychologist", "Superintendent", "Principal", "Other", "Superintendent", "Principal", "Superintendent", "Superintendent", "Other", "Other", "Other", "Other", "Other", "Superintendent", "Attorney", "Principal", "Superintendent", "Other", "Other", "Principal", "Accountant", "Superintendent", "Other", "Superintendent", "Other", "Superintendent", "Superintendent", "Other", "Principal", "Principal", "Secretary", "Superintendent", "Principal", "Principal", "Superintendent", "Superintendent", "Principal", "Superintendent", "Superintendent", "Superintendent", "Principal", "Superintendent", "Superintendent", "Principal", "Superintendent", "Secretary", "Other", "Other", "Other", "Superintendent", "Other", "Principal", "Vice Principal", "Superintendent", "Superintendent", "Principal", "Other", "Superintendent", "Superintendent", "Superintendent", "Superintendent", "Principal", "Other", "Other", "Principal", "Psychologist", "Other", "Principal", "Superintendent", "Vice Principal", "Principal", "Superintendent", "Principal", "Other", "Other", "Superintendent", "Superintendent", "Principal", "Superintendent", "Vice Principal", "Superintendent", "Other", "Secretary", "Superintendent", "Other", "Other", "Superintendent", "Other", "Superintendent", "Accountant", "Principal", "Nurse", "Superintendent", "Other", "Secretary", "Other", "Superintendent", "Other", "Other", "Teacher", "Other", "Other", "Superintendent", "Superintendent", "Other", "Superintendent", "Other", "Other", "Accountant", "Superintendent", "Other", "Superintendent", "Other", "Principal", "Other", "Superintendent", "Superintendent", "Principal", "Secretary", "Superintendent", "Principal", "Superintendent", "Superintendent", "Vice Principal", "Other", "Superintendent", "Secretary", "Secretary", "Other", "Accountant", "Superintendent", "Superintendent", "Psychologist", "Other", "Superintendent", "Principal", "Teacher", "Superintendent", "Superintendent", "Attorney", "Accountant", "Other", "Other", "Other", "Superintendent", "Other", "Other", "Teacher", "Other", "Other", "Superintendent", "Other", "Superintendent", "Superintendent", "Superintendent", "Superintendent", "Accountant", "Other", "Accountant", "Principal", "Superintendent", "Superintendent", "Accountant", "Other", "Other", "Principal", "Other", "Superintendent", "Secretary", "Other", "Other", "Other", "Other", "Accountant", "Teacher", "Superintendent", "Superintendent", "Other", "Superintendent", "Attorney", "Other", "Other", "Superintendent", "Other", "Superintendent", "Superintendent", "Other", "Superintendent", "Other", "Superintendent", "Superintendent"], ["Bride", "Bride", "Groom", "Groom", "Groom", "Bride", "Groom's father", "Witness", "Groom", "Bride", "Groom", "Bride", "Bride", "Bride", "Groom", "Bride", "Bride", "Bride", "Bride", "Groom", "Bride", "Witness", "Witness", "Groom", "Groom", "Bride", "Witness", "Groom", "Groom", "Bride", "Bride", "Witness", "Bride", "Witness", "Bride", "Bride", "Witness", "Groom", "Groom", "Banns only", "Bride", "Groom", "Bride", "Groom", "Witness", "Bride", "Groom", "Witness", "Bride", "Witness", "Bride", "Bride", "Bride", "Bride", "Groom", "Groom", "Bride", "Bride", "Groom", "Bride", "Witness", "Bride", "Bride", "Bride", "Groom", "Groom", "Witness", "Witness", "Groom", "Bride", "Groom", "Bride", "Bride", "Groom", "Witness", "Bride's Father", "Bride", "Witness", "Bride", "Witness", "Groom", "Bride", "Witness", "Bride", "Groom", "Witness", "Bride", "Witness", "Witness", "Groom", "Bride", "Groom", "Bride", "Witness", "Witness", "Witness", "Witness", "Witness", "Bride", "Groom", "Witness", "Bride", "Witness", "Groom", "Groom", "Groom", "Bride", "Bride", "Groom", "Bride", "Groom", "Groom", "Groom", "Witness", "Groom", "Groom", "Bride", "Witness", "Bride", "Bride", "Bride", "Witness", "Groom", "Groom", "Bride", "Witness", "Groom", "Bride", "Bride", "Bride", "Groom", "Witness", "Bride", "Bride", "Bride", "Witness", "Groom", "Bride", "Bride", "Bride", "Bride", "Groom", "Bride", "Bride", "Groom", "Witness", "Groom's father", "Bride", "Witness", "Bride", "Bride's Father", "Bride", "Groom's father", "Bride", "Witness", "Bride", "Bride", "Witness", "Groom", "Groom", "Witness", "Groom", "Groom", "Groom", "Witness", "Groom", "Groom", "Groom", "Bride", "Witness", "Bride", "Groom", "Bride", "Groom", "Witness", "Groom", "Bride", "Groom", "Groom", "Groom", "Groom", "Bride", "Bride", "Groom", "Bride", "Witness", "Bride", "Bride", "Bride", "Groom", "Bride", "Groom", "Groom", "Bride", "Witness", "Witness", "Groom", "Groom", "Witness", "Bride", "Bride", "Bride", "Witness", "Witness", "Bride", "Witness", "Bride", "Bride", "Groom", "Witness", "Groom", "Groom", "Groom", "Groom", "Groom", "Bride", "Groom", "Bride", "Groom", "Groom", "Groom", "Bride", "Bride", "Bride", "Groom", "Bride", "Bride", "Bride", "Groom", "Bride", "Groom", "Bride", "Groom", "Groom", "Groom", "Groom", "Witness", "Witness", "Groom", "Bride", "Bride", "Groom", "Bride", "Bride", "Groom", "Bride", "Witness", "Groom", "Groom", "Witness", "Witness", "Bride", "Witness", "Groom", "Bride", "Bride", "Groom", "Witness", "Bride", "Bride", "Bride", "Witness", "Bride", "Groom", "Witness", "Witness", "Bride", "Witness", "Bride", "Bride", "Groom", "Groom", "Witness", "Groom", "Groom", "Bride", "Groom", "Witness", "Groom", "Bride", "Witness", "Bride", "Bride", "Witness", "Groom", "Bride", "Witness", "Groom", "Bride", "Bride", "Groom", "Bride", "Bride", "Bride", "Groom", "Groom", "Witness", "Groom", "Witness", "Bride", "Bride", "Groom", "Groom", "Bride", "Bride", "Bride", "Groom", "Witness", "Groom", "Groom", "Bride", "Bride", "Groom", "Groom", "Bride", "Bride", "Bride", "Bride", "Groom", "Groom", "Bride", "Bride", "Bride", "Groom", "Groom", "Groom", "Witness", "Bride", "Witness", "Groom", "Bride", "Witness", "Bride", "Groom", "Bride", "Bride", "Bride", "Bride", "Brideanns only", "Bride", "Groom", "Groom", "Groom", "Witness", "Groom", "Groom", "Witness", "Groom", "Witness", "Bride", "Groom", "Groom", "Groom", "Witness", "Bride", "Bride", "Groom", "Bride", "Bride", "Groom", "Bride", "Groom", "Bride", "Groom", "Witness", "Witness", "Bride", "Groom", "Bride", "Witness", "Bride", "Bride", "Bride", "Witness", "Witness", "Bride", "Bride", "Bride", "Groom", "Bride", "Witness", "Groom", "Groom", "Groom", "Groom", "Groom", "Bride", "Witness", "Witness", "Groom", "Bride's Father", "Groom", "Witness", "Bride", "Witness", "Groom", "Witness", "Witness", "Bride", "Bride", "Witness", "Bride", "Groom", "Groom", "Groom", "Bride", "Groom", "Bride", "Groom", "Groom", "Bride", "Bride", "Witness", "Bride", "Groom", "Groom", "Groom", "Witness", "Witness", "Groom", "Groom", "Groom", "Bride", "Groom", "Bride", "Witness", "Groom", "Witness", "Bride", "Witness", "Groom", "Groom", "Witness", "Groom", "Bride", "Groom", "Groom", "Witness", "Bride", "Groom", "Witness", "Witness", "Bride", "Witness", "Groom", "Bride", "Groom", "Bride", "Groom", "Groom", "Witness", "Groom", "Groom", "Groom", "Groom", "Witness", "Bride", "Groom", "Bride", "Groom", "Bride", "Groom", "Bride", "Bride", "Bride's Father", "Bride", "Bride's Father", "Witness", "Groom", "Bride", "Witness", "Groom", "Groom", "Groom", "Bride", "Groom", "Bride", "Witness", "Bride", "Groom", "Bride", "Groom", "Witness", "Witness", "Groom", "Bride", "Groom", "Groom", "Groom", "Groom", "Witness", "Groom", "Groom", "Bride", "Groom", "Bride", "Groom", "Bride", "Groom", "Groom"], ["NA", "0", "NA", "0", "0", "NA", "0", "1.211060141639", "NA", "0", "NA", "0", "NA", "0", "0.5", "2.5", "NA", "NA", "NA", "NA", "0", "NA", "NA", "NA", "NA", "NA", "7.5", "NA", "NA", "NA", "NA", "0", "NA", "NA", "0", "0", "0", "0", "NA", "NA", "NA", "NA", "NA", "NA", "0", "NA", "NA", "NA", "0", "NA", "2.5", "NA", "0", "0", "NA", "NA", "NA", "NA", "0", "0", "0", "2.5", "NA", "0", "NA", "NA", "NA", "NA", "0", "0", "NA", "0", "NA", "NA", "0", "NA", "NA", "1", "NA", "0", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "0", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "0", "0", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "0", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "0", "0", "NA", "NA", "NA", "0", "0", "0", "0", "NA", "0", "NA", "NA", "NA", "0", "0", "NA", "0", "NA", "NA", "0", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "0", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "0", "0", "NA", "NA", "NA", "0", "NA", "NA", "NA", "NA", "NA", "0", "NA", "NA", "0", "NA", "NA", "0", "NA", "NA", "NA", "0", "NA", "0", "NA", "NA", "NA", "NA", "NA", "4", "NA", "NA", "NA", "0", "NA", "NA", "0", "NA", "NA", "0", "NA", "NA", "NA", "NA", "NA", "NA", "0", "NA", "1", "0", "NA", "NA", "0", "0", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "0.5", "0", "NA", "NA", "NA", "NA", "0", "3", "NA", "1", "NA", "NA", "0", "0", "NA", "0", "NA", "NA", "0", "NA", "0", "NA", "NA", "0", "NA", "NA", "NA", "3", "NA", "0", "NA", "NA", "NA", "NA", "0", "0", "NA", "NA", "NA", "0", "0", "NA", "0", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "0", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "0", "0", "NA", "NA", "NA", "NA", "NA", "NA", "NA", "0.5", "0", "0", "0", "NA"], ["Farm", "Not specified", "Market", "Market", "Market", "Market", "Not specified", "Market", "Market", "Not specified", "Market", "Market", "Market", "Market", "Market", "Market", "Market", "Market", "Market", "Market", "Market", "Market", "Market", "Not specified", "Not specified", "Market", "Market", "Market", "Market", "Market", "Market", "Not specified", "Market", "Market", "Market", "Market", "Market", "Not specified", "Market", "Market", "Market", "Market", "Not specified", "Market", "Market", "Not specified", "Market", "Market", "Market", "Market", "Market", "Market", "Not specified", "Market", "Market", "Market", "Not specified", "Market", "Market", "Not specified", "Market", "Market", "Market", "Slaughterhouse", "Market", "Market", "Market", "Park"], ["Telemetry unit", "Telemetry unit", "Telemetry unit", "Telemetry unit", "Telemetry unit", "Telemetry unit", "Telemetry unit", "Surgery unit", "Telemetry unit", "Surgery unit", "Surgery unit", "Telemetry unit", "Telemetry unit", "Surgery unit", "Telemetry unit", "Surgery unit", "Telemetry unit", "Telemetry unit", "Telemetry unit", "Telemetry unit", "Surgery unit", "Telemetry unit", "Surgery unit", "Telemetry unit", "Telemetry unit", "Surgery unit", "Telemetry unit", "Surgery unit", "Surgery unit", "Surgery unit", "Telemetry unit", "Surgery unit", "Telemetry unit", "Telemetry unit", "Surgery unit", "Telemetry unit", "Telemetry unit", "Telemetry unit", "Telemetry unit", "Telemetry unit", "Telemetry unit", "Telemetry unit", "Telemetry unit", "Telemetry unit", "Surgery unit", "Surgery unit", "Telemetry unit"], ["Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters", "Bad Characters"]] \ No newline at end of file diff --git a/data/geom/geomDrawFile b/data/geom/geomDrawFile new file mode 100755 index 0000000000000000000000000000000000000000..1c8d60aee96477df0ba1db8aa2898ed1e5f10049 Binary files /dev/null and b/data/geom/geomDrawFile differ diff --git a/data/geom/logoTasks/generate.sh b/data/geom/logoTasks/generate.sh new file mode 100755 index 0000000000000000000000000000000000000000..77773de5f93f982e76f0999216170240e9292348 --- /dev/null +++ b/data/geom/logoTasks/generate.sh @@ -0,0 +1,31 @@ +#!/bin/bash + +rm "./*.png" + +resh=512 +resl=28 + +for i in {3..6}; do + ../logoDrawString $resl "spiral${i}_l" 0 "(lambda ((logo_forLoopM ($i) (lambda (logo_FWRT (logo_MULL (logo_UL) (\$0)) (logo_DIVA (logo_UA) (2)) \$1))) \$0))" + ../logoDrawString $resl "smooth_spiral${i}_l" 0 "(lambda (logo_forLoopM (logo_IFTY) (lambda (logo_FWRT (logo_MULL logo_epsL \$0) (logo_MULA logo_epsA $i) \$1)) \$0))" + + ../logoDrawString $resh "spiral${i}_h" 0 "(lambda ((logo_forLoopM ($i) (lambda (logo_FWRT (logo_MULL (logo_UL) (\$0)) (logo_DIVA (logo_UA) (2)) \$1))) \$0))" + ../logoDrawString $resh "smooth_spiral${i}_h" 0 "(lambda (logo_forLoopM (logo_IFTY) (lambda (logo_FWRT (logo_MULL logo_epsL \$0) (logo_MULA logo_epsA $i) \$1)) \$0))" +done + +for i in "5" "7"; do + ../logoDrawString $resl "star_${i}_l" 0 "(lambda (logo_forLoopM ($i) (lambda (logo_FWRT (logo_MULL logo_UL 3) (logo_SUBA (logo_UA) (logo_DIVA (logo_MULA logo_UA 1) $i)) \$1)) \$0))" + ../logoDrawString $resh "star_${i}_h" 0 "(lambda (logo_forLoopM ($i) (lambda (logo_FWRT (logo_MULL logo_UL 3) (logo_SUBA (logo_UA) (logo_DIVA (logo_MULA logo_UA 1) $i)) \$1)) \$0))" pretty +done + +../logoDrawString $resh "iter1_h" 0 "(lambda (logo_forLoopM logo_IFTY (lambda (logo_FWRT logo_epsL (logo_DIVA logo_epsA 2) \$1)) \$0))" +../logoDrawString $resh "iter2_h" 0 "(lambda (logo_forLoopM 2 (lambda (logo_forLoopM logo_IFTY (lambda (logo_FWRT logo_epsL (logo_DIVA logo_epsA 2) \$2)) (logo_FWRT (logo_MULL logo_UL 0) (logo_DIVA logo_UA 2) \$1))) \$0))" +../logoDrawString $resl "iter1_l" 0 "(lambda (logo_forLoopM logo_IFTY (lambda (logo_FWRT logo_epsL (logo_DIVA logo_epsA 2) \$1)) \$0))" +../logoDrawString $resl "iter2_l" 0 "(lambda (logo_forLoopM 2 (lambda (logo_forLoopM logo_IFTY (lambda (logo_FWRT logo_epsL (logo_DIVA logo_epsA 2) \$2)) (logo_FWRT (logo_MULL logo_UL 0) (logo_DIVA logo_UA 2) \$1))) \$0))" + +for i in "5" "7"; do + ../logoDrawString $resh "flower_${i}_h" 0 "(lambda (logo_forLoopM $i (lambda (logo_forLoopM 2 (lambda (logo_forLoopM logo_IFTY (lambda (logo_FWRT logo_epsL (logo_DIVA logo_epsA 2) \$3)) (logo_FWRT (logo_MULL logo_UL 0) (logo_DIVA logo_UA 2) \$2))) (logo_FWRT (logo_MULL logo_UL 0) (logo_DIVA (logo_MULA logo_UA 2) $i) \$1))) \$0))" + ../logoDrawString $resl "flower_${i}_l" 0 "(lambda (logo_forLoopM $i (lambda (logo_forLoopM 2 (lambda (logo_forLoopM logo_IFTY (lambda (logo_FWRT logo_epsL (logo_DIVA logo_epsA 2) \$3)) (logo_FWRT (logo_MULL logo_UL 0) (logo_DIVA logo_UA 2) \$2))) (logo_FWRT (logo_MULL logo_UL 0) (logo_DIVA (logo_MULA logo_UA 2) $i) \$1))) \$0))" +done + + diff --git a/data/list_tasks.json b/data/list_tasks.json new file mode 100644 index 0000000000000000000000000000000000000000..2816d1ee51ff2f523704c1930d8736eb99711036 --- /dev/null +++ b/data/list_tasks.json @@ -0,0 +1 @@ +[{"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "add-k with k=0", "examples": [{"i": [], "o": []}, {"i": [1, 7, 1, 10, 1], "o": [1, 7, 1, 10, 1]}, {"i": [2, 14], "o": [2, 14]}, {"i": [12], "o": [12]}, {"i": [0, 15], "o": [0, 15]}, {"i": [10, 14, 15, 7], "o": [10, 14, 15, 7]}, {"i": [6], "o": [6]}, {"i": [15], "o": [15]}, {"i": [13, 12, 1, 6], "o": [13, 12, 1, 6]}, {"i": [3, 11, 1, 11], "o": [3, 11, 1, 11]}, {"i": [9, 7, 7, 3, 2], "o": [9, 7, 7, 3, 2]}, {"i": [], "o": []}, {"i": [11], "o": [11]}, {"i": [10, 6, 13, 4, 6], "o": [10, 6, 13, 4, 6]}, {"i": [4, 7, 16, 11, 10, 3, 15], "o": [4, 7, 16, 11, 10, 3, 15]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "add-k with k=1", "examples": [{"i": [3, 4, 4, 13, 6], "o": [4, 5, 5, 14, 7]}, {"i": [], "o": []}, {"i": [0, 2, 12, 2, 11, 0], "o": [1, 3, 13, 3, 12, 1]}, {"i": [4, 12, 15], "o": [5, 13, 16]}, {"i": [15, 2, 16, 2, 5, 15, 6], "o": [16, 3, 17, 3, 6, 16, 7]}, {"i": [8, 13, 6], "o": [9, 14, 7]}, {"i": [0, 11, 7, 9, 3], "o": [1, 12, 8, 10, 4]}, {"i": [9, 10, 4], "o": [10, 11, 5]}, {"i": [9, 1, 13, 10, 13], "o": [10, 2, 14, 11, 14]}, {"i": [9, 6], "o": [10, 7]}, {"i": [], "o": []}, {"i": [7, 9, 8, 1, 12, 3], "o": [8, 10, 9, 2, 13, 4]}, {"i": [4, 14, 1], "o": [5, 15, 2]}, {"i": [6, 2, 13], "o": [7, 3, 14]}, {"i": [14], "o": [15]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "add-k with k=2", "examples": [{"i": [14, 13, 12, 6], "o": [16, 15, 14, 8]}, {"i": [8, 6, 14, 7, 14, 16, 13], "o": [10, 8, 16, 9, 16, 18, 15]}, {"i": [7, 1, 0, 11, 0, 10], "o": [9, 3, 2, 13, 2, 12]}, {"i": [], "o": []}, {"i": [], "o": []}, {"i": [9, 4, 9, 6], "o": [11, 6, 11, 8]}, {"i": [2, 4, 3, 13, 13], "o": [4, 6, 5, 15, 15]}, {"i": [11, 5, 7, 6, 8], "o": [13, 7, 9, 8, 10]}, {"i": [5], "o": [7]}, {"i": [9, 12, 16, 9], "o": [11, 14, 18, 11]}, {"i": [9, 11, 7], "o": [11, 13, 9]}, {"i": [5, 0], "o": [7, 2]}, {"i": [11, 6, 0, 3], "o": [13, 8, 2, 5]}, {"i": [9, 11, 0, 0, 5, 3, 2], "o": [11, 13, 2, 2, 7, 5, 4]}, {"i": [16, 13, 6, 8, 14, 8, 2], "o": [18, 15, 8, 10, 16, 10, 4]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "add-k with k=3", "examples": [{"i": [], "o": []}, {"i": [3], "o": [6]}, {"i": [9, 14, 9], "o": [12, 17, 12]}, {"i": [7, 11, 6, 14, 4], "o": [10, 14, 9, 17, 7]}, {"i": [12, 11, 1, 7, 8, 4, 5], "o": [15, 14, 4, 10, 11, 7, 8]}, {"i": [8, 6, 10], "o": [11, 9, 13]}, {"i": [1, 9, 7, 8], "o": [4, 12, 10, 11]}, {"i": [], "o": []}, {"i": [7, 14, 1], "o": [10, 17, 4]}, {"i": [11, 14, 7], "o": [14, 17, 10]}, {"i": [2, 14, 15], "o": [5, 17, 18]}, {"i": [9, 2, 11, 4, 13, 11], "o": [12, 5, 14, 7, 16, 14]}, {"i": [], "o": []}, {"i": [8, 8], "o": [11, 11]}, {"i": [2, 4, 6, 9, 13], "o": [5, 7, 9, 12, 16]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "add-k with k=4", "examples": [{"i": [16, 10, 7, 12, 13, 3], "o": [20, 14, 11, 16, 17, 7]}, {"i": [3, 2, 8, 8, 7, 0, 9], "o": [7, 6, 12, 12, 11, 4, 13]}, {"i": [3], "o": [7]}, {"i": [9, 3, 7, 14], "o": [13, 7, 11, 18]}, {"i": [14, 12, 9, 15, 7], "o": [18, 16, 13, 19, 11]}, {"i": [15, 7, 9], "o": [19, 11, 13]}, {"i": [], "o": []}, {"i": [0, 3, 8, 15, 3, 3, 0], "o": [4, 7, 12, 19, 7, 7, 4]}, {"i": [9, 10, 10], "o": [13, 14, 14]}, {"i": [], "o": []}, {"i": [11, 11, 1, 7, 3, 2], "o": [15, 15, 5, 11, 7, 6]}, {"i": [0], "o": [4]}, {"i": [10, 8], "o": [14, 12]}, {"i": [4, 7, 15, 3, 2], "o": [8, 11, 19, 7, 6]}, {"i": [], "o": []}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "add-k with k=5", "examples": [{"i": [7, 4, 11], "o": [12, 9, 16]}, {"i": [6, 13, 0, 2], "o": [11, 18, 5, 7]}, {"i": [3, 6], "o": [8, 11]}, {"i": [7, 7, 0], "o": [12, 12, 5]}, {"i": [5, 14, 10, 15, 6], "o": [10, 19, 15, 20, 11]}, {"i": [16, 12, 15, 7], "o": [21, 17, 20, 12]}, {"i": [7, 6, 11], "o": [12, 11, 16]}, {"i": [10, 8, 4, 7], "o": [15, 13, 9, 12]}, {"i": [12], "o": [17]}, {"i": [5], "o": [10]}, {"i": [16, 13, 9, 13, 0, 3, 10], "o": [21, 18, 14, 18, 5, 8, 15]}, {"i": [4, 5, 4, 0, 8, 9], "o": [9, 10, 9, 5, 13, 14]}, {"i": [3, 14, 15, 0, 12, 0], "o": [8, 19, 20, 5, 17, 5]}, {"i": [13, 8, 10], "o": [18, 13, 15]}, {"i": [9, 6, 5, 0, 7, 7], "o": [14, 11, 10, 5, 12, 12]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "append-index-k with k=1", "examples": [{"i": [0, 14, 6], "o": [0, 14, 6, 0]}, {"i": [0, 1, 7], "o": [0, 1, 7, 0]}, {"i": [7, 5, 16, 3], "o": [7, 5, 16, 3, 7]}, {"i": [10, 0, 8, 6, 4, 9, 7, 7], "o": [10, 0, 8, 6, 4, 9, 7, 7, 10]}, {"i": [12, 7, 2, 2, 9, 11, 14], "o": [12, 7, 2, 2, 9, 11, 14, 12]}, {"i": [4], "o": [4, 4]}, {"i": [11, 7, 6, 4, 9, 4, 15, 16], "o": [11, 7, 6, 4, 9, 4, 15, 16, 11]}, {"i": [3, 5, 0], "o": [3, 5, 0, 3]}, {"i": [10], "o": [10, 10]}, {"i": [15, 4, 3], "o": [15, 4, 3, 15]}, {"i": [8, 10, 0, 16], "o": [8, 10, 0, 16, 8]}, {"i": [12], "o": [12, 12]}, {"i": [16, 2, 5], "o": [16, 2, 5, 16]}, {"i": [1, 4, 8, 4, 0, 16, 13], "o": [1, 4, 8, 4, 0, 16, 13, 1]}, {"i": [13, 14, 9, 10, 15, 3, 9, 15], "o": [13, 14, 9, 10, 15, 3, 9, 15, 13]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "append-index-k with k=2", "examples": [{"i": [11, 5, 15, 11], "o": [11, 5, 15, 11, 5]}, {"i": [3, 15], "o": [3, 15, 15]}, {"i": [0, 6, 13, 5], "o": [0, 6, 13, 5, 6]}, {"i": [6, 2, 7, 12, 8, 14, 16, 4, 12], "o": [6, 2, 7, 12, 8, 14, 16, 4, 12, 2]}, {"i": [4, 6, 10, 13], "o": [4, 6, 10, 13, 6]}, {"i": [5, 1, 1, 13, 5, 0, 1], "o": [5, 1, 1, 13, 5, 0, 1, 1]}, {"i": [14, 12, 12, 15, 5, 12, 2, 8, 2], "o": [14, 12, 12, 15, 5, 12, 2, 8, 2, 12]}, {"i": [11, 4], "o": [11, 4, 4]}, {"i": [1, 7, 8, 8, 1, 5, 15, 6], "o": [1, 7, 8, 8, 1, 5, 15, 6, 7]}, {"i": [7, 12, 7, 8, 13, 11, 8, 4], "o": [7, 12, 7, 8, 13, 11, 8, 4, 12]}, {"i": [15, 0, 11, 14], "o": [15, 0, 11, 14, 0]}, {"i": [13, 12, 1, 2, 5, 1, 14], "o": [13, 12, 1, 2, 5, 1, 14, 12]}, {"i": [1, 3, 1, 4, 15], "o": [1, 3, 1, 4, 15, 3]}, {"i": [4, 11, 8, 4, 10, 11, 4], "o": [4, 11, 8, 4, 10, 11, 4, 11]}, {"i": [12, 14, 9], "o": [12, 14, 9, 14]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "append-index-k with k=3", "examples": [{"i": [0, 13, 12, 12], "o": [0, 13, 12, 12, 12]}, {"i": [6, 8, 2, 6, 7, 14, 9], "o": [6, 8, 2, 6, 7, 14, 9, 2]}, {"i": [6, 15, 6, 15, 5, 13], "o": [6, 15, 6, 15, 5, 13, 6]}, {"i": [15, 13, 7, 2, 4, 10], "o": [15, 13, 7, 2, 4, 10, 7]}, {"i": [1, 2, 1, 7, 12, 15, 12, 13, 11, 4], "o": [1, 2, 1, 7, 12, 15, 12, 13, 11, 4, 1]}, {"i": [9, 5, 2, 15, 8, 1], "o": [9, 5, 2, 15, 8, 1, 2]}, {"i": [3, 13, 5, 7, 4, 3, 3], "o": [3, 13, 5, 7, 4, 3, 3, 5]}, {"i": [6, 14, 12, 4, 4, 15, 3, 1, 4], "o": [6, 14, 12, 4, 4, 15, 3, 1, 4, 12]}, {"i": [14, 2, 10, 6, 7, 9, 14, 2], "o": [14, 2, 10, 6, 7, 9, 14, 2, 10]}, {"i": [11, 11, 2, 9], "o": [11, 11, 2, 9, 2]}, {"i": [8, 6, 13, 11, 15, 2], "o": [8, 6, 13, 11, 15, 2, 13]}, {"i": [15, 0, 13, 10, 7, 1, 14, 5, 10, 10], "o": [15, 0, 13, 10, 7, 1, 14, 5, 10, 10, 13]}, {"i": [11, 0, 12, 10, 15, 13], "o": [11, 0, 12, 10, 15, 13, 12]}, {"i": [14, 10, 10, 14, 14, 2, 9], "o": [14, 10, 10, 14, 14, 2, 9, 10]}, {"i": [12, 7, 16, 14], "o": [12, 7, 16, 14, 16]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "append-index-k with k=4", "examples": [{"i": [2, 3, 13, 14, 11, 14, 14, 0, 5], "o": [2, 3, 13, 14, 11, 14, 14, 0, 5, 14]}, {"i": [12, 14, 1, 8, 0, 5, 7, 3], "o": [12, 14, 1, 8, 0, 5, 7, 3, 8]}, {"i": [2, 4, 8, 9, 3], "o": [2, 4, 8, 9, 3, 9]}, {"i": [5, 2, 13, 3, 0, 8], "o": [5, 2, 13, 3, 0, 8, 3]}, {"i": [0, 13, 3, 9, 14, 2, 1, 16, 7, 11, 7], "o": [0, 13, 3, 9, 14, 2, 1, 16, 7, 11, 7, 9]}, {"i": [8, 1, 16, 6, 16], "o": [8, 1, 16, 6, 16, 6]}, {"i": [5, 11, 8, 5], "o": [5, 11, 8, 5, 5]}, {"i": [9, 14, 6, 9, 8, 2, 5, 13, 3, 7], "o": [9, 14, 6, 9, 8, 2, 5, 13, 3, 7, 9]}, {"i": [14, 7, 10, 3, 1, 4], "o": [14, 7, 10, 3, 1, 4, 3]}, {"i": [3, 5, 4, 4, 2, 0, 1, 8], "o": [3, 5, 4, 4, 2, 0, 1, 8, 4]}, {"i": [0, 12, 16, 14, 14, 8, 4, 0, 6, 2, 7], "o": [0, 12, 16, 14, 14, 8, 4, 0, 6, 2, 7, 14]}, {"i": [8, 13, 11, 9, 0, 13, 6, 16, 12], "o": [8, 13, 11, 9, 0, 13, 6, 16, 12, 9]}, {"i": [5, 3, 7, 1, 14, 0, 0, 2], "o": [5, 3, 7, 1, 14, 0, 0, 2, 1]}, {"i": [11, 12, 1, 15, 3, 12, 4, 5, 5, 4], "o": [11, 12, 1, 15, 3, 12, 4, 5, 5, 4, 15]}, {"i": [1, 1, 10, 6, 6, 12, 0, 7, 13, 15, 16], "o": [1, 1, 10, 6, 6, 12, 0, 7, 13, 15, 16, 6]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "append-index-k with k=5", "examples": [{"i": [11, 9, 15, 7, 2, 3, 11, 7, 1, 2], "o": [11, 9, 15, 7, 2, 3, 11, 7, 1, 2, 2]}, {"i": [11, 9, 16, 5, 5, 16, 11, 9], "o": [11, 9, 16, 5, 5, 16, 11, 9, 5]}, {"i": [12, 12, 3, 2, 14, 15, 10, 11, 4, 11, 15, 2], "o": [12, 12, 3, 2, 14, 15, 10, 11, 4, 11, 15, 2, 14]}, {"i": [4, 6, 1, 7, 1, 13], "o": [4, 6, 1, 7, 1, 13, 1]}, {"i": [8, 16, 5, 13, 14, 12, 6, 0], "o": [8, 16, 5, 13, 14, 12, 6, 0, 14]}, {"i": [9, 11, 8, 0, 7, 8], "o": [9, 11, 8, 0, 7, 8, 7]}, {"i": [12, 4, 7, 10, 13, 3, 14, 4, 12, 4], "o": [12, 4, 7, 10, 13, 3, 14, 4, 12, 4, 13]}, {"i": [0, 12, 0, 0, 15, 9, 9, 9, 2], "o": [0, 12, 0, 0, 15, 9, 9, 9, 2, 15]}, {"i": [12, 5, 6, 5, 15, 2, 10, 7, 7, 2, 13, 10], "o": [12, 5, 6, 5, 15, 2, 10, 7, 7, 2, 13, 10, 15]}, {"i": [13, 0, 16, 8, 9, 10, 16, 7], "o": [13, 0, 16, 8, 9, 10, 16, 7, 9]}, {"i": [16, 15, 7, 8, 2, 5, 14, 15, 8, 8], "o": [16, 15, 7, 8, 2, 5, 14, 15, 8, 8, 2]}, {"i": [7, 7, 5, 15, 2], "o": [7, 7, 5, 15, 2, 2]}, {"i": [13, 2, 13, 16, 1, 3], "o": [13, 2, 13, 16, 1, 3, 1]}, {"i": [6, 4, 15, 14, 7, 12, 3, 0, 4, 16], "o": [6, 4, 15, 14, 7, 12, 3, 0, 4, 16, 7]}, {"i": [15, 15, 9, 4, 2, 2, 14, 13, 5, 4], "o": [15, 15, 9, 4, 2, 2, 14, 13, 5, 4, 2]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "append-k with k=0", "examples": [{"i": [0, 14], "o": [0, 14, 0]}, {"i": [4, 0], "o": [4, 0, 0]}, {"i": [], "o": [0]}, {"i": [7, 7, 5], "o": [7, 7, 5, 0]}, {"i": [3, 16, 10, 0, 8, 6, 4], "o": [3, 16, 10, 0, 8, 6, 4, 0]}, {"i": [7, 7, 13, 12], "o": [7, 7, 13, 12, 0]}, {"i": [2, 2, 9], "o": [2, 2, 9, 0]}, {"i": [14, 1, 4, 15, 11], "o": [14, 1, 4, 15, 11, 0]}, {"i": [6, 4, 9], "o": [6, 4, 9, 0]}, {"i": [15, 16], "o": [15, 16, 0]}, {"i": [3, 5], "o": [3, 5, 0]}, {"i": [], "o": [0]}, {"i": [], "o": [0]}, {"i": [5, 15, 4, 3], "o": [5, 15, 4, 3, 0]}, {"i": [8, 10, 0], "o": [8, 10, 0, 0]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "append-k with k=1", "examples": [{"i": [0, 12, 5, 16, 2, 5, 12], "o": [0, 12, 5, 16, 2, 5, 12, 1]}, {"i": [], "o": [1]}, {"i": [8], "o": [8, 1]}, {"i": [0, 16], "o": [0, 16, 1]}, {"i": [16, 13, 14, 9, 10, 15], "o": [16, 13, 14, 9, 10, 15, 1]}, {"i": [9], "o": [9, 1]}, {"i": [5, 11, 5, 15, 11, 1, 3], "o": [5, 11, 5, 15, 11, 1, 3, 1]}, {"i": [4, 0, 6, 13, 5, 15, 6], "o": [4, 0, 6, 13, 5, 15, 6, 1]}, {"i": [7], "o": [7, 1]}, {"i": [8, 14, 16, 4, 12], "o": [8, 14, 16, 4, 12, 1]}, {"i": [4, 6], "o": [4, 6, 1]}, {"i": [13, 11, 5, 1], "o": [13, 11, 5, 1, 1]}, {"i": [], "o": [1]}, {"i": [5, 0, 1, 16, 14, 12], "o": [5, 0, 1, 16, 14, 12, 1]}, {"i": [15, 5, 12, 2, 8], "o": [15, 5, 12, 2, 8, 1]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "append-k with k=2", "examples": [{"i": [], "o": [2]}, {"i": [], "o": [2]}, {"i": [4, 13, 1, 7, 8], "o": [4, 13, 1, 7, 8, 2]}, {"i": [1, 5, 15], "o": [1, 5, 15, 2]}, {"i": [12, 7, 12], "o": [12, 7, 12, 2]}, {"i": [8, 13, 11], "o": [8, 13, 11, 2]}, {"i": [4, 5, 15, 0], "o": [4, 5, 15, 0, 2]}, {"i": [14, 12, 13, 12, 1], "o": [14, 12, 13, 12, 1, 2]}, {"i": [5], "o": [5, 2]}, {"i": [], "o": [2]}, {"i": [7, 1, 3, 1, 4, 15], "o": [7, 1, 3, 1, 4, 15, 2]}, {"i": [4, 11, 8, 4, 10], "o": [4, 11, 8, 4, 10, 2]}, {"i": [4, 2, 12, 14, 9], "o": [4, 2, 12, 14, 9, 2]}, {"i": [0], "o": [0, 2]}, {"i": [12, 12, 9, 6, 8, 2], "o": [12, 12, 9, 6, 8, 2, 2]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "append-k with k=3", "examples": [{"i": [7, 14, 9], "o": [7, 14, 9, 3]}, {"i": [6, 15, 6], "o": [6, 15, 6, 3]}, {"i": [5, 13, 8, 15, 13, 7, 2], "o": [5, 13, 8, 15, 13, 7, 2, 3]}, {"i": [10, 16], "o": [10, 16, 3]}, {"i": [], "o": [3]}, {"i": [1], "o": [1, 3]}, {"i": [12, 15, 12], "o": [12, 15, 12, 3]}, {"i": [11, 4, 7, 9, 5, 2], "o": [11, 4, 7, 9, 5, 2, 3]}, {"i": [8, 1, 9, 3, 13, 5, 7], "o": [8, 1, 9, 3, 13, 5, 7, 3]}, {"i": [3, 3], "o": [3, 3, 3]}, {"i": [6, 14, 12, 4, 4, 15], "o": [6, 14, 12, 4, 4, 15, 3]}, {"i": [1], "o": [1, 3]}, {"i": [12, 14], "o": [12, 14, 3]}, {"i": [], "o": [3]}, {"i": [6, 7, 9, 14], "o": [6, 7, 9, 14, 3]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "append-k with k=4", "examples": [{"i": [3], "o": [3, 4]}, {"i": [11, 2, 9, 8, 8], "o": [11, 2, 9, 8, 8, 4]}, {"i": [13, 11], "o": [13, 11, 4]}, {"i": [2, 16, 15, 0, 13, 10, 7], "o": [2, 16, 15, 0, 13, 10, 7, 4]}, {"i": [], "o": [4]}, {"i": [5, 10, 10, 6, 11, 0], "o": [5, 10, 10, 6, 11, 0, 4]}, {"i": [10, 15, 13, 8, 14, 10], "o": [10, 15, 13, 8, 14, 10, 4]}, {"i": [14, 14, 2, 9, 2], "o": [14, 14, 2, 9, 2, 4]}, {"i": [7, 16, 14, 12, 2], "o": [7, 16, 14, 12, 2, 4]}, {"i": [13], "o": [13, 4]}, {"i": [11, 14, 14, 0, 5, 10], "o": [11, 14, 14, 0, 5, 10, 4]}, {"i": [14, 1, 8, 0, 5, 7], "o": [14, 1, 8, 0, 5, 7, 4]}, {"i": [3], "o": [3, 4]}, {"i": [], "o": [4]}, {"i": [8, 9], "o": [8, 9, 4]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "append-k with k=5", "examples": [{"i": [5], "o": [5, 5]}, {"i": [2, 13], "o": [2, 13, 5]}, {"i": [0], "o": [0, 5]}, {"i": [15, 0, 13], "o": [15, 0, 13, 5]}, {"i": [9], "o": [9, 5]}, {"i": [2, 1, 16, 7, 11, 7], "o": [2, 1, 16, 7, 11, 7, 5]}, {"i": [8], "o": [8, 5]}, {"i": [], "o": [5]}, {"i": [6, 16, 1, 5, 11, 8, 5], "o": [6, 16, 1, 5, 11, 8, 5, 5]}, {"i": [9, 14, 6, 9, 8, 2], "o": [9, 14, 6, 9, 8, 2, 5]}, {"i": [13, 3], "o": [13, 3, 5]}, {"i": [5, 14, 7], "o": [5, 14, 7, 5]}, {"i": [3, 1, 4, 9], "o": [3, 1, 4, 9, 5]}, {"i": [5], "o": [5, 5]}, {"i": [4, 2], "o": [4, 2, 5]}]}, {"type": {"input": "list-of-int", "output": "list-of-bool"}, "name": "bool-identify-geq-k with k=0", "examples": [{"i": [11, 11], "o": [true, true]}, {"i": [10, 6, 8, 4, 6, 6, 7], "o": [true, true, true, true, true, true, true]}, {"i": [1, 14, 0, 12, 14], "o": [true, true, true, true, true]}, {"i": [], "o": []}, {"i": [3, 3, 3, 3, 13, 14, 9], "o": [true, true, true, true, true, true, true]}, {"i": [3, 10, 8, 13, 11, 15], "o": [true, true, true, true, true, true]}, {"i": [10, 15, 5, 16, 9, 7, 9], "o": [true, true, true, true, true, true, true]}, {"i": [12, 2, 7, 1, 6], "o": [true, true, true, true, true]}, {"i": [0, 5, 6, 15, 0, 13], "o": [true, true, true, true, true, true]}, {"i": [1, 14, 12, 8, 4, 3, 12], "o": [true, true, true, true, true, true, true]}, {"i": [-1, -1, 13], "o": [false, false, true]}, {"i": [0, 0, 0], "o": [true, true, true]}, {"i": [5, 2, 5, 8, 2, 2], "o": [true, true, true, true, true, true]}, {"i": [12], "o": [true]}, {"i": [10, 16], "o": [true, true]}]}, {"type": {"input": "list-of-int", "output": "list-of-bool"}, "name": "bool-identify-geq-k with k=1", "examples": [{"i": [], "o": []}, {"i": [2, 5, 11], "o": [true, true, true]}, {"i": [], "o": []}, {"i": [6, 1, 3, 4, 15, 3], "o": [true, true, true, true, true, true]}, {"i": [12, 5, 7, 7, 2], "o": [true, true, true, true, true]}, {"i": [3, 3, 3, 3], "o": [true, true, true, true]}, {"i": [3, 3, 3, 3], "o": [true, true, true, true]}, {"i": [], "o": []}, {"i": [4, 4, 4, 0, 7, 4], "o": [true, true, true, false, true, true]}, {"i": [4], "o": [true]}, {"i": [6, 0, 1], "o": [true, false, true]}, {"i": [-3, -3], "o": [false, false]}, {"i": [1, 5, 1, 5, 6], "o": [true, true, true, true, true]}, {"i": [1, 2, 15, 11, 14, 1], "o": [true, true, true, true, true, true]}, {"i": [4, 15, 1, 15, 13, 10], "o": [true, true, true, true, true, true]}]}, {"type": {"input": "list-of-int", "output": "list-of-bool"}, "name": "bool-identify-geq-k with k=2", "examples": [{"i": [14, 2, 10, 5, 6], "o": [true, true, true, true, true]}, {"i": [14, -1, -1, -1, 1, -1], "o": [true, false, false, false, false, false]}, {"i": [0, -1], "o": [false, false]}, {"i": [1, 3, 4, 1, 13, 9], "o": [false, true, true, false, true, true]}, {"i": [13], "o": [true]}, {"i": [], "o": []}, {"i": [-1, -1, 6, 15], "o": [false, false, true, true]}, {"i": [11, 11, 7, 1], "o": [true, true, true, false]}, {"i": [9, 0, 4, 3, 1, 10, 0], "o": [true, false, true, true, false, true, false]}, {"i": [8, 5, 9, 13, 1, 13], "o": [true, true, true, true, false, true]}, {"i": [0, 10, 0, 0], "o": [false, true, false, false]}, {"i": [15, 2, 13, 11, 5, 9, 4], "o": [true, true, true, true, true, true, true]}, {"i": [12], "o": [true]}, {"i": [9, 13, 10, 11, 11], "o": [true, true, true, true, true]}, {"i": [1], "o": [false]}]}, {"type": {"input": "list-of-int", "output": "list-of-bool"}, "name": "bool-identify-geq-k with k=3", "examples": [{"i": [5, 5, 7], "o": [true, true, true]}, {"i": [7, 11, 2, 3, 2, 2, 10], "o": [true, true, false, true, false, false, true]}, {"i": [-1], "o": [false]}, {"i": [8, 4, 1, 7], "o": [true, true, false, true]}, {"i": [2, 9, 2, 2, 2], "o": [false, true, false, false, false]}, {"i": [4, 9], "o": [true, true]}, {"i": [11, 4, 4, 4, 4], "o": [true, true, true, true, true]}, {"i": [12, 6, 11, 16, 7, 10, 3], "o": [true, true, true, true, true, true, true]}, {"i": [5, 5, 16], "o": [true, true, true]}, {"i": [7], "o": [true]}, {"i": [4], "o": [true]}, {"i": [7, 5, 6, 7, 9, 3], "o": [true, true, true, true, true, true]}, {"i": [5, 5], "o": [true, true]}, {"i": [0, 9, 0], "o": [false, true, false]}, {"i": [4, 0], "o": [true, false]}]}, {"type": {"input": "list-of-int", "output": "list-of-bool"}, "name": "bool-identify-geq-k with k=4", "examples": [{"i": [], "o": []}, {"i": [7, 14, 7, 0], "o": [true, true, true, false]}, {"i": [7, 10, 16], "o": [true, true, true]}, {"i": [16, 16, 15, 13, 8], "o": [true, true, true, true, true]}, {"i": [7], "o": [true]}, {"i": [5, 15, 2, 15, 1, 10, 5], "o": [true, true, false, true, false, true, true]}, {"i": [], "o": []}, {"i": [12, 6, 15, 6, 14, 8, 6], "o": [true, true, true, true, true, true, true]}, {"i": [12, 13], "o": [true, true]}, {"i": [3], "o": [false]}, {"i": [], "o": []}, {"i": [15, 3, 3, 1, 3], "o": [true, false, false, false, false]}, {"i": [4], "o": [true]}, {"i": [2, 0, 1, 15, 2, 4, 0], "o": [false, false, false, true, false, true, false]}, {"i": [2, 15], "o": [false, true]}]}, {"type": {"input": "list-of-int", "output": "list-of-bool"}, "name": "bool-identify-geq-k with k=5", "examples": [{"i": [12, 10], "o": [true, true]}, {"i": [15, 7, 10, 3, 8], "o": [true, true, true, false, true]}, {"i": [8, 6, 12, 16, 3, 6, 16], "o": [true, true, true, true, false, true, true]}, {"i": [12, 10, 6, 6, 12], "o": [true, true, true, true, true]}, {"i": [2, 13], "o": [false, true]}, {"i": [], "o": []}, {"i": [], "o": []}, {"i": [13], "o": [true]}, {"i": [2, 15, 10, 15, 0], "o": [false, true, true, true, false]}, {"i": [3, 3, 12], "o": [false, false, true]}, {"i": [4, 8, 10, 0, 15, 8, 4], "o": [false, true, true, false, true, true, false]}, {"i": [2, 0, 6, 1, 11, 0, 12], "o": [false, false, true, false, true, false, true]}, {"i": [2, 5, 4, 2, 12, 2], "o": [false, true, false, false, true, false]}, {"i": [7, 10], "o": [true, true]}, {"i": [1, 1, 7, 1], "o": [false, false, true, false]}]}, {"type": {"input": "list-of-int", "output": "list-of-bool"}, "name": "bool-identify-is-mod-k with k=1", "examples": [{"i": [], "o": []}, {"i": [0, 7, 0, 8, 1, 15, 10], "o": [true, true, true, true, true, true, true]}, {"i": [6, 8, 6, 14, 11, 4, 15], "o": [true, true, true, true, true, true, true]}, {"i": [], "o": []}, {"i": [1, 1, 1, 1, 1, 6, 1], "o": [true, true, true, true, true, true, true]}, {"i": [11, 0, 1, 1, 1, 1, 1], "o": [true, true, true, true, true, true, true]}, {"i": [13, 7, 9, 10], "o": [true, true, true, true]}, {"i": [], "o": []}, {"i": [12], "o": [true]}, {"i": [1, 1, 1], "o": [true, true, true]}, {"i": [10, 0, 15, 9, 13], "o": [true, true, true, true, true]}, {"i": [3, 6, 1, 15, 12, 13], "o": [true, true, true, true, true, true]}, {"i": [], "o": []}, {"i": [12, 3, 14], "o": [true, true, true]}, {"i": [], "o": []}]}, {"type": {"input": "list-of-int", "output": "list-of-bool"}, "name": "bool-identify-is-mod-k with k=2", "examples": [{"i": [2, 8, 0, 14, 3, 10], "o": [true, true, true, true, false, true]}, {"i": [2, 2, 2, 4], "o": [true, true, true, true]}, {"i": [5, 16, 12], "o": [false, true, true]}, {"i": [2, 2, 2, 4, 16], "o": [true, true, true, true, true]}, {"i": [2, 0, 7], "o": [true, true, false]}, {"i": [9, 2, 2, 8], "o": [false, true, true, true]}, {"i": [2, 2, 2], "o": [true, true, true]}, {"i": [2, 9, 11, 15], "o": [true, false, false, false]}, {"i": [4, 16, 10], "o": [true, true, true]}, {"i": [13, 2, 0, 1, 2], "o": [false, true, true, false, true]}, {"i": [2, 6], "o": [true, true]}, {"i": [8, 15, 16, 15], "o": [true, false, true, false]}, {"i": [], "o": []}, {"i": [0, 13, 2], "o": [true, false, true]}, {"i": [12], "o": [true]}]}, {"type": {"input": "list-of-int", "output": "list-of-bool"}, "name": "bool-identify-is-mod-k with k=3", "examples": [{"i": [5, 8, 8, 9, 4, 4], "o": [false, false, false, true, false, false]}, {"i": [11, 0, 1], "o": [false, true, false]}, {"i": [3, 3, 7, 3, 14], "o": [true, true, false, true, false]}, {"i": [1, 12, 8], "o": [false, true, false]}, {"i": [3, 3, 3, 5, 14], "o": [true, true, true, false, false]}, {"i": [3, 3], "o": [true, true]}, {"i": [], "o": []}, {"i": [12], "o": [true]}, {"i": [3], "o": [true]}, {"i": [2, 3, 16], "o": [false, true, false]}, {"i": [], "o": []}, {"i": [1, 6], "o": [false, true]}, {"i": [3, 3, 3, 3, 3], "o": [true, true, true, true, true]}, {"i": [3, 16, 11, 3], "o": [true, false, false, true]}, {"i": [16], "o": [false]}]}, {"type": {"input": "list-of-int", "output": "list-of-bool"}, "name": "bool-identify-is-mod-k with k=4", "examples": [{"i": [], "o": []}, {"i": [8, 14], "o": [true, false]}, {"i": [4, 12, 3, 15, 5, 5], "o": [true, true, false, false, false, false]}, {"i": [8], "o": [true]}, {"i": [0, 1, 2, 14, 3, 9, 12], "o": [true, false, false, false, false, false, true]}, {"i": [4, 4, 2, 4, 4, 4], "o": [true, true, false, true, true, true]}, {"i": [11, 12, 7], "o": [false, true, false]}, {"i": [14], "o": [false]}, {"i": [4, 0], "o": [true, true]}, {"i": [9, 1, 16], "o": [false, false, true]}, {"i": [13, 2], "o": [false, false]}, {"i": [2, 4], "o": [false, true]}, {"i": [9, 4, 5], "o": [false, true, false]}, {"i": [10, 4, 4], "o": [false, true, true]}, {"i": [1], "o": [false]}]}, {"type": {"input": "list-of-int", "output": "list-of-bool"}, "name": "bool-identify-is-mod-k with k=5", "examples": [{"i": [8, 7, 5, 10], "o": [false, false, true, true]}, {"i": [13, 5, 5, 8], "o": [false, true, true, false]}, {"i": [5, 5, 5], "o": [true, true, true]}, {"i": [2, 9, 3, 5, 16, 5], "o": [false, false, false, true, false, true]}, {"i": [10], "o": [true]}, {"i": [5], "o": [true]}, {"i": [11, 10, 12, 13, 2], "o": [false, true, false, false, false]}, {"i": [5, 6, 2, 8, 9, 0, 2], "o": [true, false, false, false, false, true, false]}, {"i": [5], "o": [true]}, {"i": [15, 0, 1, 3, 16, 9], "o": [true, true, false, false, false, false]}, {"i": [9, 14, 5], "o": [false, false, true]}, {"i": [], "o": []}, {"i": [5], "o": [true]}, {"i": [0, 7, 3, 15, 11, 1], "o": [true, false, false, true, false, false]}, {"i": [2, 12, 11, 14, 15, 9, 8], "o": [false, false, false, false, true, false, false]}]}, {"type": {"input": "list-of-int", "output": "list-of-bool"}, "name": "bool-identify-is-prime", "examples": [{"i": [2], "o": [true]}, {"i": [2, 0], "o": [true, false]}, {"i": [5, 11], "o": [true, true]}, {"i": [5, 11, 12], "o": [true, true, false]}, {"i": [2, 3, 4, 5, 7, 9], "o": [true, true, false, true, true, false]}, {"i": [7, 4, 11], "o": [true, false, true]}, {"i": [6, 13, 0, 2], "o": [false, true, false, true]}, {"i": [3, 6], "o": [true, false]}, {"i": [7, 7, 0], "o": [true, true, false]}, {"i": [5, 14, 10, 15, 6], "o": [true, false, false, false, false]}, {"i": [16, 12, 15, 7], "o": [false, false, false, true]}, {"i": [7, 6, 11], "o": [true, false, true]}, {"i": [10, 8, 4, 7], "o": [false, false, false, true]}, {"i": [12], "o": [false]}, {"i": [5], "o": [true]}]}, {"type": {"input": "list-of-int", "output": "list-of-bool"}, "name": "bool-identify-k with k=0", "examples": [{"i": [11, 9, 0], "o": [false, false, true]}, {"i": [], "o": []}, {"i": [0, 7], "o": [true, false]}, {"i": [], "o": []}, {"i": [10, 15], "o": [false, false]}, {"i": [16, 12, 15], "o": [false, false, false]}, {"i": [0, 0, 9], "o": [true, true, false]}, {"i": [0, 0, 0], "o": [true, true, true]}, {"i": [12], "o": [false]}, {"i": [0, 8], "o": [true, false]}, {"i": [3, 14, 15, 0], "o": [false, false, false, true]}, {"i": [0, 0, 0, 14, 9], "o": [true, true, true, false, false]}, {"i": [16, 15, 11], "o": [false, false, false]}, {"i": [9, 7, 2, 6], "o": [false, false, false, false]}, {"i": [9, 15, 4, 7], "o": [false, false, false, false]}]}, {"type": {"input": "list-of-int", "output": "list-of-bool"}, "name": "bool-identify-k with k=1", "examples": [{"i": [1, 2, 9, 16], "o": [true, false, false, false]}, {"i": [5, 8, 4, 13, 12], "o": [false, false, false, false, false]}, {"i": [15, 16], "o": [false, false]}, {"i": [1, 1, 1, 1], "o": [true, true, true, true]}, {"i": [], "o": []}, {"i": [1], "o": [true]}, {"i": [3, 3, 5, 1, 13], "o": [false, false, false, true, false]}, {"i": [1, 16, 1], "o": [true, false, true]}, {"i": [16, 6, 8, 13, 14], "o": [false, false, false, false, false]}, {"i": [1, 1, 1, 4, 1, 1], "o": [true, true, true, false, true, true]}, {"i": [6, 1, 1, 1], "o": [false, true, true, true]}, {"i": [8, 7], "o": [false, false]}, {"i": [1, 15], "o": [true, false]}, {"i": [1, 1, 1], "o": [true, true, true]}, {"i": [], "o": []}]}, {"type": {"input": "list-of-int", "output": "list-of-bool"}, "name": "bool-identify-k with k=2", "examples": [{"i": [14, 0, 2, 6], "o": [false, false, true, false]}, {"i": [2, 2, 2, 2, 2, 2, 2], "o": [true, true, true, true, true, true, true]}, {"i": [2], "o": [true]}, {"i": [2, 15], "o": [true, false]}, {"i": [0, 8, 7, 2, 5, 2], "o": [false, false, false, true, false, true]}, {"i": [9, 16, 3, 2, 7, 2], "o": [false, false, false, true, false, true]}, {"i": [13, 10, 9], "o": [false, false, false]}, {"i": [2, 2, 2, 2, 2, 2, 2], "o": [true, true, true, true, true, true, true]}, {"i": [2, 12, 11, 5, 12, 1], "o": [true, false, false, false, false, false]}, {"i": [8], "o": [false]}, {"i": [2, 2], "o": [true, true]}, {"i": [2, 2, 2, 2, 16, 2], "o": [true, true, true, true, false, true]}, {"i": [3], "o": [false]}, {"i": [3, 8, 1], "o": [false, false, false]}, {"i": [2, 2, 2, 2, 2, 2], "o": [true, true, true, true, true, true]}]}, {"type": {"input": "list-of-int", "output": "list-of-bool"}, "name": "bool-identify-k with k=3", "examples": [{"i": [2, 13], "o": [false, false]}, {"i": [3, 3, 3, 3, 3, 6, 3], "o": [true, true, true, true, true, false, true]}, {"i": [11, 0, 3, 3, 3, 3, 3], "o": [false, false, true, true, true, true, true]}, {"i": [13, 7, 9, 10], "o": [false, false, false, false]}, {"i": [], "o": []}, {"i": [12], "o": [false]}, {"i": [3, 3, 3], "o": [true, true, true]}, {"i": [10, 0, 15, 9, 13], "o": [false, false, false, false, false]}, {"i": [3, 6, 1, 15, 12, 13], "o": [true, false, false, false, false, false]}, {"i": [], "o": []}, {"i": [12, 3, 14], "o": [false, true, false]}, {"i": [], "o": []}, {"i": [2, 8, 0, 14, 3, 10], "o": [false, false, false, false, true, false]}, {"i": [3, 3, 3, 4], "o": [true, true, true, false]}, {"i": [5, 16, 12], "o": [false, false, false]}]}, {"type": {"input": "list-of-int", "output": "list-of-bool"}, "name": "bool-identify-k with k=4", "examples": [{"i": [4, 4, 14, 4, 16], "o": [true, true, false, true, false]}, {"i": [6, 4, 4, 0], "o": [false, true, true, false]}, {"i": [], "o": []}, {"i": [4, 4, 4, 12], "o": [true, true, true, false]}, {"i": [4, 13, 10, 4, 4, 4], "o": [true, false, false, true, true, true]}, {"i": [4, 16, 10], "o": [true, false, false]}, {"i": [13, 4, 0, 1, 4], "o": [false, true, false, false, true]}, {"i": [4], "o": [true]}, {"i": [15, 1, 2, 7, 5, 4, 0], "o": [false, false, false, false, false, true, false]}, {"i": [4, 4, 4, 4, 4, 4], "o": [true, true, true, true, true, true]}, {"i": [2, 7, 12], "o": [false, false, false]}, {"i": [], "o": []}, {"i": [2, 7, 3, 3], "o": [false, false, false, false]}, {"i": [4, 4, 4, 4, 4], "o": [true, true, true, true, true]}, {"i": [6, 4, 2], "o": [false, true, false]}]}, {"type": {"input": "list-of-int", "output": "list-of-bool"}, "name": "bool-identify-k with k=5", "examples": [{"i": [5], "o": [true]}, {"i": [1, 6], "o": [false, false]}, {"i": [5, 5, 5, 5, 5], "o": [true, true, true, true, true]}, {"i": [5, 16, 11, 5], "o": [true, false, false, true]}, {"i": [16], "o": [false]}, {"i": [], "o": []}, {"i": [8, 14], "o": [false, false]}, {"i": [4, 12, 3, 15, 5, 5], "o": [false, false, false, false, true, true]}, {"i": [8], "o": [false]}, {"i": [0, 1, 2, 14, 3, 9, 12], "o": [false, false, false, false, false, false, false]}, {"i": [5, 5, 2, 5, 5, 5], "o": [true, true, false, true, true, true]}, {"i": [11, 12, 7], "o": [false, false, false]}, {"i": [14], "o": [false]}, {"i": [5, 0], "o": [true, false]}, {"i": [9, 1, 16], "o": [false, false, false]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "caesar-cipher-k-modulo-n with k=0 and n=1", "examples": [{"i": [0, 0, 0, 0, 0], "o": [0, 0, 0, 0, 0]}, {"i": [0, 0, 0, 0], "o": [0, 0, 0, 0]}, {"i": [0, 0, 0, 0, 0], "o": [0, 0, 0, 0, 0]}, {"i": [0, 0, 0, 0, 0], "o": [0, 0, 0, 0, 0]}, {"i": [0, 0, 0, 0, 0, 0], "o": [0, 0, 0, 0, 0, 0]}, {"i": [0, 0, 0, 0], "o": [0, 0, 0, 0]}, {"i": [0, 0, 0, 0, 0, 0, 0], "o": [0, 0, 0, 0, 0, 0, 0]}, {"i": [0, 0, 0, 0], "o": [0, 0, 0, 0]}, {"i": [], "o": []}, {"i": [0, 0, 0, 0], "o": [0, 0, 0, 0]}, {"i": [0, 0, 0, 0, 0], "o": [0, 0, 0, 0, 0]}, {"i": [0, 0], "o": [0, 0]}, {"i": [0, 0, 0, 0, 0, 0], "o": [0, 0, 0, 0, 0, 0]}, {"i": [], "o": []}, {"i": [], "o": []}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "caesar-cipher-k-modulo-n with k=0 and n=2", "examples": [{"i": [1, 1, 1, 0, 1, 1], "o": [1, 1, 1, 0, 1, 1]}, {"i": [1, 0, 1, 1, 1, 0], "o": [1, 0, 1, 1, 1, 0]}, {"i": [1, 0], "o": [1, 0]}, {"i": [1, 0], "o": [1, 0]}, {"i": [], "o": []}, {"i": [0, 1, 0, 1, 0, 1], "o": [0, 1, 0, 1, 0, 1]}, {"i": [0, 1, 0, 1], "o": [0, 1, 0, 1]}, {"i": [1, 0], "o": [1, 0]}, {"i": [0, 0, 0], "o": [0, 0, 0]}, {"i": [1], "o": [1]}, {"i": [0], "o": [0]}, {"i": [], "o": []}, {"i": [1, 1, 0, 1, 0], "o": [1, 1, 0, 1, 0]}, {"i": [1], "o": [1]}, {"i": [], "o": []}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "caesar-cipher-k-modulo-n with k=0 and n=3", "examples": [{"i": [1, 1, 2, 0, 0], "o": [1, 1, 2, 0, 0]}, {"i": [2, 0], "o": [2, 0]}, {"i": [0, 0, 1, 2, 1, 0, 1], "o": [0, 0, 1, 2, 1, 0, 1]}, {"i": [1, 0, 2, 1, 0, 0], "o": [1, 0, 2, 1, 0, 0]}, {"i": [2, 2, 1, 2], "o": [2, 2, 1, 2]}, {"i": [0, 2, 1, 2], "o": [0, 2, 1, 2]}, {"i": [0, 2, 0], "o": [0, 2, 0]}, {"i": [2, 1], "o": [2, 1]}, {"i": [1, 2], "o": [1, 2]}, {"i": [2, 2, 1, 1, 1], "o": [2, 2, 1, 1, 1]}, {"i": [], "o": []}, {"i": [0], "o": [0]}, {"i": [2, 2], "o": [2, 2]}, {"i": [1, 1], "o": [1, 1]}, {"i": [2, 0, 2, 1], "o": [2, 0, 2, 1]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "caesar-cipher-k-modulo-n with k=0 and n=4", "examples": [{"i": [0, 1], "o": [0, 1]}, {"i": [0, 1, 0], "o": [0, 1, 0]}, {"i": [3, 0, 1, 2, 3, 0, 2], "o": [3, 0, 1, 2, 3, 0, 2]}, {"i": [3, 2, 3], "o": [3, 2, 3]}, {"i": [3, 3, 2], "o": [3, 3, 2]}, {"i": [3, 0, 3, 3], "o": [3, 0, 3, 3]}, {"i": [], "o": []}, {"i": [3, 3, 3, 2], "o": [3, 3, 3, 2]}, {"i": [2, 0, 3], "o": [2, 0, 3]}, {"i": [0], "o": [0]}, {"i": [2, 3, 2, 0, 2], "o": [2, 3, 2, 0, 2]}, {"i": [1], "o": [1]}, {"i": [3, 1], "o": [3, 1]}, {"i": [2], "o": [2]}, {"i": [2, 1, 2, 0, 0], "o": [2, 1, 2, 0, 0]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "caesar-cipher-k-modulo-n with k=0 and n=5", "examples": [{"i": [4], "o": [4]}, {"i": [1, 1, 2, 0], "o": [1, 1, 2, 0]}, {"i": [1], "o": [1]}, {"i": [3, 3], "o": [3, 3]}, {"i": [3, 3, 4], "o": [3, 3, 4]}, {"i": [4, 4, 3, 3, 1, 4, 1], "o": [4, 4, 3, 3, 1, 4, 1]}, {"i": [0, 1, 2, 0, 2, 3, 0], "o": [0, 1, 2, 0, 2, 3, 0]}, {"i": [0, 3, 1], "o": [0, 3, 1]}, {"i": [3, 4, 1, 4, 1, 0, 4], "o": [3, 4, 1, 4, 1, 0, 4]}, {"i": [1, 3, 4], "o": [1, 3, 4]}, {"i": [4, 1], "o": [4, 1]}, {"i": [2], "o": [2]}, {"i": [0, 4], "o": [0, 4]}, {"i": [2, 2], "o": [2, 2]}, {"i": [1, 4, 2, 1], "o": [1, 4, 2, 1]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "caesar-cipher-k-modulo-n with k=1 and n=1", "examples": [{"i": [], "o": []}, {"i": [0, 0, 0, 0, 0], "o": [0, 0, 0, 0, 0]}, {"i": [0, 0], "o": [0, 0]}, {"i": [0], "o": [0]}, {"i": [0, 0], "o": [0, 0]}, {"i": [0, 0, 0, 0], "o": [0, 0, 0, 0]}, {"i": [0], "o": [0]}, {"i": [0], "o": [0]}, {"i": [0, 0, 0, 0], "o": [0, 0, 0, 0]}, {"i": [0, 0, 0, 0], "o": [0, 0, 0, 0]}, {"i": [0, 0, 0, 0, 0], "o": [0, 0, 0, 0, 0]}, {"i": [], "o": []}, {"i": [0], "o": [0]}, {"i": [0, 0, 0, 0, 0], "o": [0, 0, 0, 0, 0]}, {"i": [0, 0, 0, 0, 0, 0, 0], "o": [0, 0, 0, 0, 0, 0, 0]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "caesar-cipher-k-modulo-n with k=1 and n=2", "examples": [{"i": [0, 0, 0, 1, 0], "o": [1, 1, 1, 0, 1]}, {"i": [], "o": []}, {"i": [0, 0, 1, 0, 1, 0], "o": [1, 1, 0, 1, 0, 1]}, {"i": [0, 1, 1], "o": [1, 0, 0]}, {"i": [1, 0, 1, 0, 0, 1, 0], "o": [0, 1, 0, 1, 1, 0, 1]}, {"i": [1, 1, 0], "o": [0, 0, 1]}, {"i": [0, 1, 0, 1, 0], "o": [1, 0, 1, 0, 1]}, {"i": [1, 1, 0], "o": [0, 0, 1]}, {"i": [1, 0, 1, 1, 1], "o": [0, 1, 0, 0, 0]}, {"i": [1, 0], "o": [0, 1]}, {"i": [], "o": []}, {"i": [0, 1, 0, 0, 1, 0], "o": [1, 0, 1, 1, 0, 1]}, {"i": [0, 1, 0], "o": [1, 0, 1]}, {"i": [0, 0, 1], "o": [1, 1, 0]}, {"i": [1], "o": [0]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "caesar-cipher-k-modulo-n with k=1 and n=3", "examples": [{"i": [2, 2, 2, 1], "o": [0, 0, 0, 2]}, {"i": [1, 1, 2, 1, 2, 2, 2], "o": [2, 2, 0, 2, 0, 0, 0]}, {"i": [1, 0, 0, 2, 0, 1], "o": [2, 1, 1, 0, 1, 2]}, {"i": [], "o": []}, {"i": [], "o": []}, {"i": [1, 0, 1, 1], "o": [2, 1, 2, 2]}, {"i": [0, 0, 0, 2, 2], "o": [1, 1, 1, 0, 0]}, {"i": [1, 0, 1, 1, 1], "o": [2, 1, 2, 2, 2]}, {"i": [0], "o": [1]}, {"i": [1, 2, 2, 1], "o": [2, 0, 0, 2]}, {"i": [1, 2, 1], "o": [2, 0, 2]}, {"i": [0, 0], "o": [1, 1]}, {"i": [1, 1, 0, 0], "o": [2, 2, 1, 1]}, {"i": [1, 1, 0, 0, 1, 0, 0], "o": [2, 2, 1, 1, 2, 1, 1]}, {"i": [2, 2, 1, 1, 2, 1, 0], "o": [0, 0, 2, 2, 0, 2, 1]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "caesar-cipher-k-modulo-n with k=1 and n=4", "examples": [{"i": [], "o": []}, {"i": [0], "o": [1]}, {"i": [2, 3, 2], "o": [3, 0, 3]}, {"i": [1, 2, 1, 3, 1], "o": [2, 3, 2, 0, 2]}, {"i": [2, 2, 0, 1, 2, 1, 1], "o": [3, 3, 1, 2, 3, 2, 2]}, {"i": [2, 1, 2], "o": [3, 2, 3]}, {"i": [0, 2, 1, 2], "o": [1, 3, 2, 3]}, {"i": [], "o": []}, {"i": [1, 3, 0], "o": [2, 0, 1]}, {"i": [2, 3, 1], "o": [3, 0, 2]}, {"i": [0, 3, 3], "o": [1, 0, 0]}, {"i": [2, 0, 2, 1, 3, 2], "o": [3, 1, 3, 2, 0, 3]}, {"i": [], "o": []}, {"i": [1, 2], "o": [2, 3]}, {"i": [0, 1, 1, 2, 3], "o": [1, 2, 2, 3, 0]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "caesar-cipher-k-modulo-n with k=1 and n=5", "examples": [{"i": [4, 3, 2, 3, 3, 1], "o": [0, 4, 3, 4, 4, 2]}, {"i": [1, 0, 2, 2, 2, 0, 2], "o": [2, 1, 3, 3, 3, 1, 3]}, {"i": [1], "o": [2]}, {"i": [2, 1, 2, 4], "o": [3, 2, 3, 0]}, {"i": [4, 3, 2, 4, 2], "o": [0, 4, 3, 0, 3]}, {"i": [4, 2, 2], "o": [0, 3, 3]}, {"i": [], "o": []}, {"i": [0, 0, 2, 4, 0, 1, 0], "o": [1, 1, 3, 0, 1, 2, 1]}, {"i": [2, 3, 3], "o": [3, 4, 4]}, {"i": [], "o": []}, {"i": [3, 3, 0, 2, 1, 0], "o": [4, 4, 1, 3, 2, 1]}, {"i": [0], "o": [1]}, {"i": [2, 2], "o": [3, 3]}, {"i": [1, 2, 4, 1, 0], "o": [2, 3, 0, 2, 1]}, {"i": [], "o": []}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "caesar-cipher-k-modulo-n with k=2 and n=1", "examples": [{"i": [], "o": []}, {"i": [0, 0, 0, 0, 0], "o": [0, 0, 0, 0, 0]}, {"i": [0, 0], "o": [0, 0]}, {"i": [0], "o": [0]}, {"i": [0, 0], "o": [0, 0]}, {"i": [0, 0, 0, 0], "o": [0, 0, 0, 0]}, {"i": [0], "o": [0]}, {"i": [0], "o": [0]}, {"i": [0, 0, 0, 0], "o": [0, 0, 0, 0]}, {"i": [0, 0, 0, 0], "o": [0, 0, 0, 0]}, {"i": [0, 0, 0, 0, 0], "o": [0, 0, 0, 0, 0]}, {"i": [], "o": []}, {"i": [0], "o": [0]}, {"i": [0, 0, 0, 0, 0], "o": [0, 0, 0, 0, 0]}, {"i": [0, 0, 0, 0, 0, 0, 0], "o": [0, 0, 0, 0, 0, 0, 0]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "caesar-cipher-k-modulo-n with k=2 and n=2", "examples": [{"i": [0, 0, 0, 1, 0], "o": [0, 0, 0, 1, 0]}, {"i": [], "o": []}, {"i": [0, 0, 1, 0, 1, 0], "o": [0, 0, 1, 0, 1, 0]}, {"i": [0, 1, 1], "o": [0, 1, 1]}, {"i": [1, 0, 1, 0, 0, 1, 0], "o": [1, 0, 1, 0, 0, 1, 0]}, {"i": [1, 1, 0], "o": [1, 1, 0]}, {"i": [0, 1, 0, 1, 0], "o": [0, 1, 0, 1, 0]}, {"i": [1, 1, 0], "o": [1, 1, 0]}, {"i": [1, 0, 1, 1, 1], "o": [1, 0, 1, 1, 1]}, {"i": [1, 0], "o": [1, 0]}, {"i": [], "o": []}, {"i": [0, 1, 0, 0, 1, 0], "o": [0, 1, 0, 0, 1, 0]}, {"i": [0, 1, 0], "o": [0, 1, 0]}, {"i": [0, 0, 1], "o": [0, 0, 1]}, {"i": [1], "o": [1]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "caesar-cipher-k-modulo-n with k=2 and n=3", "examples": [{"i": [2, 2, 2, 1], "o": [1, 1, 1, 0]}, {"i": [1, 1, 2, 1, 2, 2, 2], "o": [0, 0, 1, 0, 1, 1, 1]}, {"i": [1, 0, 0, 2, 0, 1], "o": [0, 2, 2, 1, 2, 0]}, {"i": [], "o": []}, {"i": [], "o": []}, {"i": [1, 0, 1, 1], "o": [0, 2, 0, 0]}, {"i": [0, 0, 0, 2, 2], "o": [2, 2, 2, 1, 1]}, {"i": [1, 0, 1, 1, 1], "o": [0, 2, 0, 0, 0]}, {"i": [0], "o": [2]}, {"i": [1, 2, 2, 1], "o": [0, 1, 1, 0]}, {"i": [1, 2, 1], "o": [0, 1, 0]}, {"i": [0, 0], "o": [2, 2]}, {"i": [1, 1, 0, 0], "o": [0, 0, 2, 2]}, {"i": [1, 1, 0, 0, 1, 0, 0], "o": [0, 0, 2, 2, 0, 2, 2]}, {"i": [2, 2, 1, 1, 2, 1, 0], "o": [1, 1, 0, 0, 1, 0, 2]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "caesar-cipher-k-modulo-n with k=2 and n=4", "examples": [{"i": [], "o": []}, {"i": [0], "o": [2]}, {"i": [2, 3, 2], "o": [0, 1, 0]}, {"i": [1, 2, 1, 3, 1], "o": [3, 0, 3, 1, 3]}, {"i": [2, 2, 0, 1, 2, 1, 1], "o": [0, 0, 2, 3, 0, 3, 3]}, {"i": [2, 1, 2], "o": [0, 3, 0]}, {"i": [0, 2, 1, 2], "o": [2, 0, 3, 0]}, {"i": [], "o": []}, {"i": [1, 3, 0], "o": [3, 1, 2]}, {"i": [2, 3, 1], "o": [0, 1, 3]}, {"i": [0, 3, 3], "o": [2, 1, 1]}, {"i": [2, 0, 2, 1, 3, 2], "o": [0, 2, 0, 3, 1, 0]}, {"i": [], "o": []}, {"i": [1, 2], "o": [3, 0]}, {"i": [0, 1, 1, 2, 3], "o": [2, 3, 3, 0, 1]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "caesar-cipher-k-modulo-n with k=2 and n=5", "examples": [{"i": [4, 3, 2, 3, 3, 1], "o": [1, 0, 4, 0, 0, 3]}, {"i": [1, 0, 2, 2, 2, 0, 2], "o": [3, 2, 4, 4, 4, 2, 4]}, {"i": [1], "o": [3]}, {"i": [2, 1, 2, 4], "o": [4, 3, 4, 1]}, {"i": [4, 3, 2, 4, 2], "o": [1, 0, 4, 1, 4]}, {"i": [4, 2, 2], "o": [1, 4, 4]}, {"i": [], "o": []}, {"i": [0, 0, 2, 4, 0, 1, 0], "o": [2, 2, 4, 1, 2, 3, 2]}, {"i": [2, 3, 3], "o": [4, 0, 0]}, {"i": [], "o": []}, {"i": [3, 3, 0, 2, 1, 0], "o": [0, 0, 2, 4, 3, 2]}, {"i": [0], "o": [2]}, {"i": [2, 2], "o": [4, 4]}, {"i": [1, 2, 4, 1, 0], "o": [3, 4, 1, 3, 2]}, {"i": [], "o": []}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "caesar-cipher-k-modulo-n with k=3 and n=1", "examples": [{"i": [0], "o": [0]}, {"i": [0, 0, 0], "o": [0, 0, 0]}, {"i": [0, 0, 0, 0], "o": [0, 0, 0, 0]}, {"i": [0, 0, 0, 0], "o": [0, 0, 0, 0]}, {"i": [0, 0, 0, 0], "o": [0, 0, 0, 0]}, {"i": [0, 0, 0, 0, 0, 0, 0], "o": [0, 0, 0, 0, 0, 0, 0]}, {"i": [0, 0, 0], "o": [0, 0, 0]}, {"i": [], "o": []}, {"i": [0, 0], "o": [0, 0]}, {"i": [0, 0, 0, 0, 0, 0], "o": [0, 0, 0, 0, 0, 0]}, {"i": [0, 0, 0, 0, 0], "o": [0, 0, 0, 0, 0]}, {"i": [], "o": []}, {"i": [0, 0, 0, 0, 0], "o": [0, 0, 0, 0, 0]}, {"i": [0, 0, 0], "o": [0, 0, 0]}, {"i": [0, 0], "o": [0, 0]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "caesar-cipher-k-modulo-n with k=3 and n=2", "examples": [{"i": [0, 0, 0, 0, 1, 1], "o": [1, 1, 1, 1, 0, 0]}, {"i": [1, 0, 0, 1, 0, 0], "o": [0, 1, 1, 0, 1, 1]}, {"i": [], "o": []}, {"i": [1, 1, 1, 1, 0], "o": [0, 0, 0, 0, 1]}, {"i": [1, 0, 0, 0, 1, 0, 0], "o": [0, 1, 1, 1, 0, 1, 1]}, {"i": [0], "o": [1]}, {"i": [0, 0, 0, 0, 1, 0, 1], "o": [1, 1, 1, 1, 0, 1, 0]}, {"i": [], "o": []}, {"i": [], "o": []}, {"i": [0, 1, 1, 0, 1, 1], "o": [1, 0, 0, 1, 0, 0]}, {"i": [], "o": []}, {"i": [1, 1, 0, 0], "o": [0, 0, 1, 1]}, {"i": [1], "o": [0]}, {"i": [1, 0, 1, 1, 1], "o": [0, 1, 0, 0, 0]}, {"i": [], "o": []}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "caesar-cipher-k-modulo-n with k=3 and n=3", "examples": [{"i": [0, 0, 0, 2], "o": [0, 0, 0, 2]}, {"i": [0, 0, 2], "o": [0, 0, 2]}, {"i": [2, 0, 1, 0, 2, 1], "o": [2, 0, 1, 0, 2, 1]}, {"i": [1, 1], "o": [1, 1]}, {"i": [0], "o": [0]}, {"i": [0], "o": [0]}, {"i": [1, 1, 2], "o": [1, 1, 2]}, {"i": [0, 1, 0], "o": [0, 1, 0]}, {"i": [2], "o": [2]}, {"i": [], "o": []}, {"i": [1, 0, 1, 2, 1, 2, 1], "o": [1, 0, 1, 2, 1, 2, 1]}, {"i": [0, 1, 0, 1, 1, 1], "o": [0, 1, 0, 1, 1, 1]}, {"i": [2, 2, 2], "o": [2, 2, 2]}, {"i": [1, 2, 0], "o": [1, 2, 0]}, {"i": [0, 1, 1, 2], "o": [0, 1, 1, 2]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "caesar-cipher-k-modulo-n with k=3 and n=4", "examples": [{"i": [2, 0], "o": [1, 3]}, {"i": [0, 1, 1, 1, 1, 2], "o": [3, 0, 0, 0, 0, 1]}, {"i": [1, 1], "o": [0, 0]}, {"i": [0, 3, 1, 2, 3, 0, 0], "o": [3, 2, 0, 1, 2, 3, 3]}, {"i": [3, 0, 3, 3, 3], "o": [2, 3, 2, 2, 2]}, {"i": [3, 2, 2, 1, 2, 1], "o": [2, 1, 1, 0, 1, 0]}, {"i": [], "o": []}, {"i": [0, 3, 1], "o": [3, 2, 0]}, {"i": [0], "o": [3]}, {"i": [1, 3, 2, 3, 2], "o": [0, 2, 1, 2, 1]}, {"i": [1, 2, 3, 3, 0, 1], "o": [0, 1, 2, 2, 3, 0]}, {"i": [1, 1, 3, 1], "o": [0, 0, 2, 0]}, {"i": [0], "o": [3]}, {"i": [], "o": []}, {"i": [2, 3, 0, 1, 2], "o": [1, 2, 3, 0, 1]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "caesar-cipher-k-modulo-n with k=3 and n=5", "examples": [{"i": [3, 1, 1, 4, 1, 2], "o": [1, 4, 4, 2, 4, 0]}, {"i": [2, 1, 0, 3], "o": [0, 4, 3, 1]}, {"i": [0, 1, 3, 2, 4], "o": [3, 4, 1, 0, 2]}, {"i": [1, 1], "o": [4, 4]}, {"i": [4, 0], "o": [2, 3]}, {"i": [], "o": []}, {"i": [2], "o": [0]}, {"i": [4, 2, 2, 0, 2], "o": [2, 0, 0, 3, 0]}, {"i": [], "o": []}, {"i": [], "o": []}, {"i": [2, 0, 1, 2, 4, 3], "o": [0, 3, 4, 0, 2, 1]}, {"i": [1, 2], "o": [4, 0]}, {"i": [1, 2, 2, 4], "o": [4, 0, 0, 2]}, {"i": [3, 0, 3, 4, 3, 3], "o": [1, 3, 1, 2, 1, 1]}, {"i": [1], "o": [4]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "caesar-cipher-k-modulo-n with k=4 and n=1", "examples": [{"i": [], "o": []}, {"i": [0, 0, 0, 0, 0], "o": [0, 0, 0, 0, 0]}, {"i": [0, 0], "o": [0, 0]}, {"i": [0], "o": [0]}, {"i": [0, 0], "o": [0, 0]}, {"i": [0, 0, 0, 0], "o": [0, 0, 0, 0]}, {"i": [0], "o": [0]}, {"i": [0], "o": [0]}, {"i": [0, 0, 0, 0], "o": [0, 0, 0, 0]}, {"i": [0, 0, 0, 0], "o": [0, 0, 0, 0]}, {"i": [0, 0, 0, 0, 0], "o": [0, 0, 0, 0, 0]}, {"i": [], "o": []}, {"i": [0], "o": [0]}, {"i": [0, 0, 0, 0, 0], "o": [0, 0, 0, 0, 0]}, {"i": [0, 0, 0, 0, 0, 0, 0], "o": [0, 0, 0, 0, 0, 0, 0]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "caesar-cipher-k-modulo-n with k=4 and n=2", "examples": [{"i": [0, 0, 0, 1, 0], "o": [0, 0, 0, 1, 0]}, {"i": [], "o": []}, {"i": [0, 0, 1, 0, 1, 0], "o": [0, 0, 1, 0, 1, 0]}, {"i": [0, 1, 1], "o": [0, 1, 1]}, {"i": [1, 0, 1, 0, 0, 1, 0], "o": [1, 0, 1, 0, 0, 1, 0]}, {"i": [1, 1, 0], "o": [1, 1, 0]}, {"i": [0, 1, 0, 1, 0], "o": [0, 1, 0, 1, 0]}, {"i": [1, 1, 0], "o": [1, 1, 0]}, {"i": [1, 0, 1, 1, 1], "o": [1, 0, 1, 1, 1]}, {"i": [1, 0], "o": [1, 0]}, {"i": [], "o": []}, {"i": [0, 1, 0, 0, 1, 0], "o": [0, 1, 0, 0, 1, 0]}, {"i": [0, 1, 0], "o": [0, 1, 0]}, {"i": [0, 0, 1], "o": [0, 0, 1]}, {"i": [1], "o": [1]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "caesar-cipher-k-modulo-n with k=4 and n=3", "examples": [{"i": [2, 2, 2, 1], "o": [0, 0, 0, 2]}, {"i": [1, 1, 2, 1, 2, 2, 2], "o": [2, 2, 0, 2, 0, 0, 0]}, {"i": [1, 0, 0, 2, 0, 1], "o": [2, 1, 1, 0, 1, 2]}, {"i": [], "o": []}, {"i": [], "o": []}, {"i": [1, 0, 1, 1], "o": [2, 1, 2, 2]}, {"i": [0, 0, 0, 2, 2], "o": [1, 1, 1, 0, 0]}, {"i": [1, 0, 1, 1, 1], "o": [2, 1, 2, 2, 2]}, {"i": [0], "o": [1]}, {"i": [1, 2, 2, 1], "o": [2, 0, 0, 2]}, {"i": [1, 2, 1], "o": [2, 0, 2]}, {"i": [0, 0], "o": [1, 1]}, {"i": [1, 1, 0, 0], "o": [2, 2, 1, 1]}, {"i": [1, 1, 0, 0, 1, 0, 0], "o": [2, 2, 1, 1, 2, 1, 1]}, {"i": [2, 2, 1, 1, 2, 1, 0], "o": [0, 0, 2, 2, 0, 2, 1]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "caesar-cipher-k-modulo-n with k=4 and n=4", "examples": [{"i": [], "o": []}, {"i": [0], "o": [0]}, {"i": [2, 3, 2], "o": [2, 3, 2]}, {"i": [1, 2, 1, 3, 1], "o": [1, 2, 1, 3, 1]}, {"i": [2, 2, 0, 1, 2, 1, 1], "o": [2, 2, 0, 1, 2, 1, 1]}, {"i": [2, 1, 2], "o": [2, 1, 2]}, {"i": [0, 2, 1, 2], "o": [0, 2, 1, 2]}, {"i": [], "o": []}, {"i": [1, 3, 0], "o": [1, 3, 0]}, {"i": [2, 3, 1], "o": [2, 3, 1]}, {"i": [0, 3, 3], "o": [0, 3, 3]}, {"i": [2, 0, 2, 1, 3, 2], "o": [2, 0, 2, 1, 3, 2]}, {"i": [], "o": []}, {"i": [1, 2], "o": [1, 2]}, {"i": [0, 1, 1, 2, 3], "o": [0, 1, 1, 2, 3]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "caesar-cipher-k-modulo-n with k=4 and n=5", "examples": [{"i": [4, 3, 2, 3, 3, 1], "o": [3, 2, 1, 2, 2, 0]}, {"i": [1, 0, 2, 2, 2, 0, 2], "o": [0, 4, 1, 1, 1, 4, 1]}, {"i": [1], "o": [0]}, {"i": [2, 1, 2, 4], "o": [1, 0, 1, 3]}, {"i": [4, 3, 2, 4, 2], "o": [3, 2, 1, 3, 1]}, {"i": [4, 2, 2], "o": [3, 1, 1]}, {"i": [], "o": []}, {"i": [0, 0, 2, 4, 0, 1, 0], "o": [4, 4, 1, 3, 4, 0, 4]}, {"i": [2, 3, 3], "o": [1, 2, 2]}, {"i": [], "o": []}, {"i": [3, 3, 0, 2, 1, 0], "o": [2, 2, 4, 1, 0, 4]}, {"i": [0], "o": [4]}, {"i": [2, 2], "o": [1, 1]}, {"i": [1, 2, 4, 1, 0], "o": [0, 1, 3, 0, 4]}, {"i": [], "o": []}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "caesar-cipher-k-modulo-n with k=5 and n=1", "examples": [{"i": [], "o": []}, {"i": [], "o": []}, {"i": [0, 0, 0, 0], "o": [0, 0, 0, 0]}, {"i": [0, 0, 0, 0, 0, 0], "o": [0, 0, 0, 0, 0, 0]}, {"i": [0, 0, 0], "o": [0, 0, 0]}, {"i": [0, 0, 0, 0, 0], "o": [0, 0, 0, 0, 0]}, {"i": [0, 0, 0, 0, 0], "o": [0, 0, 0, 0, 0]}, {"i": [0, 0, 0, 0, 0, 0, 0], "o": [0, 0, 0, 0, 0, 0, 0]}, {"i": [0, 0, 0, 0, 0, 0, 0], "o": [0, 0, 0, 0, 0, 0, 0]}, {"i": [], "o": []}, {"i": [], "o": []}, {"i": [0, 0, 0, 0, 0], "o": [0, 0, 0, 0, 0]}, {"i": [0, 0, 0, 0, 0, 0], "o": [0, 0, 0, 0, 0, 0]}, {"i": [0, 0, 0], "o": [0, 0, 0]}, {"i": [0, 0, 0], "o": [0, 0, 0]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "caesar-cipher-k-modulo-n with k=5 and n=2", "examples": [{"i": [1, 1, 0, 0, 1], "o": [0, 0, 1, 1, 0]}, {"i": [1, 1, 1, 1, 0], "o": [0, 0, 0, 0, 1]}, {"i": [1], "o": [0]}, {"i": [1, 1, 0, 1, 1, 0, 0], "o": [0, 0, 1, 0, 0, 1, 1]}, {"i": [0], "o": [1]}, {"i": [], "o": []}, {"i": [0, 1, 0], "o": [1, 0, 1]}, {"i": [1, 0, 1, 1], "o": [0, 1, 0, 0]}, {"i": [0, 0, 0, 1, 1], "o": [1, 1, 1, 0, 0]}, {"i": [0, 0, 0, 1], "o": [1, 1, 1, 0]}, {"i": [0, 0, 1, 1, 0], "o": [1, 1, 0, 0, 1]}, {"i": [0, 1, 0, 1, 0, 1], "o": [1, 0, 1, 0, 1, 0]}, {"i": [], "o": []}, {"i": [], "o": []}, {"i": [1, 1, 1, 0, 1, 1, 0], "o": [0, 0, 0, 1, 0, 0, 1]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "caesar-cipher-k-modulo-n with k=5 and n=3", "examples": [{"i": [1, 2, 0], "o": [0, 1, 2]}, {"i": [1, 1, 0, 2], "o": [0, 0, 2, 1]}, {"i": [1, 2, 0, 2, 1], "o": [0, 1, 2, 1, 0]}, {"i": [1, 2, 1, 2], "o": [0, 1, 0, 1]}, {"i": [2, 1, 1, 0, 0, 2, 2], "o": [1, 0, 0, 2, 2, 1, 1]}, {"i": [1, 0, 1, 1], "o": [0, 2, 0, 0]}, {"i": [2, 0], "o": [1, 2]}, {"i": [2], "o": [1]}, {"i": [2], "o": [1]}, {"i": [0, 0, 2, 1, 0, 2, 2], "o": [2, 2, 1, 0, 2, 1, 1]}, {"i": [2, 0, 0], "o": [1, 2, 2]}, {"i": [2], "o": [1]}, {"i": [2, 2, 1, 0, 0], "o": [1, 1, 0, 2, 2]}, {"i": [2], "o": [1]}, {"i": [0, 0, 0, 1, 1, 1], "o": [2, 2, 2, 0, 0, 0]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "caesar-cipher-k-modulo-n with k=5 and n=4", "examples": [{"i": [3, 2, 1, 3, 3], "o": [0, 3, 2, 0, 0]}, {"i": [2, 0, 1, 1], "o": [3, 1, 2, 2]}, {"i": [2, 2, 0, 1, 2, 3, 3], "o": [3, 3, 1, 2, 3, 0, 0]}, {"i": [0, 3, 1, 1, 0], "o": [1, 0, 2, 2, 1]}, {"i": [3, 0, 0], "o": [0, 1, 1]}, {"i": [], "o": []}, {"i": [0, 0], "o": [1, 1]}, {"i": [1, 0, 1, 2, 1, 2], "o": [2, 1, 2, 3, 2, 3]}, {"i": [0, 3, 2, 2, 2], "o": [1, 0, 3, 3, 3]}, {"i": [], "o": []}, {"i": [3, 1, 2, 1, 1], "o": [0, 2, 3, 2, 2]}, {"i": [3, 1, 3], "o": [0, 2, 0]}, {"i": [3, 3], "o": [0, 0]}, {"i": [0, 0, 0, 0, 2, 2], "o": [1, 1, 1, 1, 3, 3]}, {"i": [2, 0, 0, 2, 1, 0], "o": [3, 1, 1, 3, 2, 1]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "caesar-cipher-k-modulo-n with k=5 and n=5", "examples": [{"i": [], "o": []}, {"i": [3, 4, 3, 4, 1], "o": [3, 4, 3, 4, 1]}, {"i": [3, 0, 1, 0, 3, 0, 1], "o": [3, 0, 1, 0, 3, 0, 1]}, {"i": [1], "o": [1]}, {"i": [2, 1, 2, 2, 3, 1, 2], "o": [2, 1, 2, 2, 3, 1, 2]}, {"i": [], "o": []}, {"i": [], "o": []}, {"i": [0, 4, 4, 2, 3, 3], "o": [0, 4, 4, 2, 3, 3]}, {"i": [], "o": []}, {"i": [4, 3, 1, 0], "o": [4, 3, 1, 0]}, {"i": [4], "o": [4]}, {"i": [3, 0, 4, 4, 2], "o": [3, 0, 4, 4, 2]}, {"i": [], "o": []}, {"i": [1, 0, 0, 4], "o": [1, 0, 0, 4]}, {"i": [0, 1, 4], "o": [0, 1, 4]}]}, {"type": {"input": "list-of-int", "output": "int"}, "name": "count-head-in-tail", "examples": [{"i": [1, 1, 2], "o": 1}, {"i": [1, 2, 3], "o": 0}, {"i": [2, 1, 2], "o": 1}, {"i": [2, 3, 4], "o": 0}, {"i": [0, 5, 4, 0, 2], "o": 1}, {"i": [3, 1, 3, 3, 2], "o": 2}, {"i": [4, 2, 6, 10, 8, 12], "o": 0}, {"i": [12], "o": 0}, {"i": [7], "o": 0}, {"i": [10], "o": 0}, {"i": [4], "o": 0}, {"i": [14, 14], "o": 1}, {"i": [9, 14, 15, 7, 2, 6, 2], "o": 0}, {"i": [10, 12, 1, 6, 9, 3, 11], "o": 0}, {"i": [11], "o": 0}]}, {"type": {"input": "list-of-int", "output": "int"}, "name": "count-k with k=0", "examples": [{"i": [11, 9, 0], "o": 1}, {"i": [], "o": 0}, {"i": [0, 7], "o": 1}, {"i": [], "o": 0}, {"i": [10, 15], "o": 0}, {"i": [16, 12, 15], "o": 0}, {"i": [0, 0, 9], "o": 2}, {"i": [0, 0, 0], "o": 3}, {"i": [12], "o": 0}, {"i": [0, 8], "o": 1}, {"i": [3, 14, 15, 0], "o": 1}, {"i": [0, 0, 0, 14, 9], "o": 3}, {"i": [16, 15, 11], "o": 0}, {"i": [9, 7, 2, 6], "o": 0}, {"i": [9, 15, 4, 7], "o": 0}]}, {"type": {"input": "list-of-int", "output": "int"}, "name": "count-k with k=1", "examples": [{"i": [1, 2, 9, 16], "o": 1}, {"i": [5, 8, 4, 13, 12], "o": 0}, {"i": [15, 16], "o": 0}, {"i": [1, 1, 1, 1], "o": 4}, {"i": [], "o": 0}, {"i": [1], "o": 1}, {"i": [3, 3, 5, 1, 13], "o": 1}, {"i": [1, 16, 1], "o": 2}, {"i": [16, 6, 8, 13, 14], "o": 0}, {"i": [1, 1, 1, 4, 1, 1], "o": 5}, {"i": [6, 1, 1, 1], "o": 3}, {"i": [8, 7], "o": 0}, {"i": [1, 15], "o": 1}, {"i": [1, 1, 1], "o": 3}, {"i": [], "o": 0}]}, {"type": {"input": "list-of-int", "output": "int"}, "name": "count-k with k=2", "examples": [{"i": [14, 0, 2, 6], "o": 1}, {"i": [2, 2, 2, 2, 2, 2, 2], "o": 7}, {"i": [2], "o": 1}, {"i": [2, 15], "o": 1}, {"i": [0, 8, 7, 2, 5, 2], "o": 2}, {"i": [9, 16, 3, 2, 7, 2], "o": 2}, {"i": [13, 10, 9], "o": 0}, {"i": [2, 2, 2, 2, 2, 2, 2], "o": 7}, {"i": [2, 12, 11, 5, 12, 1], "o": 1}, {"i": [8], "o": 0}, {"i": [2, 2], "o": 2}, {"i": [2, 2, 2, 2, 16, 2], "o": 5}, {"i": [3], "o": 0}, {"i": [3, 8, 1], "o": 0}, {"i": [2, 2, 2, 2, 2, 2], "o": 6}]}, {"type": {"input": "list-of-int", "output": "int"}, "name": "count-k with k=3", "examples": [{"i": [2, 13], "o": 0}, {"i": [3, 3, 3, 3, 3, 6, 3], "o": 6}, {"i": [11, 0, 3, 3, 3, 3, 3], "o": 5}, {"i": [13, 7, 9, 10], "o": 0}, {"i": [], "o": 0}, {"i": [12], "o": 0}, {"i": [3, 3, 3], "o": 3}, {"i": [10, 0, 15, 9, 13], "o": 0}, {"i": [3, 6, 1, 15, 12, 13], "o": 1}, {"i": [], "o": 0}, {"i": [12, 3, 14], "o": 1}, {"i": [], "o": 0}, {"i": [2, 8, 0, 14, 3, 10], "o": 1}, {"i": [3, 3, 3, 4], "o": 3}, {"i": [5, 16, 12], "o": 0}]}, {"type": {"input": "list-of-int", "output": "int"}, "name": "count-k with k=4", "examples": [{"i": [4, 4, 14, 4, 16], "o": 3}, {"i": [6, 4, 4, 0], "o": 2}, {"i": [], "o": 0}, {"i": [4, 4, 4, 12], "o": 3}, {"i": [4, 13, 10, 4, 4, 4], "o": 4}, {"i": [4, 16, 10], "o": 1}, {"i": [13, 4, 0, 1, 4], "o": 2}, {"i": [4], "o": 1}, {"i": [15, 1, 2, 7, 5, 4, 0], "o": 1}, {"i": [4, 4, 4, 4, 4, 4], "o": 6}, {"i": [2, 7, 12], "o": 0}, {"i": [], "o": 0}, {"i": [2, 7, 3, 3], "o": 0}, {"i": [4, 4, 4, 4, 4], "o": 5}, {"i": [6, 4, 2], "o": 1}]}, {"type": {"input": "list-of-int", "output": "int"}, "name": "count-k with k=5", "examples": [{"i": [5], "o": 1}, {"i": [1, 6], "o": 0}, {"i": [5, 5, 5, 5, 5], "o": 5}, {"i": [5, 16, 11, 5], "o": 2}, {"i": [16], "o": 0}, {"i": [], "o": 0}, {"i": [8, 14], "o": 0}, {"i": [4, 12, 3, 15, 5, 5], "o": 2}, {"i": [8], "o": 0}, {"i": [0, 1, 2, 14, 3, 9, 12], "o": 0}, {"i": [5, 5, 2, 5, 5, 5], "o": 5}, {"i": [11, 12, 7], "o": 0}, {"i": [14], "o": 0}, {"i": [5, 0], "o": 1}, {"i": [9, 1, 16], "o": 0}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "drop-k with k=0", "examples": [{"i": [10], "o": [10]}, {"i": [9, 16, 12, 14], "o": [9, 16, 12, 14]}, {"i": [14, 10, 6, 7, 5, 6, 14], "o": [14, 10, 6, 7, 5, 6, 14]}, {"i": [2, 13, 4], "o": [2, 13, 4]}, {"i": [11, 11, 14], "o": [11, 11, 14]}, {"i": [15, 8, 12, 8, 14], "o": [15, 8, 12, 8, 14]}, {"i": [13, 12, 1, 9, 7, 9, 13], "o": [13, 12, 1, 9, 7, 9, 13]}, {"i": [13, 8, 3, 6], "o": [13, 8, 3, 6]}, {"i": [10, 12, 10, 11, 0, 10, 2], "o": [10, 12, 10, 11, 0, 10, 2]}, {"i": [14, 9, 0, 7], "o": [14, 9, 0, 7]}, {"i": [7, 4, 2, 1, 4], "o": [7, 4, 2, 1, 4]}, {"i": [5, 2, 4, 9, 9, 1], "o": [5, 2, 4, 9, 9, 1]}, {"i": [2], "o": [2]}, {"i": [13, 2, 15, 14, 6, 4], "o": [13, 2, 15, 14, 6, 4]}, {"i": [5, 5], "o": [5, 5]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "drop-k with k=1", "examples": [{"i": [15, 1], "o": [1]}, {"i": [15, 8, 10, 1, 14, 1, 3], "o": [8, 10, 1, 14, 1, 3]}, {"i": [6, 8, 8, 1, 9], "o": [8, 8, 1, 9]}, {"i": [11, 2, 10, 10], "o": [2, 10, 10]}, {"i": [13, 2], "o": [2]}, {"i": [4, 7, 11, 4, 2, 5, 13, 5], "o": [7, 11, 4, 2, 5, 13, 5]}, {"i": [12, 0], "o": [0]}, {"i": [0, 1, 2, 7, 16, 3], "o": [1, 2, 7, 16, 3]}, {"i": [16, 2, 1, 12, 1, 11, 15], "o": [2, 1, 12, 1, 11, 15]}, {"i": [9, 9, 15], "o": [9, 15]}, {"i": [6, 4, 15, 0], "o": [4, 15, 0]}, {"i": [5, 16, 16, 9], "o": [16, 16, 9]}, {"i": [8], "o": []}, {"i": [16], "o": []}, {"i": [3, 13], "o": [13]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "drop-k with k=2", "examples": [{"i": [15, 16, 10, 8, 15, 9, 15], "o": [10, 8, 15, 9, 15]}, {"i": [2, 12, 4, 8, 13, 5, 2, 6], "o": [4, 8, 13, 5, 2, 6]}, {"i": [15, 13, 0, 15, 8, 9, 16, 7, 6], "o": [0, 15, 8, 9, 16, 7, 6]}, {"i": [2, 14, 1], "o": [1]}, {"i": [2, 12, 7, 12], "o": [7, 12]}, {"i": [13, 0], "o": []}, {"i": [5, 16, 1, 6, 12, 5, 6, 10, 10], "o": [1, 6, 12, 5, 6, 10, 10]}, {"i": [7, 3, 2, 8], "o": [2, 8]}, {"i": [13, 10, 5, 13, 5, 1], "o": [5, 13, 5, 1]}, {"i": [0, 9, 1], "o": [1]}, {"i": [15, 11, 4, 15, 14, 16, 2], "o": [4, 15, 14, 16, 2]}, {"i": [10, 5, 5], "o": [5]}, {"i": [12, 5, 7, 15, 6], "o": [7, 15, 6]}, {"i": [2, 14, 6, 12], "o": [6, 12]}, {"i": [14, 9, 12, 12, 2, 16, 1, 3, 4], "o": [12, 12, 2, 16, 1, 3, 4]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "drop-k with k=3", "examples": [{"i": [16, 3, 9, 1, 7, 12, 5, 12, 4, 14], "o": [1, 7, 12, 5, 12, 4, 14]}, {"i": [10, 6, 5, 4, 15, 11, 8, 8], "o": [4, 15, 11, 8, 8]}, {"i": [13, 0, 5, 14, 1, 12, 1, 12, 5, 4], "o": [14, 1, 12, 1, 12, 5, 4]}, {"i": [10, 15, 13, 9, 13, 15, 7, 12, 3, 14], "o": [9, 13, 15, 7, 12, 3, 14]}, {"i": [4, 1, 11, 2, 3, 15, 2, 0, 12], "o": [2, 3, 15, 2, 0, 12]}, {"i": [1, 5, 8, 16, 15, 10, 14, 11], "o": [16, 15, 10, 14, 11]}, {"i": [11, 12, 13, 4, 0, 13, 6, 9, 1, 9], "o": [4, 0, 13, 6, 9, 1, 9]}, {"i": [8, 5, 1, 4, 15, 4, 9, 11, 1], "o": [4, 15, 4, 9, 11, 1]}, {"i": [9, 15, 11, 10, 4, 13], "o": [10, 4, 13]}, {"i": [7, 11, 12, 8, 15, 1, 9, 2], "o": [8, 15, 1, 9, 2]}, {"i": [9, 0, 5, 8, 5, 8, 13], "o": [8, 5, 8, 13]}, {"i": [2, 5, 14, 8, 8], "o": [8, 8]}, {"i": [14, 0, 7, 11, 10, 0, 5, 2], "o": [11, 10, 0, 5, 2]}, {"i": [16, 9, 15, 4], "o": [4]}, {"i": [14, 16, 4, 13, 11, 6, 13, 16, 1, 5], "o": [13, 11, 6, 13, 16, 1, 5]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "drop-k with k=4", "examples": [{"i": [7, 0, 3, 6, 10, 4], "o": [10, 4]}, {"i": [1, 13, 0, 6, 13], "o": [13]}, {"i": [0, 5, 2, 14, 9, 3], "o": [9, 3]}, {"i": [0, 13, 4, 2], "o": []}, {"i": [5, 12, 2, 4, 15, 16], "o": [15, 16]}, {"i": [5, 11, 5, 6, 7, 1, 3, 9, 14, 8], "o": [7, 1, 3, 9, 14, 8]}, {"i": [4, 8, 4, 5], "o": []}, {"i": [12, 10, 12, 0, 2, 10, 9, 6], "o": [2, 10, 9, 6]}, {"i": [7, 4, 8, 1], "o": []}, {"i": [7, 14, 14, 11, 8, 14, 3, 8, 6, 1], "o": [8, 14, 3, 8, 6, 1]}, {"i": [14, 4, 4, 13, 12], "o": [12]}, {"i": [7, 16, 6, 13, 16, 4, 7], "o": [16, 4, 7]}, {"i": [4, 3, 8, 1, 14, 9, 6], "o": [14, 9, 6]}, {"i": [11, 1, 8, 6, 5, 4, 10, 12, 15, 8], "o": [5, 4, 10, 12, 15, 8]}, {"i": [7, 2, 7, 14, 6, 0, 2, 14, 2, 16], "o": [6, 0, 2, 14, 2, 16]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "drop-k with k=5", "examples": [{"i": [15, 6, 2, 1, 7, 7, 2, 11, 14, 6, 7, 11], "o": [7, 2, 11, 14, 6, 7, 11]}, {"i": [13, 1, 12, 11, 6, 11, 15, 11, 2, 7, 8], "o": [11, 15, 11, 2, 7, 8]}, {"i": [5, 10, 1, 4, 3, 5, 6, 0, 6, 3, 16], "o": [5, 6, 0, 6, 3, 16]}, {"i": [5, 10, 1, 5, 6, 16, 12, 9, 2, 7, 13], "o": [16, 12, 9, 2, 7, 13]}, {"i": [1, 8, 14, 3, 14, 3, 15, 11, 11, 14], "o": [3, 15, 11, 11, 14]}, {"i": [14, 2, 8, 4, 1, 9, 9, 4], "o": [9, 9, 4]}, {"i": [4, 14, 0, 12, 7], "o": []}, {"i": [2, 9, 16, 2, 7, 12], "o": [12]}, {"i": [0, 8, 7, 16, 13, 3, 8, 0, 13], "o": [3, 8, 0, 13]}, {"i": [9, 15, 0, 1, 8, 6, 2, 11, 4, 11], "o": [6, 2, 11, 4, 11]}, {"i": [15, 16, 16, 16, 6, 0, 4, 7], "o": [0, 4, 7]}, {"i": [16, 7, 3, 14, 4, 9, 1, 13, 4, 8, 6], "o": [9, 1, 13, 4, 8, 6]}, {"i": [7, 13, 16, 12, 4, 5], "o": [5]}, {"i": [13, 11, 10, 7, 13, 11, 9], "o": [11, 9]}, {"i": [7, 15, 3, 15, 7, 7, 11], "o": [7, 11]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "dup", "examples": [{"i": [0], "o": [0, 0]}, {"i": [7, 2, 4], "o": [7, 7, 2, 2, 4, 4]}, {"i": [14, 3, 7, 3, 12, 8], "o": [14, 14, 3, 3, 7, 7, 3, 3, 12, 12, 8, 8]}, {"i": [10, 7], "o": [10, 10, 7, 7]}, {"i": [1], "o": [1, 1]}, {"i": [5], "o": [5, 5]}, {"i": [7, 8, 16], "o": [7, 7, 8, 8, 16, 16]}, {"i": [4, 9, 2], "o": [4, 4, 9, 9, 2, 2]}, {"i": [15], "o": [15, 15]}, {"i": [], "o": []}, {"i": [8, 0, 9, 15, 7, 14, 9], "o": [8, 8, 0, 0, 9, 9, 15, 15, 7, 7, 14, 14, 9, 9]}, {"i": [1, 7, 2, 6, 6, 9], "o": [1, 1, 7, 7, 2, 2, 6, 6, 6, 6, 9, 9]}, {"i": [16, 15, 13], "o": [16, 16, 15, 15, 13, 13]}, {"i": [8, 16, 5], "o": [8, 8, 16, 16, 5, 5]}, {"i": [0, 5, 8, 16], "o": [0, 0, 5, 5, 8, 8, 16, 16]}]}, {"type": {"input": "list-of-int", "output": "bool"}, "name": "empty", "examples": [{"i": [1, 2, 3], "o": false}, {"i": [], "o": true}, {"i": [0], "o": false}, {"i": [1, 1, 2, 1], "o": false}, {"i": [], "o": true}, {"i": [7, 7, 3, 2], "o": false}, {"i": [], "o": true}, {"i": [10, 10, 6, 13, 4], "o": false}, {"i": [4, 7, 16, 11, 10, 3, 15], "o": false}, {"i": [4], "o": false}, {"i": [6, 0, 14, 0, 2, 12], "o": false}, {"i": [], "o": true}, {"i": [], "o": true}, {"i": [12, 15], "o": false}, {"i": [2, 16, 2, 5, 15, 6, 7], "o": false}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "evens", "examples": [{"i": [2, 0, 4], "o": [2, 0, 4]}, {"i": [2, 5, 4, 2, 0, 5, 1, 1], "o": [2, 4, 2, 0]}, {"i": [12, 13], "o": [12]}, {"i": [4], "o": [4]}, {"i": [1], "o": []}, {"i": [], "o": []}, {"i": [14, 7, 3, 1, 9, 9, 5], "o": [14]}, {"i": [6, 4, 7], "o": [6, 4]}, {"i": [7, 0, 12, 7], "o": [0, 12]}, {"i": [15], "o": []}, {"i": [], "o": []}, {"i": [2, 2, 8, 7], "o": [2, 2, 8]}, {"i": [10, 11, 8, 16], "o": [10, 8, 16]}, {"i": [5, 5, 8, 7, 4, 16], "o": [8, 4, 16]}, {"i": [14], "o": [14]}]}, {"type": {"input": "int", "output": "int"}, "name": "fibonacci", "examples": [{"i": 2, "o": 1}, {"i": 4, "o": 3}, {"i": 6, "o": 8}, {"i": 9, "o": 34}, {"i": 9, "o": 34}, {"i": 9, "o": 34}, {"i": 9, "o": 34}, {"i": 8, "o": 21}, {"i": 2, "o": 1}, {"i": 6, "o": 8}, {"i": 2, "o": 1}, {"i": 1, "o": 1}, {"i": 6, "o": 8}, {"i": 13, "o": 233}, {"i": 8, "o": 21}]}, {"type": {"input": "list-of-int", "output": "bool"}, "name": "has-head-in-tail", "examples": [{"i": [1, 1, 2], "o": true}, {"i": [1, 2, 3], "o": false}, {"i": [2, 1, 2], "o": true}, {"i": [2, 3, 4], "o": false}, {"i": [3, 1, 3, 4, 2], "o": true}, {"i": [4, 2, 6, 10, 8, 12], "o": false}, {"i": [11, 11, 11], "o": true}, {"i": [7, 7, 7], "o": true}, {"i": [2, 15, 2, 2, 2, 2], "o": true}, {"i": [6, 6, 16, 6, 2], "o": true}, {"i": [15, 13, 10], "o": false}, {"i": [5, 14, 14, 1, 7, 9, 4], "o": false}, {"i": [14, 3, 14, 11], "o": true}, {"i": [2, 2, 13, 2, 2, 2, 4], "o": true}, {"i": [0, 0, 0, 5, 0], "o": true}]}, {"type": {"input": "list-of-int", "output": "bool"}, "name": "has-k with k=0", "examples": [{"i": [6, 11, 0, 11], "o": true}, {"i": [3, 8, 9], "o": false}, {"i": [9, 0, 0, 0], "o": true}, {"i": [0, 0, 0], "o": true}, {"i": [1, 8], "o": false}, {"i": [0, 0, 0], "o": true}, {"i": [], "o": false}, {"i": [], "o": false}, {"i": [], "o": false}, {"i": [4, 9, 6, 11], "o": false}, {"i": [], "o": false}, {"i": [13], "o": false}, {"i": [5, 7, 6, 8, 3], "o": false}, {"i": [9, 12], "o": false}, {"i": [6, 9, 11, 7, 5, 5, 0], "o": true}]}, {"type": {"input": "list-of-int", "output": "bool"}, "name": "has-k with k=1", "examples": [{"i": [6, 0, 3, 16], "o": false}, {"i": [0, 0, 5, 3], "o": false}, {"i": [16], "o": false}, {"i": [14, 8, 1, 1, 1, 1], "o": true}, {"i": [6, 14, 4], "o": false}, {"i": [11, 1, 7, 8, 4, 5, 6], "o": true}, {"i": [1, 1, 1, 7], "o": true}, {"i": [1, 1, 1], "o": true}, {"i": [1, 1, 1], "o": true}, {"i": [2, 4, 6, 9], "o": false}, {"i": [16, 10, 7, 12, 13, 3], "o": false}, {"i": [8, 8, 7, 1, 1, 2, 3], "o": true}, {"i": [1], "o": true}, {"i": [15, 7, 6, 15, 7], "o": false}, {"i": [1, 1, 1, 1], "o": true}]}, {"type": {"input": "list-of-int", "output": "bool"}, "name": "has-k with k=2", "examples": [{"i": [1, 7, 3, 2, 3], "o": true}, {"i": [], "o": false}, {"i": [12, 4, 7, 15], "o": false}, {"i": [2], "o": true}, {"i": [9, 6], "o": false}, {"i": [2, 3, 6, 6, 7, 7], "o": true}, {"i": [2, 2, 2, 2, 2], "o": true}, {"i": [12], "o": false}, {"i": [0, 2], "o": true}, {"i": [2, 2, 2, 2, 2, 2], "o": true}, {"i": [11, 9, 16, 9, 7, 2, 6], "o": true}, {"i": [9, 15, 4, 7], "o": false}, {"i": [1, 2, 9, 16], "o": true}, {"i": [5, 8, 4, 13, 12], "o": false}, {"i": [15, 16], "o": false}]}, {"type": {"input": "list-of-int", "output": "bool"}, "name": "has-k with k=3", "examples": [{"i": [3, 3, 3, 3], "o": true}, {"i": [], "o": false}, {"i": [3], "o": true}, {"i": [13, 3, 5, 5, 13], "o": true}, {"i": [3, 16, 3], "o": true}, {"i": [16, 6, 8, 13, 14], "o": false}, {"i": [3, 3, 3, 4, 3, 3], "o": true}, {"i": [6, 3, 3, 3], "o": true}, {"i": [8, 7], "o": false}, {"i": [3, 15], "o": true}, {"i": [3], "o": true}, {"i": [3, 2, 3, 3], "o": true}, {"i": [], "o": false}, {"i": [3, 15], "o": true}, {"i": [3, 6], "o": true}]}, {"type": {"input": "list-of-int", "output": "bool"}, "name": "has-k with k=4", "examples": [{"i": [7, 3, 14, 6, 3], "o": false}, {"i": [16], "o": false}, {"i": [9, 4, 4, 4, 4, 4], "o": true}, {"i": [16, 14, 7, 8, 7, 1, 3], "o": false}, {"i": [4], "o": true}, {"i": [4, 4, 13], "o": true}, {"i": [], "o": false}, {"i": [4, 4, 13], "o": true}, {"i": [4, 4, 9, 16, 4, 4, 4], "o": true}, {"i": [15, 14, 11, 7], "o": false}, {"i": [4, 4, 4, 4, 4], "o": true}, {"i": [9, 4, 3, 4], "o": true}, {"i": [7, 11, 13, 15, 16], "o": false}, {"i": [11, 11, 4, 14, 6, 14, 0], "o": true}, {"i": [3], "o": false}]}, {"type": {"input": "list-of-int", "output": "bool"}, "name": "has-k with k=5", "examples": [{"i": [3, 8, 1], "o": false}, {"i": [5, 5, 5, 5, 5, 5], "o": true}, {"i": [2, 13], "o": false}, {"i": [5, 5, 5, 5, 5, 6, 5], "o": true}, {"i": [11, 0, 5, 5, 5, 5, 5], "o": true}, {"i": [13, 7, 9, 10], "o": false}, {"i": [], "o": false}, {"i": [12], "o": false}, {"i": [5, 5, 5], "o": true}, {"i": [10, 0, 15, 9, 13], "o": false}, {"i": [3, 6, 1, 15, 12, 13], "o": false}, {"i": [], "o": false}, {"i": [12, 3, 14], "o": false}, {"i": [], "o": false}, {"i": [2, 8, 0, 14, 3, 10], "o": false}]}, {"type": {"input": "list-of-int", "output": "int"}, "name": "head", "examples": [{"i": [1, 2, 3], "o": 1}, {"i": [0], "o": 0}, {"i": [1, 1, 2, 1], "o": 1}, {"i": [8, 13, 8, 0, 14, 0, 5], "o": 8}, {"i": [9, 3], "o": 9}, {"i": [16], "o": 16}, {"i": [14, 8, 2, 12, 10], "o": 14}, {"i": [0, 5], "o": 0}, {"i": [7, 11], "o": 7}, {"i": [11, 10, 12, 13, 2, 15], "o": 11}, {"i": [5, 6, 2, 8, 9], "o": 5}, {"i": [2], "o": 2}, {"i": [8, 7], "o": 8}, {"i": [11, 13, 15, 15, 0, 1, 3], "o": 11}, {"i": [9, 7, 8, 1, 9, 14, 16], "o": 9}]}, {"type": {"input": "list-of-int", "output": "int"}, "name": "index-head", "examples": [{"i": [1, 1, 2], "o": 1}, {"i": [1, 2, 3], "o": 2}, {"i": [2, 1, 2], "o": 2}, {"i": [2, 3, 4], "o": 4}, {"i": [3, 1, 3, 4, 2], "o": 4}, {"i": [4, 2, 6, 10, 8, 12], "o": 8}, {"i": [1, 1], "o": 1}, {"i": [1, 10, 1, 4], "o": 10}, {"i": [1, 3], "o": 3}, {"i": [2, 0, 15, 9, 10, 14], "o": 15}, {"i": [3, 2, 6, 2, 15, 10, 13], "o": 2}, {"i": [1, 6, 9, 3, 11, 1], "o": 6}, {"i": [4, 9, 7, 7, 3, 2], "o": 3}, {"i": [1, 11], "o": 11}, {"i": [3, 6, 13, 4, 6], "o": 4}]}, {"type": {"input": "list-of-int", "output": "int"}, "name": "index-k with k=1", "examples": [{"i": [1, 12, 4, 0, 0, 14, 14, 14], "o": 1}, {"i": [0, 7, 3, 15, 11, 1, 16], "o": 0}, {"i": [2, 12, 11, 14, 15, 9, 8], "o": 2}, {"i": [4, 3, 13, 1], "o": 4}, {"i": [6, 4, 6, 12, 0, 8, 1, 16], "o": 6}, {"i": [6, 1, 4, 12, 12, 0], "o": 6}, {"i": [15, 16, 9, 12, 15, 0, 2, 7], "o": 15}, {"i": [13, 14, 7, 10, 9, 7], "o": 13}, {"i": [8, 1, 10, 4, 3], "o": 8}, {"i": [10, 4, 16, 1], "o": 10}, {"i": [5, 15, 8, 10, 13, 12, 7, 0], "o": 5}, {"i": [12, 12], "o": 12}, {"i": [5, 16, 10, 16, 8, 7, 2], "o": 5}, {"i": [4, 1, 12, 0, 9, 12], "o": 4}, {"i": [0, 3, 1, 6], "o": 0}]}, {"type": {"input": "list-of-int", "output": "int"}, "name": "index-k with k=2", "examples": [{"i": [15, 3, 9, 14, 0, 2, 5], "o": 3}, {"i": [11, 7, 12, 5], "o": 7}, {"i": [4, 14, 13, 8, 14, 14, 16], "o": 14}, {"i": [3, 10], "o": 10}, {"i": [13, 2], "o": 2}, {"i": [1, 11], "o": 11}, {"i": [10, 10, 6, 8, 1, 3, 0], "o": 10}, {"i": [9, 9, 1], "o": 9}, {"i": [11, 13, 10, 6, 8], "o": 13}, {"i": [2, 5, 14], "o": 5}, {"i": [8, 9, 0, 3, 2, 16, 12, 4, 8], "o": 9}, {"i": [0, 8, 11, 16, 14, 13, 8], "o": 8}, {"i": [8, 10, 0, 6, 10, 8, 10, 12, 11], "o": 10}, {"i": [8, 13, 4, 4, 12, 7], "o": 13}, {"i": [9, 1, 10, 13, 4, 11, 10, 5], "o": 1}]}, {"type": {"input": "list-of-int", "output": "int"}, "name": "index-k with k=3", "examples": [{"i": [12, 14, 15, 4, 8, 1, 0, 10, 8, 0], "o": 15}, {"i": [4, 11, 14, 0, 13, 1, 10, 5], "o": 14}, {"i": [8, 12, 0, 1], "o": 0}, {"i": [12, 15, 10, 10, 3, 8, 1, 11, 6], "o": 10}, {"i": [8, 14, 2, 12, 3, 6, 0], "o": 2}, {"i": [16, 1, 14], "o": 14}, {"i": [13, 0, 3, 2, 9, 14, 4, 12], "o": 3}, {"i": [5, 12, 14, 13, 2, 3, 14, 5, 3], "o": 14}, {"i": [12, 4, 1, 1], "o": 1}, {"i": [8, 2, 15, 3, 10, 0], "o": 15}, {"i": [5, 6, 0, 9, 6, 7, 15], "o": 0}, {"i": [3, 11, 3], "o": 3}, {"i": [3, 7, 16, 2, 2, 13, 0, 13, 5], "o": 16}, {"i": [6, 2, 6, 12], "o": 6}, {"i": [0, 10, 11, 7, 4], "o": 11}]}, {"type": {"input": "list-of-int", "output": "int"}, "name": "index-k with k=4", "examples": [{"i": [1, 11, 0, 11], "o": 11}, {"i": [2, 16, 6, 4, 4, 1, 5, 1, 10], "o": 4}, {"i": [9, 13, 4, 8, 10, 3], "o": 8}, {"i": [12, 9, 0, 0, 5], "o": 0}, {"i": [10, 5, 2, 16, 10, 1, 9, 16, 8, 11, 16], "o": 16}, {"i": [1, 11, 7, 2, 5, 9, 11, 13, 2, 9], "o": 2}, {"i": [5, 11, 2, 10, 13, 9, 13, 16], "o": 10}, {"i": [4, 5, 2, 14, 6, 9], "o": 14}, {"i": [1, 1, 7, 3, 11, 16, 4, 10, 7, 5, 7], "o": 3}, {"i": [2, 14, 10, 13], "o": 13}, {"i": [10, 8, 6, 7, 15, 2, 9, 16], "o": 7}, {"i": [4, 0, 3, 4, 9, 2, 15, 4, 8, 5, 8], "o": 4}, {"i": [4, 16, 5, 11, 11, 14], "o": 11}, {"i": [4, 6, 12, 8], "o": 8}, {"i": [14, 9, 7, 11], "o": 11}]}, {"type": {"input": "list-of-int", "output": "int"}, "name": "index-k with k=5", "examples": [{"i": [0, 15, 1, 4, 12, 10, 8, 7, 4, 2, 3, 12], "o": 12}, {"i": [13, 15, 6, 5, 2, 13, 14, 5, 12], "o": 2}, {"i": [16, 11, 8, 8, 5, 6, 2], "o": 5}, {"i": [9, 1, 6, 0, 4, 14, 15, 6, 6, 14, 4, 7], "o": 4}, {"i": [4, 3, 1, 4, 0, 6, 0, 14, 13, 12], "o": 0}, {"i": [1, 7, 3, 16, 10, 12, 14, 12, 16, 13, 8, 3], "o": 10}, {"i": [0, 4, 2, 11, 6, 4, 9, 11, 5, 11, 1, 0], "o": 6}, {"i": [1, 12, 15, 3, 7, 14], "o": 7}, {"i": [15, 8, 9, 0, 11, 12, 9, 15], "o": 11}, {"i": [0, 8, 9, 6, 7, 13, 8, 13, 16, 7, 10, 10], "o": 7}, {"i": [9, 10, 2, 3, 5, 1, 8, 4, 3, 3, 16], "o": 5}, {"i": [16, 4, 1, 12, 3, 12, 15], "o": 3}, {"i": [1, 5, 15, 15, 2, 10, 13, 15, 3, 7], "o": 2}, {"i": [4, 7, 13, 6, 12], "o": 12}, {"i": [11, 11, 12, 5, 13, 11], "o": 13}]}, {"type": {"input": "list-of-int", "output": "bool"}, "name": "is-evens", "examples": [{"i": [2, 0, 4], "o": true}, {"i": [2, 5, 4, 2, 0, 5, 1, 1], "o": false}, {"i": [14, 6, 5], "o": false}, {"i": [8, 3], "o": false}, {"i": [12, 16, 22, 22, 4, 2, 6], "o": true}, {"i": [8, 4], "o": true}, {"i": [26, 20, 32, 10, 16, 16, 12], "o": true}, {"i": [28], "o": true}, {"i": [11, 16, 10, 2, 1, 8], "o": false}, {"i": [14, 10, 4, 0, 12, 6], "o": true}, {"i": [24, 10, 30, 4, 14], "o": true}, {"i": [5, 7, 14, 0, 13, 5, 9], "o": false}, {"i": [4, 13, 12, 8, 14, 1, 7], "o": false}, {"i": [22, 2, 20], "o": true}, {"i": [3, 6, 4], "o": false}]}, {"type": {"input": "list-of-int", "output": "bool"}, "name": "is-mod-k with k=1", "examples": [{"i": [4, 7, 16, 11, 10, 3, 15], "o": true}, {"i": [4], "o": true}, {"i": [6, 0, 14, 0, 2, 12], "o": true}, {"i": [0, 6, 4, 12, 15], "o": true}, {"i": [2, 16, 2, 5, 15, 6, 7], "o": true}, {"i": [6, 11, 0, 11, 7, 9], "o": true}, {"i": [9, 10, 4], "o": true}, {"i": [1, 13, 10, 13], "o": true}, {"i": [6, 1, 13, 7], "o": true}, {"i": [1, 12, 3], "o": true}, {"i": [14, 1], "o": true}, {"i": [2, 13, 3], "o": true}, {"i": [14, 13, 12, 6], "o": true}, {"i": [6, 14, 7], "o": true}, {"i": [13, 14, 7, 1, 0, 11, 0], "o": true}]}, {"type": {"input": "list-of-int", "output": "bool"}, "name": "is-mod-k with k=2", "examples": [{"i": [], "o": true}, {"i": [9, 4, 9, 6], "o": false}, {"i": [], "o": true}, {"i": [13], "o": false}, {"i": [22, 10, 14, 12, 16], "o": true}, {"i": [9, 9], "o": false}, {"i": [18, 12, 18, 22, 14, 10, 10], "o": true}, {"i": [11, 6, 0, 3], "o": false}, {"i": [22, 0, 0, 10], "o": true}, {"i": [14], "o": true}, {"i": [12, 16, 28, 16, 4, 2], "o": true}, {"i": [7], "o": false}, {"i": [18, 24, 14, 22, 12, 28], "o": true}, {"i": [24, 22, 2, 14, 16, 8, 10], "o": true}, {"i": [6, 10, 9, 1], "o": false}]}, {"type": {"input": "list-of-int", "output": "bool"}, "name": "is-mod-k with k=3", "examples": [{"i": [24, 0, 21], "o": true}, {"i": [1, 6, 11, 14, 7, 6, 2], "o": false}, {"i": [39, 27, 6, 33, 12, 39, 33], "o": true}, {"i": [8, 8], "o": false}, {"i": [12], "o": true}, {"i": [39, 39, 48, 30], "o": true}, {"i": [39, 9, 45, 9, 6], "o": true}, {"i": [21, 0, 27, 6], "o": true}, {"i": [9, 3, 7, 14], "o": false}, {"i": [36, 27, 45, 21, 18, 45], "o": true}, {"i": [0, 16, 0, 3], "o": false}, {"i": [9, 9, 0, 21, 27, 30, 30], "o": true}, {"i": [33, 33, 3, 21, 9, 6], "o": true}, {"i": [], "o": true}, {"i": [8, 12, 4, 7], "o": false}]}, {"type": {"input": "list-of-int", "output": "bool"}, "name": "is-mod-k with k=4", "examples": [{"i": [8], "o": true}, {"i": [7, 4, 11], "o": false}, {"i": [52, 0, 8], "o": true}, {"i": [24], "o": true}, {"i": [28, 0, 44], "o": true}, {"i": [10, 15, 6, 9, 16, 12], "o": false}, {"i": [7, 7, 6], "o": false}, {"i": [40, 32, 16, 28], "o": true}, {"i": [3, 5, 15, 16, 13], "o": false}, {"i": [0, 12, 40, 48, 16, 20], "o": true}, {"i": [], "o": true}, {"i": [56, 12, 56, 60], "o": true}, {"i": [0, 7, 13, 8, 10], "o": false}, {"i": [24, 20, 0, 28], "o": true}, {"i": [16, 15, 11, 9, 16], "o": false}]}, {"type": {"input": "list-of-int", "output": "bool"}, "name": "is-mod-k with k=5", "examples": [{"i": [2, 6, 8], "o": false}, {"i": [15, 4, 7, 9], "o": false}, {"i": [], "o": true}, {"i": [16, 11, 14, 5], "o": false}, {"i": [65, 60], "o": true}, {"i": [15, 16, 9, 6], "o": false}, {"i": [12, 8], "o": false}, {"i": [60, 25, 45, 25, 25], "o": true}, {"i": [0, 10, 3, 3, 10, 4], "o": false}, {"i": [40, 5, 15, 15, 25], "o": true}, {"i": [65, 35, 5, 35, 5, 80], "o": true}, {"i": [], "o": true}, {"i": [12, 10, 16, 6, 8, 13], "o": false}, {"i": [3, 12, 12, 15, 2, 4], "o": false}, {"i": [4], "o": false}]}, {"type": {"input": "list-of-int", "output": "bool"}, "name": "is-odds", "examples": [{"i": [2, 0, 4], "o": false}, {"i": [2, 5, 4, 2, 0, 5, 1, 1], "o": false}, {"i": [9, 7, 27], "o": true}, {"i": [6, 4, 6, 12, 0, 8, 1], "o": false}, {"i": [13, 3, 9, 25, 25], "o": true}, {"i": [31, 33, 19, 25, 31, 1, 5], "o": true}, {"i": [27, 29, 15, 21, 19], "o": true}, {"i": [17, 3, 21, 9], "o": true}, {"i": [21, 9, 33], "o": true}, {"i": [11, 31, 17, 21, 27, 25, 15], "o": true}, {"i": [12], "o": false}, {"i": [11, 33, 21, 33, 17, 15], "o": true}, {"i": [4, 1, 12, 0, 9], "o": false}, {"i": [1, 7, 3], "o": true}, {"i": [31, 7, 19, 29, 1], "o": true}]}, {"type": {"input": "list-of-int", "output": "bool"}, "name": "is-primes", "examples": [{"i": [2], "o": true}, {"i": [2, 0], "o": false}, {"i": [5, 11], "o": true}, {"i": [5, 11, 12], "o": false}, {"i": [13, 9, 13, 0, 3, 10, 12], "o": false}, {"i": [71, 13], "o": true}, {"i": [4, 13], "o": false}, {"i": [67, 179, 17, 163, 79], "o": true}, {"i": [13, 14], "o": false}, {"i": [17, 193, 149, 13, 3, 47], "o": true}, {"i": [0, 2, 6, 16], "o": false}, {"i": [4], "o": false}, {"i": [5], "o": true}, {"i": [5, 13, 7, 5], "o": true}, {"i": [], "o": true}]}, {"type": {"input": "list-of-int", "output": "bool"}, "name": "is-squares", "examples": [{"i": [25], "o": true}, {"i": [3], "o": false}, {"i": [1, 4], "o": true}, {"i": [1, 4, 9], "o": true}, {"i": [1, 4, 9, 15], "o": false}, {"i": [144, 169], "o": true}, {"i": [9, 1], "o": true}, {"i": [196, 49, 9, 1, 81, 81, 25], "o": true}, {"i": [16, 49, 100], "o": true}, {"i": [], "o": true}, {"i": [4, 15, 1], "o": false}, {"i": [2], "o": false}, {"i": [9, 10, 11], "o": false}, {"i": [169, 25, 25, 64, 49, 16, 256], "o": true}, {"i": [256, 64, 169, 64, 0, 196], "o": true}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "keep-mod-head", "examples": [{"i": [3, 1, 3, 4, 7, 6, 9, 2], "o": [3, 6, 9]}, {"i": [4, 2, 6, 10, 8, 12], "o": [8, 12]}, {"i": [1, 2, 3], "o": [2, 3]}, {"i": [2], "o": []}, {"i": [8, 24, 32], "o": [24, 32]}, {"i": [1, 15], "o": [15]}, {"i": [6, 18], "o": [18]}, {"i": [3, 24, 3, 9, 12], "o": [24, 3, 9, 12]}, {"i": [7, 13], "o": []}, {"i": [10, 2, 12, 9], "o": []}, {"i": [6, 6, 5, 24, 54, 24], "o": [6, 24, 54, 24]}, {"i": [4], "o": []}, {"i": [5, 15, 0, 20, 13, 7], "o": [15, 0, 20]}, {"i": [12, 3], "o": []}, {"i": [7, 3, 9], "o": []}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "keep-mod-k with k=1", "examples": [{"i": [2, 12, 12, 11, 5, 12], "o": [2, 12, 12, 11, 5, 12]}, {"i": [], "o": []}, {"i": [8], "o": [8]}, {"i": [9, 2], "o": [9, 2]}, {"i": [4], "o": [4]}, {"i": [7, 11, 13, 15, 16], "o": [7, 11, 13, 15, 16]}, {"i": [11, 11, 4, 14, 6, 14, 0], "o": [11, 11, 4, 14, 6, 14, 0]}, {"i": [3], "o": [3]}, {"i": [3, 8, 1], "o": [3, 8, 1]}, {"i": [16, 11, 13, 5, 14, 4], "o": [16, 11, 13, 5, 14, 4]}, {"i": [7], "o": [7]}, {"i": [15, 5], "o": [15, 5]}, {"i": [4, 8, 6, 3, 16, 4, 9], "o": [4, 8, 6, 3, 16, 4, 9]}, {"i": [5, 15, 8], "o": [5, 15, 8]}, {"i": [5, 15], "o": [5, 15]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "keep-mod-k with k=2", "examples": [{"i": [0, 8, 1, 15, 10], "o": [0, 8, 10]}, {"i": [6, 8, 6, 14, 11, 4, 15], "o": [6, 8, 6, 14, 4]}, {"i": [], "o": []}, {"i": [2, 1, 10, 8, 4, 6, 2], "o": [2, 10, 8, 4, 6, 2]}, {"i": [4, 9, 4, 4], "o": [4, 4, 4]}, {"i": [1, 10, 11], "o": [10]}, {"i": [], "o": []}, {"i": [10, 8, 16, 5, 9], "o": [10, 8, 16]}, {"i": [13, 9, 11, 13], "o": []}, {"i": [10, 0, 16], "o": [10, 0, 16]}, {"i": [12], "o": [12]}, {"i": [2, 12, 2], "o": [2, 12, 2]}, {"i": [0, 15, 9, 13, 13, 15, 3], "o": [0]}, {"i": [12, 6, 16], "o": [12, 6, 16]}, {"i": [9, 4, 1, 5, 8], "o": [4, 8]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "keep-mod-k with k=3", "examples": [{"i": [5, 16, 12], "o": [12]}, {"i": [0, 0, 15, 4, 16], "o": [0, 0, 15]}, {"i": [], "o": []}, {"i": [8, 12, 6, 12], "o": [12, 6, 12]}, {"i": [3, 9, 3, 15, 10], "o": [3, 9, 3, 15]}, {"i": [0, 6, 9, 4, 16], "o": [0, 6, 9]}, {"i": [3, 4, 13, 10, 0], "o": [3, 0]}, {"i": [], "o": []}, {"i": [12, 15, 0], "o": [12, 15, 0]}, {"i": [13, 3], "o": [3]}, {"i": [14, 13, 5, 8, 8, 9, 4], "o": [9]}, {"i": [18, 0], "o": [18, 0]}, {"i": [4, 3, 7], "o": [3]}, {"i": [6, 10, 2, 7, 12], "o": [6, 12]}, {"i": [], "o": []}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "keep-mod-k with k=4", "examples": [{"i": [2, 7, 3, 3], "o": []}, {"i": [24, 16, 28, 4, 0], "o": [24, 16, 28, 4, 0]}, {"i": [4, 2], "o": [4]}, {"i": [0], "o": [0]}, {"i": [20, 6, 28, 4, 32], "o": [20, 28, 4, 32]}, {"i": [2, 8, 5, 7], "o": [8]}, {"i": [36, 36, 16], "o": [36, 36, 16]}, {"i": [16], "o": [16]}, {"i": [], "o": []}, {"i": [8, 14], "o": [8]}, {"i": [4, 12, 3, 15, 5, 5], "o": [4, 12]}, {"i": [8], "o": [8]}, {"i": [0, 1, 2, 14, 3, 9, 12], "o": [0, 12]}, {"i": [24, 8, 28, 36, 11, 12], "o": [24, 8, 28, 36, 12]}, {"i": [7, 3, 10, 14, 4], "o": [4]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "keep-mod-k with k=5", "examples": [{"i": [0, 25, 6], "o": [0, 25]}, {"i": [], "o": []}, {"i": [13, 2], "o": []}, {"i": [2, 20], "o": [20]}, {"i": [20], "o": [20]}, {"i": [10, 7, 0], "o": [10, 0]}, {"i": [15, 1, 20, 2, 2], "o": [15, 20]}, {"i": [11, 8, 16, 13], "o": []}, {"i": [7, 5], "o": [5]}, {"i": [8, 13, 8, 0, 14, 0], "o": [0, 0]}, {"i": [35, 25], "o": [35, 25]}, {"i": [5, 2, 7, 11, 13], "o": [5]}, {"i": [12, 13, 2, 15, 11], "o": [15]}, {"i": [5, 9], "o": [5]}, {"i": [40], "o": [40]}]}, {"type": {"input": "list-of-int", "output": "int"}, "name": "kth-largest with k=1", "examples": [{"i": [2, 15, 14, 6, 4, 5, 5], "o": 15}, {"i": [3, 15, 1], "o": 15}, {"i": [15, 8, 10, 1, 14, 1, 3], "o": 15}, {"i": [6, 8, 8, 1, 9], "o": 9}, {"i": [11, 2, 10, 10], "o": 11}, {"i": [13, 2], "o": 13}, {"i": [4, 7, 11, 4, 2, 5, 13, 5], "o": 13}, {"i": [12, 0], "o": 12}, {"i": [0, 1, 2, 7, 16, 3], "o": 16}, {"i": [16, 2, 1, 12, 1, 11, 15], "o": 16}, {"i": [9, 9, 15], "o": 15}, {"i": [6, 4, 15, 0], "o": 15}, {"i": [5, 16, 16, 9], "o": 16}, {"i": [8], "o": 8}, {"i": [16], "o": 16}]}, {"type": {"input": "list-of-int", "output": "int"}, "name": "kth-largest with k=2", "examples": [{"i": [3, 13, 12], "o": 12}, {"i": [16, 10, 8, 15, 9, 15, 14, 2, 12], "o": 15}, {"i": [8, 13, 5, 2], "o": 8}, {"i": [16, 15, 13, 0, 15], "o": 15}, {"i": [9, 16, 7, 6, 3], "o": 9}, {"i": [14, 1], "o": 1}, {"i": [2, 12, 7, 12], "o": 12}, {"i": [13, 0], "o": 0}, {"i": [5, 16, 1, 6, 12, 5, 6, 10, 10], "o": 12}, {"i": [7, 3, 2, 8], "o": 7}, {"i": [13, 10, 5, 13, 5, 1], "o": 13}, {"i": [0, 9, 1], "o": 1}, {"i": [15, 11, 4, 15, 14, 16, 2], "o": 15}, {"i": [10, 5, 5], "o": 5}, {"i": [12, 5, 7, 15, 6], "o": 12}]}, {"type": {"input": "list-of-int", "output": "int"}, "name": "kth-largest with k=3", "examples": [{"i": [2, 14, 6, 12, 15], "o": 12}, {"i": [9, 12, 12, 2, 16, 1, 3, 4, 16], "o": 12}, {"i": [3, 9, 1, 7, 12, 5, 12, 4, 14, 12], "o": 12}, {"i": [6, 5, 4, 15, 11, 8, 8], "o": 8}, {"i": [13, 0, 5, 14, 1, 12, 1, 12, 5, 4], "o": 12}, {"i": [10, 15, 13, 9, 13, 15, 7, 12, 3, 14], "o": 14}, {"i": [4, 1, 11, 2, 3, 15, 2, 0, 12], "o": 11}, {"i": [1, 5, 8, 16, 15, 10, 14, 11], "o": 14}, {"i": [11, 12, 13, 4, 0, 13, 6, 9, 1, 9], "o": 12}, {"i": [8, 5, 1, 4, 15, 4, 9, 11, 1], "o": 9}, {"i": [9, 15, 11, 10, 4, 13], "o": 11}, {"i": [7, 11, 12, 8, 15, 1, 9, 2], "o": 11}, {"i": [9, 0, 5, 8, 5, 8, 13], "o": 8}, {"i": [2, 5, 14, 8, 8], "o": 8}, {"i": [14, 0, 7, 11, 10, 0, 5, 2], "o": 10}]}, {"type": {"input": "list-of-int", "output": "int"}, "name": "kth-largest with k=4", "examples": [{"i": [16, 9, 15, 4, 16], "o": 9}, {"i": [16, 4, 13, 11, 6, 13, 16, 1, 5, 6], "o": 13}, {"i": [0, 3, 6, 10, 4, 3, 1], "o": 3}, {"i": [0, 6, 13, 5, 0, 5, 2, 14, 9, 3], "o": 6}, {"i": [0, 13, 4, 2], "o": 0}, {"i": [5, 12, 2, 4, 15, 16], "o": 5}, {"i": [5, 11, 5, 6, 7, 1, 3, 9, 14, 8], "o": 8}, {"i": [4, 8, 4, 5], "o": 4}, {"i": [12, 10, 12, 0, 2, 10, 9, 6], "o": 10}, {"i": [7, 4, 8, 1], "o": 1}, {"i": [7, 14, 14, 11, 8, 14, 3, 8, 6, 1], "o": 11}, {"i": [14, 4, 4, 13, 12], "o": 4}, {"i": [7, 16, 6, 13, 16, 4, 7], "o": 7}, {"i": [4, 3, 8, 1, 14, 9, 6], "o": 6}, {"i": [11, 1, 8, 6, 5, 4, 10, 12, 15, 8], "o": 10}]}, {"type": {"input": "list-of-int", "output": "int"}, "name": "kth-largest with k=5", "examples": [{"i": [7, 2, 7, 14, 6, 0, 2, 14, 2, 16, 16], "o": 7}, {"i": [6, 2, 1, 7, 7, 2, 11, 14, 6, 7, 11, 13], "o": 7}, {"i": [1, 12, 11, 6, 11, 15, 11, 2, 7, 8, 13], "o": 11}, {"i": [10, 1, 4, 3, 5, 6, 0], "o": 3}, {"i": [3, 16, 14, 5, 10, 1, 5, 6], "o": 5}, {"i": [12, 9, 2, 7, 13, 11, 1, 8, 14, 3, 14, 3], "o": 11}, {"i": [11, 11, 14, 8, 14, 2, 8, 4, 1, 9, 9, 4], "o": 9}, {"i": [4, 14, 0, 12, 7], "o": 0}, {"i": [2, 9, 16, 2, 7, 12], "o": 2}, {"i": [0, 8, 7, 16, 13, 3, 8, 0, 13], "o": 8}, {"i": [9, 15, 0, 1, 8, 6, 2, 11, 4, 11], "o": 8}, {"i": [15, 16, 16, 16, 6, 0, 4, 7], "o": 7}, {"i": [16, 7, 3, 14, 4, 9, 1, 13, 4, 8, 6], "o": 8}, {"i": [7, 13, 16, 12, 4, 5], "o": 5}, {"i": [13, 11, 10, 7, 13, 11, 9], "o": 10}]}, {"type": {"input": "list-of-int", "output": "int"}, "name": "kth-smallest with k=1", "examples": [{"i": [0, 10, 4, 11, 14], "o": 0}, {"i": [13], "o": 13}, {"i": [10], "o": 10}, {"i": [2, 8, 12], "o": 2}, {"i": [1], "o": 1}, {"i": [12, 15, 10, 10, 3, 8, 1], "o": 1}, {"i": [6, 10, 8, 14, 2, 12], "o": 2}, {"i": [6, 0], "o": 0}, {"i": [16], "o": 16}, {"i": [14], "o": 14}, {"i": [13, 0, 3, 2, 9, 14], "o": 0}, {"i": [12, 13], "o": 12}, {"i": [12, 14, 13], "o": 12}, {"i": [3, 14], "o": 3}, {"i": [3, 3, 12], "o": 3}]}, {"type": {"input": "list-of-int", "output": "int"}, "name": "kth-smallest with k=2", "examples": [{"i": [1, 1, 6, 8], "o": 1}, {"i": [15, 3, 10], "o": 10}, {"i": [9, 5], "o": 9}, {"i": [0, 9, 6, 7, 15], "o": 6}, {"i": [3, 11], "o": 11}, {"i": [13, 3, 7], "o": 7}, {"i": [2, 2, 13, 0, 13, 5, 2, 6, 2], "o": 2}, {"i": [12, 5, 0, 10], "o": 5}, {"i": [7, 4, 0, 1, 11, 0, 11], "o": 0}, {"i": [2, 16, 6, 4, 4, 1, 5], "o": 2}, {"i": [10, 5], "o": 10}, {"i": [13, 4, 8, 10, 3, 2], "o": 3}, {"i": [9, 0, 0, 5, 14, 10, 5, 2], "o": 0}, {"i": [10, 1, 9, 16, 8, 11, 16, 13, 1], "o": 1}, {"i": [7, 2, 5, 9, 11, 13, 2], "o": 2}]}, {"type": {"input": "list-of-int", "output": "int"}, "name": "kth-smallest with k=3", "examples": [{"i": [9, 5, 11, 2, 10, 13, 9], "o": 9}, {"i": [16, 5, 4, 5, 2, 14, 6, 9, 15], "o": 5}, {"i": [1, 7, 3], "o": 7}, {"i": [16, 4, 10, 7, 5, 7, 1, 2], "o": 4}, {"i": [10, 13, 9, 10, 8, 6, 7, 15, 2], "o": 7}, {"i": [16, 16, 4, 0, 3, 4, 9], "o": 4}, {"i": [15, 4, 8, 5], "o": 8}, {"i": [6, 4, 16, 5, 11, 11, 14], "o": 6}, {"i": [4, 6, 12], "o": 12}, {"i": [1, 14, 9, 7, 11, 16], "o": 9}, {"i": [15, 1, 4], "o": 15}, {"i": [10, 8, 7, 4, 2, 3, 12, 8], "o": 4}, {"i": [15, 6, 5, 2, 13, 14, 5, 12, 6], "o": 5}, {"i": [11, 8, 8, 5, 6, 2, 15, 9, 1, 6], "o": 5}, {"i": [4, 14, 15], "o": 15}]}, {"type": {"input": "list-of-int", "output": "int"}, "name": "kth-smallest with k=4", "examples": [{"i": [6, 14, 4, 7, 12, 4, 3], "o": 6}, {"i": [4, 0, 6, 0], "o": 6}, {"i": [13, 12, 15, 1, 7, 3, 16, 10, 12, 14], "o": 10}, {"i": [16, 13, 8, 3, 15, 0, 4, 2, 11], "o": 4}, {"i": [4, 9, 11, 5, 11, 1], "o": 9}, {"i": [2, 1, 12, 15], "o": 15}, {"i": [7, 14, 8, 15, 8], "o": 14}, {"i": [0, 11, 12, 9, 15, 16, 0, 8], "o": 9}, {"i": [6, 7, 13, 8, 13, 16, 7, 10], "o": 8}, {"i": [12, 9, 10, 2, 3, 5, 1, 8], "o": 5}, {"i": [3, 3, 16, 6, 16, 4], "o": 6}, {"i": [12, 3, 12, 15], "o": 15}, {"i": [1, 5, 15, 15, 2, 10, 13, 15, 3], "o": 5}, {"i": [0, 4, 7, 13, 6, 12, 4], "o": 6}, {"i": [11, 12, 5, 13, 11, 4, 16, 0, 8], "o": 8}]}, {"type": {"input": "list-of-int", "output": "int"}, "name": "kth-smallest with k=5", "examples": [{"i": [6, 7, 16, 16, 6, 6, 11, 5, 9], "o": 7}, {"i": [9, 5, 0, 0, 13, 1, 16, 0, 9, 3, 1], "o": 1}, {"i": [3, 11, 8, 10, 9, 8], "o": 10}, {"i": [8, 4, 16, 7, 10, 5, 13, 1, 6, 11], "o": 7}, {"i": [7, 11, 5, 11, 16, 6, 0, 0, 8], "o": 7}, {"i": [10, 3, 8, 6, 6, 11, 3, 4, 1, 4, 8], "o": 4}, {"i": [11, 14, 2, 1, 3, 2, 13], "o": 11}, {"i": [9, 11, 7, 13, 15, 10, 10, 8], "o": 10}, {"i": [1, 3, 13, 12, 5, 8, 13, 0, 13, 3], "o": 5}, {"i": [12, 6, 11, 9, 3], "o": 12}, {"i": [14, 6, 15, 10, 7, 8, 16, 16, 14], "o": 14}, {"i": [6, 2, 6, 9, 12, 3, 13, 5], "o": 6}, {"i": [6, 3, 5, 7, 6, 5, 11], "o": 6}, {"i": [14, 1, 15, 6, 0, 12, 11, 3, 15, 14], "o": 11}, {"i": [13, 4, 9, 6, 7, 6, 12, 4, 8, 16, 4], "o": 6}]}, {"type": {"input": "list-of-int", "output": "int"}, "name": "last", "examples": [{"i": [1, 2, 3], "o": 3}, {"i": [0], "o": 0}, {"i": [1, 1, 2, 1], "o": 1}, {"i": [15, 0, 1, 3, 16, 9, 7], "o": 7}, {"i": [1, 9, 14, 16], "o": 16}, {"i": [1, 12, 4, 0, 0, 14, 14], "o": 14}, {"i": [14, 0, 7, 3, 15, 11], "o": 11}, {"i": [16], "o": 16}, {"i": [2, 12, 11, 14, 15, 9], "o": 9}, {"i": [8, 4, 3, 13], "o": 13}, {"i": [16], "o": 16}, {"i": [4, 6, 12], "o": 12}, {"i": [8], "o": 8}, {"i": [16], "o": 16}, {"i": [6, 1, 4, 12, 12, 0], "o": 0}]}, {"type": {"input": "list-of-int", "output": "int"}, "name": "len", "examples": [{"i": [1, 2, 3], "o": 3}, {"i": [0], "o": 1}, {"i": [1, 1, 2, 1], "o": 4}, {"i": [2, 9], "o": 2}, {"i": [0], "o": 1}, {"i": [10, 14, 8, 2, 12, 10, 3], "o": 7}, {"i": [], "o": 0}, {"i": [2, 7], "o": 2}, {"i": [13, 11, 10, 12, 13], "o": 5}, {"i": [15], "o": 1}, {"i": [5, 6, 2, 8, 9], "o": 5}, {"i": [], "o": 0}, {"i": [3], "o": 1}, {"i": [7, 14, 11], "o": 3}, {"i": [15, 15, 0, 1, 3, 16], "o": 6}]}, {"type": {"input": "list-of-int", "output": "int"}, "name": "max", "examples": [{"i": [1, 2, 3], "o": 3}, {"i": [0], "o": 0}, {"i": [1, 1, 2, 1], "o": 2}, {"i": [13, 9, 16, 8], "o": 16}, {"i": [13, 10, 9, 16, 4, 15, 13], "o": 16}, {"i": [9], "o": 9}, {"i": [15, 14, 11, 7, 12, 0, 15], "o": 15}, {"i": [4, 12], "o": 12}, {"i": [16, 10, 4, 9, 3], "o": 16}, {"i": [4, 13, 4, 2], "o": 13}, {"i": [12, 11, 5, 12, 1, 2], "o": 12}, {"i": [16, 8], "o": 16}, {"i": [4, 9], "o": 9}, {"i": [3], "o": 3}, {"i": [4, 12], "o": 12}]}, {"type": {"input": "list-of-int", "output": "int"}, "name": "min", "examples": [{"i": [1, 2, 3], "o": 1}, {"i": [0], "o": 0}, {"i": [1, 1, 2, 1], "o": 1}, {"i": [15, 5, 8, 12], "o": 5}, {"i": [9, 9, 2, 11], "o": 2}, {"i": [10, 14, 2], "o": 2}, {"i": [3, 15, 14, 3, 5, 15], "o": 3}, {"i": [1], "o": 1}, {"i": [1, 7, 12, 6, 15, 12, 9], "o": 1}, {"i": [7, 9, 7, 7, 8, 1], "o": 1}, {"i": [16, 11, 13], "o": 11}, {"i": [3, 1, 8, 15, 7], "o": 1}, {"i": [14, 1, 3], "o": 1}, {"i": [11, 15, 2, 0], "o": 0}, {"i": [3, 6, 7, 6, 8], "o": 3}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "modulo-k with k=1", "examples": [{"i": [7, 8, 1, 9], "o": [0, 0, 0, 0]}, {"i": [16, 15, 1, 12, 4, 0, 0], "o": [0, 0, 0, 0, 0, 0, 0]}, {"i": [14, 14, 14, 0, 7, 3], "o": [0, 0, 0, 0, 0, 0]}, {"i": [11, 1, 16, 14, 2, 12, 11], "o": [0, 0, 0, 0, 0, 0, 0]}, {"i": [15, 9, 8, 8, 4, 3], "o": [0, 0, 0, 0, 0, 0]}, {"i": [1, 16, 6, 4, 6, 12], "o": [0, 0, 0, 0, 0, 0]}, {"i": [], "o": []}, {"i": [1, 16, 12], "o": [0, 0, 0]}, {"i": [1, 4, 12], "o": [0, 0, 0]}, {"i": [0, 15, 15, 16, 9], "o": [0, 0, 0, 0, 0]}, {"i": [15, 0, 2, 7, 11, 13], "o": [0, 0, 0, 0, 0, 0]}, {"i": [7, 10, 9, 7, 8, 8], "o": [0, 0, 0, 0, 0, 0]}, {"i": [], "o": []}, {"i": [4, 3, 7, 10, 4], "o": [0, 0, 0, 0, 0]}, {"i": [1, 16, 5, 15, 8, 10, 13], "o": [0, 0, 0, 0, 0, 0, 0]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "modulo-k with k=2", "examples": [{"i": [7, 0, 3, 12, 12], "o": [1, 0, 1, 0, 0]}, {"i": [5, 16, 10, 16, 8, 7], "o": [1, 0, 0, 0, 0, 1]}, {"i": [12], "o": [0]}, {"i": [1], "o": [1]}, {"i": [0, 9, 12, 7, 0], "o": [0, 1, 0, 1, 0]}, {"i": [1], "o": [1]}, {"i": [12, 15], "o": [0, 1]}, {"i": [9], "o": [1]}, {"i": [0, 2, 5, 4, 11, 7], "o": [0, 0, 1, 0, 1, 1]}, {"i": [5, 11, 4, 14, 13], "o": [1, 1, 0, 0, 1]}, {"i": [14, 14, 16], "o": [0, 0, 0]}, {"i": [], "o": []}, {"i": [10], "o": [0]}, {"i": [], "o": []}, {"i": [2, 0, 1, 11, 11, 10], "o": [0, 0, 1, 1, 1, 0]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "modulo-k with k=3", "examples": [{"i": [6, 8, 1, 3], "o": [0, 2, 1, 0]}, {"i": [], "o": []}, {"i": [9], "o": [0]}, {"i": [1, 7, 11, 13], "o": [1, 1, 2, 1]}, {"i": [6, 8, 2, 2], "o": [0, 2, 2, 2]}, {"i": [14, 15], "o": [2, 0]}, {"i": [9, 0, 3], "o": [0, 0, 0]}, {"i": [], "o": []}, {"i": [12, 4, 8, 11, 0, 8, 11], "o": [0, 1, 2, 2, 0, 2, 2]}, {"i": [14, 13, 8, 15, 8, 10, 0], "o": [2, 1, 2, 0, 2, 1, 0]}, {"i": [10, 8], "o": [1, 2]}, {"i": [12, 11, 8, 8], "o": [0, 2, 2, 2]}, {"i": [4, 4, 12, 7, 13, 9], "o": [1, 1, 0, 1, 1, 0]}, {"i": [], "o": []}, {"i": [13, 4, 11, 10], "o": [1, 1, 2, 1]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "modulo-k with k=4", "examples": [{"i": [16, 12], "o": [0, 0]}, {"i": [15, 4, 8, 1, 0, 10], "o": [3, 0, 0, 1, 0, 2]}, {"i": [0, 10, 4, 11], "o": [0, 2, 0, 3]}, {"i": [0, 13, 1, 10, 5, 2, 8], "o": [0, 1, 1, 2, 1, 2, 0]}, {"i": [0, 1, 13, 12, 15, 10], "o": [0, 1, 1, 0, 3, 2]}, {"i": [3, 8, 1, 11, 6], "o": [3, 0, 1, 3, 2]}, {"i": [8, 14, 2, 12], "o": [0, 2, 2, 0]}, {"i": [6], "o": [2]}, {"i": [], "o": []}, {"i": [], "o": []}, {"i": [1, 14, 11, 13, 0, 3, 2], "o": [1, 2, 3, 1, 0, 3, 2]}, {"i": [14, 4, 12, 13], "o": [2, 0, 0, 1]}, {"i": [12, 14], "o": [0, 2]}, {"i": [2, 3, 14, 5, 3, 3], "o": [2, 3, 2, 1, 3, 3]}, {"i": [4, 1, 1, 6, 8], "o": [0, 1, 1, 2, 0]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "modulo-k with k=5", "examples": [{"i": [15], "o": [0]}, {"i": [10], "o": [0]}, {"i": [], "o": []}, {"i": [5, 6, 0, 9], "o": [0, 1, 0, 4]}, {"i": [7, 15], "o": [2, 0]}, {"i": [], "o": []}, {"i": [11], "o": [1]}, {"i": [13], "o": [3]}, {"i": [7], "o": [2]}, {"i": [2, 2, 13, 0, 13, 5, 2], "o": [2, 2, 3, 0, 3, 0, 2]}, {"i": [2, 6, 12], "o": [2, 1, 2]}, {"i": [0, 10], "o": [0, 0]}, {"i": [7, 4, 0, 1, 11], "o": [2, 4, 0, 1, 1]}, {"i": [], "o": []}, {"i": [11, 2, 16, 6, 4], "o": [1, 2, 1, 1, 4]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "mult-k with k=0", "examples": [{"i": [7, 11, 13, 15, 16, 16], "o": [0, 0, 0, 0, 0, 0]}, {"i": [11, 11, 4, 14, 6, 14, 0], "o": [0, 0, 0, 0, 0, 0, 0]}, {"i": [8], "o": [0]}, {"i": [7], "o": [0]}, {"i": [3, 8, 1, 13, 5], "o": [0, 0, 0, 0, 0]}, {"i": [11, 13, 5, 14, 4, 2, 14], "o": [0, 0, 0, 0, 0, 0, 0]}, {"i": [5, 10, 15], "o": [0, 0, 0]}, {"i": [15, 5], "o": [0, 0]}, {"i": [8], "o": [0]}, {"i": [3, 16], "o": [0, 0]}, {"i": [9, 7], "o": [0, 0]}, {"i": [5, 15, 8, 6], "o": [0, 0, 0, 0]}, {"i": [], "o": []}, {"i": [15, 10], "o": [0, 0]}, {"i": [], "o": []}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "mult-k with k=1", "examples": [{"i": [0, 8, 1], "o": [0, 8, 1]}, {"i": [10, 16, 14, 6, 8, 6, 14], "o": [10, 16, 14, 6, 8, 6, 14]}, {"i": [4, 15, 2, 13, 15], "o": [4, 15, 2, 13, 15]}, {"i": [], "o": []}, {"i": [11, 1, 10, 8, 6], "o": [11, 1, 10, 8, 6]}, {"i": [0, 9, 10], "o": [0, 9, 10]}, {"i": [4, 16, 1, 1, 3], "o": [4, 16, 1, 1, 3]}, {"i": [2, 10, 4, 9], "o": [2, 10, 4, 9]}, {"i": [4], "o": [4]}, {"i": [14, 1, 10], "o": [14, 1, 10]}, {"i": [0, 0, 11, 10, 10], "o": [0, 0, 11, 10, 10]}, {"i": [16, 5, 9], "o": [16, 5, 9]}, {"i": [12, 13, 9, 11], "o": [12, 13, 9, 11]}, {"i": [7, 9, 10, 0, 16, 3], "o": [7, 9, 10, 0, 16, 3]}, {"i": [12, 6, 6, 15, 10], "o": [12, 6, 6, 15, 10]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "mult-k with k=2", "examples": [{"i": [2, 0, 15, 0, 2], "o": [4, 0, 30, 0, 4]}, {"i": [11, 15, 10], "o": [22, 30, 20]}, {"i": [], "o": []}, {"i": [9, 13, 13, 15, 3, 6, 1], "o": [18, 26, 26, 30, 6, 12, 2]}, {"i": [12, 13, 2, 4, 7, 15, 12], "o": [24, 26, 4, 8, 14, 30, 24]}, {"i": [14], "o": [28]}, {"i": [], "o": []}, {"i": [13, 14, 2, 8, 0, 14, 3], "o": [26, 28, 4, 16, 0, 28, 6]}, {"i": [9, 5, 11, 4, 6], "o": [18, 10, 22, 8, 12]}, {"i": [4, 1, 5, 8], "o": [8, 2, 10, 16]}, {"i": [8, 5, 16], "o": [16, 10, 32]}, {"i": [11, 2, 7, 10, 4], "o": [22, 4, 14, 20, 8]}, {"i": [4, 16, 1, 8, 4, 7], "o": [8, 32, 2, 16, 8, 14]}, {"i": [0, 2, 0], "o": [0, 4, 0]}, {"i": [8, 2, 8], "o": [16, 4, 16]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "mult-k with k=3", "examples": [{"i": [7, 10, 8, 8], "o": [21, 30, 24, 24]}, {"i": [12, 7, 7], "o": [36, 21, 21]}, {"i": [0, 13, 3, 9, 1], "o": [0, 39, 9, 27, 3]}, {"i": [10, 8, 2, 12, 9, 11], "o": [30, 24, 6, 36, 27, 33]}, {"i": [0, 6, 9, 4, 16, 10, 12], "o": [0, 18, 27, 12, 48, 30, 36]}, {"i": [4], "o": [12]}, {"i": [10, 0, 1, 2, 6, 4], "o": [30, 0, 3, 6, 18, 12]}, {"i": [2, 6, 10, 10, 8, 15, 16], "o": [6, 18, 30, 30, 24, 45, 48]}, {"i": [1, 2, 7, 5, 4, 0, 13], "o": [3, 6, 21, 15, 12, 0, 39]}, {"i": [15, 3], "o": [45, 9]}, {"i": [12, 14, 13, 5, 8, 8, 9], "o": [36, 42, 39, 15, 24, 24, 27]}, {"i": [4], "o": [12]}, {"i": [9, 11, 0], "o": [27, 33, 0]}, {"i": [], "o": []}, {"i": [7, 8, 4, 3, 7], "o": [21, 24, 12, 9, 21]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "mult-k with k=4", "examples": [{"i": [14, 6, 10, 2, 7], "o": [56, 24, 40, 8, 28]}, {"i": [1, 12, 8, 11, 2, 7], "o": [4, 48, 32, 44, 8, 28]}, {"i": [3], "o": [12]}, {"i": [5, 14, 6, 5, 8], "o": [20, 56, 24, 20, 32]}, {"i": [4, 14], "o": [16, 56]}, {"i": [], "o": []}, {"i": [1, 6, 12, 1, 7], "o": [4, 24, 48, 4, 28]}, {"i": [11], "o": [44]}, {"i": [3, 5, 7, 4, 4, 6], "o": [12, 20, 28, 16, 16, 24]}, {"i": [2], "o": [8]}, {"i": [3], "o": [12]}, {"i": [0, 11, 4, 11, 1, 6, 12], "o": [0, 44, 16, 44, 4, 24, 48]}, {"i": [15], "o": [60]}, {"i": [13, 15, 13], "o": [52, 60, 52]}, {"i": [9], "o": [36]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "mult-k with k=5", "examples": [{"i": [12, 2, 8, 5], "o": [60, 10, 40, 25]}, {"i": [8, 2, 14], "o": [40, 10, 70]}, {"i": [3, 6, 6, 16], "o": [15, 30, 30, 80]}, {"i": [7, 3, 15, 2, 12], "o": [35, 15, 75, 10, 60]}, {"i": [0, 15, 5, 10, 8, 14, 12], "o": [0, 75, 25, 50, 40, 70, 60]}, {"i": [4, 12, 3, 15, 5, 5, 2], "o": [20, 60, 15, 75, 25, 25, 10]}, {"i": [8, 15, 9, 0, 1], "o": [40, 75, 45, 0, 5]}, {"i": [], "o": []}, {"i": [3, 9, 12, 12, 4, 12], "o": [15, 45, 60, 60, 20, 60]}, {"i": [8], "o": [40]}, {"i": [12], "o": [60]}, {"i": [10, 11, 13, 1, 10], "o": [50, 55, 65, 5, 50]}, {"i": [16, 15, 1, 15], "o": [80, 75, 5, 75]}, {"i": [8, 13], "o": [40, 65]}, {"i": [12, 7, 3, 10, 14], "o": [60, 35, 15, 50, 70]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "odds", "examples": [{"i": [1, 1, 3], "o": [1, 1, 3]}, {"i": [2, 5, 4, 2, 0, 5, 1, 1], "o": [5, 5, 1, 1]}, {"i": [6, 10], "o": []}, {"i": [14], "o": []}, {"i": [3, 8], "o": [3]}, {"i": [2, 12, 6, 9, 1, 12], "o": [9, 1]}, {"i": [15], "o": [15]}, {"i": [1, 8, 13, 9, 6, 8], "o": [1, 13, 9]}, {"i": [3, 0], "o": [3]}, {"i": [4, 2], "o": []}, {"i": [6, 10, 15, 8, 14, 3], "o": [15, 3]}, {"i": [16], "o": []}, {"i": [], "o": []}, {"i": [5], "o": [5]}, {"i": [5, 16, 4, 8], "o": [5]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "pop", "examples": [{"i": [1, 2, 3], "o": [1, 2]}, {"i": [0], "o": []}, {"i": [1, 1, 2, 1], "o": [1, 1, 2]}, {"i": [9, 14], "o": [9]}, {"i": [2], "o": []}, {"i": [4, 11, 7], "o": [4, 11]}, {"i": [5, 11, 4, 14, 13, 8], "o": [5, 11, 4, 14, 13]}, {"i": [14, 16, 1, 3, 10, 0], "o": [14, 16, 1, 3, 10]}, {"i": [2, 0, 1, 11, 11, 10], "o": [2, 0, 1, 11, 11]}, {"i": [6, 8, 1, 3, 0], "o": [6, 8, 1, 3]}, {"i": [9], "o": []}, {"i": [1, 7, 11, 13, 10], "o": [1, 7, 11, 13]}, {"i": [8, 2, 2], "o": [8, 2]}, {"i": [14, 15, 8], "o": [14, 15]}, {"i": [0, 3, 2, 16], "o": [0, 3, 2]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "pow-k with k=1", "examples": [{"i": [6, 1], "o": [6, 1]}, {"i": [0, 4, 6, 9], "o": [0, 4, 6, 9]}, {"i": [1, 16, 6, 12], "o": [1, 16, 6, 12]}, {"i": [2, 4, 3, 1, 2, 16], "o": [2, 4, 3, 1, 2, 16]}, {"i": [7, 3, 1, 9, 9, 5], "o": [7, 3, 1, 9, 9, 5]}, {"i": [6, 4, 7], "o": [6, 4, 7]}, {"i": [7, 0, 12, 7], "o": [7, 0, 12, 7]}, {"i": [15], "o": [15]}, {"i": [], "o": []}, {"i": [2, 2, 8, 7], "o": [2, 2, 8, 7]}, {"i": [10, 11, 8, 16], "o": [10, 11, 8, 16]}, {"i": [5, 5, 8, 7, 4, 16], "o": [5, 5, 8, 7, 4, 16]}, {"i": [14], "o": [14]}, {"i": [8, 13, 8, 0, 14, 0, 5], "o": [8, 13, 8, 0, 14, 0, 5]}, {"i": [9], "o": [9]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "pow-k with k=2", "examples": [{"i": [0], "o": [0]}, {"i": [10, 14, 8, 2, 12, 10, 3], "o": [100, 196, 64, 4, 144, 100, 9]}, {"i": [], "o": []}, {"i": [2, 7], "o": [4, 49]}, {"i": [13, 11, 10, 12, 13], "o": [169, 121, 100, 144, 169]}, {"i": [15], "o": [225]}, {"i": [5, 6, 2, 8, 9], "o": [25, 36, 4, 64, 81]}, {"i": [], "o": []}, {"i": [3], "o": [9]}, {"i": [7, 14, 11], "o": [49, 196, 121]}, {"i": [15, 15, 0, 1, 3, 16], "o": [225, 225, 0, 1, 9, 256]}, {"i": [7, 8, 1, 9], "o": [49, 64, 1, 81]}, {"i": [16, 15, 1, 12, 4, 0, 0], "o": [256, 225, 1, 144, 16, 0, 0]}, {"i": [14, 14, 14, 0, 7, 3], "o": [196, 196, 196, 0, 49, 9]}, {"i": [11, 1, 16, 14, 2, 12, 11], "o": [121, 1, 256, 196, 4, 144, 121]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "pow-k with k=3", "examples": [{"i": [15, 9, 8, 8, 4, 3], "o": [3375, 729, 512, 512, 64, 27]}, {"i": [1, 16, 6, 4, 6, 12], "o": [1, 4096, 216, 64, 216, 1728]}, {"i": [], "o": []}, {"i": [1, 16, 12], "o": [1, 4096, 1728]}, {"i": [1, 4, 12], "o": [1, 64, 1728]}, {"i": [0, 15, 15, 16, 9], "o": [0, 3375, 3375, 4096, 729]}, {"i": [15, 0, 2, 7, 11, 13], "o": [3375, 0, 8, 343, 1331, 2197]}, {"i": [7, 10, 9, 7, 8, 8], "o": [343, 1000, 729, 343, 512, 512]}, {"i": [], "o": []}, {"i": [4, 3, 7, 10, 4], "o": [64, 27, 343, 1000, 64]}, {"i": [1, 16, 5, 15, 8, 10, 13], "o": [1, 4096, 125, 3375, 512, 1000, 2197]}, {"i": [7, 0, 3, 12, 12], "o": [343, 0, 27, 1728, 1728]}, {"i": [5, 16, 10, 16, 8, 7], "o": [125, 4096, 1000, 4096, 512, 343]}, {"i": [12], "o": [1728]}, {"i": [1], "o": [1]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "pow-k with k=4", "examples": [{"i": [0, 9, 12, 7, 0], "o": [0, 6561, 20736, 2401, 0]}, {"i": [1], "o": [1]}, {"i": [12, 15], "o": [20736, 50625]}, {"i": [9], "o": [6561]}, {"i": [0, 2, 5, 4, 11, 7], "o": [0, 16, 625, 256, 14641, 2401]}, {"i": [5, 11, 4, 14, 13], "o": [625, 14641, 256, 38416, 28561]}, {"i": [14, 14, 16], "o": [38416, 38416, 65536]}, {"i": [], "o": []}, {"i": [10], "o": [10000]}, {"i": [], "o": []}, {"i": [2, 0, 1, 11, 11, 10], "o": [16, 0, 1, 14641, 14641, 10000]}, {"i": [6, 8, 1, 3], "o": [1296, 4096, 1, 81]}, {"i": [], "o": []}, {"i": [9], "o": [6561]}, {"i": [1, 7, 11, 13], "o": [1, 2401, 14641, 28561]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "pow-k with k=5", "examples": [{"i": [6, 8, 2, 2], "o": [7776, 32768, 32, 32]}, {"i": [14, 15], "o": [537824, 759375]}, {"i": [9, 0, 3], "o": [59049, 0, 243]}, {"i": [], "o": []}, {"i": [12, 4, 8, 11, 0, 8, 11], "o": [248832, 1024, 32768, 161051, 0, 32768, 161051]}, {"i": [14, 13, 8, 15, 8, 10, 0], "o": [537824, 371293, 32768, 759375, 32768, 100000, 0]}, {"i": [10, 8], "o": [100000, 32768]}, {"i": [12, 11, 8, 8], "o": [248832, 161051, 32768, 32768]}, {"i": [4, 4, 12, 7, 13, 9], "o": [1024, 1024, 248832, 16807, 371293, 59049]}, {"i": [], "o": []}, {"i": [13, 4, 11, 10], "o": [371293, 1024, 161051, 100000]}, {"i": [16, 12], "o": [1048576, 248832]}, {"i": [15, 4, 8, 1, 0, 10], "o": [759375, 1024, 32768, 1, 0, 100000]}, {"i": [0, 10, 4, 11], "o": [0, 100000, 1024, 161051]}, {"i": [0, 13, 1, 10, 5, 2, 8], "o": [0, 371293, 1, 100000, 3125, 32, 32768]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "prepend-index-k with k=1", "examples": [{"i": [16, 0, 8], "o": [16, 16, 0, 8]}, {"i": [6, 7, 16, 16, 6], "o": [6, 6, 7, 16, 16, 6]}, {"i": [11, 5, 9, 14], "o": [11, 11, 5, 9, 14]}, {"i": [5, 0, 0, 13, 1], "o": [5, 5, 0, 0, 13, 1]}, {"i": [0, 9, 3, 1, 2, 3, 11, 8], "o": [0, 0, 9, 3, 1, 2, 3, 11, 8]}, {"i": [9, 8, 10, 8, 4], "o": [9, 9, 8, 10, 8, 4]}, {"i": [7, 10, 5, 13, 1, 6, 11, 10], "o": [7, 7, 10, 5, 13, 1, 6, 11, 10]}, {"i": [11, 5, 11, 16], "o": [11, 11, 5, 11, 16]}, {"i": [0, 0, 8, 12], "o": [0, 0, 0, 8, 12]}, {"i": [3, 8, 6, 6, 11], "o": [3, 3, 8, 6, 6, 11]}, {"i": [4, 1], "o": [4, 4, 1]}, {"i": [8, 5, 11], "o": [8, 8, 5, 11]}, {"i": [2, 1, 3, 2, 13, 7, 9], "o": [2, 2, 1, 3, 2, 13, 7, 9]}, {"i": [7, 13, 15, 10, 10, 8], "o": [7, 7, 13, 15, 10, 10, 8]}, {"i": [1, 3, 13, 12, 5, 8], "o": [1, 1, 3, 13, 12, 5, 8]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "prepend-index-k with k=2", "examples": [{"i": [0, 13, 3, 1, 12, 6, 11, 9], "o": [13, 0, 13, 3, 1, 12, 6, 11, 9]}, {"i": [9, 14, 6], "o": [14, 9, 14, 6]}, {"i": [10, 7, 8, 16, 16, 14, 8, 6, 2], "o": [7, 10, 7, 8, 16, 16, 14, 8, 6, 2]}, {"i": [9, 12, 3, 13], "o": [12, 9, 12, 3, 13]}, {"i": [6, 6, 3, 5], "o": [6, 6, 6, 3, 5]}, {"i": [6, 5, 11, 12, 14], "o": [5, 6, 5, 11, 12, 14]}, {"i": [15, 6], "o": [6, 15, 6]}, {"i": [12, 11], "o": [11, 12, 11]}, {"i": [15, 14, 13], "o": [14, 15, 14, 13]}, {"i": [4, 9, 6, 7, 6, 12, 4, 8], "o": [9, 4, 9, 6, 7, 6, 12, 4, 8]}, {"i": [4, 8, 15, 5, 8, 12, 7, 9, 9], "o": [8, 4, 8, 15, 5, 8, 12, 7, 9, 9]}, {"i": [11, 6, 10], "o": [6, 11, 6, 10]}, {"i": [2, 14, 3, 15, 14, 3, 5, 15], "o": [14, 2, 14, 3, 15, 14, 3, 5, 15]}, {"i": [1, 15], "o": [15, 1, 15]}, {"i": [7, 12], "o": [12, 7, 12]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "prepend-index-k with k=3", "examples": [{"i": [15, 12, 9, 14, 7, 9], "o": [9, 15, 12, 9, 14, 7, 9]}, {"i": [7, 8, 1, 6, 16, 11], "o": [1, 7, 8, 1, 6, 16, 11]}, {"i": [11, 3, 1, 8, 15, 7, 7, 14, 1], "o": [1, 11, 3, 1, 8, 15, 7, 7, 14, 1]}, {"i": [9, 11, 15, 2], "o": [15, 9, 11, 15, 2]}, {"i": [11, 3, 6], "o": [6, 11, 3, 6]}, {"i": [6, 8, 5, 6, 10, 3], "o": [5, 6, 8, 5, 6, 10, 3]}, {"i": [4, 3, 8, 13, 2, 12, 6, 9, 1], "o": [8, 4, 3, 8, 13, 2, 12, 6, 9, 1]}, {"i": [3, 15, 13, 1, 8, 13, 9, 6], "o": [13, 3, 15, 13, 1, 8, 13, 9, 6]}, {"i": [6, 3, 0, 5, 4, 2], "o": [0, 6, 3, 0, 5, 4, 2]}, {"i": [6, 10, 15, 8, 14, 3, 4, 16, 1], "o": [15, 6, 10, 15, 8, 14, 3, 4, 16, 1]}, {"i": [5, 10, 5, 16], "o": [5, 5, 10, 5, 16]}, {"i": [8, 14, 3, 5, 11], "o": [3, 8, 14, 3, 5, 11]}, {"i": [11, 10, 3, 14, 0, 5], "o": [3, 11, 10, 3, 14, 0, 5]}, {"i": [15, 6, 14, 4, 12, 0, 15], "o": [14, 15, 6, 14, 4, 12, 0, 15]}, {"i": [13, 16, 6, 9, 16, 6, 10], "o": [6, 13, 16, 6, 9, 16, 6, 10]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "prepend-index-k with k=4", "examples": [{"i": [16, 13, 9, 8, 8, 0, 2, 15, 9], "o": [8, 16, 13, 9, 8, 8, 0, 2, 15, 9]}, {"i": [14, 10, 5, 16, 1, 1, 4, 13, 16, 15], "o": [16, 14, 10, 5, 16, 1, 1, 4, 13, 16, 15]}, {"i": [0, 2, 8, 7, 6, 14, 0, 0, 12], "o": [7, 0, 2, 8, 7, 6, 14, 0, 0, 12]}, {"i": [10, 12, 16, 3, 6, 16, 5, 3, 16, 14, 7], "o": [3, 10, 12, 16, 3, 6, 16, 5, 3, 16, 14, 7]}, {"i": [16, 11, 3, 0, 8, 13], "o": [0, 16, 11, 3, 0, 8, 13]}, {"i": [3, 0, 1, 16, 1, 11, 0, 5, 9], "o": [16, 3, 0, 1, 16, 1, 11, 0, 5, 9]}, {"i": [5, 4, 14, 5, 13, 5, 9, 9, 15, 13], "o": [5, 5, 4, 14, 5, 13, 5, 9, 9, 15, 13]}, {"i": [1, 10, 1, 10, 5, 16], "o": [10, 1, 10, 1, 10, 5, 16]}, {"i": [7, 2, 8, 11, 5, 9, 8, 9, 7], "o": [11, 7, 2, 8, 11, 5, 9, 8, 9, 7]}, {"i": [2, 8, 16, 0, 1, 16, 0, 10, 13, 7], "o": [0, 2, 8, 16, 0, 1, 16, 0, 10, 13, 7]}, {"i": [4, 8, 5, 3, 1, 7, 5, 6, 13], "o": [3, 4, 8, 5, 3, 1, 7, 5, 6, 13]}, {"i": [11, 7, 5, 13, 1, 3, 2, 7, 0, 12], "o": [13, 11, 7, 5, 13, 1, 3, 2, 7, 0, 12]}, {"i": [13, 1, 3, 2, 14, 16, 8, 4], "o": [2, 13, 1, 3, 2, 14, 16, 8, 4]}, {"i": [8, 15, 10, 13, 3, 12, 0, 7, 5, 2, 5], "o": [13, 8, 15, 10, 13, 3, 12, 0, 7, 5, 2, 5]}, {"i": [13, 12, 8, 7, 11, 1, 15], "o": [7, 13, 12, 8, 7, 11, 1, 15]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "prepend-index-k with k=5", "examples": [{"i": [9, 14, 2, 7, 6, 8, 8], "o": [6, 9, 14, 2, 7, 6, 8, 8]}, {"i": [3, 7, 1, 14, 7, 1, 10, 4, 2, 6], "o": [7, 3, 7, 1, 14, 7, 1, 10, 4, 2, 6]}, {"i": [7, 5, 5, 10, 11, 7, 2, 2, 2, 10, 2, 0], "o": [11, 7, 5, 5, 10, 11, 7, 2, 2, 2, 10, 2, 0]}, {"i": [14, 7, 0, 4, 12, 2, 4, 13, 6], "o": [12, 14, 7, 0, 4, 12, 2, 4, 13, 6]}, {"i": [3, 9, 3, 9, 3, 11], "o": [3, 3, 9, 3, 9, 3, 11]}, {"i": [4, 11, 12, 7, 2, 1, 15, 16], "o": [2, 4, 11, 12, 7, 2, 1, 15, 16]}, {"i": [8, 9, 0, 7, 11], "o": [11, 8, 9, 0, 7, 11]}, {"i": [7, 7, 0, 0, 11, 15, 13, 14], "o": [11, 7, 7, 0, 0, 11, 15, 13, 14]}, {"i": [2, 5, 12, 15, 10, 13], "o": [10, 2, 5, 12, 15, 10, 13]}, {"i": [6, 15, 14, 11, 13, 15, 13, 11, 9], "o": [13, 6, 15, 14, 11, 13, 15, 13, 11, 9]}, {"i": [15, 0, 1, 13, 8, 3, 2, 10, 5, 5], "o": [8, 15, 0, 1, 13, 8, 3, 2, 10, 5, 5]}, {"i": [3, 3, 7, 11, 3, 7, 2, 10, 7, 15], "o": [3, 3, 3, 7, 11, 3, 7, 2, 10, 7, 15]}, {"i": [2, 11, 7, 7, 0, 4, 5, 11], "o": [0, 2, 11, 7, 7, 0, 4, 5, 11]}, {"i": [11, 2, 5, 11, 1, 1, 9, 13, 4, 15], "o": [1, 11, 2, 5, 11, 1, 1, 9, 13, 4, 15]}, {"i": [6, 10, 0, 12, 3], "o": [3, 6, 10, 0, 12, 3]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "prepend-k with k=0", "examples": [{"i": [12, 0, 1, 9, 4], "o": [0, 12, 0, 1, 9, 4]}, {"i": [9, 10, 8], "o": [0, 9, 10, 8]}, {"i": [], "o": [0]}, {"i": [5, 11, 9, 0, 7, 1, 7], "o": [0, 5, 11, 9, 0, 7, 1, 7]}, {"i": [14, 0, 3], "o": [0, 14, 0, 3]}, {"i": [6, 9, 8, 16, 1, 2], "o": [0, 6, 9, 8, 16, 1, 2]}, {"i": [16, 11], "o": [0, 16, 11]}, {"i": [8, 0, 16, 10, 7, 12, 10], "o": [0, 8, 0, 16, 10, 7, 12, 10]}, {"i": [12, 4], "o": [0, 12, 4]}, {"i": [1], "o": [0, 1]}, {"i": [1, 2, 5, 13, 1, 3], "o": [0, 1, 2, 5, 13, 1, 3]}, {"i": [6, 8, 0, 11], "o": [0, 6, 8, 0, 11]}, {"i": [16], "o": [0, 16]}, {"i": [4, 14, 11, 0], "o": [0, 4, 14, 11, 0]}, {"i": [5], "o": [0, 5]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "prepend-k with k=1", "examples": [{"i": [2, 9, 7, 12, 6], "o": [1, 2, 9, 7, 12, 6]}, {"i": [8, 12, 11, 7, 12], "o": [1, 8, 12, 11, 7, 12]}, {"i": [15, 15, 15, 12, 8, 12], "o": [1, 15, 15, 15, 12, 8, 12]}, {"i": [9, 3, 5, 6, 11, 12], "o": [1, 9, 3, 5, 6, 11, 12]}, {"i": [], "o": [1]}, {"i": [13, 13, 16, 13, 0, 14, 13], "o": [1, 13, 13, 16, 13, 0, 14, 13]}, {"i": [9, 15, 2], "o": [1, 9, 15, 2]}, {"i": [16, 9, 10, 8, 8, 1, 0], "o": [1, 16, 9, 10, 8, 8, 1, 0]}, {"i": [5], "o": [1, 5]}, {"i": [16, 3, 3, 9, 11, 6, 0], "o": [1, 16, 3, 3, 9, 11, 6, 0]}, {"i": [4, 16, 10, 8], "o": [1, 4, 16, 10, 8]}, {"i": [5, 10, 10, 14, 10, 8, 6], "o": [1, 5, 10, 10, 14, 10, 8, 6]}, {"i": [15, 3, 5], "o": [1, 15, 3, 5]}, {"i": [9, 6, 16, 11], "o": [1, 9, 6, 16, 11]}, {"i": [6], "o": [1, 6]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "prepend-k with k=2", "examples": [{"i": [6, 6, 8, 3, 12], "o": [2, 6, 6, 8, 3, 12]}, {"i": [], "o": [2]}, {"i": [4, 3, 16, 15, 0], "o": [2, 4, 3, 16, 15, 0]}, {"i": [], "o": [2]}, {"i": [], "o": [2]}, {"i": [14], "o": [2, 14]}, {"i": [], "o": [2]}, {"i": [13, 1, 0], "o": [2, 13, 1, 0]}, {"i": [1, 12], "o": [2, 1, 12]}, {"i": [], "o": [2]}, {"i": [13], "o": [2, 13]}, {"i": [14], "o": [2, 14]}, {"i": [10, 0], "o": [2, 10, 0]}, {"i": [15, 12, 1, 10, 5, 1], "o": [2, 15, 12, 1, 10, 5, 1]}, {"i": [12, 5, 15, 10, 6], "o": [2, 12, 5, 15, 10, 6]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "prepend-k with k=3", "examples": [{"i": [16, 4, 10, 12, 5, 11], "o": [3, 16, 4, 10, 12, 5, 11]}, {"i": [13, 8, 9, 4, 0], "o": [3, 13, 8, 9, 4, 0]}, {"i": [0, 6], "o": [3, 0, 6]}, {"i": [5, 3, 0, 3, 7], "o": [3, 5, 3, 0, 3, 7]}, {"i": [6, 0], "o": [3, 6, 0]}, {"i": [], "o": [3]}, {"i": [2, 5, 9, 14, 14], "o": [3, 2, 5, 9, 14, 14]}, {"i": [7], "o": [3, 7]}, {"i": [], "o": [3]}, {"i": [13, 14, 10, 10, 14, 14], "o": [3, 13, 14, 10, 10, 14, 14]}, {"i": [0, 2, 11, 9, 3], "o": [3, 0, 2, 11, 9, 3]}, {"i": [11, 14, 7], "o": [3, 11, 14, 7]}, {"i": [9, 14, 2, 5, 12, 10, 3], "o": [3, 9, 14, 2, 5, 12, 10, 3]}, {"i": [10, 0, 8, 0], "o": [3, 10, 0, 8, 0]}, {"i": [14, 11], "o": [3, 14, 11]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "prepend-k with k=4", "examples": [{"i": [16, 9, 3], "o": [4, 16, 9, 3]}, {"i": [13, 1, 11, 16, 7], "o": [4, 13, 1, 11, 16, 7]}, {"i": [16, 5, 0, 2, 3], "o": [4, 16, 5, 0, 2, 3]}, {"i": [13, 12], "o": [4, 13, 12]}, {"i": [12, 15, 12, 4], "o": [4, 12, 15, 12, 4]}, {"i": [1, 14, 7, 14, 10], "o": [4, 1, 14, 7, 14, 10]}, {"i": [12, 0, 9, 14, 11], "o": [4, 12, 0, 9, 14, 11]}, {"i": [7, 16, 9, 16, 9], "o": [4, 7, 16, 9, 16, 9]}, {"i": [12, 7], "o": [4, 12, 7]}, {"i": [6, 10, 5, 4], "o": [4, 6, 10, 5, 4]}, {"i": [11, 11, 5, 7], "o": [4, 11, 11, 5, 7]}, {"i": [12, 10, 7, 4, 0, 15, 8], "o": [4, 12, 10, 7, 4, 0, 15, 8]}, {"i": [7, 11, 8, 13], "o": [4, 7, 11, 8, 13]}, {"i": [6, 5, 3, 16, 7, 16, 5], "o": [4, 6, 5, 3, 16, 7, 16, 5]}, {"i": [0, 7, 1, 14], "o": [4, 0, 7, 1, 14]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "prepend-k with k=5", "examples": [{"i": [], "o": [5]}, {"i": [7, 15, 1, 15, 16, 7, 10], "o": [5, 7, 15, 1, 15, 16, 7, 10]}, {"i": [16], "o": [5, 16]}, {"i": [4, 10, 11, 11, 16, 7, 14], "o": [5, 4, 10, 11, 11, 16, 7, 14]}, {"i": [10, 7, 15, 13, 14, 13, 3], "o": [5, 10, 7, 15, 13, 14, 13, 3]}, {"i": [], "o": [5]}, {"i": [12], "o": [5, 12]}, {"i": [4, 16, 2], "o": [5, 4, 16, 2]}, {"i": [12, 15, 6, 1, 7, 2], "o": [5, 12, 15, 6, 1, 7, 2]}, {"i": [2, 5, 5, 0], "o": [5, 2, 5, 5, 0]}, {"i": [10, 9, 8, 16], "o": [5, 10, 9, 8, 16]}, {"i": [5, 9], "o": [5, 5, 9]}, {"i": [8, 11, 7], "o": [5, 8, 11, 7]}, {"i": [14, 1, 4, 13, 1, 11, 12], "o": [5, 14, 1, 4, 13, 1, 11, 12]}, {"i": [3], "o": [5, 3]}]}, {"type": {"input": "list-of-int", "output": "int"}, "name": "product", "examples": [{"i": [1, 2, 3], "o": 6}, {"i": [0], "o": 0}, {"i": [1, 1, 2, 1], "o": 2}, {"i": [7, 15], "o": 105}, {"i": [15, 7], "o": 105}, {"i": [11, 9, 9], "o": 891}, {"i": [7, 1, 6, 2], "o": 84}, {"i": [6], "o": 6}, {"i": [8, 6, 8, 11, 11, 16], "o": 743424}, {"i": [10, 6, 8, 4, 6, 6, 7], "o": 483840}, {"i": [16, 1, 14, 0, 12], "o": 0}, {"i": [0, 4, 11, 12, 15, 5, 2], "o": 0}, {"i": [9, 5, 6, 11, 6, 13, 14], "o": 3243240}, {"i": [3, 1, 5, 9, 13], "o": 1755}, {"i": [3, 10, 8, 13, 11], "o": 34320}]}, {"type": {"input": "int", "output": "list-of-int"}, "name": "range", "examples": [{"i": 0, "o": []}, {"i": 1, "o": [0]}, {"i": 2, "o": [0, 1]}, {"i": 3, "o": [0, 1, 2]}, {"i": 7, "o": [0, 1, 2, 3, 4, 5, 6]}, {"i": 5, "o": [0, 1, 2, 3, 4]}, {"i": 3, "o": [0, 1, 2]}, {"i": 6, "o": [0, 1, 2, 3, 4, 5]}, {"i": 2, "o": [0, 1]}, {"i": 3, "o": [0, 1, 2]}, {"i": 5, "o": [0, 1, 2, 3, 4]}, {"i": 2, "o": [0, 1]}, {"i": 1, "o": [0]}, {"i": 3, "o": [0, 1, 2]}, {"i": 5, "o": [0, 1, 2, 3, 4]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "remove-index-k with k=1", "examples": [{"i": [4, 8, 11, 0, 8, 11], "o": [8, 11, 0, 8, 11]}, {"i": [14, 13, 8, 15, 8, 10, 0, 6], "o": [13, 8, 15, 8, 10, 0, 6]}, {"i": [8, 10, 12, 11, 8, 8], "o": [10, 12, 11, 8, 8]}, {"i": [4, 4, 12, 7, 13, 9, 1], "o": [4, 12, 7, 13, 9, 1]}, {"i": [13, 4, 11, 10, 5], "o": [4, 11, 10, 5]}, {"i": [12, 14, 15, 4, 8, 1, 0, 10], "o": [14, 15, 4, 8, 1, 0, 10]}, {"i": [0, 10, 4, 11, 14], "o": [10, 4, 11, 14]}, {"i": [13], "o": []}, {"i": [10], "o": []}, {"i": [2, 8, 12], "o": [8, 12]}, {"i": [1], "o": []}, {"i": [12, 15, 10, 10, 3, 8, 1], "o": [15, 10, 10, 3, 8, 1]}, {"i": [6, 10, 8, 14, 2, 12], "o": [10, 8, 14, 2, 12]}, {"i": [6, 0], "o": [0]}, {"i": [16], "o": []}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "remove-index-k with k=2", "examples": [{"i": [14, 11], "o": [14]}, {"i": [0, 3, 2, 9, 14, 4, 12, 13], "o": [0, 2, 9, 14, 4, 12, 13]}, {"i": [12, 14, 13, 2], "o": [12, 13, 2]}, {"i": [14, 5, 3], "o": [14, 3]}, {"i": [12, 4, 1], "o": [12, 1]}, {"i": [6, 8], "o": [6]}, {"i": [15, 3, 10], "o": [15, 10]}, {"i": [9, 5], "o": [9]}, {"i": [0, 9, 6, 7, 15], "o": [0, 6, 7, 15]}, {"i": [3, 11], "o": [3]}, {"i": [13, 3, 7], "o": [13, 7]}, {"i": [2, 2, 13, 0, 13, 5, 2, 6, 2], "o": [2, 13, 0, 13, 5, 2, 6, 2]}, {"i": [12, 5, 0, 10], "o": [12, 0, 10]}, {"i": [7, 4, 0, 1, 11, 0, 11], "o": [7, 0, 1, 11, 0, 11]}, {"i": [2, 16, 6, 4, 4, 1, 5], "o": [2, 6, 4, 4, 1, 5]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "remove-index-k with k=3", "examples": [{"i": [10, 5, 9], "o": [10, 5]}, {"i": [4, 8, 10, 3, 2, 12, 9, 0, 0], "o": [4, 8, 3, 2, 12, 9, 0, 0]}, {"i": [14, 10, 5, 2, 16], "o": [14, 10, 2, 16]}, {"i": [1, 9, 16, 8, 11, 16, 13], "o": [1, 9, 8, 11, 16, 13]}, {"i": [11, 7, 2], "o": [11, 7]}, {"i": [9, 11, 13, 2, 9], "o": [9, 11, 2, 9]}, {"i": [5, 11, 2, 10, 13, 9, 13], "o": [5, 11, 10, 13, 9, 13]}, {"i": [5, 4, 5, 2, 14, 6, 9, 15, 1, 1], "o": [5, 4, 2, 14, 6, 9, 15, 1, 1]}, {"i": [3, 11, 16, 4, 10, 7], "o": [3, 11, 4, 10, 7]}, {"i": [7, 1, 2, 14, 10], "o": [7, 1, 14, 10]}, {"i": [9, 10, 8, 6, 7, 15, 2, 9, 16], "o": [9, 10, 6, 7, 15, 2, 9, 16]}, {"i": [4, 0, 3, 4, 9, 2, 15, 4, 8, 5], "o": [4, 0, 4, 9, 2, 15, 4, 8, 5]}, {"i": [6, 4, 16, 5, 11, 11, 14], "o": [6, 4, 5, 11, 11, 14]}, {"i": [4, 6, 12], "o": [4, 6]}, {"i": [1, 14, 9, 7, 11, 16], "o": [1, 14, 7, 11, 16]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "remove-index-k with k=4", "examples": [{"i": [15, 1, 4, 12], "o": [15, 1, 4]}, {"i": [8, 7, 4, 2, 3, 12, 8, 13], "o": [8, 7, 4, 3, 12, 8, 13]}, {"i": [6, 5, 2, 13, 14, 5, 12, 6, 16, 11, 8], "o": [6, 5, 2, 14, 5, 12, 6, 16, 11, 8]}, {"i": [5, 6, 2, 15, 9, 1, 6], "o": [5, 6, 2, 9, 1, 6]}, {"i": [4, 14, 15, 6], "o": [4, 14, 15]}, {"i": [14, 4, 7, 12, 4, 3], "o": [14, 4, 7, 4, 3]}, {"i": [4, 0, 6, 0], "o": [4, 0, 6]}, {"i": [13, 12, 15, 1, 7, 3, 16, 10, 12, 14], "o": [13, 12, 15, 7, 3, 16, 10, 12, 14]}, {"i": [16, 13, 8, 3, 15, 0, 4, 2, 11], "o": [16, 13, 8, 15, 0, 4, 2, 11]}, {"i": [4, 9, 11, 5, 11, 1], "o": [4, 9, 11, 11, 1]}, {"i": [2, 1, 12, 15], "o": [2, 1, 12]}, {"i": [7, 14, 8, 15, 8], "o": [7, 14, 8, 8]}, {"i": [0, 11, 12, 9, 15, 16, 0, 8], "o": [0, 11, 12, 15, 16, 0, 8]}, {"i": [6, 7, 13, 8, 13, 16, 7, 10], "o": [6, 7, 13, 13, 16, 7, 10]}, {"i": [12, 9, 10, 2, 3, 5, 1, 8], "o": [12, 9, 10, 3, 5, 1, 8]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "remove-index-k with k=5", "examples": [{"i": [3, 3, 16, 6, 16, 4, 1], "o": [3, 3, 16, 6, 4, 1]}, {"i": [3, 12, 15, 12, 1, 5, 15, 15, 2, 10], "o": [3, 12, 15, 12, 5, 15, 15, 2, 10]}, {"i": [15, 3, 7, 0, 4, 7, 13, 6, 12, 4, 11], "o": [15, 3, 7, 0, 7, 13, 6, 12, 4, 11]}, {"i": [12, 5, 13, 11, 4, 16, 0, 8, 10, 6], "o": [12, 5, 13, 11, 16, 0, 8, 10, 6]}, {"i": [16, 16, 6, 6, 11, 5, 9, 14], "o": [16, 16, 6, 6, 5, 9, 14]}, {"i": [5, 0, 0, 13, 1, 16, 0, 9, 3], "o": [5, 0, 0, 13, 16, 0, 9, 3]}, {"i": [2, 3, 11, 8, 10], "o": [2, 3, 11, 8]}, {"i": [8, 10, 8, 4, 16, 7, 10, 5, 13], "o": [8, 10, 8, 4, 7, 10, 5, 13]}, {"i": [6, 11, 10, 7, 11], "o": [6, 11, 10, 7]}, {"i": [11, 16, 6, 0, 0, 8, 12], "o": [11, 16, 6, 0, 8, 12]}, {"i": [3, 8, 6, 6, 11, 3, 4, 1, 4], "o": [3, 8, 6, 6, 3, 4, 1, 4]}, {"i": [5, 11, 14, 2, 1, 3, 2, 13], "o": [5, 11, 14, 2, 3, 2, 13]}, {"i": [9, 11, 7, 13, 15, 10, 10, 8], "o": [9, 11, 7, 13, 10, 10, 8]}, {"i": [1, 3, 13, 12, 5, 8, 13, 0, 13, 3], "o": [1, 3, 13, 12, 8, 13, 0, 13, 3]}, {"i": [12, 6, 11, 9, 3], "o": [12, 6, 11, 9]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "remove-mod-head", "examples": [{"i": [3, 1, 3, 4, 7, 6, 9, 2], "o": [1, 4, 7, 2]}, {"i": [4, 2, 6, 10, 8, 12], "o": [2, 6, 10]}, {"i": [1, 2, 3], "o": []}, {"i": [6, 36], "o": []}, {"i": [5, 2, 14, 10, 13], "o": [2, 14, 13]}, {"i": [8, 6, 7, 15, 2], "o": [6, 7, 15, 2]}, {"i": [13, 4, 0, 3, 4], "o": [4, 3, 4]}, {"i": [3, 4, 8, 5, 8], "o": [4, 8, 5, 8]}, {"i": [4, 5, 11, 11], "o": [5, 11, 11]}, {"i": [1, 6, 12, 8, 1, 14, 9], "o": []}, {"i": [9, 0, 15, 1], "o": [15, 1]}, {"i": [10, 8, 7], "o": [8, 7]}, {"i": [3, 21, 9, 15], "o": []}, {"i": [5, 6, 16, 11, 8, 8, 5], "o": [6, 16, 11, 8, 8]}, {"i": [2, 9, 1, 6], "o": [9, 1]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "remove-mod-k with k=2", "examples": [{"i": [10, 10, 16, 7, 2], "o": [7]}, {"i": [5, 3, 1, 13, 7, 7, 4], "o": [5, 3, 1, 13, 7, 7]}, {"i": [6, 0], "o": []}, {"i": [0], "o": []}, {"i": [13, 1, 3, 2, 14], "o": [13, 1, 3]}, {"i": [15, 7, 15, 10, 13, 3, 12], "o": [15, 7, 15, 13, 3]}, {"i": [7, 10], "o": [7]}, {"i": [1, 15, 5], "o": [1, 15, 5]}, {"i": [2, 7, 6, 8], "o": [7]}, {"i": [3, 7, 1, 14], "o": [3, 7, 1]}, {"i": [15, 2, 6], "o": [15]}, {"i": [10, 11, 7], "o": [11, 7]}, {"i": [10], "o": []}, {"i": [], "o": []}, {"i": [7, 0, 4, 12], "o": [7]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "remove-mod-k with k=3", "examples": [{"i": [6], "o": []}, {"i": [3], "o": []}, {"i": [6, 3, 11, 12], "o": [11]}, {"i": [], "o": []}, {"i": [0, 0, 7, 11, 27, 24, 7], "o": [7, 11, 7]}, {"i": [12], "o": []}, {"i": [13, 9, 6, 15, 14, 11, 13], "o": [13, 14, 11, 13]}, {"i": [11, 9, 10, 15, 0, 1, 13], "o": [11, 10, 1, 13]}, {"i": [10, 5, 6], "o": [10, 5]}, {"i": [3], "o": []}, {"i": [7, 15, 6], "o": [7]}, {"i": [7], "o": [7]}, {"i": [5, 3, 11], "o": [5, 11]}, {"i": [1, 1], "o": [1, 1]}, {"i": [4, 15, 1, 6], "o": [4, 1]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "remove-mod-k with k=4", "examples": [{"i": [3, 32, 32, 36], "o": [3]}, {"i": [10, 14], "o": [10, 14]}, {"i": [20], "o": []}, {"i": [], "o": []}, {"i": [10], "o": [10]}, {"i": [20, 11, 0, 20, 24, 10, 24], "o": [11, 10]}, {"i": [0, 24, 16, 24], "o": []}, {"i": [28, 6, 20, 16, 5], "o": [6, 5]}, {"i": [11, 7, 16, 14, 13, 12, 3], "o": [11, 7, 14, 13, 3]}, {"i": [12, 9, 4, 16, 6], "o": [9, 6]}, {"i": [], "o": []}, {"i": [4, 14, 15, 1], "o": [14, 15, 1]}, {"i": [0, 12], "o": []}, {"i": [10, 3, 5, 8, 3, 7], "o": [10, 3, 5, 3, 7]}, {"i": [9, 5, 3, 3, 4, 5], "o": [9, 5, 3, 3, 5]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "remove-mod-k with k=5", "examples": [{"i": [20, 10, 5, 7], "o": [7]}, {"i": [9, 13, 0, 8], "o": [9, 13, 8]}, {"i": [0, 5], "o": []}, {"i": [13, 12, 10, 1, 15], "o": [13, 12, 1]}, {"i": [6], "o": [6]}, {"i": [8, 5, 9, 25, 6], "o": [8, 9, 6]}, {"i": [30], "o": []}, {"i": [14, 16, 10, 9, 6], "o": [14, 16, 9, 6]}, {"i": [5, 2, 1], "o": [2, 1]}, {"i": [12, 30], "o": [12]}, {"i": [5], "o": []}, {"i": [9, 5, 10, 5, 13, 14, 0], "o": [9, 13, 14]}, {"i": [10, 15, 40], "o": []}, {"i": [5, 40, 16], "o": [16]}, {"i": [35, 1, 4, 13, 10, 6, 35], "o": [1, 4, 13, 6]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "repeat", "examples": [{"i": [1, 1], "o": [1]}, {"i": [1, 2], "o": [2]}, {"i": [1, 3], "o": [3]}, {"i": [2, 1], "o": [1, 1]}, {"i": [2, 3], "o": [3, 3]}, {"i": [3, 7], "o": [7, 7, 7]}, {"i": [6, 13], "o": [13, 13, 13, 13, 13, 13]}, {"i": [4, 6], "o": [6, 6, 6, 6]}, {"i": [3, 7], "o": [7, 7, 7]}, {"i": [4, 3], "o": [3, 3, 3, 3]}, {"i": [3, 7], "o": [7, 7, 7]}, {"i": [7, 6], "o": [6, 6, 6, 6, 6, 6, 6]}, {"i": [3, 3], "o": [3, 3, 3]}, {"i": [1, 2], "o": [2]}, {"i": [4, 5], "o": [5, 5, 5, 5]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "repeat-k with k=1", "examples": [{"i": [], "o": []}, {"i": [], "o": []}, {"i": [15, 3, 7, 14], "o": [15, 3, 7, 14]}, {"i": [15, 8], "o": [15, 8]}, {"i": [0, 11, 12], "o": [0, 11, 12]}, {"i": [15, 16, 0], "o": [15, 16, 0]}, {"i": [9, 6], "o": [9, 6]}, {"i": [13, 8], "o": [13, 8]}, {"i": [16, 7, 10, 10], "o": [16, 7, 10, 10]}, {"i": [9, 10, 2, 3], "o": [9, 10, 2, 3]}, {"i": [1, 8], "o": [1, 8]}, {"i": [3], "o": [3]}, {"i": [16], "o": [16]}, {"i": [16, 4], "o": [16, 4]}, {"i": [], "o": []}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "repeat-k with k=2", "examples": [{"i": [3, 12, 15, 12], "o": [3, 12, 15, 12, 3, 12, 15, 12]}, {"i": [], "o": []}, {"i": [15], "o": [15, 15]}, {"i": [2, 10, 13, 15, 3], "o": [2, 10, 13, 15, 3, 2, 10, 13, 15, 3]}, {"i": [0, 4], "o": [0, 4, 0, 4]}, {"i": [13, 6], "o": [13, 6, 13, 6]}, {"i": [4, 11, 11, 12], "o": [4, 11, 11, 12, 4, 11, 11, 12]}, {"i": [13], "o": [13, 13]}, {"i": [4, 16, 0, 8], "o": [4, 16, 0, 8, 4, 16, 0, 8]}, {"i": [6, 7, 16], "o": [6, 7, 16, 6, 7, 16]}, {"i": [6, 6, 11, 5, 9], "o": [6, 6, 11, 5, 9, 6, 6, 11, 5, 9]}, {"i": [9, 5, 0, 0, 13], "o": [9, 5, 0, 0, 13, 9, 5, 0, 0, 13]}, {"i": [], "o": []}, {"i": [0, 9, 3, 1, 2], "o": [0, 9, 3, 1, 2, 0, 9, 3, 1, 2]}, {"i": [11], "o": [11, 11]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "repeat-k with k=3", "examples": [{"i": [10, 9], "o": [10, 9, 10, 9, 10, 9]}, {"i": [10, 8, 4], "o": [10, 8, 4, 10, 8, 4, 10, 8, 4]}, {"i": [7, 10, 5, 13, 1], "o": [7, 10, 5, 13, 1, 7, 10, 5, 13, 1, 7, 10, 5, 13, 1]}, {"i": [11, 10], "o": [11, 10, 11, 10, 11, 10]}, {"i": [11, 5], "o": [11, 5, 11, 5, 11, 5]}, {"i": [16, 6, 0, 0], "o": [16, 6, 0, 0, 16, 6, 0, 0, 16, 6, 0, 0]}, {"i": [12, 10], "o": [12, 10, 12, 10, 12, 10]}, {"i": [8], "o": [8, 8, 8]}, {"i": [6, 11], "o": [6, 11, 6, 11, 6, 11]}, {"i": [4], "o": [4, 4, 4]}, {"i": [], "o": []}, {"i": [8], "o": [8, 8, 8]}, {"i": [11, 14], "o": [11, 14, 11, 14, 11, 14]}, {"i": [1], "o": [1, 1, 1]}, {"i": [2], "o": [2, 2, 2]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "repeat-k with k=4", "examples": [{"i": [7, 9, 11, 7], "o": [7, 9, 11, 7, 7, 9, 11, 7, 7, 9, 11, 7, 7, 9, 11, 7]}, {"i": [15, 10, 10, 8], "o": [15, 10, 10, 8, 15, 10, 10, 8, 15, 10, 10, 8, 15, 10, 10, 8]}, {"i": [1, 3, 13], "o": [1, 3, 13, 1, 3, 13, 1, 3, 13, 1, 3, 13]}, {"i": [5, 8, 13, 0], "o": [5, 8, 13, 0, 5, 8, 13, 0, 5, 8, 13, 0, 5, 8, 13, 0]}, {"i": [3, 1, 12, 6], "o": [3, 1, 12, 6, 3, 1, 12, 6, 3, 1, 12, 6, 3, 1, 12, 6]}, {"i": [9, 3, 9, 14], "o": [9, 3, 9, 14, 9, 3, 9, 14, 9, 3, 9, 14, 9, 3, 9, 14]}, {"i": [15, 10], "o": [15, 10, 15, 10, 15, 10, 15, 10]}, {"i": [8, 16], "o": [8, 16, 8, 16, 8, 16, 8, 16]}, {"i": [14, 8, 6, 2, 6], "o": [14, 8, 6, 2, 6, 14, 8, 6, 2, 6, 14, 8, 6, 2, 6, 14, 8, 6, 2, 6]}, {"i": [12, 3, 13], "o": [12, 3, 13, 12, 3, 13, 12, 3, 13, 12, 3, 13]}, {"i": [6], "o": [6, 6, 6, 6]}, {"i": [3, 5], "o": [3, 5, 3, 5, 3, 5, 3, 5]}, {"i": [6, 5], "o": [6, 5, 6, 5, 6, 5, 6, 5]}, {"i": [12, 14, 1], "o": [12, 14, 1, 12, 14, 1, 12, 14, 1, 12, 14, 1]}, {"i": [6, 0, 12, 11, 3], "o": [6, 0, 12, 11, 3, 6, 0, 12, 11, 3, 6, 0, 12, 11, 3, 6, 0, 12, 11, 3]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "repeat-k with k=5", "examples": [{"i": [14, 13, 13, 4, 9], "o": [14, 13, 13, 4, 9, 14, 13, 13, 4, 9, 14, 13, 13, 4, 9, 14, 13, 13, 4, 9, 14, 13, 13, 4, 9]}, {"i": [7, 6], "o": [7, 6, 7, 6, 7, 6, 7, 6, 7, 6]}, {"i": [4, 8, 16, 4], "o": [4, 8, 16, 4, 4, 8, 16, 4, 4, 8, 16, 4, 4, 8, 16, 4, 4, 8, 16, 4]}, {"i": [15, 5, 8], "o": [15, 5, 8, 15, 5, 8, 15, 5, 8, 15, 5, 8, 15, 5, 8]}, {"i": [7, 9, 9, 2], "o": [7, 9, 9, 2, 7, 9, 9, 2, 7, 9, 9, 2, 7, 9, 9, 2, 7, 9, 9, 2]}, {"i": [6, 10, 14, 2], "o": [6, 10, 14, 2, 6, 10, 14, 2, 6, 10, 14, 2, 6, 10, 14, 2, 6, 10, 14, 2]}, {"i": [3, 15, 14, 3, 5], "o": [3, 15, 14, 3, 5, 3, 15, 14, 3, 5, 3, 15, 14, 3, 5, 3, 15, 14, 3, 5, 3, 15, 14, 3, 5]}, {"i": [0, 1, 15, 1, 7], "o": [0, 1, 15, 1, 7, 0, 1, 15, 1, 7, 0, 1, 15, 1, 7, 0, 1, 15, 1, 7, 0, 1, 15, 1, 7]}, {"i": [6, 15, 12, 9], "o": [6, 15, 12, 9, 6, 15, 12, 9, 6, 15, 12, 9, 6, 15, 12, 9, 6, 15, 12, 9]}, {"i": [7, 9, 7, 7], "o": [7, 9, 7, 7, 7, 9, 7, 7, 7, 9, 7, 7, 7, 9, 7, 7, 7, 9, 7, 7]}, {"i": [1, 6], "o": [1, 6, 1, 6, 1, 6, 1, 6, 1, 6]}, {"i": [11, 13, 11, 3, 1], "o": [11, 13, 11, 3, 1, 11, 13, 11, 3, 1, 11, 13, 11, 3, 1, 11, 13, 11, 3, 1, 11, 13, 11, 3, 1]}, {"i": [15, 7, 7], "o": [15, 7, 7, 15, 7, 7, 15, 7, 7, 15, 7, 7, 15, 7, 7]}, {"i": [1, 3, 9, 11, 15], "o": [1, 3, 9, 11, 15, 1, 3, 9, 11, 15, 1, 3, 9, 11, 15, 1, 3, 9, 11, 15, 1, 3, 9, 11, 15]}, {"i": [], "o": []}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "repeat-many", "examples": [{"i": [1, 1, 2, 3], "o": [1, 2, 3]}, {"i": [2, 1, 2, 3], "o": [1, 2, 3, 1, 2, 3]}, {"i": [4, 1, 2], "o": [1, 2, 1, 2, 1, 2, 1, 2]}, {"i": [5, 7, 0], "o": [7, 0, 7, 0, 7, 0, 7, 0, 7, 0]}, {"i": [3, 3, 2, 5], "o": [3, 2, 5, 3, 2, 5, 3, 2, 5]}, {"i": [5, 1], "o": [1, 1, 1, 1, 1]}, {"i": [2, 15, 1], "o": [15, 1, 15, 1]}, {"i": [4, 3], "o": [3, 3, 3, 3]}, {"i": [1, 7, 16, 2, 2], "o": [7, 16, 2, 2]}, {"i": [0, 13, 5, 2, 6], "o": []}, {"i": [2, 12], "o": [12, 12]}, {"i": [0, 10, 11], "o": []}, {"i": [1, 0, 1], "o": [0, 1]}, {"i": [0, 11, 11, 2], "o": []}, {"i": [2, 4, 4, 1, 5], "o": [4, 4, 1, 5, 4, 4, 1, 5]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "replace-all-with-index-k with k=1", "examples": [{"i": [6], "o": [6]}, {"i": [4, 2, 6], "o": [4, 4, 4]}, {"i": [16, 15, 10, 14, 4, 15, 10, 14], "o": [16, 16, 16, 16, 16, 16, 16, 16]}, {"i": [7, 6], "o": [7, 7]}, {"i": [10, 8, 1, 12], "o": [10, 10, 10, 10]}, {"i": [14, 10], "o": [14, 14]}, {"i": [3, 9, 14, 11, 13, 7, 1, 10], "o": [3, 3, 3, 3, 3, 3, 3, 3]}, {"i": [1, 11, 15, 14, 15], "o": [1, 1, 1, 1, 1]}, {"i": [16], "o": [16]}, {"i": [8, 1, 0, 8, 16, 11, 7], "o": [8, 8, 8, 8, 8, 8, 8]}, {"i": [11, 11, 6, 0, 10], "o": [11, 11, 11, 11, 11]}, {"i": [14, 14], "o": [14, 14]}, {"i": [15, 7, 0, 9, 9, 7, 10], "o": [15, 15, 15, 15, 15, 15, 15]}, {"i": [0, 16, 6, 10], "o": [0, 0, 0, 0]}, {"i": [0, 15], "o": [0, 0]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "replace-all-with-index-k with k=2", "examples": [{"i": [10, 8, 6, 6, 6, 14, 6], "o": [8, 8, 8, 8, 8, 8, 8]}, {"i": [10, 11, 9, 13], "o": [11, 11, 11, 11]}, {"i": [3, 7, 10, 11, 7], "o": [7, 7, 7, 7, 7]}, {"i": [12, 15], "o": [15, 15]}, {"i": [11, 7, 16, 14, 13, 12], "o": [7, 7, 7, 7, 7, 7]}, {"i": [11, 14, 12], "o": [14, 14, 14]}, {"i": [4, 16, 6, 0, 5, 10], "o": [16, 16, 16, 16, 16, 16]}, {"i": [4, 14, 15, 1, 4, 5, 12], "o": [14, 14, 14, 14, 14, 14, 14]}, {"i": [5, 5, 0, 11, 6, 14], "o": [5, 5, 5, 5, 5, 5]}, {"i": [10, 3, 5, 8, 3, 7, 14, 1], "o": [3, 3, 3, 3, 3, 3, 3, 3]}, {"i": [9, 8], "o": [8, 8]}, {"i": [3, 4, 5], "o": [4, 4, 4]}, {"i": [5, 10, 7], "o": [10, 10, 10]}, {"i": [1, 3, 5, 7, 5, 3, 3], "o": [3, 3, 3, 3, 3, 3, 3]}, {"i": [9, 10, 9, 13, 0], "o": [10, 10, 10, 10, 10]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "replace-all-with-index-k with k=3", "examples": [{"i": [4, 7, 15, 9, 4, 15, 3], "o": [15, 15, 15, 15, 15, 15, 15]}, {"i": [2, 8, 0, 11, 14, 13, 12, 10, 1, 15], "o": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, {"i": [12, 6, 11, 4], "o": [11, 11, 11, 11]}, {"i": [8, 5, 9, 6, 6, 10], "o": [9, 9, 9, 9, 9, 9]}, {"i": [2, 2, 16, 14, 9, 11, 11], "o": [16, 16, 16, 16, 16, 16, 16]}, {"i": [2, 14, 16, 10, 9, 6], "o": [16, 16, 16, 16, 16, 16]}, {"i": [11, 5, 2, 1, 4, 8], "o": [2, 2, 2, 2, 2, 2]}, {"i": [12, 12, 14, 10, 3], "o": [14, 14, 14, 14, 14]}, {"i": [5, 15, 7, 9, 9, 5, 10, 5], "o": [7, 7, 7, 7, 7, 7, 7, 7]}, {"i": [14, 0, 6, 5, 14, 1, 2, 5, 3], "o": [6, 6, 6, 6, 6, 6, 6, 6, 6]}, {"i": [15, 14, 8, 5], "o": [8, 8, 8, 8]}, {"i": [5, 11, 5, 1, 16, 1], "o": [5, 5, 5, 5, 5, 5]}, {"i": [7, 15, 15, 7], "o": [15, 15, 15, 15]}, {"i": [0, 1, 4, 13, 14], "o": [4, 4, 4, 4, 4]}, {"i": [7, 10, 4, 1, 12], "o": [4, 4, 4, 4, 4]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "replace-all-with-index-k with k=4", "examples": [{"i": [12, 11, 1, 13, 14, 2, 11, 6, 6, 5, 6], "o": [13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13]}, {"i": [16, 7, 6, 13, 1, 0, 1, 15, 10, 14], "o": [13, 13, 13, 13, 13, 13, 13, 13, 13, 13]}, {"i": [10, 1, 3, 13, 10, 14], "o": [13, 13, 13, 13, 13, 13]}, {"i": [16, 4, 3, 7, 13, 13, 0, 6, 4], "o": [7, 7, 7, 7, 7, 7, 7, 7, 7]}, {"i": [10, 10, 0, 5, 7, 16, 2, 7, 8, 16], "o": [5, 5, 5, 5, 5, 5, 5, 5, 5, 5]}, {"i": [0, 10, 8, 9, 8, 1, 9, 3], "o": [9, 9, 9, 9, 9, 9, 9, 9]}, {"i": [12, 16, 4, 8, 4, 0, 0, 16, 14, 7], "o": [8, 8, 8, 8, 8, 8, 8, 8, 8, 8]}, {"i": [4, 14, 0, 9, 15, 3, 7, 5, 14, 7], "o": [9, 9, 9, 9, 9, 9, 9, 9, 9, 9]}, {"i": [0, 4, 2, 5], "o": [5, 5, 5, 5]}, {"i": [9, 11, 5, 6, 10, 0, 15, 6], "o": [6, 6, 6, 6, 6, 6, 6, 6]}, {"i": [0, 15, 16, 5], "o": [5, 5, 5, 5]}, {"i": [10, 5, 4, 3, 7, 1, 5, 10, 3, 15], "o": [3, 3, 3, 3, 3, 3, 3, 3, 3, 3]}, {"i": [0, 9, 16, 3, 3, 11, 16, 0], "o": [3, 3, 3, 3, 3, 3, 3, 3]}, {"i": [1, 4, 13, 3], "o": [3, 3, 3, 3]}, {"i": [10, 15, 6, 9, 2], "o": [9, 9, 9, 9, 9]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "replace-all-with-index-k with k=5", "examples": [{"i": [8, 7, 16, 9, 3, 15], "o": [3, 3, 3, 3, 3, 3]}, {"i": [9, 13, 7, 14, 0, 3, 12], "o": [0, 0, 0, 0, 0, 0, 0]}, {"i": [10, 16, 9, 13, 14, 13], "o": [14, 14, 14, 14, 14, 14]}, {"i": [4, 16, 8, 9, 13, 8, 12, 11, 4, 5, 2], "o": [13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13]}, {"i": [4, 10, 1, 16, 2, 11, 10, 12, 4, 10, 8, 6], "o": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]}, {"i": [2, 4, 9, 8, 7, 9, 16], "o": [7, 7, 7, 7, 7, 7, 7]}, {"i": [9, 8, 15, 3, 4, 13, 9, 3, 3], "o": [4, 4, 4, 4, 4, 4, 4, 4, 4]}, {"i": [15, 5, 16, 14, 4, 6, 15, 12, 9, 13, 15], "o": [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4]}, {"i": [16, 5, 7, 1, 5], "o": [5, 5, 5, 5, 5]}, {"i": [0, 5, 7, 11, 11, 0, 12, 3, 1], "o": [11, 11, 11, 11, 11, 11, 11, 11, 11]}, {"i": [9, 12, 12, 15, 13, 16, 5, 13], "o": [13, 13, 13, 13, 13, 13, 13, 13]}, {"i": [12, 3, 6, 14, 5], "o": [5, 5, 5, 5, 5]}, {"i": [13, 1, 15, 8, 5, 3, 10, 11, 6, 8], "o": [5, 5, 5, 5, 5, 5, 5, 5, 5, 5]}, {"i": [13, 5, 3, 0, 9, 15, 1, 1], "o": [9, 9, 9, 9, 9, 9, 9, 9]}, {"i": [12, 13, 9, 8, 3, 4, 5], "o": [3, 3, 3, 3, 3, 3, 3]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "reverse", "examples": [{"i": [2, 0, 4], "o": [4, 0, 2]}, {"i": [2, 5, 4, 2, 0, 5, 1, 1], "o": [1, 1, 5, 0, 2, 4, 5, 2]}, {"i": [14, 12], "o": [12, 14]}, {"i": [], "o": []}, {"i": [7, 13, 5, 7, 6], "o": [6, 7, 5, 13, 7]}, {"i": [15, 7, 11], "o": [11, 7, 15]}, {"i": [8, 7, 11, 7, 15, 11], "o": [11, 15, 7, 11, 7, 8]}, {"i": [9, 10, 5, 8, 3], "o": [3, 8, 5, 10, 9]}, {"i": [2], "o": [2]}, {"i": [8, 6, 9], "o": [9, 6, 8]}, {"i": [4, 11], "o": [11, 4]}, {"i": [], "o": []}, {"i": [], "o": []}, {"i": [15, 15, 11, 5, 3], "o": [3, 5, 11, 15, 15]}, {"i": [11, 5, 5, 6], "o": [6, 5, 5, 11]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "rotate-k with k=1", "examples": [{"i": [16, 15, 10, 15, 5, 16, 9, 7, 9, 11, 2, 2], "o": [2, 16, 15, 10, 15, 5, 16, 9, 7, 9, 11, 2]}, {"i": [10, 5, 9, 13, 4, 8, 10, 3, 2, 12, 9, 0], "o": [0, 10, 5, 9, 13, 4, 8, 10, 3, 2, 12, 9]}, {"i": [8, 5, 16, 12, 11], "o": [11, 8, 5, 16, 12]}, {"i": [1, 13, 14, 2, 11, 6, 6, 5, 6, 13, 16, 7, 6, 13], "o": [13, 1, 13, 14, 2, 11, 6, 6, 5, 6, 13, 16, 7, 6]}, {"i": [1, 14, 6, 2, 2, 13, 5, 7, 3, 4, 9, 6, 4, 11], "o": [11, 1, 14, 6, 2, 2, 13, 5, 7, 3, 4, 9, 6, 4]}, {"i": [13, 5, 6, 6, 3, 5, 7, 6, 5, 11], "o": [11, 13, 5, 6, 6, 3, 5, 7, 6, 5]}, {"i": [12, 0, 2, 3, 8, 4, 12, 4, 15, 7, 13, 4, 4, 9, 16, 7], "o": [7, 12, 0, 2, 3, 8, 4, 12, 4, 15, 7, 13, 4, 4, 9, 16]}, {"i": [11, 3, 6, 7, 6, 8, 5, 6, 10, 3, 14, 4, 3, 8], "o": [8, 11, 3, 6, 7, 6, 8, 5, 6, 10, 3, 14, 4, 3]}, {"i": [0, 12], "o": [12, 0]}, {"i": [5, 14, 10, 5, 2, 16, 10, 1, 9, 16], "o": [16, 5, 14, 10, 5, 2, 16, 10, 1, 9]}, {"i": [7, 10, 4, 14, 4, 16, 1, 8, 4, 7, 6, 0, 2, 0, 7, 8], "o": [8, 7, 10, 4, 14, 4, 16, 1, 8, 4, 7, 6, 0, 2, 0, 7]}, {"i": [0, 1, 15, 10, 14, 4, 10, 1, 3, 13], "o": [13, 0, 1, 15, 10, 14, 4, 10, 1, 3]}, {"i": [10, 2, 5, 10, 14, 15, 9, 11, 13, 5, 15, 1, 15, 0, 9, 0, 12], "o": [12, 10, 2, 5, 10, 14, 15, 9, 11, 13, 5, 15, 1, 15, 0, 9, 0]}, {"i": [14, 1], "o": [1, 14]}, {"i": [10, 16, 6, 14, 11, 5, 1, 4, 2, 0, 15, 14, 13, 16, 12, 8, 11], "o": [11, 10, 16, 6, 14, 11, 5, 1, 4, 2, 0, 15, 14, 13, 16, 12, 8]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "rotate-k with k=2", "examples": [{"i": [16, 2, 16, 6, 8, 12, 12, 3, 6, 8, 5, 5], "o": [5, 5, 16, 2, 16, 6, 8, 12, 12, 3, 6, 8]}, {"i": [2, 12, 6, 9], "o": [6, 9, 2, 12]}, {"i": [7, 1, 6, 5, 14, 14, 0, 5, 6], "o": [5, 6, 7, 1, 6, 5, 14, 14, 0]}, {"i": [11, 16, 13, 1, 11, 7, 2, 5, 9, 11, 13, 2, 9, 9, 5, 11], "o": [5, 11, 11, 16, 13, 1, 11, 7, 2, 5, 9, 11, 13, 2, 9, 9]}, {"i": [8, 9, 7, 10, 8, 8, 6, 12], "o": [6, 12, 8, 9, 7, 10, 8, 8]}, {"i": [14, 12, 16, 4, 3, 7, 13, 13, 0, 6, 4, 12, 10, 10, 0, 5, 7], "o": [5, 7, 14, 12, 16, 4, 3, 7, 13, 13, 0, 6, 4, 12, 10, 10, 0]}, {"i": [11, 16, 7, 7, 6, 3, 16, 12], "o": [16, 12, 11, 16, 7, 7, 6, 3]}, {"i": [6, 0, 12, 11, 3, 15, 14, 13, 13, 4], "o": [13, 4, 6, 0, 12, 11, 3, 15, 14, 13]}, {"i": [10, 1, 13, 5, 13, 14, 7, 6, 6, 0], "o": [6, 0, 10, 1, 13, 5, 13, 14, 7, 6]}, {"i": [12, 3, 15, 13], "o": [15, 13, 12, 3]}, {"i": [0, 13, 14, 13, 1, 14, 12], "o": [14, 12, 0, 13, 14, 13, 1]}, {"i": [10, 13, 9, 13], "o": [9, 13, 10, 13]}, {"i": [7, 11, 0, 13, 3, 9, 1, 13, 10, 8, 2, 12, 9, 11], "o": [9, 11, 7, 11, 0, 13, 3, 9, 1, 13, 10, 8, 2, 12]}, {"i": [2, 7, 8, 16, 10, 0, 10, 8, 9, 8, 1, 9, 3], "o": [9, 3, 2, 7, 8, 16, 10, 0, 10, 8, 9, 8, 1]}, {"i": [13, 15, 0, 2, 1, 12, 8, 8, 4, 3], "o": [4, 3, 13, 15, 0, 2, 1, 12, 8, 8]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "rotate-k with k=3", "examples": [{"i": [13, 6, 15, 16, 4], "o": [15, 16, 4, 13, 6]}, {"i": [6, 7, 6, 12, 4, 8, 16, 4, 8, 15, 5, 8, 12, 7, 9], "o": [12, 7, 9, 6, 7, 6, 12, 4, 8, 16, 4, 8, 15, 5, 8]}, {"i": [15, 9, 4, 8, 5, 5, 11, 4, 5, 11, 4, 11, 13, 15, 14, 8], "o": [15, 14, 8, 15, 9, 4, 8, 5, 5, 11, 4, 5, 11, 4, 11, 13]}, {"i": [8, 13, 9, 6, 8, 6], "o": [6, 8, 6, 8, 13, 9]}, {"i": [4, 3, 12, 6, 2, 11, 16, 10, 9, 10, 13, 6, 3], "o": [13, 6, 3, 4, 3, 12, 6, 2, 11, 16, 10, 9, 10]}, {"i": [5, 4, 5, 2, 14, 6, 9, 15, 1, 1, 7, 3, 11], "o": [7, 3, 11, 5, 4, 5, 2, 14, 6, 9, 15, 1, 1]}, {"i": [0, 6, 9, 4, 16, 10, 12], "o": [16, 10, 12, 0, 6, 9, 4]}, {"i": [12, 16, 4, 8, 4, 0, 0, 16, 14, 7, 13, 4], "o": [7, 13, 4, 12, 16, 4, 8, 4, 0, 0, 16, 14]}, {"i": [6, 0, 10, 14, 5, 13, 11, 2, 7, 7, 12], "o": [7, 7, 12, 6, 0, 10, 14, 5, 13, 11, 2]}, {"i": [2, 11, 6, 10, 14, 2, 14, 3, 15, 14, 3, 5, 15, 0, 1, 15, 1], "o": [1, 15, 1, 2, 11, 6, 10, 14, 2, 14, 3, 15, 14, 3, 5, 15, 0]}, {"i": [13, 12, 0, 3, 11, 2, 9, 13, 0, 10, 2, 5, 7, 6, 4, 13, 1], "o": [4, 13, 1, 13, 12, 0, 3, 11, 2, 9, 13, 0, 10, 2, 5, 7, 6]}, {"i": [0, 5, 4, 2, 14, 6], "o": [2, 14, 6, 0, 5, 4]}, {"i": [2, 6, 1, 11, 4, 8, 15, 15, 16, 13, 3, 11, 8, 14], "o": [11, 8, 14, 2, 6, 1, 11, 4, 8, 15, 15, 16, 13, 3]}, {"i": [4, 10, 7, 5, 7, 1, 2, 14, 10, 13], "o": [14, 10, 13, 4, 10, 7, 5, 7, 1, 2]}, {"i": [4, 13, 10, 0, 1, 2, 6, 4], "o": [2, 6, 4, 4, 13, 10, 0, 1]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "rotate-k with k=4", "examples": [{"i": [2, 6, 10, 10, 8, 15, 16, 15, 1, 2, 7, 5, 4, 0, 13], "o": [5, 4, 0, 13, 2, 6, 10, 10, 8, 15, 16, 15, 1, 2, 7]}, {"i": [0, 9, 15, 3, 7], "o": [9, 15, 3, 7, 0]}, {"i": [7, 7, 2, 1, 10, 7, 2, 4, 3, 4, 10, 3, 12, 0, 15, 14], "o": [12, 0, 15, 14, 7, 7, 2, 1, 10, 7, 2, 4, 3, 4, 10, 3]}, {"i": [12, 6, 15, 12, 9, 14, 7, 9, 7, 7, 8, 1], "o": [7, 7, 8, 1, 12, 6, 15, 12, 9, 14, 7, 9]}, {"i": [7, 9, 13, 6, 10, 10, 14, 4, 11, 3, 0, 3, 12, 13, 13, 16], "o": [12, 13, 13, 16, 7, 9, 13, 6, 10, 10, 14, 4, 11, 3, 0, 3]}, {"i": [15, 8, 14, 3, 4, 16, 1, 2, 5, 10, 5, 16, 4, 8], "o": [5, 16, 4, 8, 15, 8, 14, 3, 4, 16, 1, 2, 5, 10]}, {"i": [5, 2, 5, 8, 2, 2, 2, 10, 12, 5, 13], "o": [10, 12, 5, 13, 5, 2, 5, 8, 2, 2, 2]}, {"i": [10, 8, 6, 7, 15, 2, 9, 16, 16, 4, 0, 3, 4, 9, 2], "o": [3, 4, 9, 2, 10, 8, 6, 7, 15, 2, 9, 16, 16, 4, 0]}, {"i": [15, 3, 16, 12, 14, 13, 5, 8, 8, 9], "o": [5, 8, 8, 9, 15, 3, 16, 12, 14, 13]}, {"i": [14, 7, 0, 0, 4, 2, 5, 8, 9, 11, 5, 6, 10, 0, 15, 6, 0], "o": [0, 15, 6, 0, 14, 7, 0, 0, 4, 2, 5, 8, 9, 11, 5, 6, 10]}, {"i": [11, 2, 8, 16, 9, 8, 11, 10, 14, 11, 16, 5, 15, 2, 5, 13], "o": [15, 2, 5, 13, 11, 2, 8, 16, 9, 8, 11, 10, 14, 11, 16, 5]}, {"i": [16, 11, 13, 11, 3, 1, 8, 15, 7, 7], "o": [8, 15, 7, 7, 16, 11, 13, 11, 3, 1]}, {"i": [8, 0, 13, 13, 1, 8, 8, 4, 5], "o": [8, 8, 4, 5, 8, 0, 13, 13, 1]}, {"i": [3, 5, 11, 7, 11, 10, 3, 14, 0], "o": [10, 3, 14, 0, 3, 5, 11, 7, 11]}, {"i": [16, 0, 11, 7, 9, 2, 5, 11], "o": [9, 2, 5, 11, 16, 0, 11, 7]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "rotate-k with k=5", "examples": [{"i": [4, 12, 6, 13, 11, 6, 1, 3, 4], "o": [11, 6, 1, 3, 4, 4, 12, 6, 13]}, {"i": [4, 8, 5, 8, 6, 4, 16, 5, 11, 11, 14, 0, 4, 6], "o": [11, 14, 0, 4, 6, 4, 8, 5, 8, 6, 4, 16, 5, 11]}, {"i": [4, 6, 9, 11, 0, 1, 11, 7, 8, 4, 3, 7], "o": [7, 8, 4, 3, 7, 4, 6, 9, 11, 0, 1, 11]}, {"i": [15, 16, 5, 13, 10, 5, 4, 3, 7, 1, 5, 10], "o": [3, 7, 1, 5, 10, 15, 16, 5, 13, 10, 5, 4]}, {"i": [4, 14, 0, 5, 2, 1, 1, 7, 1, 1, 1, 3, 13, 16, 0], "o": [1, 3, 13, 16, 0, 4, 14, 0, 5, 2, 1, 1, 7, 1, 1]}, {"i": [1, 3, 9, 11, 15, 2], "o": [3, 9, 11, 15, 2, 1]}, {"i": [6, 9, 9, 0, 15, 12, 1, 8, 5, 14, 8, 2, 0], "o": [5, 14, 8, 2, 0, 6, 9, 9, 0, 15, 12, 1, 8]}, {"i": [10, 15, 6, 14, 4, 12, 0, 15, 8, 13, 16, 6, 9, 16], "o": [13, 16, 6, 9, 16, 10, 15, 6, 14, 4, 12, 0, 15, 8]}, {"i": [3, 12, 13, 12, 5, 7, 7, 2], "o": [12, 5, 7, 7, 2, 3, 12, 13]}, {"i": [8, 1, 14, 9, 7, 11, 16, 0, 15, 1, 4, 12, 10], "o": [15, 1, 4, 12, 10, 8, 1, 14, 9, 7, 11, 16, 0]}, {"i": [14, 6, 10, 2, 7, 12, 1, 12, 8, 11, 2, 7, 3], "o": [8, 11, 2, 7, 3, 14, 6, 10, 2, 7, 12, 1, 12]}, {"i": [15, 10, 0, 9, 16, 3, 3, 11, 16, 0, 1, 1, 4, 13], "o": [0, 1, 1, 4, 13, 15, 10, 0, 9, 16, 3, 3, 11, 16]}, {"i": [6, 0, 7, 8, 15, 14, 0, 8, 16, 15, 9, 3, 7, 3, 9], "o": [9, 3, 7, 3, 9, 6, 0, 7, 8, 15, 14, 0, 8, 16, 15]}, {"i": [11, 3, 6, 7, 6, 8, 5, 6, 10, 3, 14, 4, 3, 8, 13], "o": [14, 4, 3, 8, 13, 11, 3, 6, 7, 6, 8, 5, 6, 10, 3]}, {"i": [7, 3, 14, 15, 8, 10, 9, 15, 9, 11, 13], "o": [9, 15, 9, 11, 13, 7, 3, 14, 15, 8, 10]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "slice-k-n with k=1 and n=1", "examples": [{"i": [5, 14, 5, 2, 13, 1, 7, 13, 1, 1], "o": [5]}, {"i": [15, 0, 1, 9, 3, 14, 6, 10, 12, 5], "o": [15]}, {"i": [16, 14, 0, 6, 8, 4, 0, 0, 11], "o": [16]}, {"i": [8, 6, 15, 14], "o": [8]}, {"i": [4, 9, 0, 9, 13], "o": [4]}, {"i": [0, 11, 13, 1, 16, 11, 3, 4, 11, 4], "o": [0]}, {"i": [12, 0, 13, 16, 10], "o": [12]}, {"i": [9, 9, 14, 10], "o": [9]}, {"i": [9, 2, 11, 7], "o": [9]}, {"i": [8, 5, 0], "o": [8]}, {"i": [16, 4, 9, 6, 6, 1], "o": [16]}, {"i": [10, 3, 10, 11, 4, 16, 7], "o": [10]}, {"i": [15, 13, 8], "o": [15]}, {"i": [14, 1, 5, 9, 0, 15, 14, 9, 12, 13], "o": [14]}, {"i": [15, 11, 7, 8, 10, 16], "o": [15]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "slice-k-n with k=1 and n=2", "examples": [{"i": [6, 8, 7, 10, 2, 5, 3, 0, 15, 16, 3], "o": [6, 8]}, {"i": [8, 0, 4, 6, 16, 1, 6], "o": [8, 0]}, {"i": [6, 2, 13, 8], "o": [6, 2]}, {"i": [13, 13, 8, 0, 5, 14, 0, 2], "o": [13, 13]}, {"i": [4, 10, 5, 4, 8, 8, 1, 7, 10, 15, 8], "o": [4, 10]}, {"i": [12, 14, 1, 6, 5, 13, 3, 13, 11, 15], "o": [12, 14]}, {"i": [8, 6, 10, 14, 3], "o": [8, 6]}, {"i": [10, 3, 10, 2, 4], "o": [10, 3]}, {"i": [11, 3, 6, 11, 12, 6], "o": [11, 3]}, {"i": [13, 3, 9, 14, 15], "o": [13, 3]}, {"i": [10, 13, 8, 0, 11, 12, 14, 7, 9, 8], "o": [10, 13]}, {"i": [9, 5, 1, 6, 8, 13, 16], "o": [9, 5]}, {"i": [13, 8, 5, 4], "o": [13, 8]}, {"i": [9, 9, 13, 7, 1], "o": [9, 9]}, {"i": [5, 8, 2, 6, 12, 8], "o": [5, 8]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "slice-k-n with k=1 and n=3", "examples": [{"i": [14, 13, 13, 2, 12, 5, 15, 3], "o": [14, 13, 13]}, {"i": [13, 12, 5, 0, 6, 6, 4, 2, 2, 11], "o": [13, 12, 5]}, {"i": [7, 7, 11, 5, 16], "o": [7, 7, 11]}, {"i": [8, 1, 7, 13, 11, 2, 5, 16, 10, 9], "o": [8, 1, 7]}, {"i": [15, 14, 7, 2, 13, 14, 7], "o": [15, 14, 7]}, {"i": [5, 15, 11, 2, 8, 15, 4, 11, 1, 16, 10, 13], "o": [5, 15, 11]}, {"i": [13, 13, 2, 4, 6, 5, 3], "o": [13, 13, 2]}, {"i": [12, 14, 2, 14, 0, 9, 8], "o": [12, 14, 2]}, {"i": [12, 7, 10, 10, 1, 11, 12, 10, 0, 3, 14], "o": [12, 7, 10]}, {"i": [6, 13, 3, 14, 6, 3, 8, 9, 10, 7, 9, 1], "o": [6, 13, 3]}, {"i": [1, 14, 4, 2, 7, 14], "o": [1, 14, 4]}, {"i": [12, 5, 9, 6, 0, 15, 6, 6, 4, 13, 0, 14], "o": [12, 5, 9]}, {"i": [3, 5, 5, 7, 6, 16, 4, 2, 7], "o": [3, 5, 5]}, {"i": [15, 12, 15, 9, 8, 3, 14, 3, 0, 0, 14], "o": [15, 12, 15]}, {"i": [12, 4, 14, 2, 6, 9, 14], "o": [12, 4, 14]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "slice-k-n with k=1 and n=4", "examples": [{"i": [12, 3, 1, 10, 12, 2, 13, 5, 5], "o": [12, 3, 1, 10]}, {"i": [5, 8, 11, 0, 0, 13, 3, 11, 1, 2, 12, 15, 5], "o": [5, 8, 11, 0]}, {"i": [12, 12, 2, 1, 10, 15, 3, 13, 9, 9, 16, 1, 5], "o": [12, 12, 2, 1]}, {"i": [15, 13, 11, 10, 5, 14, 11, 13, 6, 5], "o": [15, 13, 11, 10]}, {"i": [3, 8, 9, 15, 11, 10, 0, 15, 16, 8, 15, 1], "o": [3, 8, 9, 15]}, {"i": [14, 3, 5, 6, 0, 14, 6, 4, 11, 8, 11, 11, 10], "o": [14, 3, 5, 6]}, {"i": [12, 1, 8, 14, 0, 15, 6, 16, 1], "o": [12, 1, 8, 14]}, {"i": [5, 6, 8, 1, 11, 12, 12, 6, 5, 6], "o": [5, 6, 8, 1]}, {"i": [15, 10, 11, 14, 12, 12, 14], "o": [15, 10, 11, 14]}, {"i": [0, 7, 13, 15, 0, 9, 4, 7, 12, 7, 6], "o": [0, 7, 13, 15]}, {"i": [14, 4, 5, 8, 14, 12, 15, 2, 14, 0, 8, 12, 11], "o": [14, 4, 5, 8]}, {"i": [2, 13, 1, 16, 9, 5, 16, 16, 4, 1, 8], "o": [2, 13, 1, 16]}, {"i": [9, 6, 11, 4, 14, 7, 16, 7, 3], "o": [9, 6, 11, 4]}, {"i": [6, 7, 15, 2, 2, 16, 15, 12, 6, 3, 3, 14, 5], "o": [6, 7, 15, 2]}, {"i": [8, 10, 14, 0, 14, 0, 16], "o": [8, 10, 14, 0]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "slice-k-n with k=1 and n=5", "examples": [{"i": [10, 0, 10, 4, 4, 5, 5, 2, 13, 14, 13, 6, 3], "o": [10, 0, 10, 4, 4]}, {"i": [7, 8, 2, 14, 6, 14, 5, 5], "o": [7, 8, 2, 14, 6]}, {"i": [7, 4, 1, 16, 9, 16, 14, 6, 15, 2, 9, 1], "o": [7, 4, 1, 16, 9]}, {"i": [15, 2, 10, 8, 8, 14, 6, 4, 8, 8, 16], "o": [15, 2, 10, 8, 8]}, {"i": [7, 11, 5, 14, 15, 11, 12, 9, 7, 5], "o": [7, 11, 5, 14, 15]}, {"i": [15, 6, 12, 11, 12, 12, 2], "o": [15, 6, 12, 11, 12]}, {"i": [2, 12, 15, 7, 10, 4, 14, 11, 7], "o": [2, 12, 15, 7, 10]}, {"i": [1, 15, 4, 2, 11, 12, 11, 9, 16, 11, 16, 12, 2, 1], "o": [1, 15, 4, 2, 11]}, {"i": [5, 7, 4, 16, 10, 8, 12], "o": [5, 7, 4, 16, 10]}, {"i": [8, 10, 7, 16, 3, 14, 0], "o": [8, 10, 7, 16, 3]}, {"i": [3, 11, 9, 11, 9, 7, 3, 3, 13, 10, 3], "o": [3, 11, 9, 11, 9]}, {"i": [10, 12, 3, 12, 5, 14, 2, 5, 1, 13], "o": [10, 12, 3, 12, 5]}, {"i": [3, 14, 10, 13, 16, 6, 1, 14, 12, 3, 12, 15, 5], "o": [3, 14, 10, 13, 16]}, {"i": [3, 0, 13, 7, 3, 5, 13, 11, 12, 5, 11], "o": [3, 0, 13, 7, 3]}, {"i": [14, 2, 3, 14, 10, 0, 12, 16, 13], "o": [14, 2, 3, 14, 10]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "slice-k-n with k=2 and n=1", "examples": [{"i": [9, 13, 15, 7, 10], "o": [13]}, {"i": [16, 7, 12, 11, 14, 6, 9, 14, 0, 5], "o": [7]}, {"i": [7, 13, 3, 4, 8, 16, 5, 1], "o": [13]}, {"i": [15, 15, 0, 9, 9, 15, 15, 3, 4], "o": [15]}, {"i": [11, 12, 4, 5, 2], "o": [12]}, {"i": [15, 2, 4, 4, 4, 9], "o": [2]}, {"i": [5, 15, 15, 13, 6], "o": [15]}, {"i": [0, 0, 4, 12, 0, 3, 9], "o": [0]}, {"i": [3, 0, 3, 0, 11, 2, 1, 0, 8, 1, 15], "o": [0]}, {"i": [16, 1, 14, 11, 16, 4], "o": [1]}, {"i": [16, 15, 9, 11, 12], "o": [15]}, {"i": [13, 15, 13, 6, 16, 2], "o": [15]}, {"i": [12, 10, 1, 9, 6], "o": [10]}, {"i": [2, 6, 5, 5, 2], "o": [6]}, {"i": [9, 0, 16, 9, 10], "o": [0]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "slice-k-n with k=2 and n=2", "examples": [{"i": [2, 13, 7, 10, 15], "o": [13, 7]}, {"i": [12, 2, 10, 14, 4, 0, 4], "o": [2, 10]}, {"i": [6, 1, 7, 11, 9, 4], "o": [1, 7]}, {"i": [2, 14, 5, 16, 3, 7, 15, 3], "o": [14, 5]}, {"i": [14, 11, 16, 5, 0, 0, 5], "o": [11, 16]}, {"i": [12, 6, 14, 6, 7, 8, 6, 6, 13, 7, 6, 10], "o": [6, 14]}, {"i": [13, 12, 8, 12, 8], "o": [12, 8]}, {"i": [9, 5, 16, 1, 15, 12, 6, 7], "o": [5, 16]}, {"i": [0, 9, 16, 10, 16], "o": [9, 16]}, {"i": [8, 1, 15, 13, 12, 15, 14, 11, 13, 2, 5], "o": [1, 15]}, {"i": [2, 7, 11, 0, 2, 7, 2, 2, 10, 6, 0], "o": [7, 11]}, {"i": [6, 16, 14, 2, 4, 13, 11, 11, 12, 4], "o": [16, 14]}, {"i": [8, 7, 10, 6, 9], "o": [7, 10]}, {"i": [11, 7, 5, 13, 0, 4, 14, 8, 3, 10], "o": [7, 5]}, {"i": [8, 3, 9, 11, 15, 7, 13, 4], "o": [3, 9]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "slice-k-n with k=2 and n=3", "examples": [{"i": [7, 0, 2, 0, 3, 8, 2, 0, 5, 2], "o": [0, 2, 0]}, {"i": [2, 13, 8, 6, 3, 9, 0, 11, 6, 7, 4], "o": [13, 8, 6]}, {"i": [5, 11, 2, 6, 5, 15, 7, 0, 10, 16], "o": [11, 2, 6]}, {"i": [4, 11, 16, 11, 10, 9, 5, 12, 6, 0, 5], "o": [11, 16, 11]}, {"i": [14, 11, 0, 1, 0, 12, 14, 10, 7], "o": [11, 0, 1]}, {"i": [7, 15, 11, 10, 13, 6, 9, 7, 2, 9, 4, 6, 4], "o": [15, 11, 10]}, {"i": [5, 11, 9, 0, 10, 16, 9, 5, 11], "o": [11, 9, 0]}, {"i": [14, 12, 8, 6, 15, 15, 11, 13, 16, 16, 11, 2, 7], "o": [12, 8, 6]}, {"i": [16, 8, 13, 3, 9, 1, 16, 9, 3, 4], "o": [8, 13, 3]}, {"i": [7, 4, 11, 13, 11, 16, 9, 4, 14, 13, 1, 2, 15], "o": [4, 11, 13]}, {"i": [13, 5, 3, 16, 8, 12], "o": [5, 3, 16]}, {"i": [16, 11, 10, 0, 7, 14], "o": [11, 10, 0]}, {"i": [11, 5, 2, 9, 12, 0, 3, 11, 9, 15], "o": [5, 2, 9]}, {"i": [1, 5, 3, 6, 16, 9], "o": [5, 3, 6]}, {"i": [2, 15, 1, 6, 7, 10, 1, 8, 8, 7, 8], "o": [15, 1, 6]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "slice-k-n with k=2 and n=4", "examples": [{"i": [9, 13, 11, 2, 6, 14, 11, 6, 8, 2, 7], "o": [13, 11, 2, 6]}, {"i": [7, 6, 9, 1, 2, 13, 16], "o": [6, 9, 1, 2]}, {"i": [14, 1, 5, 0, 2, 11, 8, 11, 1, 1, 0, 3], "o": [1, 5, 0, 2]}, {"i": [10, 15, 5, 5, 0, 16, 12, 12, 8, 5, 4, 16], "o": [15, 5, 5, 0]}, {"i": [16, 1, 13, 11, 14, 9, 8, 12, 8, 5, 8, 3], "o": [1, 13, 11, 14]}, {"i": [15, 16, 14, 9, 16, 13, 10, 3, 13, 9, 11], "o": [16, 14, 9, 16]}, {"i": [7, 7, 8, 3, 4, 0, 14, 4, 10, 7, 15, 6], "o": [7, 8, 3, 4]}, {"i": [6, 10, 16, 7, 14, 1, 5, 11, 15, 11, 13, 6, 14, 14], "o": [10, 16, 7, 14]}, {"i": [0, 9, 8, 11, 6, 7, 6, 4, 4, 7], "o": [9, 8, 11, 6]}, {"i": [15, 10, 7, 11, 7, 4, 6], "o": [10, 7, 11, 7]}, {"i": [12, 0, 15, 7, 3, 16, 15, 16, 12, 13], "o": [0, 15, 7, 3]}, {"i": [0, 16, 7, 11, 3, 14, 9, 16, 8, 12], "o": [16, 7, 11, 3]}, {"i": [16, 6, 12, 6, 8, 11, 7, 2, 11, 2, 4, 1], "o": [6, 12, 6, 8]}, {"i": [13, 13, 4, 12, 3, 6, 5, 7, 13], "o": [13, 4, 12, 3]}, {"i": [11, 0, 1, 12, 11, 4, 8, 0], "o": [0, 1, 12, 11]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "slice-k-n with k=2 and n=5", "examples": [{"i": [9, 15, 11, 12, 12, 14, 9, 2, 0, 9, 15, 13, 7, 16], "o": [15, 11, 12, 12, 14]}, {"i": [8, 10, 0, 3, 8, 5, 1, 7, 4, 2, 7, 14, 16], "o": [10, 0, 3, 8, 5]}, {"i": [11, 10, 12, 11, 11, 0, 5, 1, 8, 0], "o": [10, 12, 11, 11, 0]}, {"i": [10, 14, 14, 0, 16, 0, 9, 15, 1, 15, 10], "o": [14, 14, 0, 16, 0]}, {"i": [14, 6, 8, 15, 15, 14, 12, 3], "o": [6, 8, 15, 15, 14]}, {"i": [15, 5, 3, 3, 12, 2, 11, 16, 6, 6, 12, 9, 13, 15, 0], "o": [5, 3, 3, 12, 2]}, {"i": [15, 4, 13, 9, 10, 2, 9, 14, 4, 16], "o": [4, 13, 9, 10, 2]}, {"i": [4, 14, 6, 13, 10, 6, 12, 8, 11, 14], "o": [14, 6, 13, 10, 6]}, {"i": [11, 15, 3, 9, 0, 16, 1, 0, 8, 15, 8], "o": [15, 3, 9, 0, 16]}, {"i": [11, 3, 7, 16, 4, 8, 6, 7, 9, 3, 0, 5, 6], "o": [3, 7, 16, 4, 8]}, {"i": [15, 10, 2, 15, 16, 11, 16, 9, 13, 10, 1, 8, 14, 5], "o": [10, 2, 15, 16, 11]}, {"i": [14, 1, 7, 10, 5, 11, 16, 8, 1, 1, 14, 16, 0, 14, 14], "o": [1, 7, 10, 5, 11]}, {"i": [14, 4, 13, 11, 12, 10, 12, 3, 1, 10, 15, 7], "o": [4, 13, 11, 12, 10]}, {"i": [12, 12, 10, 16, 5, 6, 9, 4, 1, 0, 13, 4, 15, 7], "o": [12, 10, 16, 5, 6]}, {"i": [9, 7, 2, 5, 0, 11, 10, 2, 1, 15, 16, 8], "o": [7, 2, 5, 0, 11]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "slice-k-n with k=3 and n=1", "examples": [{"i": [16, 9, 5, 7, 3, 5, 12, 1], "o": [5]}, {"i": [7, 7, 11, 6, 12, 5, 5], "o": [11]}, {"i": [3, 1, 10, 10, 16, 4, 9, 14, 15], "o": [10]}, {"i": [12, 5, 11, 0, 2, 6, 2, 10, 16], "o": [11]}, {"i": [1, 1, 11, 16, 7, 2], "o": [11]}, {"i": [3, 4, 14, 6, 13, 1, 6, 5], "o": [14]}, {"i": [3, 6, 16, 2, 7, 8, 16], "o": [16]}, {"i": [5, 6, 10, 0, 13], "o": [10]}, {"i": [5, 9, 2, 16, 15, 0, 5, 10, 3], "o": [2]}, {"i": [15, 3, 7, 9, 10, 9, 13], "o": [7]}, {"i": [10, 13, 5, 8, 16, 1, 4], "o": [5]}, {"i": [10, 16, 10, 8, 15, 1, 14], "o": [10]}, {"i": [4, 15, 6, 12, 8, 9, 8, 16, 16, 5, 4, 16], "o": [6]}, {"i": [1, 13, 4, 0, 8, 4], "o": [4]}, {"i": [12, 4, 7, 0, 3, 9, 10, 5, 0, 10, 10, 14], "o": [7]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "slice-k-n with k=3 and n=2", "examples": [{"i": [1, 13, 12, 5, 9, 8, 6, 4, 1, 16, 12, 15, 5], "o": [12, 5]}, {"i": [3, 12, 15, 13, 16, 3, 8, 11, 9, 16, 15, 4], "o": [15, 13]}, {"i": [11, 12, 7, 13, 16, 3, 9, 15, 1, 0, 3], "o": [7, 13]}, {"i": [1, 0, 11, 10, 7, 15, 3], "o": [11, 10]}, {"i": [10, 10, 15, 3, 3, 9, 6, 15], "o": [15, 3]}, {"i": [2, 4, 10, 9, 16, 0, 6], "o": [10, 9]}, {"i": [10, 13, 7, 13, 2, 8], "o": [7, 13]}, {"i": [8, 8, 8, 15, 15, 16], "o": [8, 15]}, {"i": [11, 0, 13, 11, 9, 7, 7, 10, 9, 2], "o": [13, 11]}, {"i": [7, 9, 3, 7, 11, 11], "o": [3, 7]}, {"i": [2, 1, 1, 8, 0, 10], "o": [1, 8]}, {"i": [6, 6, 7, 8, 14, 7, 11, 14, 8, 16, 1, 8], "o": [7, 8]}, {"i": [1, 1, 6, 15, 11, 7, 1, 6, 8, 14], "o": [6, 15]}, {"i": [15, 0, 8, 12, 3, 0, 14, 1], "o": [8, 12]}, {"i": [6, 5, 13, 9, 7, 10, 14, 16, 1, 7, 16, 14, 13], "o": [13, 9]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "slice-k-n with k=3 and n=3", "examples": [{"i": [9, 5, 7, 11, 0, 7, 16], "o": [7, 11, 0]}, {"i": [16, 16, 12, 7, 5, 4, 15, 1, 11, 1], "o": [12, 7, 5]}, {"i": [5, 3, 4, 11, 12, 2, 8, 12], "o": [4, 11, 12]}, {"i": [3, 9, 3, 2, 14, 6, 2, 8, 14], "o": [3, 2, 14]}, {"i": [7, 13, 9, 7, 8, 15, 9, 15, 7, 4, 9], "o": [9, 7, 8]}, {"i": [3, 3, 16, 13, 4, 15, 14], "o": [16, 13, 4]}, {"i": [8, 13, 13, 11, 6, 15, 7, 8, 5, 10, 1], "o": [13, 11, 6]}, {"i": [4, 6, 3, 11, 8, 0, 13, 2, 12, 10, 12, 12, 15], "o": [3, 11, 8]}, {"i": [3, 10, 15, 15, 6, 3, 4, 10, 12, 11, 7, 15], "o": [15, 15, 6]}, {"i": [15, 5, 13, 13, 16, 11, 3, 7], "o": [13, 13, 16]}, {"i": [16, 10, 5, 13, 10, 7, 5], "o": [5, 13, 10]}, {"i": [9, 6, 3, 12, 2, 3, 11, 6, 2, 7, 11, 2, 13, 8], "o": [3, 12, 2]}, {"i": [4, 3, 2, 1, 10, 0, 14, 0, 14], "o": [2, 1, 10]}, {"i": [1, 15, 7, 4, 2, 15, 1, 7, 10, 3], "o": [7, 4, 2]}, {"i": [6, 1, 1, 7, 1, 12, 3, 5, 1, 12, 11], "o": [1, 7, 1]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "slice-k-n with k=3 and n=4", "examples": [{"i": [15, 10, 1, 10, 15, 13, 5, 4, 3, 12, 0, 5, 1, 9, 4], "o": [1, 10, 15, 13]}, {"i": [13, 11, 15, 0, 16, 16, 1, 2, 16, 11, 2, 13, 14], "o": [15, 0, 16, 16]}, {"i": [4, 11, 16, 9, 3, 9, 3, 5, 8, 8, 12, 11, 0, 6], "o": [16, 9, 3, 9]}, {"i": [2, 10, 13, 10, 15, 1, 0, 11, 0, 15, 3, 7, 4, 11], "o": [13, 10, 15, 1]}, {"i": [9, 8, 16, 9, 14, 9, 12, 1, 1, 0, 13, 0], "o": [16, 9, 14, 9]}, {"i": [15, 11, 1, 3, 16, 2, 15, 2, 16, 5], "o": [1, 3, 16, 2]}, {"i": [0, 5, 15, 2, 7, 11, 8, 4, 12, 2, 4], "o": [15, 2, 7, 11]}, {"i": [10, 9, 3, 3, 4, 8, 9, 6, 6], "o": [3, 3, 4, 8]}, {"i": [16, 4, 13, 12, 3, 14, 12, 16], "o": [13, 12, 3, 14]}, {"i": [6, 9, 12, 0, 0, 3, 13, 11, 13], "o": [12, 0, 0, 3]}, {"i": [8, 7, 16, 2, 13, 8, 14, 14, 15, 9, 8, 9, 1], "o": [16, 2, 13, 8]}, {"i": [9, 1, 10, 0, 14, 12, 5, 1, 12], "o": [10, 0, 14, 12]}, {"i": [0, 9, 14, 0, 7, 12, 14, 4, 7, 0, 12, 10], "o": [14, 0, 7, 12]}, {"i": [9, 0, 6, 6, 12, 7, 3, 13, 8], "o": [6, 6, 12, 7]}, {"i": [8, 10, 5, 12, 3, 8, 0, 16, 8, 2], "o": [5, 12, 3, 8]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "slice-k-n with k=3 and n=5", "examples": [{"i": [8, 5, 10, 10, 13, 4, 5, 1, 4, 5], "o": [10, 10, 13, 4, 5]}, {"i": [2, 8, 14, 13, 9, 7, 3, 1, 8, 3], "o": [14, 13, 9, 7, 3]}, {"i": [9, 3, 15, 15, 11, 1, 0, 3, 6, 14, 12, 3, 8, 4], "o": [15, 15, 11, 1, 0]}, {"i": [1, 0, 5, 5, 13, 10, 14, 4, 11], "o": [5, 5, 13, 10, 14]}, {"i": [5, 11, 10, 6, 5, 14, 1, 2, 4, 1, 2, 5, 6, 15], "o": [10, 6, 5, 14, 1]}, {"i": [14, 1, 6, 4, 10, 10, 13, 9, 1, 10, 4, 3, 12, 8, 14, 13], "o": [6, 4, 10, 10, 13]}, {"i": [13, 0, 15, 4, 12, 16, 4, 3, 2, 7, 5, 6, 0, 0, 14], "o": [15, 4, 12, 16, 4]}, {"i": [12, 13, 2, 11, 3, 1, 16, 11, 4, 12, 2, 1, 1], "o": [2, 11, 3, 1, 16]}, {"i": [0, 1, 4, 1, 7, 8, 12, 15, 14, 12, 9, 2, 15, 5], "o": [4, 1, 7, 8, 12]}, {"i": [3, 15, 15, 7, 15, 7, 11, 15, 14, 5, 4, 7, 10, 6, 4, 2], "o": [15, 7, 15, 7, 11]}, {"i": [14, 7, 14, 14, 0, 8, 10, 4, 1, 9, 0, 9, 4], "o": [14, 14, 0, 8, 10]}, {"i": [11, 1, 2, 6, 9, 7, 13, 2, 3, 16, 8], "o": [2, 6, 9, 7, 13]}, {"i": [5, 0, 14, 1, 3, 6, 0, 6, 16, 3, 2, 14, 8, 7, 8, 16], "o": [14, 1, 3, 6, 0]}, {"i": [2, 11, 6, 1, 16, 9, 12, 12, 9, 5, 6, 4, 13, 16, 14, 6], "o": [6, 1, 16, 9, 12]}, {"i": [16, 11, 0, 8, 5, 11, 15, 6, 12], "o": [0, 8, 5, 11, 15]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "slice-k-n with k=4 and n=1", "examples": [{"i": [4, 14, 2, 9, 2, 14, 16], "o": [9]}, {"i": [0, 0, 3, 2, 15, 14, 2], "o": [2]}, {"i": [13, 13, 12, 9, 14, 1, 12, 4, 14, 8, 8, 0, 1], "o": [9]}, {"i": [10, 3, 6, 1, 10, 12, 5], "o": [1]}, {"i": [10, 5, 5, 12, 14, 10, 3, 6, 7, 15, 0], "o": [12]}, {"i": [13, 16, 7, 9, 12, 14, 2, 9], "o": [9]}, {"i": [4, 8, 10, 12, 12, 3, 13, 4, 7, 10, 10], "o": [12]}, {"i": [10, 10, 14, 13, 9, 8, 7, 13, 10, 12, 11, 4, 16], "o": [13]}, {"i": [7, 8, 3, 14, 10, 10], "o": [14]}, {"i": [0, 6, 2, 7, 9, 8, 11, 4, 9, 11, 2], "o": [7]}, {"i": [2, 8, 12, 12, 3, 7, 5, 12, 3, 13], "o": [12]}, {"i": [9, 16, 10, 5, 14, 0, 1, 4], "o": [5]}, {"i": [8, 13, 9, 1, 16, 0, 7, 5, 7, 11, 3, 2, 8], "o": [1]}, {"i": [15, 12, 4, 9, 16, 11, 8], "o": [9]}, {"i": [16, 10, 10, 2, 9, 6, 10, 4, 1, 7, 14, 8], "o": [2]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "slice-k-n with k=4 and n=2", "examples": [{"i": [4, 15, 8, 1, 13, 7, 5], "o": [1, 13]}, {"i": [8, 11, 3, 5, 1, 14, 8, 3, 14, 11, 16, 1, 7], "o": [5, 1]}, {"i": [10, 4, 13, 5, 6, 10, 8, 2, 4, 2], "o": [5, 6]}, {"i": [0, 14, 0, 16, 0, 12, 0, 2, 7, 8, 5, 9, 10, 2], "o": [16, 0]}, {"i": [12, 3, 6, 9, 13, 11, 0, 10, 5, 15, 4, 6, 6], "o": [9, 13]}, {"i": [9, 10, 10, 3, 9, 11, 10, 2, 9, 0, 5], "o": [3, 9]}, {"i": [5, 5, 10, 13, 4, 1, 14, 4], "o": [13, 4]}, {"i": [6, 11, 12, 6, 11, 5, 0], "o": [6, 11]}, {"i": [12, 9, 10, 1, 7, 7, 10, 7, 4, 1, 2, 12, 9, 14], "o": [1, 7]}, {"i": [3, 8, 0, 14, 10, 16, 6, 9, 10, 3], "o": [14, 10]}, {"i": [8, 2, 9, 6, 5, 9, 12, 11, 11, 6], "o": [6, 5]}, {"i": [8, 14, 15, 4, 16, 7, 14, 14, 2, 10, 1, 1, 1], "o": [4, 16]}, {"i": [6, 6, 14, 11, 16, 9, 5, 16], "o": [11, 16]}, {"i": [3, 7, 8, 0, 7, 6, 8, 6, 9, 8], "o": [0, 7]}, {"i": [6, 7, 9, 2, 4, 16, 11], "o": [2, 4]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "slice-k-n with k=4 and n=3", "examples": [{"i": [12, 12, 13, 16, 8, 14, 6, 13], "o": [16, 8, 14]}, {"i": [1, 8, 7, 8, 4, 3, 6, 1, 10, 8, 5, 0, 4, 12, 15], "o": [8, 4, 3]}, {"i": [8, 15, 12, 16, 13, 5, 6, 2], "o": [16, 13, 5]}, {"i": [0, 8, 0, 13, 14, 11, 6, 7, 13, 11, 1, 3], "o": [13, 14, 11]}, {"i": [6, 1, 15, 0, 10, 9, 3, 13, 1, 12, 15, 3, 14, 1, 6], "o": [0, 10, 9]}, {"i": [8, 4, 3, 7, 1, 10, 14, 7], "o": [7, 1, 10]}, {"i": [14, 8, 11, 16, 15, 11, 5, 5, 10, 0, 12, 8, 3, 9], "o": [16, 15, 11]}, {"i": [1, 6, 5, 2, 6, 7, 15, 5, 5, 7], "o": [2, 6, 7]}, {"i": [0, 5, 13, 3, 15, 5, 12, 5, 4, 2, 2, 3, 16], "o": [3, 15, 5]}, {"i": [0, 1, 7, 16, 12, 13, 12, 1, 2], "o": [16, 12, 13]}, {"i": [3, 14, 1, 4, 1, 16, 6, 3, 1, 7, 9], "o": [4, 1, 16]}, {"i": [14, 15, 0, 16, 4, 11, 2, 13, 7, 5, 8], "o": [16, 4, 11]}, {"i": [13, 5, 14, 11, 1, 3, 12, 7, 14, 10, 15, 10, 2], "o": [11, 1, 3]}, {"i": [9, 7, 14, 3, 6, 10, 6, 8, 1], "o": [3, 6, 10]}, {"i": [1, 9, 0, 13, 8, 10, 14, 8, 15, 10, 10, 6, 14], "o": [13, 8, 10]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "slice-k-n with k=4 and n=4", "examples": [{"i": [6, 2, 5, 14, 9, 7, 6, 8, 5, 6, 9, 3, 10, 3, 0], "o": [14, 9, 7, 6]}, {"i": [6, 4, 5, 10, 15, 4, 6, 16, 15, 15, 12], "o": [10, 15, 4, 6]}, {"i": [12, 0, 1, 11, 12, 9, 15, 10, 1, 5, 11, 16, 9], "o": [11, 12, 9, 15]}, {"i": [6, 7, 15, 4, 8, 9, 13, 1, 7, 6, 1, 2, 7, 10, 14, 8], "o": [4, 8, 9, 13]}, {"i": [7, 9, 7, 10, 16, 2, 12, 11, 15, 1, 7, 2], "o": [10, 16, 2, 12]}, {"i": [12, 1, 5, 12, 7, 10, 5, 16, 10, 9, 3, 8, 15], "o": [12, 7, 10, 5]}, {"i": [15, 5, 1, 4, 11, 7, 8, 15, 3, 1, 7, 1, 3, 8, 4, 14], "o": [4, 11, 7, 8]}, {"i": [4, 7, 13, 4, 7, 13, 5, 10, 8, 8, 11], "o": [4, 7, 13, 5]}, {"i": [12, 8, 6, 4, 5, 10, 8, 11, 9, 9, 16], "o": [4, 5, 10, 8]}, {"i": [14, 14, 1, 1, 9, 14, 13, 2, 11, 3], "o": [1, 9, 14, 13]}, {"i": [2, 0, 10, 7, 5, 12, 15, 2, 11, 11, 7, 3, 8, 2], "o": [7, 5, 12, 15]}, {"i": [6, 12, 7, 10, 16, 3, 4, 7, 4, 9, 4, 2], "o": [10, 16, 3, 4]}, {"i": [4, 0, 15, 15, 10, 0, 11, 14, 4, 15, 10, 5, 7, 10], "o": [15, 10, 0, 11]}, {"i": [14, 9, 3, 15, 10, 9, 5, 12, 14, 4, 7, 13, 15, 2], "o": [15, 10, 9, 5]}, {"i": [16, 1, 15, 3, 4, 4, 7, 8, 16, 3, 3, 9, 14, 6, 5, 7], "o": [3, 4, 4, 7]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "slice-k-n with k=4 and n=5", "examples": [{"i": [13, 8, 8, 16, 2, 3, 13, 1, 9, 9, 1, 16, 7, 11], "o": [16, 2, 3, 13, 1]}, {"i": [13, 11, 11, 9, 11, 2, 7, 2, 7, 2, 0, 12, 10, 4, 14, 11, 15], "o": [9, 11, 2, 7, 2]}, {"i": [8, 4, 13, 6, 7, 13, 7, 5, 15, 11, 8, 13, 6, 1, 0], "o": [6, 7, 13, 7, 5]}, {"i": [2, 8, 6, 13, 2, 0, 0, 8, 8, 7, 8, 15, 12, 12, 13], "o": [13, 2, 0, 0, 8]}, {"i": [1, 15, 7, 1, 16, 16, 6, 8, 9, 15, 14, 1, 12], "o": [1, 16, 16, 6, 8]}, {"i": [6, 5, 16, 5, 5, 12, 12, 9, 9, 16, 14, 14], "o": [5, 5, 12, 12, 9]}, {"i": [1, 6, 1, 5, 16, 14, 0, 9, 9, 13, 4, 9, 14], "o": [5, 16, 14, 0, 9]}, {"i": [7, 8, 2, 2, 13, 15, 0, 9, 8, 8, 13, 13, 10, 11, 7], "o": [2, 13, 15, 0, 9]}, {"i": [7, 4, 12, 1, 11, 13, 14, 11, 11, 2, 2, 0, 14, 15], "o": [1, 11, 13, 14, 11]}, {"i": [12, 11, 15, 8, 8, 10, 5, 5, 5, 14, 16], "o": [8, 8, 10, 5, 5]}, {"i": [1, 12, 7, 12, 0, 14, 12, 14, 5, 12, 15, 12, 1, 12, 6], "o": [12, 0, 14, 12, 14]}, {"i": [14, 8, 12, 8, 2, 14, 1, 2, 15, 2, 14, 0, 0], "o": [8, 2, 14, 1, 2]}, {"i": [3, 0, 1, 14, 6, 10, 10, 12, 6, 0, 1, 9, 6, 7], "o": [14, 6, 10, 10, 12]}, {"i": [5, 14, 2, 6, 12, 5, 6, 10, 4, 8, 14, 12], "o": [6, 12, 5, 6, 10]}, {"i": [14, 14, 8, 2, 4, 8, 10, 9, 12, 11, 10], "o": [2, 4, 8, 10, 9]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "slice-k-n with k=5 and n=1", "examples": [{"i": [9, 1, 14, 12, 11, 7, 8], "o": [11]}, {"i": [2, 11, 14, 5, 8, 11, 7], "o": [8]}, {"i": [16, 12, 11, 0, 0, 5, 10, 14], "o": [0]}, {"i": [6, 3, 16, 10, 7, 13, 3, 4], "o": [7]}, {"i": [8, 2, 13, 14, 12, 1, 7, 1, 13, 4, 5], "o": [12]}, {"i": [7, 12, 1, 4, 5, 14, 3], "o": [5]}, {"i": [8, 3, 7, 9, 3, 8, 10, 9], "o": [3]}, {"i": [13, 16, 6, 11, 11, 16, 8, 1, 1, 1, 15, 11], "o": [11]}, {"i": [15, 11, 4, 16, 12, 5, 4, 3, 7, 10, 16, 16, 11, 7], "o": [12]}, {"i": [16, 12, 11, 12, 3, 4, 0, 2, 13, 16, 6, 13, 5], "o": [3]}, {"i": [13, 2, 13, 7, 6, 6, 14, 5, 15, 5, 16], "o": [6]}, {"i": [7, 14, 4, 6, 15, 10, 14, 8], "o": [15]}, {"i": [3, 16, 9, 15, 13, 13, 15, 4, 11, 9, 16], "o": [13]}, {"i": [7, 8, 9, 14, 16, 4, 5, 9, 9, 3, 9, 14, 10, 0], "o": [16]}, {"i": [9, 8, 9, 8, 14, 11, 12, 14, 12, 14, 8], "o": [14]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "slice-k-n with k=5 and n=2", "examples": [{"i": [4, 6, 13, 1, 3, 8, 5, 4, 16, 8, 6, 15], "o": [3, 8]}, {"i": [9, 4, 5, 8, 0, 4, 2, 11], "o": [0, 4]}, {"i": [4, 15, 6, 1, 4, 4, 11, 5, 15, 12], "o": [4, 4]}, {"i": [5, 3, 5, 12, 1, 7, 15, 12, 6, 1, 8, 15, 5, 2, 16], "o": [1, 7]}, {"i": [13, 13, 3, 6, 5, 1, 1, 7], "o": [5, 1]}, {"i": [2, 15, 5, 13, 14, 10, 2, 2, 15, 16, 1, 13, 15, 4], "o": [14, 10]}, {"i": [9, 9, 11, 10, 14, 11, 13, 12, 10, 16], "o": [14, 11]}, {"i": [15, 10, 14, 9, 4, 7, 1, 7, 1, 1, 5, 8], "o": [4, 7]}, {"i": [5, 12, 16, 6, 2, 14, 9, 15, 6], "o": [2, 14]}, {"i": [1, 12, 11, 6, 4, 4, 16, 9, 10, 0, 4], "o": [4, 4]}, {"i": [9, 12, 12, 15, 15, 7, 5, 0, 1, 13, 11, 0], "o": [15, 7]}, {"i": [6, 13, 14, 5, 13, 15, 16, 5, 8, 3, 15, 2, 0, 12, 6], "o": [13, 15]}, {"i": [7, 15, 9, 9, 2, 2, 3, 8, 14, 6, 5, 6], "o": [2, 2]}, {"i": [9, 7, 1, 9, 14, 0, 9, 4, 14, 16, 8, 0, 4], "o": [14, 0]}, {"i": [0, 11, 16, 14, 7, 7, 11, 11, 4, 5, 15, 6], "o": [7, 7]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "slice-k-n with k=5 and n=3", "examples": [{"i": [15, 9, 13, 4, 4, 0, 16, 6, 4, 3, 0, 14, 16, 10, 13, 5], "o": [4, 0, 16]}, {"i": [14, 0, 6, 15, 5, 11, 9, 3, 7, 10], "o": [5, 11, 9]}, {"i": [6, 8, 14, 14, 10, 8, 3, 15, 3], "o": [10, 8, 3]}, {"i": [13, 7, 0, 10, 10, 10, 15, 11, 14, 4, 16, 5], "o": [10, 10, 15]}, {"i": [13, 12, 5, 15, 16, 16, 1, 7, 1, 15], "o": [16, 16, 1]}, {"i": [11, 6, 1, 2, 7, 9, 11, 10, 5, 8, 2, 16, 4, 0], "o": [7, 9, 11]}, {"i": [14, 15, 15, 9, 3, 7, 7, 6, 8, 1, 1, 7, 9], "o": [3, 7, 7]}, {"i": [14, 7, 15, 6, 10, 9, 8, 11, 2, 11], "o": [10, 9, 8]}, {"i": [10, 16, 5, 12, 15, 15, 10, 9, 1, 4, 7, 12, 2, 15, 12, 14], "o": [15, 15, 10]}, {"i": [8, 6, 6, 11, 8, 5, 11, 3, 16, 6, 14, 15, 5, 2, 15], "o": [8, 5, 11]}, {"i": [16, 0, 12, 14, 8, 8, 11, 7, 16, 11, 16, 2, 0, 14], "o": [8, 8, 11]}, {"i": [8, 12, 8, 14, 9, 16, 6, 3, 2, 0, 10, 14, 11, 10], "o": [9, 16, 6]}, {"i": [7, 0, 11, 0, 13, 2, 10, 5, 10, 8], "o": [13, 2, 10]}, {"i": [10, 10, 5, 2, 1, 11, 8, 9, 6, 10, 6, 11, 11, 4], "o": [1, 11, 8]}, {"i": [11, 10, 6, 3, 9, 6, 16, 14, 12, 2, 2], "o": [9, 6, 16]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "slice-k-n with k=5 and n=4", "examples": [{"i": [7, 6, 5, 7, 13, 8, 11, 13, 3, 16, 12, 10, 6, 15, 11, 3, 4], "o": [13, 8, 11, 13]}, {"i": [8, 3, 6, 2, 1, 10, 1, 13, 7, 6, 3, 8, 11, 11, 8, 10, 8], "o": [1, 10, 1, 13]}, {"i": [12, 4, 7, 1, 8, 1, 2, 3, 7, 5], "o": [8, 1, 2, 3]}, {"i": [12, 4, 14, 10, 8, 12, 12, 9, 1, 0, 4, 0, 15, 13, 1, 11], "o": [8, 12, 12, 9]}, {"i": [8, 1, 8, 16, 7, 10, 9, 3, 9, 9, 10, 3, 15, 16, 5, 5], "o": [7, 10, 9, 3]}, {"i": [11, 13, 13, 3, 4, 15, 1, 7, 10, 13, 7], "o": [4, 15, 1, 7]}, {"i": [11, 4, 5, 14, 3, 13, 3, 0, 8, 6, 11, 0, 0], "o": [3, 13, 3, 0]}, {"i": [16, 3, 10, 5, 6, 16, 1, 11, 7, 13, 13, 13, 4], "o": [6, 16, 1, 11]}, {"i": [11, 15, 13, 3, 10, 16, 13, 3, 11, 5, 15, 6, 6, 14, 6, 10, 9], "o": [10, 16, 13, 3]}, {"i": [5, 12, 3, 12, 15, 2, 6, 6, 15, 11, 16, 2], "o": [15, 2, 6, 6]}, {"i": [2, 3, 9, 15, 1, 14, 7, 13, 10, 12, 14, 1, 11, 5, 12], "o": [1, 14, 7, 13]}, {"i": [0, 8, 1, 11, 12, 14, 12, 5, 7, 4, 10, 13, 6, 4], "o": [12, 14, 12, 5]}, {"i": [0, 9, 12, 15, 16, 4, 2, 7, 8, 2, 0, 2], "o": [16, 4, 2, 7]}, {"i": [1, 4, 15, 3, 15, 8, 14, 5, 9, 4, 4, 2, 15, 7, 8], "o": [15, 8, 14, 5]}, {"i": [13, 2, 16, 15, 14, 4, 10, 0, 10, 0, 3], "o": [14, 4, 10, 0]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "slice-k-n with k=5 and n=5", "examples": [{"i": [11, 6, 2, 10, 12, 4, 9, 5, 7, 10, 5], "o": [12, 4, 9, 5, 7]}, {"i": [12, 15, 3, 13, 4, 13, 4, 11, 8, 1, 3, 9, 13, 13], "o": [4, 13, 4, 11, 8]}, {"i": [4, 4, 13, 12, 10, 10, 3, 2, 10, 4, 10, 1, 0, 4, 4], "o": [10, 10, 3, 2, 10]}, {"i": [14, 2, 11, 14, 15, 6, 12, 8, 12, 4, 3, 2, 3, 1, 1], "o": [15, 6, 12, 8, 12]}, {"i": [13, 11, 2, 2, 14, 5, 13, 9, 10, 2, 11], "o": [14, 5, 13, 9, 10]}, {"i": [12, 15, 0, 13, 13, 9, 2, 11, 6, 7, 3, 3, 12, 10, 2, 10], "o": [13, 9, 2, 11, 6]}, {"i": [8, 0, 5, 2, 1, 6, 13, 16, 14, 6, 13, 16, 6], "o": [1, 6, 13, 16, 14]}, {"i": [5, 0, 6, 7, 6, 2, 8, 6, 13, 3, 6], "o": [6, 2, 8, 6, 13]}, {"i": [10, 3, 11, 16, 10, 4, 8, 12, 0, 15, 9, 4, 4, 8, 11, 11, 9, 1], "o": [10, 4, 8, 12, 0]}, {"i": [12, 0, 10, 14, 10, 8, 12, 8, 7, 16, 0, 8, 5, 3, 10], "o": [10, 8, 12, 8, 7]}, {"i": [10, 9, 6, 15, 6, 12, 6, 7, 5, 9, 6, 5, 13], "o": [6, 12, 6, 7, 5]}, {"i": [0, 13, 5, 7, 16, 11, 12, 2, 0, 3, 9, 14, 6, 2], "o": [16, 11, 12, 2, 0]}, {"i": [13, 5, 3, 2, 12, 3, 9, 10, 9, 16, 15, 6, 9, 0, 7, 16], "o": [12, 3, 9, 10, 9]}, {"i": [4, 5, 3, 2, 6, 16, 16, 15, 11, 11, 16, 3, 16], "o": [6, 16, 16, 15, 11]}, {"i": [4, 13, 3, 15, 11, 5, 0, 16, 4, 9, 8, 7, 16, 4, 9, 6], "o": [11, 5, 0, 16, 4]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "sort", "examples": [{"i": [2, 0, 4], "o": [0, 2, 4]}, {"i": [2, 5, 4, 2, 0, 5, 1, 1], "o": [0, 1, 1, 2, 2, 4, 5, 5]}, {"i": [7, 2, 10, 13], "o": [2, 7, 10, 13]}, {"i": [9], "o": [9]}, {"i": [0, 14], "o": [0, 14]}, {"i": [], "o": []}, {"i": [8, 2, 10, 14], "o": [2, 8, 10, 14]}, {"i": [], "o": []}, {"i": [11, 8, 14, 7, 8], "o": [7, 8, 8, 11, 14]}, {"i": [8], "o": [8]}, {"i": [12, 2, 8, 5, 15], "o": [2, 5, 8, 12, 15]}, {"i": [9, 3, 8], "o": [3, 8, 9]}, {"i": [16, 0], "o": [0, 16]}, {"i": [15], "o": [15]}, {"i": [13], "o": [13]}]}, {"type": {"input": "list-of-int", "output": "int"}, "name": "sum", "examples": [{"i": [1, 2, 3], "o": 6}, {"i": [0], "o": 0}, {"i": [1, 1, 2, 1], "o": 5}, {"i": [10], "o": 10}, {"i": [14, 6], "o": 20}, {"i": [8, 5], "o": 13}, {"i": [14, 1], "o": 15}, {"i": [1, 6, 12, 1, 7], "o": 27}, {"i": [11], "o": 11}, {"i": [3, 5, 7, 4, 4, 6], "o": 29}, {"i": [2], "o": 2}, {"i": [3], "o": 3}, {"i": [0, 11, 4, 11, 1, 6, 12], "o": 45}, {"i": [15], "o": 15}, {"i": [13, 15, 13], "o": 41}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "tail", "examples": [{"i": [5, 9, 1], "o": [9, 1]}, {"i": [12, 4], "o": [4]}, {"i": [2, 3, 6, 7], "o": [3, 6, 7]}, {"i": [5], "o": []}, {"i": [13, 2, 2, 13, 4, 3], "o": [2, 2, 13, 4, 3]}, {"i": [0, 1, 4], "o": [1, 4]}, {"i": [9, 5, 7, 5, 4, 1], "o": [5, 7, 5, 4, 1]}, {"i": [13, 0, 4, 12], "o": [0, 4, 12]}, {"i": [6, 6, 3, 14], "o": [6, 3, 14]}, {"i": [11, 12, 14, 1, 2, 15, 9], "o": [12, 14, 1, 2, 15, 9]}, {"i": [0, 1, 0, 2, 11, 0], "o": [1, 0, 2, 11, 0]}, {"i": [2, 10, 3, 12], "o": [10, 3, 12]}, {"i": [5, 9, 14], "o": [9, 14]}, {"i": [6, 8, 2, 7, 6, 9, 8], "o": [8, 2, 7, 6, 9, 8]}, {"i": [1, 7, 4, 5, 3], "o": [7, 4, 5, 3]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "take-k with k=1", "examples": [{"i": [1, 16, 3, 16, 0], "o": [1]}, {"i": [4, 9, 4], "o": [4]}, {"i": [14, 12, 5, 12, 2, 10], "o": [14]}, {"i": [11, 16], "o": [11]}, {"i": [15, 0, 4, 1], "o": [15]}, {"i": [10, 9, 0, 12], "o": [10]}, {"i": [8, 0], "o": [8]}, {"i": [12, 5, 4, 11, 4, 4], "o": [12]}, {"i": [4, 3, 14], "o": [4]}, {"i": [10, 13, 10, 5], "o": [10]}, {"i": [6, 7, 12, 16], "o": [6]}, {"i": [15, 8, 10, 14, 15, 5, 11], "o": [15]}, {"i": [15, 12], "o": [15]}, {"i": [2, 0, 7], "o": [2]}, {"i": [2, 10, 15, 3, 11], "o": [2]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "take-k with k=2", "examples": [{"i": [7, 10, 3, 0, 7, 7], "o": [7, 10]}, {"i": [3, 6, 2, 14], "o": [3, 6]}, {"i": [7, 4, 4, 16], "o": [7, 4]}, {"i": [15, 0, 14, 12, 16, 15, 1, 14], "o": [15, 0]}, {"i": [5, 2, 13, 4, 15, 6, 14, 8], "o": [5, 2]}, {"i": [13, 14, 1], "o": [13, 14]}, {"i": [14, 2, 11, 4, 1, 6, 11, 4, 1], "o": [14, 2]}, {"i": [14, 14], "o": [14, 14]}, {"i": [7, 6], "o": [7, 6]}, {"i": [3, 5, 1, 15, 2, 14, 14, 1, 11], "o": [3, 5]}, {"i": [11, 2, 1, 14, 8, 6, 9], "o": [11, 2]}, {"i": [7, 16, 11, 2, 2, 5, 12, 2], "o": [7, 16]}, {"i": [15, 0, 16, 1, 2, 5], "o": [15, 0]}, {"i": [1, 9, 12, 12, 2, 3, 5, 15], "o": [1, 9]}, {"i": [14, 7, 1, 11], "o": [14, 7]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "take-k with k=3", "examples": [{"i": [7, 3, 11, 12, 6, 7, 13, 9, 9], "o": [7, 3, 11]}, {"i": [1, 7, 9, 2, 2, 6, 6, 15, 1], "o": [1, 7, 9]}, {"i": [2, 13, 16, 16, 1], "o": [2, 13, 16]}, {"i": [0, 2, 15], "o": [0, 2, 15]}, {"i": [6, 5, 11, 7], "o": [6, 5, 11]}, {"i": [7, 7, 15, 15], "o": [7, 7, 15]}, {"i": [2, 13, 8, 1, 9], "o": [2, 13, 8]}, {"i": [1, 10, 10], "o": [1, 10, 10]}, {"i": [14, 6, 0, 9, 4, 13], "o": [14, 6, 0]}, {"i": [11, 2, 16, 13, 6, 16, 8, 2, 11, 8], "o": [11, 2, 16]}, {"i": [15, 7, 11, 10, 10, 9, 8], "o": [15, 7, 11]}, {"i": [7, 4, 16, 15, 16, 3, 10, 11, 3], "o": [7, 4, 16]}, {"i": [1, 2, 0, 13, 7, 10, 12, 4], "o": [1, 2, 0]}, {"i": [10, 7, 14], "o": [10, 7, 14]}, {"i": [8, 15, 6, 6, 1, 5], "o": [8, 15, 6]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "take-k with k=4", "examples": [{"i": [12, 3, 13, 16, 6, 4, 12, 2, 16, 12], "o": [12, 3, 13, 16]}, {"i": [14, 15, 3, 1, 3, 1, 8, 2, 1, 8], "o": [14, 15, 3, 1]}, {"i": [7, 13, 13, 8], "o": [7, 13, 13, 8]}, {"i": [8, 9, 9, 11, 0], "o": [8, 9, 9, 11]}, {"i": [12, 2, 6, 8, 3, 14, 12, 7, 16, 16, 5], "o": [12, 2, 6, 8]}, {"i": [9, 1, 6, 11], "o": [9, 1, 6, 11]}, {"i": [3, 9, 9, 10, 3, 3], "o": [3, 9, 9, 10]}, {"i": [8, 9, 3, 11, 1], "o": [8, 9, 3, 11]}, {"i": [14, 12, 6, 14, 16, 4], "o": [14, 12, 6, 14]}, {"i": [5, 2, 4, 3], "o": [5, 2, 4, 3]}, {"i": [10, 15, 5, 3, 4, 9, 6, 14, 6], "o": [10, 15, 5, 3]}, {"i": [1, 11, 15, 7, 12], "o": [1, 11, 15, 7]}, {"i": [3, 10, 3, 15], "o": [3, 10, 3, 15]}, {"i": [7, 7, 12, 5], "o": [7, 7, 12, 5]}, {"i": [0, 6, 11, 0, 7, 6, 0, 10, 9, 6, 6], "o": [0, 6, 11, 0]}]}, {"type": {"input": "list-of-int", "output": "list-of-int"}, "name": "take-k with k=5", "examples": [{"i": [10, 5, 1, 13, 10, 8, 9, 10, 13, 7, 5], "o": [10, 5, 1, 13, 10]}, {"i": [1, 10, 9, 6, 10, 14, 7, 11, 16, 15], "o": [1, 10, 9, 6, 10]}, {"i": [7, 12, 15, 13, 10, 16, 8, 4, 6, 7], "o": [7, 12, 15, 13, 10]}, {"i": [12, 5, 3, 12, 4, 16, 8, 6, 2, 2], "o": [12, 5, 3, 12, 4]}, {"i": [13, 13, 2, 2, 3, 9, 16, 10, 15], "o": [13, 13, 2, 2, 3]}, {"i": [13, 0, 12, 14, 15, 15], "o": [13, 0, 12, 14, 15]}, {"i": [1, 0, 12, 11, 11, 0, 15, 1, 4, 6, 11], "o": [1, 0, 12, 11, 11]}, {"i": [7, 13, 0, 4, 14, 10, 10], "o": [7, 13, 0, 4, 14]}, {"i": [15, 13, 4, 5, 10, 15, 4, 4, 2, 2], "o": [15, 13, 4, 5, 10]}, {"i": [7, 12, 4, 9, 7, 10, 8, 15, 10, 15, 0, 15], "o": [7, 12, 4, 9, 7]}, {"i": [0, 11, 10, 16, 9, 2, 6], "o": [0, 11, 10, 16, 9]}, {"i": [4, 9, 11, 7, 11, 10, 1, 7, 1, 8, 1, 1], "o": [4, 9, 11, 7, 11]}, {"i": [7, 12, 9, 13, 16, 6, 1, 9, 10, 14, 9], "o": [7, 12, 9, 13, 16]}, {"i": [5, 10, 13, 14, 6, 5, 13], "o": [5, 10, 13, 14, 6]}, {"i": [7, 16, 10, 1, 4, 4, 3, 1, 1, 1], "o": [7, 16, 10, 1, 4]}]}] diff --git a/data/regex_data_csv_900.p b/data/regex_data_csv_900.p new file mode 100644 index 0000000000000000000000000000000000000000..fdfbba8561a500de84a2c595601ec74839ee09fe Binary files /dev/null and b/data/regex_data_csv_900.p differ diff --git a/data/sygus/11440431.sl b/data/sygus/11440431.sl new file mode 100644 index 0000000000000000000000000000000000000000..8ab54b40796facdb8a4076d7a52b7f997e3029c3 --- /dev/null +++ b/data/sygus/11440431.sl @@ -0,0 +1,38 @@ +; https=//stackoverflow.com/questions/11440431/remove-trailing-us-and-can-strings-from-a-range-of-cells/11440731%11440731 +(set-logic SLIA) +(synth-fun f ((_arg_0 String)) String + ( (Start String (ntString)) + (ntString String ( + _arg_0 + "" " " "US" "CAN" + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (ite ntBool ntString ntString) + (str.substr ntString ntInt ntInt) +)) + (ntInt Int ( + + 1 0 -1 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (ite ntBool ntInt ntInt) + (str.indexof ntString ntString ntInt) +)) + (ntBool Bool ( + + true false + (= ntInt ntInt) + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString) +)) )) +(constraint (= (f "Mining US") "Mining")) +(constraint (= (f "Soybean Farming CAN") "Soybean Farming")) +(constraint (= (f "Soybean Farming") "Soybean Farming")) +(constraint (= (f "Oil Extraction US") "Oil Extraction")) +(constraint (= (f "Fishing") "Fishing")) +(check-synth) diff --git a/data/sygus/bikes-long-repeat.sl b/data/sygus/bikes-long-repeat.sl new file mode 100644 index 0000000000000000000000000000000000000000..108fd2d438dbf7d1da3222dbbcd551b204aa638c --- /dev/null +++ b/data/sygus/bikes-long-repeat.sl @@ -0,0 +1,84 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "Ducati100") "Ducati")) +(constraint (= (f "Ducati100") "Ducati")) +(constraint (= (f "Ducati100") "Ducati")) +(constraint (= (f "Honda125") "Honda")) +(constraint (= (f "Honda125") "Honda")) +(constraint (= (f "Honda125") "Honda")) +(constraint (= (f "Ducati250") "Ducati")) +(constraint (= (f "Ducati250") "Ducati")) +(constraint (= (f "Ducati250") "Ducati")) +(constraint (= (f "Honda250") "Honda")) +(constraint (= (f "Honda250") "Honda")) +(constraint (= (f "Honda250") "Honda")) +(constraint (= (f "Honda550") "Honda")) +(constraint (= (f "Honda550") "Honda")) +(constraint (= (f "Honda550") "Honda")) +(constraint (= (f "Ducati125") "Ducati")) +(constraint (= (f "Ducati125") "Ducati")) +(constraint (= (f "Ducati125") "Ducati")) +(constraint (= (f "Acura100") "Acura")) +(constraint (= (f "Acura100") "Acura")) +(constraint (= (f "Acura100") "Acura")) +(constraint (= (f "Acura125") "Acura")) +(constraint (= (f "Ferrari250") "Ferrari")) +(constraint (= (f "Ferrari250") "Ferrari")) +(constraint (= (f "Ferrari250") "Ferrari")) +(constraint (= (f "Ferrari250") "Ferrari")) +(constraint (= (f "Honda550") "Honda")) +(constraint (= (f "Honda550") "Honda")) +(constraint (= (f "Honda550") "Honda")) +(constraint (= (f "Ducati125") "Ducati")) +(constraint (= (f "Ducati125") "Ducati")) +(constraint (= (f "Ducati125") "Ducati")) +(constraint (= (f "Ducati100") "Ducati")) +(constraint (= (f "Honda125") "Honda")) +(constraint (= (f "Honda125") "Honda")) +(constraint (= (f "Honda125") "Honda")) +(constraint (= (f "Ducati250") "Ducati")) +(constraint (= (f "Honda250") "Honda")) +(constraint (= (f "Honda250") "Honda")) +(constraint (= (f "Honda250") "Honda")) +(constraint (= (f "Honda550") "Honda")) +(constraint (= (f "Ducati125") "Ducati")) +(constraint (= (f "Ducati125") "Ducati")) +(constraint (= (f "Ducati125") "Ducati")) +(constraint (= (f "Acura100") "Acura")) +(constraint (= (f "Acura125") "Acura")) +(constraint (= (f "Acura125") "Acura")) +(constraint (= (f "Acura125") "Acura")) +(constraint (= (f "Ferrari250") "Ferrari")) +(constraint (= (f "Ferrari250") "Ferrari")) +(constraint (= (f "Ferrari250") "Ferrari")) +(constraint (= (f "Honda550") "Honda")) +(constraint (= (f "Honda550") "Honda")) +(constraint (= (f "Honda550") "Honda")) +(constraint (= (f "Ducati125") "Ducati")) +(constraint (= (f "Ducati125") "Ducati")) +(constraint (= (f "Ducati125") "Ducati")) +(constraint (= (f "Ducati125") "Ducati")) + +(check-synth) diff --git a/data/sygus/bikes-long.sl b/data/sygus/bikes-long.sl new file mode 100644 index 0000000000000000000000000000000000000000..5ec4b735525eda089dc73e4beb1c812b18ddfee1 --- /dev/null +++ b/data/sygus/bikes-long.sl @@ -0,0 +1,50 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "Ducati100") "Ducati")) +(constraint (= (f "Honda125") "Honda")) +(constraint (= (f "Ducati250") "Ducati")) +(constraint (= (f "Honda250") "Honda")) +(constraint (= (f "Honda550") "Honda")) +(constraint (= (f "Ducati125") "Ducati")) +(constraint (= (f "Acura100") "Acura")) +(constraint (= (f "Acura125") "Acura")) +(constraint (= (f "Ferrari250") "Ferrari")) +(constraint (= (f "Ferrari250") "Ferrari")) +(constraint (= (f "Honda550") "Honda")) +(constraint (= (f "Ducati125") "Ducati")) +(constraint (= (f "Ducati100") "Ducati")) +(constraint (= (f "Honda125") "Honda")) +(constraint (= (f "Ducati250") "Ducati")) +(constraint (= (f "Honda250") "Honda")) +(constraint (= (f "Honda550") "Honda")) +(constraint (= (f "Ducati125") "Ducati")) +(constraint (= (f "Acura100") "Acura")) +(constraint (= (f "Acura125") "Acura")) +(constraint (= (f "Ferrari250") "Ferrari")) +(constraint (= (f "Ferrari250") "Ferrari")) +(constraint (= (f "Honda550") "Honda")) +(constraint (= (f "Ducati125") "Ducati")) + +(check-synth) diff --git a/data/sygus/bikes.sl b/data/sygus/bikes.sl new file mode 100644 index 0000000000000000000000000000000000000000..de4967a8e3579e467fb3c46b7c0d36f383e65638 --- /dev/null +++ b/data/sygus/bikes.sl @@ -0,0 +1,32 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "Ducati100") "Ducati")) +(constraint (= (f "Honda125") "Honda")) +(constraint (= (f "Ducati250") "Ducati")) +(constraint (= (f "Honda250") "Honda")) +(constraint (= (f "Honda550") "Honda")) +(constraint (= (f "Ducati125") "Ducati")) + +(check-synth) diff --git a/data/sygus/bikes_small.sl b/data/sygus/bikes_small.sl new file mode 100644 index 0000000000000000000000000000000000000000..9760fa599d4bc2d13ca9484f5dcec8b65201b072 --- /dev/null +++ b/data/sygus/bikes_small.sl @@ -0,0 +1,28 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (str.len ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "Ducati100") "Ducati")) +(constraint (= (f "Honda125") "Honda")) +(constraint (= (f "Ducati250") "Ducati")) +(constraint (= (f "Honda250") "Honda")) +(constraint (= (f "Honda550") "Honda")) +(constraint (= (f "Ducati125") "Ducati")) + +(check-synth) diff --git a/data/sygus/dr-name-long-repeat.sl b/data/sygus/dr-name-long-repeat.sl new file mode 100644 index 0000000000000000000000000000000000000000..2d852556ebf34909cec98bbd2402e647d28d3367 --- /dev/null +++ b/data/sygus/dr-name-long-repeat.sl @@ -0,0 +1,176 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "." "Dr." "D" "r" + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "Launa Withers") "Dr. Launa")) +(constraint (= (f "Launa Withers") "Dr. Launa")) +(constraint (= (f "Launa Withers") "Dr. Launa")) +(constraint (= (f "Lakenya Edison") "Dr. Lakenya")) +(constraint (= (f "Lakenya Edison") "Dr. Lakenya")) +(constraint (= (f "Lakenya Edison") "Dr. Lakenya")) +(constraint (= (f "Brendan Hage") "Dr. Brendan")) +(constraint (= (f "Brendan Hage") "Dr. Brendan")) +(constraint (= (f "Brendan Hage") "Dr. Brendan")) +(constraint (= (f "Bradford Lango") "Dr. Bradford")) +(constraint (= (f "Bradford Lango") "Dr. Bradford")) +(constraint (= (f "Bradford Lango") "Dr. Bradford")) +(constraint (= (f "Rudolf Akiyama") "Dr. Rudolf")) +(constraint (= (f "Rudolf Akiyama") "Dr. Rudolf")) +(constraint (= (f "Rudolf Akiyama") "Dr. Rudolf")) +(constraint (= (f "Lara Constable") "Dr. Lara")) +(constraint (= (f "Lara Constable") "Dr. Lara")) +(constraint (= (f "Lara Constable") "Dr. Lara")) +(constraint (= (f "Madelaine Ghoston") "Dr. Madelaine")) +(constraint (= (f "Madelaine Ghoston") "Dr. Madelaine")) +(constraint (= (f "Madelaine Ghoston") "Dr. Madelaine")) +(constraint (= (f "Salley Hornak") "Dr. Salley")) +(constraint (= (f "Salley Hornak") "Dr. Salley")) +(constraint (= (f "Salley Hornak") "Dr. Salley")) +(constraint (= (f "Micha Junkin") "Dr. Micha")) +(constraint (= (f "Micha Junkin") "Dr. Micha")) +(constraint (= (f "Micha Junkin") "Dr. Micha")) +(constraint (= (f "Teddy Bobo") "Dr. Teddy")) +(constraint (= (f "Teddy Bobo") "Dr. Teddy")) +(constraint (= (f "Teddy Bobo") "Dr. Teddy")) +(constraint (= (f "Coralee Scalia") "Dr. Coralee")) +(constraint (= (f "Coralee Scalia") "Dr. Coralee")) +(constraint (= (f "Coralee Scalia") "Dr. Coralee")) +(constraint (= (f "Jeff Quashie") "Dr. Jeff")) +(constraint (= (f "Jeff Quashie") "Dr. Jeff")) +(constraint (= (f "Jeff Quashie") "Dr. Jeff")) +(constraint (= (f "Vena Babiarz") "Dr. Vena")) +(constraint (= (f "Vena Babiarz") "Dr. Vena")) +(constraint (= (f "Vena Babiarz") "Dr. Vena")) +(constraint (= (f "Karrie Lain") "Dr. Karrie")) +(constraint (= (f "Karrie Lain") "Dr. Karrie")) +(constraint (= (f "Karrie Lain") "Dr. Karrie")) +(constraint (= (f "Tobias Dermody") "Dr. Tobias")) +(constraint (= (f "Tobias Dermody") "Dr. Tobias")) +(constraint (= (f "Tobias Dermody") "Dr. Tobias")) +(constraint (= (f "Celsa Hopkins") "Dr. Celsa")) +(constraint (= (f "Celsa Hopkins") "Dr. Celsa")) +(constraint (= (f "Celsa Hopkins") "Dr. Celsa")) +(constraint (= (f "Kimberley Halpern") "Dr. Kimberley")) +(constraint (= (f "Kimberley Halpern") "Dr. Kimberley")) +(constraint (= (f "Kimberley Halpern") "Dr. Kimberley")) +(constraint (= (f "Phillip Rowden") "Dr. Phillip")) +(constraint (= (f "Phillip Rowden") "Dr. Phillip")) +(constraint (= (f "Phillip Rowden") "Dr. Phillip")) +(constraint (= (f "Elias Neil") "Dr. Elias")) +(constraint (= (f "Elias Neil") "Dr. Elias")) +(constraint (= (f "Elias Neil") "Dr. Elias")) +(constraint (= (f "Lashanda Cortes") "Dr. Lashanda")) +(constraint (= (f "Lashanda Cortes") "Dr. Lashanda")) +(constraint (= (f "Lashanda Cortes") "Dr. Lashanda")) +(constraint (= (f "Mackenzie Spell") "Dr. Mackenzie")) +(constraint (= (f "Mackenzie Spell") "Dr. Mackenzie")) +(constraint (= (f "Mackenzie Spell") "Dr. Mackenzie")) +(constraint (= (f "Kathlyn Eccleston") "Dr. Kathlyn")) +(constraint (= (f "Kathlyn Eccleston") "Dr. Kathlyn")) +(constraint (= (f "Kathlyn Eccleston") "Dr. Kathlyn")) +(constraint (= (f "Georgina Brescia") "Dr. Georgina")) +(constraint (= (f "Georgina Brescia") "Dr. Georgina")) +(constraint (= (f "Georgina Brescia") "Dr. Georgina")) +(constraint (= (f "Beata Miah") "Dr. Beata")) +(constraint (= (f "Beata Miah") "Dr. Beata")) +(constraint (= (f "Beata Miah") "Dr. Beata")) +(constraint (= (f "Desiree Seamons") "Dr. Desiree")) +(constraint (= (f "Desiree Seamons") "Dr. Desiree")) +(constraint (= (f "Desiree Seamons") "Dr. Desiree")) +(constraint (= (f "Jeanice Soderstrom") "Dr. Jeanice")) +(constraint (= (f "Jeanice Soderstrom") "Dr. Jeanice")) +(constraint (= (f "Jeanice Soderstrom") "Dr. Jeanice")) +(constraint (= (f "Mariel Jurgens") "Dr. Mariel")) +(constraint (= (f "Mariel Jurgens") "Dr. Mariel")) +(constraint (= (f "Mariel Jurgens") "Dr. Mariel")) +(constraint (= (f "Alida Bogle") "Dr. Alida")) +(constraint (= (f "Alida Bogle") "Dr. Alida")) +(constraint (= (f "Alida Bogle") "Dr. Alida")) +(constraint (= (f "Jacqualine Olague") "Dr. Jacqualine")) +(constraint (= (f "Jacqualine Olague") "Dr. Jacqualine")) +(constraint (= (f "Jacqualine Olague") "Dr. Jacqualine")) +(constraint (= (f "Joaquin Clasen") "Dr. Joaquin")) +(constraint (= (f "Joaquin Clasen") "Dr. Joaquin")) +(constraint (= (f "Joaquin Clasen") "Dr. Joaquin")) +(constraint (= (f "Samuel Richert") "Dr. Samuel")) +(constraint (= (f "Samuel Richert") "Dr. Samuel")) +(constraint (= (f "Samuel Richert") "Dr. Samuel")) +(constraint (= (f "Malissa Marcus") "Dr. Malissa")) +(constraint (= (f "Malissa Marcus") "Dr. Malissa")) +(constraint (= (f "Malissa Marcus") "Dr. Malissa")) +(constraint (= (f "Alaina Partida") "Dr. Alaina")) +(constraint (= (f "Alaina Partida") "Dr. Alaina")) +(constraint (= (f "Alaina Partida") "Dr. Alaina")) +(constraint (= (f "Trinidad Mulloy") "Dr. Trinidad")) +(constraint (= (f "Trinidad Mulloy") "Dr. Trinidad")) +(constraint (= (f "Trinidad Mulloy") "Dr. Trinidad")) +(constraint (= (f "Carlene Garrard") "Dr. Carlene")) +(constraint (= (f "Carlene Garrard") "Dr. Carlene")) +(constraint (= (f "Carlene Garrard") "Dr. Carlene")) +(constraint (= (f "Melodi Chism") "Dr. Melodi")) +(constraint (= (f "Melodi Chism") "Dr. Melodi")) +(constraint (= (f "Melodi Chism") "Dr. Melodi")) +(constraint (= (f "Bess Chilcott") "Dr. Bess")) +(constraint (= (f "Bess Chilcott") "Dr. Bess")) +(constraint (= (f "Bess Chilcott") "Dr. Bess")) +(constraint (= (f "Chong Aylward") "Dr. Chong")) +(constraint (= (f "Chong Aylward") "Dr. Chong")) +(constraint (= (f "Chong Aylward") "Dr. Chong")) +(constraint (= (f "Jani Ramthun") "Dr. Jani")) +(constraint (= (f "Jani Ramthun") "Dr. Jani")) +(constraint (= (f "Jani Ramthun") "Dr. Jani")) +(constraint (= (f "Jacquiline Heintz") "Dr. Jacquiline")) +(constraint (= (f "Jacquiline Heintz") "Dr. Jacquiline")) +(constraint (= (f "Jacquiline Heintz") "Dr. Jacquiline")) +(constraint (= (f "Hayley Marquess") "Dr. Hayley")) +(constraint (= (f "Hayley Marquess") "Dr. Hayley")) +(constraint (= (f "Hayley Marquess") "Dr. Hayley")) +(constraint (= (f "Andria Spagnoli") "Dr. Andria")) +(constraint (= (f "Andria Spagnoli") "Dr. Andria")) +(constraint (= (f "Andria Spagnoli") "Dr. Andria")) +(constraint (= (f "Irwin Covelli") "Dr. Irwin")) +(constraint (= (f "Irwin Covelli") "Dr. Irwin")) +(constraint (= (f "Irwin Covelli") "Dr. Irwin")) +(constraint (= (f "Gertude Montiel") "Dr. Gertude")) +(constraint (= (f "Gertude Montiel") "Dr. Gertude")) +(constraint (= (f "Gertude Montiel") "Dr. Gertude")) +(constraint (= (f "Stefany Reily") "Dr. Stefany")) +(constraint (= (f "Stefany Reily") "Dr. Stefany")) +(constraint (= (f "Stefany Reily") "Dr. Stefany")) +(constraint (= (f "Rae Mcgaughey") "Dr. Rae")) +(constraint (= (f "Rae Mcgaughey") "Dr. Rae")) +(constraint (= (f "Rae Mcgaughey") "Dr. Rae")) +(constraint (= (f "Cruz Latimore") "Dr. Cruz")) +(constraint (= (f "Cruz Latimore") "Dr. Cruz")) +(constraint (= (f "Cruz Latimore") "Dr. Cruz")) +(constraint (= (f "Maryann Casler") "Dr. Maryann")) +(constraint (= (f "Maryann Casler") "Dr. Maryann")) +(constraint (= (f "Maryann Casler") "Dr. Maryann")) +(constraint (= (f "Annalisa Gregori") "Dr. Annalisa")) +(constraint (= (f "Annalisa Gregori") "Dr. Annalisa")) +(constraint (= (f "Annalisa Gregori") "Dr. Annalisa")) +(constraint (= (f "Jenee Pannell") "Dr. Jenee")) +(constraint (= (f "Jenee Pannell") "Dr. Jenee")) +(constraint (= (f "Jenee Pannell") "Dr. Jenee")) + +(check-synth) diff --git a/data/sygus/dr-name-long.sl b/data/sygus/dr-name-long.sl new file mode 100644 index 0000000000000000000000000000000000000000..25ad200b2a88d887b957fe31caeabd9eb697eab6 --- /dev/null +++ b/data/sygus/dr-name-long.sl @@ -0,0 +1,76 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "." "Dr." "D" "r" + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "Launa Withers") "Dr. Launa")) +(constraint (= (f "Lakenya Edison") "Dr. Lakenya")) +(constraint (= (f "Brendan Hage") "Dr. Brendan")) +(constraint (= (f "Bradford Lango") "Dr. Bradford")) +(constraint (= (f "Rudolf Akiyama") "Dr. Rudolf")) +(constraint (= (f "Lara Constable") "Dr. Lara")) +(constraint (= (f "Madelaine Ghoston") "Dr. Madelaine")) +(constraint (= (f "Salley Hornak") "Dr. Salley")) +(constraint (= (f "Micha Junkin") "Dr. Micha")) +(constraint (= (f "Teddy Bobo") "Dr. Teddy")) +(constraint (= (f "Coralee Scalia") "Dr. Coralee")) +(constraint (= (f "Jeff Quashie") "Dr. Jeff")) +(constraint (= (f "Vena Babiarz") "Dr. Vena")) +(constraint (= (f "Karrie Lain") "Dr. Karrie")) +(constraint (= (f "Tobias Dermody") "Dr. Tobias")) +(constraint (= (f "Celsa Hopkins") "Dr. Celsa")) +(constraint (= (f "Kimberley Halpern") "Dr. Kimberley")) +(constraint (= (f "Phillip Rowden") "Dr. Phillip")) +(constraint (= (f "Elias Neil") "Dr. Elias")) +(constraint (= (f "Lashanda Cortes") "Dr. Lashanda")) +(constraint (= (f "Mackenzie Spell") "Dr. Mackenzie")) +(constraint (= (f "Kathlyn Eccleston") "Dr. Kathlyn")) +(constraint (= (f "Georgina Brescia") "Dr. Georgina")) +(constraint (= (f "Beata Miah") "Dr. Beata")) +(constraint (= (f "Desiree Seamons") "Dr. Desiree")) +(constraint (= (f "Jeanice Soderstrom") "Dr. Jeanice")) +(constraint (= (f "Mariel Jurgens") "Dr. Mariel")) +(constraint (= (f "Alida Bogle") "Dr. Alida")) +(constraint (= (f "Jacqualine Olague") "Dr. Jacqualine")) +(constraint (= (f "Joaquin Clasen") "Dr. Joaquin")) +(constraint (= (f "Samuel Richert") "Dr. Samuel")) +(constraint (= (f "Malissa Marcus") "Dr. Malissa")) +(constraint (= (f "Alaina Partida") "Dr. Alaina")) +(constraint (= (f "Trinidad Mulloy") "Dr. Trinidad")) +(constraint (= (f "Carlene Garrard") "Dr. Carlene")) +(constraint (= (f "Melodi Chism") "Dr. Melodi")) +(constraint (= (f "Bess Chilcott") "Dr. Bess")) +(constraint (= (f "Chong Aylward") "Dr. Chong")) +(constraint (= (f "Jani Ramthun") "Dr. Jani")) +(constraint (= (f "Jacquiline Heintz") "Dr. Jacquiline")) +(constraint (= (f "Hayley Marquess") "Dr. Hayley")) +(constraint (= (f "Andria Spagnoli") "Dr. Andria")) +(constraint (= (f "Irwin Covelli") "Dr. Irwin")) +(constraint (= (f "Gertude Montiel") "Dr. Gertude")) +(constraint (= (f "Stefany Reily") "Dr. Stefany")) +(constraint (= (f "Rae Mcgaughey") "Dr. Rae")) +(constraint (= (f "Cruz Latimore") "Dr. Cruz")) +(constraint (= (f "Maryann Casler") "Dr. Maryann")) +(constraint (= (f "Annalisa Gregori") "Dr. Annalisa")) +(constraint (= (f "Jenee Pannell") "Dr. Jenee")) + +(check-synth) diff --git a/data/sygus/dr-name.sl b/data/sygus/dr-name.sl new file mode 100644 index 0000000000000000000000000000000000000000..5e0120ad3dcc75a8a4f95167b99584c5bf7a53d1 --- /dev/null +++ b/data/sygus/dr-name.sl @@ -0,0 +1,30 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "." "Dr." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "Nancy FreeHafer") "Dr. Nancy")) +(constraint (= (f "Andrew Cencici") "Dr. Andrew")) +(constraint (= (f "Jan Kotas") "Dr. Jan")) +(constraint (= (f "Mariya Sergienko") "Dr. Mariya")) + +(check-synth) diff --git a/data/sygus/dr-name_small.sl b/data/sygus/dr-name_small.sl new file mode 100644 index 0000000000000000000000000000000000000000..0aafebc12f429df7131f82a619878dcd8e1af3b7 --- /dev/null +++ b/data/sygus/dr-name_small.sl @@ -0,0 +1,27 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "." "Dr." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "Nancy FreeHafer") "Dr. Nancy")) +(constraint (= (f "Andrew Cencici") "Dr. Andrew")) +(constraint (= (f "Jan Kotas") "Dr. Jan")) +(constraint (= (f "Mariya Sergienko") "Dr. Mariya")) + +(check-synth) diff --git a/data/sygus/firstname-long-repeat.sl b/data/sygus/firstname-long-repeat.sl new file mode 100644 index 0000000000000000000000000000000000000000..a72912c43114509f21bc4703bf5b6fd90bbe260f --- /dev/null +++ b/data/sygus/firstname-long-repeat.sl @@ -0,0 +1,230 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "Nancy FreeHafer") "Nancy")) +(constraint (= (f "Andrew Cencici") "Andrew")) +(constraint (= (f "Jan Kotas") "Jan")) +(constraint (= (f "Mariya Sergienko") "Mariya")) +(constraint (= (f "Launa Withers") "Launa")) +(constraint (= (f "Launa Withers") "Launa")) +(constraint (= (f "Launa Withers") "Launa")) +(constraint (= (f "Lakenya Edison") "Lakenya")) +(constraint (= (f "Lakenya Edison") "Lakenya")) +(constraint (= (f "Lakenya Edison") "Lakenya")) +(constraint (= (f "Brendan Hage") "Brendan")) +(constraint (= (f "Brendan Hage") "Brendan")) +(constraint (= (f "Brendan Hage") "Brendan")) +(constraint (= (f "Bradford Lango") "Bradford")) +(constraint (= (f "Bradford Lango") "Bradford")) +(constraint (= (f "Bradford Lango") "Bradford")) +(constraint (= (f "Rudolf Akiyama") "Rudolf")) +(constraint (= (f "Rudolf Akiyama") "Rudolf")) +(constraint (= (f "Rudolf Akiyama") "Rudolf")) +(constraint (= (f "Lara Constable") "Lara")) +(constraint (= (f "Lara Constable") "Lara")) +(constraint (= (f "Lara Constable") "Lara")) +(constraint (= (f "Madelaine Ghoston") "Madelaine")) +(constraint (= (f "Madelaine Ghoston") "Madelaine")) +(constraint (= (f "Madelaine Ghoston") "Madelaine")) +(constraint (= (f "Salley Hornak") "Salley")) +(constraint (= (f "Salley Hornak") "Salley")) +(constraint (= (f "Salley Hornak") "Salley")) +(constraint (= (f "Micha Junkin") "Micha")) +(constraint (= (f "Micha Junkin") "Micha")) +(constraint (= (f "Micha Junkin") "Micha")) +(constraint (= (f "Teddy Bobo") "Teddy")) +(constraint (= (f "Teddy Bobo") "Teddy")) +(constraint (= (f "Teddy Bobo") "Teddy")) +(constraint (= (f "Coralee Scalia") "Coralee")) +(constraint (= (f "Coralee Scalia") "Coralee")) +(constraint (= (f "Coralee Scalia") "Coralee")) +(constraint (= (f "Jeff Quashie") "Jeff")) +(constraint (= (f "Jeff Quashie") "Jeff")) +(constraint (= (f "Jeff Quashie") "Jeff")) +(constraint (= (f "Vena Babiarz") "Vena")) +(constraint (= (f "Vena Babiarz") "Vena")) +(constraint (= (f "Vena Babiarz") "Vena")) +(constraint (= (f "Karrie Lain") "Karrie")) +(constraint (= (f "Karrie Lain") "Karrie")) +(constraint (= (f "Karrie Lain") "Karrie")) +(constraint (= (f "Tobias Dermody") "Tobias")) +(constraint (= (f "Tobias Dermody") "Tobias")) +(constraint (= (f "Tobias Dermody") "Tobias")) +(constraint (= (f "Celsa Hopkins") "Celsa")) +(constraint (= (f "Celsa Hopkins") "Celsa")) +(constraint (= (f "Celsa Hopkins") "Celsa")) +(constraint (= (f "Kimberley Halpern") "Kimberley")) +(constraint (= (f "Kimberley Halpern") "Kimberley")) +(constraint (= (f "Kimberley Halpern") "Kimberley")) +(constraint (= (f "Phillip Rowden") "Phillip")) +(constraint (= (f "Phillip Rowden") "Phillip")) +(constraint (= (f "Phillip Rowden") "Phillip")) +(constraint (= (f "Elias Neil") "Elias")) +(constraint (= (f "Elias Neil") "Elias")) +(constraint (= (f "Elias Neil") "Elias")) +(constraint (= (f "Lashanda Cortes") "Lashanda")) +(constraint (= (f "Lashanda Cortes") "Lashanda")) +(constraint (= (f "Lashanda Cortes") "Lashanda")) +(constraint (= (f "Mackenzie Spell") "Mackenzie")) +(constraint (= (f "Mackenzie Spell") "Mackenzie")) +(constraint (= (f "Mackenzie Spell") "Mackenzie")) +(constraint (= (f "Kathlyn Eccleston") "Kathlyn")) +(constraint (= (f "Kathlyn Eccleston") "Kathlyn")) +(constraint (= (f "Kathlyn Eccleston") "Kathlyn")) +(constraint (= (f "Georgina Brescia") "Georgina")) +(constraint (= (f "Georgina Brescia") "Georgina")) +(constraint (= (f "Georgina Brescia") "Georgina")) +(constraint (= (f "Beata Miah") "Beata")) +(constraint (= (f "Beata Miah") "Beata")) +(constraint (= (f "Beata Miah") "Beata")) +(constraint (= (f "Desiree Seamons") "Desiree")) +(constraint (= (f "Desiree Seamons") "Desiree")) +(constraint (= (f "Desiree Seamons") "Desiree")) +(constraint (= (f "Jeanice Soderstrom") "Jeanice")) +(constraint (= (f "Jeanice Soderstrom") "Jeanice")) +(constraint (= (f "Jeanice Soderstrom") "Jeanice")) +(constraint (= (f "Mariel Jurgens") "Mariel")) +(constraint (= (f "Mariel Jurgens") "Mariel")) +(constraint (= (f "Mariel Jurgens") "Mariel")) +(constraint (= (f "Alida Bogle") "Alida")) +(constraint (= (f "Alida Bogle") "Alida")) +(constraint (= (f "Alida Bogle") "Alida")) +(constraint (= (f "Jacqualine Olague") "Jacqualine")) +(constraint (= (f "Jacqualine Olague") "Jacqualine")) +(constraint (= (f "Jacqualine Olague") "Jacqualine")) +(constraint (= (f "Joaquin Clasen") "Joaquin")) +(constraint (= (f "Joaquin Clasen") "Joaquin")) +(constraint (= (f "Joaquin Clasen") "Joaquin")) +(constraint (= (f "Samuel Richert") "Samuel")) +(constraint (= (f "Samuel Richert") "Samuel")) +(constraint (= (f "Samuel Richert") "Samuel")) +(constraint (= (f "Malissa Marcus") "Malissa")) +(constraint (= (f "Malissa Marcus") "Malissa")) +(constraint (= (f "Malissa Marcus") "Malissa")) +(constraint (= (f "Alaina Partida") "Alaina")) +(constraint (= (f "Alaina Partida") "Alaina")) +(constraint (= (f "Alaina Partida") "Alaina")) +(constraint (= (f "Trinidad Mulloy") "Trinidad")) +(constraint (= (f "Trinidad Mulloy") "Trinidad")) +(constraint (= (f "Trinidad Mulloy") "Trinidad")) +(constraint (= (f "Carlene Garrard") "Carlene")) +(constraint (= (f "Carlene Garrard") "Carlene")) +(constraint (= (f "Carlene Garrard") "Carlene")) +(constraint (= (f "Melodi Chism") "Melodi")) +(constraint (= (f "Melodi Chism") "Melodi")) +(constraint (= (f "Melodi Chism") "Melodi")) +(constraint (= (f "Bess Chilcott") "Bess")) +(constraint (= (f "Bess Chilcott") "Bess")) +(constraint (= (f "Bess Chilcott") "Bess")) +(constraint (= (f "Chong Aylward") "Chong")) +(constraint (= (f "Chong Aylward") "Chong")) +(constraint (= (f "Chong Aylward") "Chong")) +(constraint (= (f "Jani Ramthun") "Jani")) +(constraint (= (f "Jani Ramthun") "Jani")) +(constraint (= (f "Jani Ramthun") "Jani")) +(constraint (= (f "Jacquiline Heintz") "Jacquiline")) +(constraint (= (f "Jacquiline Heintz") "Jacquiline")) +(constraint (= (f "Jacquiline Heintz") "Jacquiline")) +(constraint (= (f "Hayley Marquess") "Hayley")) +(constraint (= (f "Hayley Marquess") "Hayley")) +(constraint (= (f "Hayley Marquess") "Hayley")) +(constraint (= (f "Andria Spagnoli") "Andria")) +(constraint (= (f "Andria Spagnoli") "Andria")) +(constraint (= (f "Andria Spagnoli") "Andria")) +(constraint (= (f "Irwin Covelli") "Irwin")) +(constraint (= (f "Irwin Covelli") "Irwin")) +(constraint (= (f "Irwin Covelli") "Irwin")) +(constraint (= (f "Gertude Montiel") "Gertude")) +(constraint (= (f "Gertude Montiel") "Gertude")) +(constraint (= (f "Gertude Montiel") "Gertude")) +(constraint (= (f "Stefany Reily") "Stefany")) +(constraint (= (f "Stefany Reily") "Stefany")) +(constraint (= (f "Stefany Reily") "Stefany")) +(constraint (= (f "Rae Mcgaughey") "Rae")) +(constraint (= (f "Rae Mcgaughey") "Rae")) +(constraint (= (f "Rae Mcgaughey") "Rae")) +(constraint (= (f "Cruz Latimore") "Cruz")) +(constraint (= (f "Cruz Latimore") "Cruz")) +(constraint (= (f "Cruz Latimore") "Cruz")) +(constraint (= (f "Maryann Casler") "Maryann")) +(constraint (= (f "Maryann Casler") "Maryann")) +(constraint (= (f "Maryann Casler") "Maryann")) +(constraint (= (f "Annalisa Gregori") "Annalisa")) +(constraint (= (f "Annalisa Gregori") "Annalisa")) +(constraint (= (f "Annalisa Gregori") "Annalisa")) +(constraint (= (f "Jenee Pannell") "Jenee")) +(constraint (= (f "Jenee Pannell") "Jenee")) +(constraint (= (f "Jenee Pannell") "Jenee")) +(constraint (= (f "Launa Withers") "Launa")) +(constraint (= (f "Lakenya Edison") "Lakenya")) +(constraint (= (f "Brendan Hage") "Brendan")) +(constraint (= (f "Bradford Lango") "Bradford")) +(constraint (= (f "Rudolf Akiyama") "Rudolf")) +(constraint (= (f "Lara Constable") "Lara")) +(constraint (= (f "Madelaine Ghoston") "Madelaine")) +(constraint (= (f "Salley Hornak") "Salley")) +(constraint (= (f "Micha Junkin") "Micha")) +(constraint (= (f "Teddy Bobo") "Teddy")) +(constraint (= (f "Coralee Scalia") "Coralee")) +(constraint (= (f "Jeff Quashie") "Jeff")) +(constraint (= (f "Vena Babiarz") "Vena")) +(constraint (= (f "Karrie Lain") "Karrie")) +(constraint (= (f "Tobias Dermody") "Tobias")) +(constraint (= (f "Celsa Hopkins") "Celsa")) +(constraint (= (f "Kimberley Halpern") "Kimberley")) +(constraint (= (f "Phillip Rowden") "Phillip")) +(constraint (= (f "Elias Neil") "Elias")) +(constraint (= (f "Lashanda Cortes") "Lashanda")) +(constraint (= (f "Mackenzie Spell") "Mackenzie")) +(constraint (= (f "Kathlyn Eccleston") "Kathlyn")) +(constraint (= (f "Georgina Brescia") "Georgina")) +(constraint (= (f "Beata Miah") "Beata")) +(constraint (= (f "Desiree Seamons") "Desiree")) +(constraint (= (f "Jeanice Soderstrom") "Jeanice")) +(constraint (= (f "Mariel Jurgens") "Mariel")) +(constraint (= (f "Alida Bogle") "Alida")) +(constraint (= (f "Jacqualine Olague") "Jacqualine")) +(constraint (= (f "Joaquin Clasen") "Joaquin")) +(constraint (= (f "Samuel Richert") "Samuel")) +(constraint (= (f "Malissa Marcus") "Malissa")) +(constraint (= (f "Alaina Partida") "Alaina")) +(constraint (= (f "Trinidad Mulloy") "Trinidad")) +(constraint (= (f "Carlene Garrard") "Carlene")) +(constraint (= (f "Melodi Chism") "Melodi")) +(constraint (= (f "Bess Chilcott") "Bess")) +(constraint (= (f "Chong Aylward") "Chong")) +(constraint (= (f "Jani Ramthun") "Jani")) +(constraint (= (f "Jacquiline Heintz") "Jacquiline")) +(constraint (= (f "Hayley Marquess") "Hayley")) +(constraint (= (f "Andria Spagnoli") "Andria")) +(constraint (= (f "Irwin Covelli") "Irwin")) +(constraint (= (f "Gertude Montiel") "Gertude")) +(constraint (= (f "Stefany Reily") "Stefany")) +(constraint (= (f "Rae Mcgaughey") "Rae")) +(constraint (= (f "Cruz Latimore") "Cruz")) +(constraint (= (f "Maryann Casler") "Maryann")) +(constraint (= (f "Annalisa Gregori") "Annalisa")) +(constraint (= (f "Jenee Pannell") "Jenee")) + +(check-synth) diff --git a/data/sygus/firstname-long.sl b/data/sygus/firstname-long.sl new file mode 100644 index 0000000000000000000000000000000000000000..438b6ff964373fcdc4de874bf39104b8728c0199 --- /dev/null +++ b/data/sygus/firstname-long.sl @@ -0,0 +1,80 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "Nancy FreeHafer") "Nancy")) +(constraint (= (f "Andrew Cencici") "Andrew")) +(constraint (= (f "Jan Kotas") "Jan")) +(constraint (= (f "Mariya Sergienko") "Mariya")) +(constraint (= (f "Launa Withers") "Launa")) +(constraint (= (f "Lakenya Edison") "Lakenya")) +(constraint (= (f "Brendan Hage") "Brendan")) +(constraint (= (f "Bradford Lango") "Bradford")) +(constraint (= (f "Rudolf Akiyama") "Rudolf")) +(constraint (= (f "Lara Constable") "Lara")) +(constraint (= (f "Madelaine Ghoston") "Madelaine")) +(constraint (= (f "Salley Hornak") "Salley")) +(constraint (= (f "Micha Junkin") "Micha")) +(constraint (= (f "Teddy Bobo") "Teddy")) +(constraint (= (f "Coralee Scalia") "Coralee")) +(constraint (= (f "Jeff Quashie") "Jeff")) +(constraint (= (f "Vena Babiarz") "Vena")) +(constraint (= (f "Karrie Lain") "Karrie")) +(constraint (= (f "Tobias Dermody") "Tobias")) +(constraint (= (f "Celsa Hopkins") "Celsa")) +(constraint (= (f "Kimberley Halpern") "Kimberley")) +(constraint (= (f "Phillip Rowden") "Phillip")) +(constraint (= (f "Elias Neil") "Elias")) +(constraint (= (f "Lashanda Cortes") "Lashanda")) +(constraint (= (f "Mackenzie Spell") "Mackenzie")) +(constraint (= (f "Kathlyn Eccleston") "Kathlyn")) +(constraint (= (f "Georgina Brescia") "Georgina")) +(constraint (= (f "Beata Miah") "Beata")) +(constraint (= (f "Desiree Seamons") "Desiree")) +(constraint (= (f "Jeanice Soderstrom") "Jeanice")) +(constraint (= (f "Mariel Jurgens") "Mariel")) +(constraint (= (f "Alida Bogle") "Alida")) +(constraint (= (f "Jacqualine Olague") "Jacqualine")) +(constraint (= (f "Joaquin Clasen") "Joaquin")) +(constraint (= (f "Samuel Richert") "Samuel")) +(constraint (= (f "Malissa Marcus") "Malissa")) +(constraint (= (f "Alaina Partida") "Alaina")) +(constraint (= (f "Trinidad Mulloy") "Trinidad")) +(constraint (= (f "Carlene Garrard") "Carlene")) +(constraint (= (f "Melodi Chism") "Melodi")) +(constraint (= (f "Bess Chilcott") "Bess")) +(constraint (= (f "Chong Aylward") "Chong")) +(constraint (= (f "Jani Ramthun") "Jani")) +(constraint (= (f "Jacquiline Heintz") "Jacquiline")) +(constraint (= (f "Hayley Marquess") "Hayley")) +(constraint (= (f "Andria Spagnoli") "Andria")) +(constraint (= (f "Irwin Covelli") "Irwin")) +(constraint (= (f "Gertude Montiel") "Gertude")) +(constraint (= (f "Stefany Reily") "Stefany")) +(constraint (= (f "Rae Mcgaughey") "Rae")) +(constraint (= (f "Cruz Latimore") "Cruz")) +(constraint (= (f "Maryann Casler") "Maryann")) +(constraint (= (f "Annalisa Gregori") "Annalisa")) +(constraint (= (f "Jenee Pannell") "Jenee")) + +(check-synth) diff --git a/data/sygus/firstname.sl b/data/sygus/firstname.sl new file mode 100644 index 0000000000000000000000000000000000000000..1c109400177be42906b2cc00f698f2f2bc0608d0 --- /dev/null +++ b/data/sygus/firstname.sl @@ -0,0 +1,30 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "Nancy FreeHafer") "Nancy")) +(constraint (= (f "Andrew Cencici") "Andrew")) +(constraint (= (f "Jan Kotas") "Jan")) +(constraint (= (f "Mariya Sergienko") "Mariya")) + +(check-synth) diff --git a/data/sygus/firstname_small.sl b/data/sygus/firstname_small.sl new file mode 100644 index 0000000000000000000000000000000000000000..ad069cb74a516916318cd5c851481dba3921f4cb --- /dev/null +++ b/data/sygus/firstname_small.sl @@ -0,0 +1,27 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "Nancy FreeHafer") "Nancy")) +(constraint (= (f "Andrew Cencici") "Andrew")) +(constraint (= (f "Jan Kotas") "Jan")) +(constraint (= (f "Mariya Sergienko") "Mariya")) + +(check-synth) diff --git a/data/sygus/initials-long-repeat.sl b/data/sygus/initials-long-repeat.sl new file mode 100644 index 0000000000000000000000000000000000000000..dca1f56b58434e6599974c77a07075af6b4b552f --- /dev/null +++ b/data/sygus/initials-long-repeat.sl @@ -0,0 +1,230 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "Nancy FreeHafer") "N.F.")) +(constraint (= (f "Andrew Cencici") "A.C.")) +(constraint (= (f "Jan Kotas") "J.K.")) +(constraint (= (f "Mariya Sergienko") "M.S.")) +(constraint (= (f "Launa Withers") "L.W.")) +(constraint (= (f "Launa Withers") "L.W.")) +(constraint (= (f "Launa Withers") "L.W.")) +(constraint (= (f "Lakenya Edison") "L.E.")) +(constraint (= (f "Lakenya Edison") "L.E.")) +(constraint (= (f "Lakenya Edison") "L.E.")) +(constraint (= (f "Brendan Hage") "B.H.")) +(constraint (= (f "Brendan Hage") "B.H.")) +(constraint (= (f "Brendan Hage") "B.H.")) +(constraint (= (f "Bradford Lango") "B.L.")) +(constraint (= (f "Bradford Lango") "B.L.")) +(constraint (= (f "Bradford Lango") "B.L.")) +(constraint (= (f "Rudolf Akiyama") "R.A.")) +(constraint (= (f "Rudolf Akiyama") "R.A.")) +(constraint (= (f "Rudolf Akiyama") "R.A.")) +(constraint (= (f "Lara Constable") "L.C.")) +(constraint (= (f "Lara Constable") "L.C.")) +(constraint (= (f "Lara Constable") "L.C.")) +(constraint (= (f "Madelaine Ghoston") "M.G.")) +(constraint (= (f "Madelaine Ghoston") "M.G.")) +(constraint (= (f "Madelaine Ghoston") "M.G.")) +(constraint (= (f "Salley Hornak") "S.H.")) +(constraint (= (f "Salley Hornak") "S.H.")) +(constraint (= (f "Salley Hornak") "S.H.")) +(constraint (= (f "Micha Junkin") "M.J.")) +(constraint (= (f "Micha Junkin") "M.J.")) +(constraint (= (f "Micha Junkin") "M.J.")) +(constraint (= (f "Teddy Bobo") "T.B.")) +(constraint (= (f "Teddy Bobo") "T.B.")) +(constraint (= (f "Teddy Bobo") "T.B.")) +(constraint (= (f "Coralee Scalia") "C.S.")) +(constraint (= (f "Coralee Scalia") "C.S.")) +(constraint (= (f "Coralee Scalia") "C.S.")) +(constraint (= (f "Jeff Quashie") "J.Q.")) +(constraint (= (f "Jeff Quashie") "J.Q.")) +(constraint (= (f "Jeff Quashie") "J.Q.")) +(constraint (= (f "Vena Babiarz") "V.B.")) +(constraint (= (f "Vena Babiarz") "V.B.")) +(constraint (= (f "Vena Babiarz") "V.B.")) +(constraint (= (f "Karrie Lain") "K.L.")) +(constraint (= (f "Karrie Lain") "K.L.")) +(constraint (= (f "Karrie Lain") "K.L.")) +(constraint (= (f "Tobias Dermody") "T.D.")) +(constraint (= (f "Tobias Dermody") "T.D.")) +(constraint (= (f "Tobias Dermody") "T.D.")) +(constraint (= (f "Celsa Hopkins") "C.H.")) +(constraint (= (f "Celsa Hopkins") "C.H.")) +(constraint (= (f "Celsa Hopkins") "C.H.")) +(constraint (= (f "Kimberley Halpern") "K.H.")) +(constraint (= (f "Kimberley Halpern") "K.H.")) +(constraint (= (f "Kimberley Halpern") "K.H.")) +(constraint (= (f "Phillip Rowden") "P.R.")) +(constraint (= (f "Phillip Rowden") "P.R.")) +(constraint (= (f "Phillip Rowden") "P.R.")) +(constraint (= (f "Elias Neil") "E.N.")) +(constraint (= (f "Elias Neil") "E.N.")) +(constraint (= (f "Elias Neil") "E.N.")) +(constraint (= (f "Lashanda Cortes") "L.C.")) +(constraint (= (f "Lashanda Cortes") "L.C.")) +(constraint (= (f "Lashanda Cortes") "L.C.")) +(constraint (= (f "Mackenzie Spell") "M.S.")) +(constraint (= (f "Mackenzie Spell") "M.S.")) +(constraint (= (f "Mackenzie Spell") "M.S.")) +(constraint (= (f "Kathlyn Eccleston") "K.E.")) +(constraint (= (f "Kathlyn Eccleston") "K.E.")) +(constraint (= (f "Kathlyn Eccleston") "K.E.")) +(constraint (= (f "Georgina Brescia") "G.B.")) +(constraint (= (f "Georgina Brescia") "G.B.")) +(constraint (= (f "Georgina Brescia") "G.B.")) +(constraint (= (f "Beata Miah") "B.M.")) +(constraint (= (f "Beata Miah") "B.M.")) +(constraint (= (f "Beata Miah") "B.M.")) +(constraint (= (f "Desiree Seamons") "D.S.")) +(constraint (= (f "Desiree Seamons") "D.S.")) +(constraint (= (f "Desiree Seamons") "D.S.")) +(constraint (= (f "Jeanice Soderstrom") "J.S.")) +(constraint (= (f "Jeanice Soderstrom") "J.S.")) +(constraint (= (f "Jeanice Soderstrom") "J.S.")) +(constraint (= (f "Mariel Jurgens") "M.J.")) +(constraint (= (f "Mariel Jurgens") "M.J.")) +(constraint (= (f "Mariel Jurgens") "M.J.")) +(constraint (= (f "Alida Bogle") "A.B.")) +(constraint (= (f "Alida Bogle") "A.B.")) +(constraint (= (f "Alida Bogle") "A.B.")) +(constraint (= (f "Jacqualine Olague") "J.O.")) +(constraint (= (f "Jacqualine Olague") "J.O.")) +(constraint (= (f "Jacqualine Olague") "J.O.")) +(constraint (= (f "Joaquin Clasen") "J.C.")) +(constraint (= (f "Joaquin Clasen") "J.C.")) +(constraint (= (f "Joaquin Clasen") "J.C.")) +(constraint (= (f "Samuel Richert") "S.R.")) +(constraint (= (f "Samuel Richert") "S.R.")) +(constraint (= (f "Samuel Richert") "S.R.")) +(constraint (= (f "Malissa Marcus") "M.M.")) +(constraint (= (f "Malissa Marcus") "M.M.")) +(constraint (= (f "Malissa Marcus") "M.M.")) +(constraint (= (f "Alaina Partida") "A.P.")) +(constraint (= (f "Alaina Partida") "A.P.")) +(constraint (= (f "Alaina Partida") "A.P.")) +(constraint (= (f "Trinidad Mulloy") "T.M.")) +(constraint (= (f "Trinidad Mulloy") "T.M.")) +(constraint (= (f "Trinidad Mulloy") "T.M.")) +(constraint (= (f "Carlene Garrard") "C.G.")) +(constraint (= (f "Carlene Garrard") "C.G.")) +(constraint (= (f "Carlene Garrard") "C.G.")) +(constraint (= (f "Melodi Chism") "M.C.")) +(constraint (= (f "Melodi Chism") "M.C.")) +(constraint (= (f "Melodi Chism") "M.C.")) +(constraint (= (f "Bess Chilcott") "B.C.")) +(constraint (= (f "Bess Chilcott") "B.C.")) +(constraint (= (f "Bess Chilcott") "B.C.")) +(constraint (= (f "Chong Aylward") "C.A.")) +(constraint (= (f "Chong Aylward") "C.A.")) +(constraint (= (f "Chong Aylward") "C.A.")) +(constraint (= (f "Jani Ramthun") "J.R.")) +(constraint (= (f "Jani Ramthun") "J.R.")) +(constraint (= (f "Jani Ramthun") "J.R.")) +(constraint (= (f "Jacquiline Heintz") "J.H.")) +(constraint (= (f "Jacquiline Heintz") "J.H.")) +(constraint (= (f "Jacquiline Heintz") "J.H.")) +(constraint (= (f "Hayley Marquess") "H.M.")) +(constraint (= (f "Hayley Marquess") "H.M.")) +(constraint (= (f "Hayley Marquess") "H.M.")) +(constraint (= (f "Andria Spagnoli") "A.S.")) +(constraint (= (f "Andria Spagnoli") "A.S.")) +(constraint (= (f "Andria Spagnoli") "A.S.")) +(constraint (= (f "Irwin Covelli") "I.C.")) +(constraint (= (f "Irwin Covelli") "I.C.")) +(constraint (= (f "Irwin Covelli") "I.C.")) +(constraint (= (f "Gertude Montiel") "G.M.")) +(constraint (= (f "Gertude Montiel") "G.M.")) +(constraint (= (f "Gertude Montiel") "G.M.")) +(constraint (= (f "Stefany Reily") "S.R.")) +(constraint (= (f "Stefany Reily") "S.R.")) +(constraint (= (f "Stefany Reily") "S.R.")) +(constraint (= (f "Rae Mcgaughey") "R.M.")) +(constraint (= (f "Rae Mcgaughey") "R.M.")) +(constraint (= (f "Rae Mcgaughey") "R.M.")) +(constraint (= (f "Cruz Latimore") "C.L.")) +(constraint (= (f "Cruz Latimore") "C.L.")) +(constraint (= (f "Cruz Latimore") "C.L.")) +(constraint (= (f "Maryann Casler") "M.C.")) +(constraint (= (f "Maryann Casler") "M.C.")) +(constraint (= (f "Maryann Casler") "M.C.")) +(constraint (= (f "Annalisa Gregori") "A.G.")) +(constraint (= (f "Annalisa Gregori") "A.G.")) +(constraint (= (f "Annalisa Gregori") "A.G.")) +(constraint (= (f "Jenee Pannell") "J.P.")) +(constraint (= (f "Jenee Pannell") "J.P.")) +(constraint (= (f "Jenee Pannell") "J.P.")) +(constraint (= (f "Launa Withers") "L.W.")) +(constraint (= (f "Lakenya Edison") "L.E.")) +(constraint (= (f "Brendan Hage") "B.H.")) +(constraint (= (f "Bradford Lango") "B.L.")) +(constraint (= (f "Rudolf Akiyama") "R.A.")) +(constraint (= (f "Lara Constable") "L.C.")) +(constraint (= (f "Madelaine Ghoston") "M.G.")) +(constraint (= (f "Salley Hornak") "S.H.")) +(constraint (= (f "Micha Junkin") "M.J.")) +(constraint (= (f "Teddy Bobo") "T.B.")) +(constraint (= (f "Coralee Scalia") "C.S.")) +(constraint (= (f "Jeff Quashie") "J.Q.")) +(constraint (= (f "Vena Babiarz") "V.B.")) +(constraint (= (f "Karrie Lain") "K.L.")) +(constraint (= (f "Tobias Dermody") "T.D.")) +(constraint (= (f "Celsa Hopkins") "C.H.")) +(constraint (= (f "Kimberley Halpern") "K.H.")) +(constraint (= (f "Phillip Rowden") "P.R.")) +(constraint (= (f "Elias Neil") "E.N.")) +(constraint (= (f "Lashanda Cortes") "L.C.")) +(constraint (= (f "Mackenzie Spell") "M.S.")) +(constraint (= (f "Kathlyn Eccleston") "K.E.")) +(constraint (= (f "Georgina Brescia") "G.B.")) +(constraint (= (f "Beata Miah") "B.M.")) +(constraint (= (f "Desiree Seamons") "D.S.")) +(constraint (= (f "Jeanice Soderstrom") "J.S.")) +(constraint (= (f "Mariel Jurgens") "M.J.")) +(constraint (= (f "Alida Bogle") "A.B.")) +(constraint (= (f "Jacqualine Olague") "J.O.")) +(constraint (= (f "Joaquin Clasen") "J.C.")) +(constraint (= (f "Samuel Richert") "S.R.")) +(constraint (= (f "Malissa Marcus") "M.M.")) +(constraint (= (f "Alaina Partida") "A.P.")) +(constraint (= (f "Trinidad Mulloy") "T.M.")) +(constraint (= (f "Carlene Garrard") "C.G.")) +(constraint (= (f "Melodi Chism") "M.C.")) +(constraint (= (f "Bess Chilcott") "B.C.")) +(constraint (= (f "Chong Aylward") "C.A.")) +(constraint (= (f "Jani Ramthun") "J.R.")) +(constraint (= (f "Jacquiline Heintz") "J.H.")) +(constraint (= (f "Hayley Marquess") "H.M.")) +(constraint (= (f "Andria Spagnoli") "A.S.")) +(constraint (= (f "Irwin Covelli") "I.C.")) +(constraint (= (f "Gertude Montiel") "G.M.")) +(constraint (= (f "Stefany Reily") "S.R.")) +(constraint (= (f "Rae Mcgaughey") "R.M.")) +(constraint (= (f "Cruz Latimore") "C.L.")) +(constraint (= (f "Maryann Casler") "M.C.")) +(constraint (= (f "Annalisa Gregori") "A.G.")) +(constraint (= (f "Jenee Pannell") "J.P.")) + +(check-synth) diff --git a/data/sygus/initials-long.sl b/data/sygus/initials-long.sl new file mode 100644 index 0000000000000000000000000000000000000000..a3f2ae220959b31788d4b6223b9d083bb48b3dbf --- /dev/null +++ b/data/sygus/initials-long.sl @@ -0,0 +1,80 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "Nancy FreeHafer") "N.F.")) +(constraint (= (f "Andrew Cencici") "A.C.")) +(constraint (= (f "Jan Kotas") "J.K.")) +(constraint (= (f "Mariya Sergienko") "M.S.")) +(constraint (= (f "Launa Withers") "L.W.")) +(constraint (= (f "Lakenya Edison") "L.E.")) +(constraint (= (f "Brendan Hage") "B.H.")) +(constraint (= (f "Bradford Lango") "B.L.")) +(constraint (= (f "Rudolf Akiyama") "R.A.")) +(constraint (= (f "Lara Constable") "L.C.")) +(constraint (= (f "Madelaine Ghoston") "M.G.")) +(constraint (= (f "Salley Hornak") "S.H.")) +(constraint (= (f "Micha Junkin") "M.J.")) +(constraint (= (f "Teddy Bobo") "T.B.")) +(constraint (= (f "Coralee Scalia") "C.S.")) +(constraint (= (f "Jeff Quashie") "J.Q.")) +(constraint (= (f "Vena Babiarz") "V.B.")) +(constraint (= (f "Karrie Lain") "K.L.")) +(constraint (= (f "Tobias Dermody") "T.D.")) +(constraint (= (f "Celsa Hopkins") "C.H.")) +(constraint (= (f "Kimberley Halpern") "K.H.")) +(constraint (= (f "Phillip Rowden") "P.R.")) +(constraint (= (f "Elias Neil") "E.N.")) +(constraint (= (f "Lashanda Cortes") "L.C.")) +(constraint (= (f "Mackenzie Spell") "M.S.")) +(constraint (= (f "Kathlyn Eccleston") "K.E.")) +(constraint (= (f "Georgina Brescia") "G.B.")) +(constraint (= (f "Beata Miah") "B.M.")) +(constraint (= (f "Desiree Seamons") "D.S.")) +(constraint (= (f "Jeanice Soderstrom") "J.S.")) +(constraint (= (f "Mariel Jurgens") "M.J.")) +(constraint (= (f "Alida Bogle") "A.B.")) +(constraint (= (f "Jacqualine Olague") "J.O.")) +(constraint (= (f "Joaquin Clasen") "J.C.")) +(constraint (= (f "Samuel Richert") "S.R.")) +(constraint (= (f "Malissa Marcus") "M.M.")) +(constraint (= (f "Alaina Partida") "A.P.")) +(constraint (= (f "Trinidad Mulloy") "T.M.")) +(constraint (= (f "Carlene Garrard") "C.G.")) +(constraint (= (f "Melodi Chism") "M.C.")) +(constraint (= (f "Bess Chilcott") "B.C.")) +(constraint (= (f "Chong Aylward") "C.A.")) +(constraint (= (f "Jani Ramthun") "J.R.")) +(constraint (= (f "Jacquiline Heintz") "J.H.")) +(constraint (= (f "Hayley Marquess") "H.M.")) +(constraint (= (f "Andria Spagnoli") "A.S.")) +(constraint (= (f "Irwin Covelli") "I.C.")) +(constraint (= (f "Gertude Montiel") "G.M.")) +(constraint (= (f "Stefany Reily") "S.R.")) +(constraint (= (f "Rae Mcgaughey") "R.M.")) +(constraint (= (f "Cruz Latimore") "C.L.")) +(constraint (= (f "Maryann Casler") "M.C.")) +(constraint (= (f "Annalisa Gregori") "A.G.")) +(constraint (= (f "Jenee Pannell") "J.P.")) + +(check-synth) diff --git a/data/sygus/initials.sl b/data/sygus/initials.sl new file mode 100644 index 0000000000000000000000000000000000000000..109d6b98c58c4fc05ac2f37785e373e199a53d45 --- /dev/null +++ b/data/sygus/initials.sl @@ -0,0 +1,30 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "Nancy FreeHafer") "N.F.")) +(constraint (= (f "Andrew Cencici") "A.C.")) +(constraint (= (f "Jan Kotas") "J.K.")) +(constraint (= (f "Mariya Sergienko") "M.S.")) + +(check-synth) diff --git a/data/sygus/initials_small.sl b/data/sygus/initials_small.sl new file mode 100644 index 0000000000000000000000000000000000000000..b27a6b012ca3b792580e80b494ce32b7f9051e41 --- /dev/null +++ b/data/sygus/initials_small.sl @@ -0,0 +1,27 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "Nancy FreeHafer") "N.F.")) +(constraint (= (f "Andrew Cencici") "A.C.")) +(constraint (= (f "Jan Kotas") "J.K.")) +(constraint (= (f "Mariya Sergienko") "M.S.")) + +(check-synth) diff --git a/data/sygus/lastname-long-repeat.sl b/data/sygus/lastname-long-repeat.sl new file mode 100644 index 0000000000000000000000000000000000000000..eeb850b500ffc36b910fb655bdbb4d54aa80db7b --- /dev/null +++ b/data/sygus/lastname-long-repeat.sl @@ -0,0 +1,230 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "Nancy FreeHafer") "FreeHafer")) +(constraint (= (f "Andrew Cencici") "Cencici")) +(constraint (= (f "Jan Kotas") "Kotas")) +(constraint (= (f "Mariya Sergienko") "Sergienko")) +(constraint (= (f "Launa Withers") "Withers")) +(constraint (= (f "Launa Withers") "Withers")) +(constraint (= (f "Launa Withers") "Withers")) +(constraint (= (f "Lakenya Edison") "Edison")) +(constraint (= (f "Lakenya Edison") "Edison")) +(constraint (= (f "Lakenya Edison") "Edison")) +(constraint (= (f "Brendan Hage") "Hage")) +(constraint (= (f "Brendan Hage") "Hage")) +(constraint (= (f "Brendan Hage") "Hage")) +(constraint (= (f "Bradford Lango") "Lango")) +(constraint (= (f "Bradford Lango") "Lango")) +(constraint (= (f "Bradford Lango") "Lango")) +(constraint (= (f "Rudolf Akiyama") "Akiyama")) +(constraint (= (f "Rudolf Akiyama") "Akiyama")) +(constraint (= (f "Rudolf Akiyama") "Akiyama")) +(constraint (= (f "Lara Constable") "Constable")) +(constraint (= (f "Lara Constable") "Constable")) +(constraint (= (f "Lara Constable") "Constable")) +(constraint (= (f "Madelaine Ghoston") "Ghoston")) +(constraint (= (f "Madelaine Ghoston") "Ghoston")) +(constraint (= (f "Madelaine Ghoston") "Ghoston")) +(constraint (= (f "Salley Hornak") "Hornak")) +(constraint (= (f "Salley Hornak") "Hornak")) +(constraint (= (f "Salley Hornak") "Hornak")) +(constraint (= (f "Micha Junkin") "Junkin")) +(constraint (= (f "Micha Junkin") "Junkin")) +(constraint (= (f "Micha Junkin") "Junkin")) +(constraint (= (f "Teddy Bobo") "Bobo")) +(constraint (= (f "Teddy Bobo") "Bobo")) +(constraint (= (f "Teddy Bobo") "Bobo")) +(constraint (= (f "Coralee Scalia") "Scalia")) +(constraint (= (f "Coralee Scalia") "Scalia")) +(constraint (= (f "Coralee Scalia") "Scalia")) +(constraint (= (f "Jeff Quashie") "Quashie")) +(constraint (= (f "Jeff Quashie") "Quashie")) +(constraint (= (f "Jeff Quashie") "Quashie")) +(constraint (= (f "Vena Babiarz") "Babiarz")) +(constraint (= (f "Vena Babiarz") "Babiarz")) +(constraint (= (f "Vena Babiarz") "Babiarz")) +(constraint (= (f "Karrie Lain") "Lain")) +(constraint (= (f "Karrie Lain") "Lain")) +(constraint (= (f "Karrie Lain") "Lain")) +(constraint (= (f "Tobias Dermody") "Dermody")) +(constraint (= (f "Tobias Dermody") "Dermody")) +(constraint (= (f "Tobias Dermody") "Dermody")) +(constraint (= (f "Celsa Hopkins") "Hopkins")) +(constraint (= (f "Celsa Hopkins") "Hopkins")) +(constraint (= (f "Celsa Hopkins") "Hopkins")) +(constraint (= (f "Kimberley Halpern") "Halpern")) +(constraint (= (f "Kimberley Halpern") "Halpern")) +(constraint (= (f "Kimberley Halpern") "Halpern")) +(constraint (= (f "Phillip Rowden") "Rowden")) +(constraint (= (f "Phillip Rowden") "Rowden")) +(constraint (= (f "Phillip Rowden") "Rowden")) +(constraint (= (f "Elias Neil") "Neil")) +(constraint (= (f "Elias Neil") "Neil")) +(constraint (= (f "Elias Neil") "Neil")) +(constraint (= (f "Lashanda Cortes") "Cortes")) +(constraint (= (f "Lashanda Cortes") "Cortes")) +(constraint (= (f "Lashanda Cortes") "Cortes")) +(constraint (= (f "Mackenzie Spell") "Spell")) +(constraint (= (f "Mackenzie Spell") "Spell")) +(constraint (= (f "Mackenzie Spell") "Spell")) +(constraint (= (f "Kathlyn Eccleston") "Eccleston")) +(constraint (= (f "Kathlyn Eccleston") "Eccleston")) +(constraint (= (f "Kathlyn Eccleston") "Eccleston")) +(constraint (= (f "Georgina Brescia") "Brescia")) +(constraint (= (f "Georgina Brescia") "Brescia")) +(constraint (= (f "Georgina Brescia") "Brescia")) +(constraint (= (f "Beata Miah") "Miah")) +(constraint (= (f "Beata Miah") "Miah")) +(constraint (= (f "Beata Miah") "Miah")) +(constraint (= (f "Desiree Seamons") "Seamons")) +(constraint (= (f "Desiree Seamons") "Seamons")) +(constraint (= (f "Desiree Seamons") "Seamons")) +(constraint (= (f "Jeanice Soderstrom") "Soderstrom")) +(constraint (= (f "Jeanice Soderstrom") "Soderstrom")) +(constraint (= (f "Jeanice Soderstrom") "Soderstrom")) +(constraint (= (f "Mariel Jurgens") "Jurgens")) +(constraint (= (f "Mariel Jurgens") "Jurgens")) +(constraint (= (f "Mariel Jurgens") "Jurgens")) +(constraint (= (f "Alida Bogle") "Bogle")) +(constraint (= (f "Alida Bogle") "Bogle")) +(constraint (= (f "Alida Bogle") "Bogle")) +(constraint (= (f "Jacqualine Olague") "Olague")) +(constraint (= (f "Jacqualine Olague") "Olague")) +(constraint (= (f "Jacqualine Olague") "Olague")) +(constraint (= (f "Joaquin Clasen") "Clasen")) +(constraint (= (f "Joaquin Clasen") "Clasen")) +(constraint (= (f "Joaquin Clasen") "Clasen")) +(constraint (= (f "Samuel Richert") "Richert")) +(constraint (= (f "Samuel Richert") "Richert")) +(constraint (= (f "Samuel Richert") "Richert")) +(constraint (= (f "Malissa Marcus") "Marcus")) +(constraint (= (f "Malissa Marcus") "Marcus")) +(constraint (= (f "Malissa Marcus") "Marcus")) +(constraint (= (f "Alaina Partida") "Partida")) +(constraint (= (f "Alaina Partida") "Partida")) +(constraint (= (f "Alaina Partida") "Partida")) +(constraint (= (f "Trinidad Mulloy") "Mulloy")) +(constraint (= (f "Trinidad Mulloy") "Mulloy")) +(constraint (= (f "Trinidad Mulloy") "Mulloy")) +(constraint (= (f "Carlene Garrard") "Garrard")) +(constraint (= (f "Carlene Garrard") "Garrard")) +(constraint (= (f "Carlene Garrard") "Garrard")) +(constraint (= (f "Melodi Chism") "Chism")) +(constraint (= (f "Melodi Chism") "Chism")) +(constraint (= (f "Melodi Chism") "Chism")) +(constraint (= (f "Bess Chilcott") "Chilcott")) +(constraint (= (f "Bess Chilcott") "Chilcott")) +(constraint (= (f "Bess Chilcott") "Chilcott")) +(constraint (= (f "Chong Aylward") "Aylward")) +(constraint (= (f "Chong Aylward") "Aylward")) +(constraint (= (f "Chong Aylward") "Aylward")) +(constraint (= (f "Jani Ramthun") "Ramthun")) +(constraint (= (f "Jani Ramthun") "Ramthun")) +(constraint (= (f "Jani Ramthun") "Ramthun")) +(constraint (= (f "Jacquiline Heintz") "Heintz")) +(constraint (= (f "Jacquiline Heintz") "Heintz")) +(constraint (= (f "Jacquiline Heintz") "Heintz")) +(constraint (= (f "Hayley Marquess") "Marquess")) +(constraint (= (f "Hayley Marquess") "Marquess")) +(constraint (= (f "Hayley Marquess") "Marquess")) +(constraint (= (f "Andria Spagnoli") "Spagnoli")) +(constraint (= (f "Andria Spagnoli") "Spagnoli")) +(constraint (= (f "Andria Spagnoli") "Spagnoli")) +(constraint (= (f "Irwin Covelli") "Covelli")) +(constraint (= (f "Irwin Covelli") "Covelli")) +(constraint (= (f "Irwin Covelli") "Covelli")) +(constraint (= (f "Gertude Montiel") "Montiel")) +(constraint (= (f "Gertude Montiel") "Montiel")) +(constraint (= (f "Gertude Montiel") "Montiel")) +(constraint (= (f "Stefany Reily") "Reily")) +(constraint (= (f "Stefany Reily") "Reily")) +(constraint (= (f "Stefany Reily") "Reily")) +(constraint (= (f "Rae Mcgaughey") "Mcgaughey")) +(constraint (= (f "Rae Mcgaughey") "Mcgaughey")) +(constraint (= (f "Rae Mcgaughey") "Mcgaughey")) +(constraint (= (f "Cruz Latimore") "Latimore")) +(constraint (= (f "Cruz Latimore") "Latimore")) +(constraint (= (f "Cruz Latimore") "Latimore")) +(constraint (= (f "Maryann Casler") "Casler")) +(constraint (= (f "Maryann Casler") "Casler")) +(constraint (= (f "Maryann Casler") "Casler")) +(constraint (= (f "Annalisa Gregori") "Gregori")) +(constraint (= (f "Annalisa Gregori") "Gregori")) +(constraint (= (f "Annalisa Gregori") "Gregori")) +(constraint (= (f "Jenee Pannell") "Pannell")) +(constraint (= (f "Jenee Pannell") "Pannell")) +(constraint (= (f "Jenee Pannell") "Pannell")) +(constraint (= (f "Launa Withers") "Withers")) +(constraint (= (f "Lakenya Edison") "Edison")) +(constraint (= (f "Brendan Hage") "Hage")) +(constraint (= (f "Bradford Lango") "Lango")) +(constraint (= (f "Rudolf Akiyama") "Akiyama")) +(constraint (= (f "Lara Constable") "Constable")) +(constraint (= (f "Madelaine Ghoston") "Ghoston")) +(constraint (= (f "Salley Hornak") "Hornak")) +(constraint (= (f "Micha Junkin") "Junkin")) +(constraint (= (f "Teddy Bobo") "Bobo")) +(constraint (= (f "Coralee Scalia") "Scalia")) +(constraint (= (f "Jeff Quashie") "Quashie")) +(constraint (= (f "Vena Babiarz") "Babiarz")) +(constraint (= (f "Karrie Lain") "Lain")) +(constraint (= (f "Tobias Dermody") "Dermody")) +(constraint (= (f "Celsa Hopkins") "Hopkins")) +(constraint (= (f "Kimberley Halpern") "Halpern")) +(constraint (= (f "Phillip Rowden") "Rowden")) +(constraint (= (f "Elias Neil") "Neil")) +(constraint (= (f "Lashanda Cortes") "Cortes")) +(constraint (= (f "Mackenzie Spell") "Spell")) +(constraint (= (f "Kathlyn Eccleston") "Eccleston")) +(constraint (= (f "Georgina Brescia") "Brescia")) +(constraint (= (f "Beata Miah") "Miah")) +(constraint (= (f "Desiree Seamons") "Seamons")) +(constraint (= (f "Jeanice Soderstrom") "Soderstrom")) +(constraint (= (f "Mariel Jurgens") "Jurgens")) +(constraint (= (f "Alida Bogle") "Bogle")) +(constraint (= (f "Jacqualine Olague") "Olague")) +(constraint (= (f "Joaquin Clasen") "Clasen")) +(constraint (= (f "Samuel Richert") "Richert")) +(constraint (= (f "Malissa Marcus") "Marcus")) +(constraint (= (f "Alaina Partida") "Partida")) +(constraint (= (f "Trinidad Mulloy") "Mulloy")) +(constraint (= (f "Carlene Garrard") "Garrard")) +(constraint (= (f "Melodi Chism") "Chism")) +(constraint (= (f "Bess Chilcott") "Chilcott")) +(constraint (= (f "Chong Aylward") "Aylward")) +(constraint (= (f "Jani Ramthun") "Ramthun")) +(constraint (= (f "Jacquiline Heintz") "Heintz")) +(constraint (= (f "Hayley Marquess") "Marquess")) +(constraint (= (f "Andria Spagnoli") "Spagnoli")) +(constraint (= (f "Irwin Covelli") "Covelli")) +(constraint (= (f "Gertude Montiel") "Montiel")) +(constraint (= (f "Stefany Reily") "Reily")) +(constraint (= (f "Rae Mcgaughey") "Mcgaughey")) +(constraint (= (f "Cruz Latimore") "Latimore")) +(constraint (= (f "Maryann Casler") "Casler")) +(constraint (= (f "Annalisa Gregori") "Gregori")) +(constraint (= (f "Jenee Pannell") "Pannell")) + +(check-synth) diff --git a/data/sygus/lastname-long.sl b/data/sygus/lastname-long.sl new file mode 100644 index 0000000000000000000000000000000000000000..d99d2138981580398a24f7124ced63f6a43bb519 --- /dev/null +++ b/data/sygus/lastname-long.sl @@ -0,0 +1,80 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "Nancy FreeHafer") "FreeHafer")) +(constraint (= (f "Andrew Cencici") "Cencici")) +(constraint (= (f "Jan Kotas") "Kotas")) +(constraint (= (f "Mariya Sergienko") "Sergienko")) +(constraint (= (f "Launa Withers") "Withers")) +(constraint (= (f "Lakenya Edison") "Edison")) +(constraint (= (f "Brendan Hage") "Hage")) +(constraint (= (f "Bradford Lango") "Lango")) +(constraint (= (f "Rudolf Akiyama") "Akiyama")) +(constraint (= (f "Lara Constable") "Constable")) +(constraint (= (f "Madelaine Ghoston") "Ghoston")) +(constraint (= (f "Salley Hornak") "Hornak")) +(constraint (= (f "Micha Junkin") "Junkin")) +(constraint (= (f "Teddy Bobo") "Bobo")) +(constraint (= (f "Coralee Scalia") "Scalia")) +(constraint (= (f "Jeff Quashie") "Quashie")) +(constraint (= (f "Vena Babiarz") "Babiarz")) +(constraint (= (f "Karrie Lain") "Lain")) +(constraint (= (f "Tobias Dermody") "Dermody")) +(constraint (= (f "Celsa Hopkins") "Hopkins")) +(constraint (= (f "Kimberley Halpern") "Halpern")) +(constraint (= (f "Phillip Rowden") "Rowden")) +(constraint (= (f "Elias Neil") "Neil")) +(constraint (= (f "Lashanda Cortes") "Cortes")) +(constraint (= (f "Mackenzie Spell") "Spell")) +(constraint (= (f "Kathlyn Eccleston") "Eccleston")) +(constraint (= (f "Georgina Brescia") "Brescia")) +(constraint (= (f "Beata Miah") "Miah")) +(constraint (= (f "Desiree Seamons") "Seamons")) +(constraint (= (f "Jeanice Soderstrom") "Soderstrom")) +(constraint (= (f "Mariel Jurgens") "Jurgens")) +(constraint (= (f "Alida Bogle") "Bogle")) +(constraint (= (f "Jacqualine Olague") "Olague")) +(constraint (= (f "Joaquin Clasen") "Clasen")) +(constraint (= (f "Samuel Richert") "Richert")) +(constraint (= (f "Malissa Marcus") "Marcus")) +(constraint (= (f "Alaina Partida") "Partida")) +(constraint (= (f "Trinidad Mulloy") "Mulloy")) +(constraint (= (f "Carlene Garrard") "Garrard")) +(constraint (= (f "Melodi Chism") "Chism")) +(constraint (= (f "Bess Chilcott") "Chilcott")) +(constraint (= (f "Chong Aylward") "Aylward")) +(constraint (= (f "Jani Ramthun") "Ramthun")) +(constraint (= (f "Jacquiline Heintz") "Heintz")) +(constraint (= (f "Hayley Marquess") "Marquess")) +(constraint (= (f "Andria Spagnoli") "Spagnoli")) +(constraint (= (f "Irwin Covelli") "Covelli")) +(constraint (= (f "Gertude Montiel") "Montiel")) +(constraint (= (f "Stefany Reily") "Reily")) +(constraint (= (f "Rae Mcgaughey") "Mcgaughey")) +(constraint (= (f "Cruz Latimore") "Latimore")) +(constraint (= (f "Maryann Casler") "Casler")) +(constraint (= (f "Annalisa Gregori") "Gregori")) +(constraint (= (f "Jenee Pannell") "Pannell")) + +(check-synth) diff --git a/data/sygus/lastname.sl b/data/sygus/lastname.sl new file mode 100644 index 0000000000000000000000000000000000000000..7ea669087f1ad6e449678a325fb25c15b16d0839 --- /dev/null +++ b/data/sygus/lastname.sl @@ -0,0 +1,30 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "Nancy FreeHafer") "FreeHafer")) +(constraint (= (f "Andrew Cencici") "Cencici")) +(constraint (= (f "Jan Kotas") "Kotas")) +(constraint (= (f "Mariya Sergienko") "Sergienko")) + +(check-synth) diff --git a/data/sygus/lastname_small.sl b/data/sygus/lastname_small.sl new file mode 100644 index 0000000000000000000000000000000000000000..81df2c3dc0c068befe988363f7f1e55806d2ac2f --- /dev/null +++ b/data/sygus/lastname_small.sl @@ -0,0 +1,27 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "Nancy FreeHafer") "FreeHafer")) +(constraint (= (f "Andrew Cencici") "Cencici")) +(constraint (= (f "Jan Kotas") "Kotas")) +(constraint (= (f "Mariya Sergienko") "Sergienko")) + +(check-synth) diff --git a/data/sygus/max3.sl b/data/sygus/max3.sl new file mode 100644 index 0000000000000000000000000000000000000000..19ce484379ac8e58c7ae79b46727a38f719bebc1 --- /dev/null +++ b/data/sygus/max3.sl @@ -0,0 +1,34 @@ +; max3.sl +; Synthesize the maximum of 3 integers, from a purely declarative spec + +(set-logic LIA) + +(synth-fun max3 ((x Int) (y Int) (z Int)) Int + ((Start Int (x + y + z + 0 + 1 + (+ Start Start) + (- Start Start) + (ite StartBool Start Start))) + (StartBool Bool ((and StartBool StartBool) + (or StartBool StartBool) + (not StartBool) + (<= Start Start) + (= Start Start) + (>= Start Start))))) + +(declare-var x Int) +(declare-var y Int) +(declare-var z Int) + +(constraint (>= (max3 x y z) x)) +(constraint (>= (max3 x y z) y)) +(constraint (>= (max3 x y z) z)) +(constraint (or (= x (max3 x y z)) + (or (= y (max3 x y z)) + (= z (max3 x y z))))) + +(check-synth) + diff --git a/data/sygus/name-combine-2-long-repeat.sl b/data/sygus/name-combine-2-long-repeat.sl new file mode 100644 index 0000000000000000000000000000000000000000..b8b0cc7d55972ae0549e7b57f3ac102bfe99ba25 --- /dev/null +++ b/data/sygus/name-combine-2-long-repeat.sl @@ -0,0 +1,231 @@ +(set-logic SLIA) + +(synth-fun f ((firstname String) (lastname String)) String + ((Start String (ntString)) + (ntString String (firstname lastname " " "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var firstname String) +(declare-var lastname String) + +(constraint (= (f "Nancy" "FreeHafer") "Nancy F.")) +(constraint (= (f "Andrew" "Cencici") "Andrew C.")) +(constraint (= (f "Jan" "Kotas") "Jan K.")) +(constraint (= (f "Mariya" "Sergienko") "Mariya S.")) +(constraint (= (f "Launa" "Withers") "Launa W.")) +(constraint (= (f "Launa" "Withers") "Launa W.")) +(constraint (= (f "Launa" "Withers") "Launa W.")) +(constraint (= (f "Lakenya" "Edison") "Lakenya E.")) +(constraint (= (f "Lakenya" "Edison") "Lakenya E.")) +(constraint (= (f "Lakenya" "Edison") "Lakenya E.")) +(constraint (= (f "Brendan" "Hage") "Brendan H.")) +(constraint (= (f "Brendan" "Hage") "Brendan H.")) +(constraint (= (f "Brendan" "Hage") "Brendan H.")) +(constraint (= (f "Bradford" "Lango") "Bradford L.")) +(constraint (= (f "Bradford" "Lango") "Bradford L.")) +(constraint (= (f "Bradford" "Lango") "Bradford L.")) +(constraint (= (f "Rudolf" "Akiyama") "Rudolf A.")) +(constraint (= (f "Rudolf" "Akiyama") "Rudolf A.")) +(constraint (= (f "Rudolf" "Akiyama") "Rudolf A.")) +(constraint (= (f "Lara" "Constable") "Lara C.")) +(constraint (= (f "Lara" "Constable") "Lara C.")) +(constraint (= (f "Lara" "Constable") "Lara C.")) +(constraint (= (f "Madelaine" "Ghoston") "Madelaine G.")) +(constraint (= (f "Madelaine" "Ghoston") "Madelaine G.")) +(constraint (= (f "Madelaine" "Ghoston") "Madelaine G.")) +(constraint (= (f "Salley" "Hornak") "Salley H.")) +(constraint (= (f "Salley" "Hornak") "Salley H.")) +(constraint (= (f "Salley" "Hornak") "Salley H.")) +(constraint (= (f "Micha" "Junkin") "Micha J.")) +(constraint (= (f "Micha" "Junkin") "Micha J.")) +(constraint (= (f "Micha" "Junkin") "Micha J.")) +(constraint (= (f "Teddy" "Bobo") "Teddy B.")) +(constraint (= (f "Teddy" "Bobo") "Teddy B.")) +(constraint (= (f "Teddy" "Bobo") "Teddy B.")) +(constraint (= (f "Coralee" "Scalia") "Coralee S.")) +(constraint (= (f "Coralee" "Scalia") "Coralee S.")) +(constraint (= (f "Coralee" "Scalia") "Coralee S.")) +(constraint (= (f "Jeff" "Quashie") "Jeff Q.")) +(constraint (= (f "Jeff" "Quashie") "Jeff Q.")) +(constraint (= (f "Jeff" "Quashie") "Jeff Q.")) +(constraint (= (f "Vena" "Babiarz") "Vena B.")) +(constraint (= (f "Vena" "Babiarz") "Vena B.")) +(constraint (= (f "Vena" "Babiarz") "Vena B.")) +(constraint (= (f "Karrie" "Lain") "Karrie L.")) +(constraint (= (f "Karrie" "Lain") "Karrie L.")) +(constraint (= (f "Karrie" "Lain") "Karrie L.")) +(constraint (= (f "Tobias" "Dermody") "Tobias D.")) +(constraint (= (f "Tobias" "Dermody") "Tobias D.")) +(constraint (= (f "Tobias" "Dermody") "Tobias D.")) +(constraint (= (f "Celsa" "Hopkins") "Celsa H.")) +(constraint (= (f "Celsa" "Hopkins") "Celsa H.")) +(constraint (= (f "Celsa" "Hopkins") "Celsa H.")) +(constraint (= (f "Kimberley" "Halpern") "Kimberley H.")) +(constraint (= (f "Kimberley" "Halpern") "Kimberley H.")) +(constraint (= (f "Kimberley" "Halpern") "Kimberley H.")) +(constraint (= (f "Phillip" "Rowden") "Phillip R.")) +(constraint (= (f "Phillip" "Rowden") "Phillip R.")) +(constraint (= (f "Phillip" "Rowden") "Phillip R.")) +(constraint (= (f "Elias" "Neil") "Elias N.")) +(constraint (= (f "Elias" "Neil") "Elias N.")) +(constraint (= (f "Elias" "Neil") "Elias N.")) +(constraint (= (f "Lashanda" "Cortes") "Lashanda C.")) +(constraint (= (f "Lashanda" "Cortes") "Lashanda C.")) +(constraint (= (f "Lashanda" "Cortes") "Lashanda C.")) +(constraint (= (f "Mackenzie" "Spell") "Mackenzie S.")) +(constraint (= (f "Mackenzie" "Spell") "Mackenzie S.")) +(constraint (= (f "Mackenzie" "Spell") "Mackenzie S.")) +(constraint (= (f "Kathlyn" "Eccleston") "Kathlyn E.")) +(constraint (= (f "Kathlyn" "Eccleston") "Kathlyn E.")) +(constraint (= (f "Kathlyn" "Eccleston") "Kathlyn E.")) +(constraint (= (f "Georgina" "Brescia") "Georgina B.")) +(constraint (= (f "Georgina" "Brescia") "Georgina B.")) +(constraint (= (f "Georgina" "Brescia") "Georgina B.")) +(constraint (= (f "Beata" "Miah") "Beata M.")) +(constraint (= (f "Beata" "Miah") "Beata M.")) +(constraint (= (f "Beata" "Miah") "Beata M.")) +(constraint (= (f "Desiree" "Seamons") "Desiree S.")) +(constraint (= (f "Desiree" "Seamons") "Desiree S.")) +(constraint (= (f "Desiree" "Seamons") "Desiree S.")) +(constraint (= (f "Jeanice" "Soderstrom") "Jeanice S.")) +(constraint (= (f "Jeanice" "Soderstrom") "Jeanice S.")) +(constraint (= (f "Jeanice" "Soderstrom") "Jeanice S.")) +(constraint (= (f "Mariel" "Jurgens") "Mariel J.")) +(constraint (= (f "Mariel" "Jurgens") "Mariel J.")) +(constraint (= (f "Mariel" "Jurgens") "Mariel J.")) +(constraint (= (f "Alida" "Bogle") "Alida B.")) +(constraint (= (f "Alida" "Bogle") "Alida B.")) +(constraint (= (f "Alida" "Bogle") "Alida B.")) +(constraint (= (f "Jacqualine" "Olague") "Jacqualine O.")) +(constraint (= (f "Jacqualine" "Olague") "Jacqualine O.")) +(constraint (= (f "Jacqualine" "Olague") "Jacqualine O.")) +(constraint (= (f "Joaquin" "Clasen") "Joaquin C.")) +(constraint (= (f "Joaquin" "Clasen") "Joaquin C.")) +(constraint (= (f "Joaquin" "Clasen") "Joaquin C.")) +(constraint (= (f "Samuel" "Richert") "Samuel R.")) +(constraint (= (f "Samuel" "Richert") "Samuel R.")) +(constraint (= (f "Samuel" "Richert") "Samuel R.")) +(constraint (= (f "Malissa" "Marcus") "Malissa M.")) +(constraint (= (f "Malissa" "Marcus") "Malissa M.")) +(constraint (= (f "Malissa" "Marcus") "Malissa M.")) +(constraint (= (f "Alaina" "Partida") "Alaina P.")) +(constraint (= (f "Alaina" "Partida") "Alaina P.")) +(constraint (= (f "Alaina" "Partida") "Alaina P.")) +(constraint (= (f "Trinidad" "Mulloy") "Trinidad M.")) +(constraint (= (f "Trinidad" "Mulloy") "Trinidad M.")) +(constraint (= (f "Trinidad" "Mulloy") "Trinidad M.")) +(constraint (= (f "Carlene" "Garrard") "Carlene G.")) +(constraint (= (f "Carlene" "Garrard") "Carlene G.")) +(constraint (= (f "Carlene" "Garrard") "Carlene G.")) +(constraint (= (f "Melodi" "Chism") "Melodi C.")) +(constraint (= (f "Melodi" "Chism") "Melodi C.")) +(constraint (= (f "Melodi" "Chism") "Melodi C.")) +(constraint (= (f "Bess" "Chilcott") "Bess C.")) +(constraint (= (f "Bess" "Chilcott") "Bess C.")) +(constraint (= (f "Bess" "Chilcott") "Bess C.")) +(constraint (= (f "Chong" "Aylward") "Chong A.")) +(constraint (= (f "Chong" "Aylward") "Chong A.")) +(constraint (= (f "Chong" "Aylward") "Chong A.")) +(constraint (= (f "Jani" "Ramthun") "Jani R.")) +(constraint (= (f "Jani" "Ramthun") "Jani R.")) +(constraint (= (f "Jani" "Ramthun") "Jani R.")) +(constraint (= (f "Jacquiline" "Heintz") "Jacquiline H.")) +(constraint (= (f "Jacquiline" "Heintz") "Jacquiline H.")) +(constraint (= (f "Jacquiline" "Heintz") "Jacquiline H.")) +(constraint (= (f "Hayley" "Marquess") "Hayley M.")) +(constraint (= (f "Hayley" "Marquess") "Hayley M.")) +(constraint (= (f "Hayley" "Marquess") "Hayley M.")) +(constraint (= (f "Andria" "Spagnoli") "Andria S.")) +(constraint (= (f "Andria" "Spagnoli") "Andria S.")) +(constraint (= (f "Andria" "Spagnoli") "Andria S.")) +(constraint (= (f "Irwin" "Covelli") "Irwin C.")) +(constraint (= (f "Irwin" "Covelli") "Irwin C.")) +(constraint (= (f "Irwin" "Covelli") "Irwin C.")) +(constraint (= (f "Gertude" "Montiel") "Gertude M.")) +(constraint (= (f "Gertude" "Montiel") "Gertude M.")) +(constraint (= (f "Gertude" "Montiel") "Gertude M.")) +(constraint (= (f "Stefany" "Reily") "Stefany R.")) +(constraint (= (f "Stefany" "Reily") "Stefany R.")) +(constraint (= (f "Stefany" "Reily") "Stefany R.")) +(constraint (= (f "Rae" "Mcgaughey") "Rae M.")) +(constraint (= (f "Rae" "Mcgaughey") "Rae M.")) +(constraint (= (f "Rae" "Mcgaughey") "Rae M.")) +(constraint (= (f "Cruz" "Latimore") "Cruz L.")) +(constraint (= (f "Cruz" "Latimore") "Cruz L.")) +(constraint (= (f "Cruz" "Latimore") "Cruz L.")) +(constraint (= (f "Maryann" "Casler") "Maryann C.")) +(constraint (= (f "Maryann" "Casler") "Maryann C.")) +(constraint (= (f "Maryann" "Casler") "Maryann C.")) +(constraint (= (f "Annalisa" "Gregori") "Annalisa G.")) +(constraint (= (f "Annalisa" "Gregori") "Annalisa G.")) +(constraint (= (f "Annalisa" "Gregori") "Annalisa G.")) +(constraint (= (f "Jenee" "Pannell") "Jenee P.")) +(constraint (= (f "Jenee" "Pannell") "Jenee P.")) +(constraint (= (f "Jenee" "Pannell") "Jenee P.")) +(constraint (= (f "Launa" "Withers") "Launa W.")) +(constraint (= (f "Lakenya" "Edison") "Lakenya E.")) +(constraint (= (f "Brendan" "Hage") "Brendan H.")) +(constraint (= (f "Bradford" "Lango") "Bradford L.")) +(constraint (= (f "Rudolf" "Akiyama") "Rudolf A.")) +(constraint (= (f "Lara" "Constable") "Lara C.")) +(constraint (= (f "Madelaine" "Ghoston") "Madelaine G.")) +(constraint (= (f "Salley" "Hornak") "Salley H.")) +(constraint (= (f "Micha" "Junkin") "Micha J.")) +(constraint (= (f "Teddy" "Bobo") "Teddy B.")) +(constraint (= (f "Coralee" "Scalia") "Coralee S.")) +(constraint (= (f "Jeff" "Quashie") "Jeff Q.")) +(constraint (= (f "Vena" "Babiarz") "Vena B.")) +(constraint (= (f "Karrie" "Lain") "Karrie L.")) +(constraint (= (f "Tobias" "Dermody") "Tobias D.")) +(constraint (= (f "Celsa" "Hopkins") "Celsa H.")) +(constraint (= (f "Kimberley" "Halpern") "Kimberley H.")) +(constraint (= (f "Phillip" "Rowden") "Phillip R.")) +(constraint (= (f "Elias" "Neil") "Elias N.")) +(constraint (= (f "Lashanda" "Cortes") "Lashanda C.")) +(constraint (= (f "Mackenzie" "Spell") "Mackenzie S.")) +(constraint (= (f "Kathlyn" "Eccleston") "Kathlyn E.")) +(constraint (= (f "Georgina" "Brescia") "Georgina B.")) +(constraint (= (f "Beata" "Miah") "Beata M.")) +(constraint (= (f "Desiree" "Seamons") "Desiree S.")) +(constraint (= (f "Jeanice" "Soderstrom") "Jeanice S.")) +(constraint (= (f "Mariel" "Jurgens") "Mariel J.")) +(constraint (= (f "Alida" "Bogle") "Alida B.")) +(constraint (= (f "Jacqualine" "Olague") "Jacqualine O.")) +(constraint (= (f "Joaquin" "Clasen") "Joaquin C.")) +(constraint (= (f "Samuel" "Richert") "Samuel R.")) +(constraint (= (f "Malissa" "Marcus") "Malissa M.")) +(constraint (= (f "Alaina" "Partida") "Alaina P.")) +(constraint (= (f "Trinidad" "Mulloy") "Trinidad M.")) +(constraint (= (f "Carlene" "Garrard") "Carlene G.")) +(constraint (= (f "Melodi" "Chism") "Melodi C.")) +(constraint (= (f "Bess" "Chilcott") "Bess C.")) +(constraint (= (f "Chong" "Aylward") "Chong A.")) +(constraint (= (f "Jani" "Ramthun") "Jani R.")) +(constraint (= (f "Jacquiline" "Heintz") "Jacquiline H.")) +(constraint (= (f "Hayley" "Marquess") "Hayley M.")) +(constraint (= (f "Andria" "Spagnoli") "Andria S.")) +(constraint (= (f "Irwin" "Covelli") "Irwin C.")) +(constraint (= (f "Gertude" "Montiel") "Gertude M.")) +(constraint (= (f "Stefany" "Reily") "Stefany R.")) +(constraint (= (f "Rae" "Mcgaughey") "Rae M.")) +(constraint (= (f "Cruz" "Latimore") "Cruz L.")) +(constraint (= (f "Maryann" "Casler") "Maryann C.")) +(constraint (= (f "Annalisa" "Gregori") "Annalisa G.")) +(constraint (= (f "Jenee" "Pannell") "Jenee P.")) + +(check-synth) diff --git a/data/sygus/name-combine-2-long.sl b/data/sygus/name-combine-2-long.sl new file mode 100644 index 0000000000000000000000000000000000000000..a14df1ae4fd0bd8840aeb5f6afb8b74920547b30 --- /dev/null +++ b/data/sygus/name-combine-2-long.sl @@ -0,0 +1,82 @@ +(set-logic SLIA) + +(synth-fun f ((firstname String) (lastname String)) String + ((Start String (ntString)) + (ntString String (firstname lastname " " "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var firstname String) +(declare-var lastname String) + + +(constraint (= (f "Nancy" "FreeHafer") "Nancy F.")) +(constraint (= (f "Andrew" "Cencici") "Andrew C.")) +(constraint (= (f "Jan" "Kotas") "Jan K.")) +(constraint (= (f "Mariya" "Sergienko") "Mariya S.")) +(constraint (= (f "Launa" "Withers") "Launa W.")) +(constraint (= (f "Lakenya" "Edison") "Lakenya E.")) +(constraint (= (f "Brendan" "Hage") "Brendan H.")) +(constraint (= (f "Bradford" "Lango") "Bradford L.")) +(constraint (= (f "Rudolf" "Akiyama") "Rudolf A.")) +(constraint (= (f "Lara" "Constable") "Lara C.")) +(constraint (= (f "Madelaine" "Ghoston") "Madelaine G.")) +(constraint (= (f "Salley" "Hornak") "Salley H.")) +(constraint (= (f "Micha" "Junkin") "Micha J.")) +(constraint (= (f "Teddy" "Bobo") "Teddy B.")) +(constraint (= (f "Coralee" "Scalia") "Coralee S.")) +(constraint (= (f "Jeff" "Quashie") "Jeff Q.")) +(constraint (= (f "Vena" "Babiarz") "Vena B.")) +(constraint (= (f "Karrie" "Lain") "Karrie L.")) +(constraint (= (f "Tobias" "Dermody") "Tobias D.")) +(constraint (= (f "Celsa" "Hopkins") "Celsa H.")) +(constraint (= (f "Kimberley" "Halpern") "Kimberley H.")) +(constraint (= (f "Phillip" "Rowden") "Phillip R.")) +(constraint (= (f "Elias" "Neil") "Elias N.")) +(constraint (= (f "Lashanda" "Cortes") "Lashanda C.")) +(constraint (= (f "Mackenzie" "Spell") "Mackenzie S.")) +(constraint (= (f "Kathlyn" "Eccleston") "Kathlyn E.")) +(constraint (= (f "Georgina" "Brescia") "Georgina B.")) +(constraint (= (f "Beata" "Miah") "Beata M.")) +(constraint (= (f "Desiree" "Seamons") "Desiree S.")) +(constraint (= (f "Jeanice" "Soderstrom") "Jeanice S.")) +(constraint (= (f "Mariel" "Jurgens") "Mariel J.")) +(constraint (= (f "Alida" "Bogle") "Alida B.")) +(constraint (= (f "Jacqualine" "Olague") "Jacqualine O.")) +(constraint (= (f "Joaquin" "Clasen") "Joaquin C.")) +(constraint (= (f "Samuel" "Richert") "Samuel R.")) +(constraint (= (f "Malissa" "Marcus") "Malissa M.")) +(constraint (= (f "Alaina" "Partida") "Alaina P.")) +(constraint (= (f "Trinidad" "Mulloy") "Trinidad M.")) +(constraint (= (f "Carlene" "Garrard") "Carlene G.")) +(constraint (= (f "Melodi" "Chism") "Melodi C.")) +(constraint (= (f "Bess" "Chilcott") "Bess C.")) +(constraint (= (f "Chong" "Aylward") "Chong A.")) +(constraint (= (f "Jani" "Ramthun") "Jani R.")) +(constraint (= (f "Jacquiline" "Heintz") "Jacquiline H.")) +(constraint (= (f "Hayley" "Marquess") "Hayley M.")) +(constraint (= (f "Andria" "Spagnoli") "Andria S.")) +(constraint (= (f "Irwin" "Covelli") "Irwin C.")) +(constraint (= (f "Gertude" "Montiel") "Gertude M.")) +(constraint (= (f "Stefany" "Reily") "Stefany R.")) +(constraint (= (f "Rae" "Mcgaughey") "Rae M.")) +(constraint (= (f "Cruz" "Latimore") "Cruz L.")) +(constraint (= (f "Maryann" "Casler") "Maryann C.")) +(constraint (= (f "Annalisa" "Gregori") "Annalisa G.")) +(constraint (= (f "Jenee" "Pannell") "Jenee P.")) + +(check-synth) diff --git a/data/sygus/name-combine-2.sl b/data/sygus/name-combine-2.sl new file mode 100644 index 0000000000000000000000000000000000000000..bf770482b723e49f8959dd8e4f58335710ed4aae --- /dev/null +++ b/data/sygus/name-combine-2.sl @@ -0,0 +1,29 @@ +(set-logic SLIA) + +(synth-fun f ((firstname String) (lastname String)) String + ((Start String (ntString)) + (ntString String (firstname lastname " " "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString))))) + + +(declare-var firstname String) +(declare-var lastname String) + + +(constraint (= (f "Nancy" "FreeHafer") "Nancy F.")) +(constraint (= (f "Andrew" "Cencici") "Andrew C.")) +(constraint (= (f "Jan" "Kotas") "Jan K.")) +(constraint (= (f "Mariya" "Sergienko") "Mariya S.")) + +(check-synth) diff --git a/data/sygus/name-combine-2_short.sl b/data/sygus/name-combine-2_short.sl new file mode 100644 index 0000000000000000000000000000000000000000..9489ea776585a3e3533fe4704081b81bcbab8a64 --- /dev/null +++ b/data/sygus/name-combine-2_short.sl @@ -0,0 +1,32 @@ +(set-logic SLIA) + +(synth-fun f ((firstname String) (lastname String)) String + ((Start String (ntString)) + (ntString String (firstname lastname " " "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var firstname String) +(declare-var lastname String) + + +(constraint (= (f "Nancy" "FreeHafer") "Nancy F.")) +(constraint (= (f "Andrew" "Cencici") "Andrew C.")) +(constraint (= (f "Jan" "Kotas") "Jan K.")) +(constraint (= (f "Mariya" "Sergienko") "Mariya S.")) + +(check-synth) diff --git a/data/sygus/name-combine-3-long-repeat.sl b/data/sygus/name-combine-3-long-repeat.sl new file mode 100644 index 0000000000000000000000000000000000000000..9c5834a59eacff3d623321e76a20232983d6ca7f --- /dev/null +++ b/data/sygus/name-combine-3-long-repeat.sl @@ -0,0 +1,228 @@ +(set-logic SLIA) + +(synth-fun f ((firstname String) (lastname String)) String + ((Start String (ntString)) + (ntString String (firstname lastname " " "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var firstname String) +(declare-var lastname String) + +(constraint (= (f "Launa" "Withers") "L. Withers")) +(constraint (= (f "Launa" "Withers") "L. Withers")) +(constraint (= (f "Launa" "Withers") "L. Withers")) +(constraint (= (f "Lakenya" "Edison") "L. Edison")) +(constraint (= (f "Lakenya" "Edison") "L. Edison")) +(constraint (= (f "Lakenya" "Edison") "L. Edison")) +(constraint (= (f "Brendan" "Hage") "B. Hage")) +(constraint (= (f "Brendan" "Hage") "B. Hage")) +(constraint (= (f "Brendan" "Hage") "B. Hage")) +(constraint (= (f "Bradford" "Lango") "B. Lango")) +(constraint (= (f "Bradford" "Lango") "B. Lango")) +(constraint (= (f "Bradford" "Lango") "B. Lango")) +(constraint (= (f "Rudolf" "Akiyama") "R. Akiyama")) +(constraint (= (f "Rudolf" "Akiyama") "R. Akiyama")) +(constraint (= (f "Rudolf" "Akiyama") "R. Akiyama")) +(constraint (= (f "Lara" "Constable") "L. Constable")) +(constraint (= (f "Lara" "Constable") "L. Constable")) +(constraint (= (f "Lara" "Constable") "L. Constable")) +(constraint (= (f "Madelaine" "Ghoston") "M. Ghoston")) +(constraint (= (f "Madelaine" "Ghoston") "M. Ghoston")) +(constraint (= (f "Madelaine" "Ghoston") "M. Ghoston")) +(constraint (= (f "Salley" "Hornak") "S. Hornak")) +(constraint (= (f "Salley" "Hornak") "S. Hornak")) +(constraint (= (f "Salley" "Hornak") "S. Hornak")) +(constraint (= (f "Micha" "Junkin") "M. Junkin")) +(constraint (= (f "Micha" "Junkin") "M. Junkin")) +(constraint (= (f "Micha" "Junkin") "M. Junkin")) +(constraint (= (f "Teddy" "Bobo") "T. Bobo")) +(constraint (= (f "Teddy" "Bobo") "T. Bobo")) +(constraint (= (f "Teddy" "Bobo") "T. Bobo")) +(constraint (= (f "Coralee" "Scalia") "C. Scalia")) +(constraint (= (f "Coralee" "Scalia") "C. Scalia")) +(constraint (= (f "Coralee" "Scalia") "C. Scalia")) +(constraint (= (f "Jeff" "Quashie") "J. Quashie")) +(constraint (= (f "Jeff" "Quashie") "J. Quashie")) +(constraint (= (f "Jeff" "Quashie") "J. Quashie")) +(constraint (= (f "Vena" "Babiarz") "V. Babiarz")) +(constraint (= (f "Vena" "Babiarz") "V. Babiarz")) +(constraint (= (f "Vena" "Babiarz") "V. Babiarz")) +(constraint (= (f "Karrie" "Lain") "K. Lain")) +(constraint (= (f "Karrie" "Lain") "K. Lain")) +(constraint (= (f "Karrie" "Lain") "K. Lain")) +(constraint (= (f "Tobias" "Dermody") "T. Dermody")) +(constraint (= (f "Tobias" "Dermody") "T. Dermody")) +(constraint (= (f "Tobias" "Dermody") "T. Dermody")) +(constraint (= (f "Celsa" "Hopkins") "C. Hopkins")) +(constraint (= (f "Celsa" "Hopkins") "C. Hopkins")) +(constraint (= (f "Celsa" "Hopkins") "C. Hopkins")) +(constraint (= (f "Kimberley" "Halpern") "K. Halpern")) +(constraint (= (f "Kimberley" "Halpern") "K. Halpern")) +(constraint (= (f "Kimberley" "Halpern") "K. Halpern")) +(constraint (= (f "Phillip" "Rowden") "P. Rowden")) +(constraint (= (f "Phillip" "Rowden") "P. Rowden")) +(constraint (= (f "Phillip" "Rowden") "P. Rowden")) +(constraint (= (f "Elias" "Neil") "E. Neil")) +(constraint (= (f "Elias" "Neil") "E. Neil")) +(constraint (= (f "Elias" "Neil") "E. Neil")) +(constraint (= (f "Lashanda" "Cortes") "L. Cortes")) +(constraint (= (f "Lashanda" "Cortes") "L. Cortes")) +(constraint (= (f "Lashanda" "Cortes") "L. Cortes")) +(constraint (= (f "Mackenzie" "Spell") "M. Spell")) +(constraint (= (f "Mackenzie" "Spell") "M. Spell")) +(constraint (= (f "Mackenzie" "Spell") "M. Spell")) +(constraint (= (f "Kathlyn" "Eccleston") "K. Eccleston")) +(constraint (= (f "Kathlyn" "Eccleston") "K. Eccleston")) +(constraint (= (f "Kathlyn" "Eccleston") "K. Eccleston")) +(constraint (= (f "Georgina" "Brescia") "G. Brescia")) +(constraint (= (f "Georgina" "Brescia") "G. Brescia")) +(constraint (= (f "Georgina" "Brescia") "G. Brescia")) +(constraint (= (f "Beata" "Miah") "B. Miah")) +(constraint (= (f "Beata" "Miah") "B. Miah")) +(constraint (= (f "Beata" "Miah") "B. Miah")) +(constraint (= (f "Desiree" "Seamons") "D. Seamons")) +(constraint (= (f "Desiree" "Seamons") "D. Seamons")) +(constraint (= (f "Desiree" "Seamons") "D. Seamons")) +(constraint (= (f "Jeanice" "Soderstrom") "J. Soderstrom")) +(constraint (= (f "Jeanice" "Soderstrom") "J. Soderstrom")) +(constraint (= (f "Jeanice" "Soderstrom") "J. Soderstrom")) +(constraint (= (f "Mariel" "Jurgens") "M. Jurgens")) +(constraint (= (f "Mariel" "Jurgens") "M. Jurgens")) +(constraint (= (f "Mariel" "Jurgens") "M. Jurgens")) +(constraint (= (f "Alida" "Bogle") "A. Bogle")) +(constraint (= (f "Alida" "Bogle") "A. Bogle")) +(constraint (= (f "Alida" "Bogle") "A. Bogle")) +(constraint (= (f "Jacqualine" "Olague") "J. Olague")) +(constraint (= (f "Jacqualine" "Olague") "J. Olague")) +(constraint (= (f "Jacqualine" "Olague") "J. Olague")) +(constraint (= (f "Joaquin" "Clasen") "J. Clasen")) +(constraint (= (f "Joaquin" "Clasen") "J. Clasen")) +(constraint (= (f "Joaquin" "Clasen") "J. Clasen")) +(constraint (= (f "Samuel" "Richert") "S. Richert")) +(constraint (= (f "Samuel" "Richert") "S. Richert")) +(constraint (= (f "Samuel" "Richert") "S. Richert")) +(constraint (= (f "Malissa" "Marcus") "M. Marcus")) +(constraint (= (f "Malissa" "Marcus") "M. Marcus")) +(constraint (= (f "Malissa" "Marcus") "M. Marcus")) +(constraint (= (f "Alaina" "Partida") "A. Partida")) +(constraint (= (f "Alaina" "Partida") "A. Partida")) +(constraint (= (f "Alaina" "Partida") "A. Partida")) +(constraint (= (f "Trinidad" "Mulloy") "T. Mulloy")) +(constraint (= (f "Trinidad" "Mulloy") "T. Mulloy")) +(constraint (= (f "Trinidad" "Mulloy") "T. Mulloy")) +(constraint (= (f "Carlene" "Garrard") "C. Garrard")) +(constraint (= (f "Carlene" "Garrard") "C. Garrard")) +(constraint (= (f "Carlene" "Garrard") "C. Garrard")) +(constraint (= (f "Melodi" "Chism") "M. Chism")) +(constraint (= (f "Melodi" "Chism") "M. Chism")) +(constraint (= (f "Melodi" "Chism") "M. Chism")) +(constraint (= (f "Bess" "Chilcott") "B. Chilcott")) +(constraint (= (f "Bess" "Chilcott") "B. Chilcott")) +(constraint (= (f "Bess" "Chilcott") "B. Chilcott")) +(constraint (= (f "Chong" "Aylward") "C. Aylward")) +(constraint (= (f "Chong" "Aylward") "C. Aylward")) +(constraint (= (f "Chong" "Aylward") "C. Aylward")) +(constraint (= (f "Jani" "Ramthun") "J. Ramthun")) +(constraint (= (f "Jani" "Ramthun") "J. Ramthun")) +(constraint (= (f "Jani" "Ramthun") "J. Ramthun")) +(constraint (= (f "Jacquiline" "Heintz") "J. Heintz")) +(constraint (= (f "Jacquiline" "Heintz") "J. Heintz")) +(constraint (= (f "Jacquiline" "Heintz") "J. Heintz")) +(constraint (= (f "Hayley" "Marquess") "H. Marquess")) +(constraint (= (f "Hayley" "Marquess") "H. Marquess")) +(constraint (= (f "Hayley" "Marquess") "H. Marquess")) +(constraint (= (f "Andria" "Spagnoli") "A. Spagnoli")) +(constraint (= (f "Andria" "Spagnoli") "A. Spagnoli")) +(constraint (= (f "Andria" "Spagnoli") "A. Spagnoli")) +(constraint (= (f "Irwin" "Covelli") "I. Covelli")) +(constraint (= (f "Irwin" "Covelli") "I. Covelli")) +(constraint (= (f "Irwin" "Covelli") "I. Covelli")) +(constraint (= (f "Gertude" "Montiel") "G. Montiel")) +(constraint (= (f "Gertude" "Montiel") "G. Montiel")) +(constraint (= (f "Gertude" "Montiel") "G. Montiel")) +(constraint (= (f "Stefany" "Reily") "S. Reily")) +(constraint (= (f "Stefany" "Reily") "S. Reily")) +(constraint (= (f "Stefany" "Reily") "S. Reily")) +(constraint (= (f "Rae" "Mcgaughey") "R. Mcgaughey")) +(constraint (= (f "Rae" "Mcgaughey") "R. Mcgaughey")) +(constraint (= (f "Rae" "Mcgaughey") "R. Mcgaughey")) +(constraint (= (f "Cruz" "Latimore") "C. Latimore")) +(constraint (= (f "Cruz" "Latimore") "C. Latimore")) +(constraint (= (f "Cruz" "Latimore") "C. Latimore")) +(constraint (= (f "Maryann" "Casler") "M. Casler")) +(constraint (= (f "Maryann" "Casler") "M. Casler")) +(constraint (= (f "Maryann" "Casler") "M. Casler")) +(constraint (= (f "Annalisa" "Gregori") "A. Gregori")) +(constraint (= (f "Annalisa" "Gregori") "A. Gregori")) +(constraint (= (f "Annalisa" "Gregori") "A. Gregori")) +(constraint (= (f "Jenee" "Pannell") "J. Pannell")) +(constraint (= (f "Jenee" "Pannell") "J. Pannell")) +(constraint (= (f "Jenee" "Pannell") "J. Pannell")) +(constraint (= (f "Launa" "Withers") "L. Withers")) +(constraint (= (f "Lakenya" "Edison") "L. Edison")) +(constraint (= (f "Brendan" "Hage") "B. Hage")) +(constraint (= (f "Bradford" "Lango") "B. Lango")) +(constraint (= (f "Rudolf" "Akiyama") "R. Akiyama")) +(constraint (= (f "Lara" "Constable") "L. Constable")) +(constraint (= (f "Madelaine" "Ghoston") "M. Ghoston")) +(constraint (= (f "Salley" "Hornak") "S. Hornak")) +(constraint (= (f "Micha" "Junkin") "M. Junkin")) +(constraint (= (f "Teddy" "Bobo") "T. Bobo")) +(constraint (= (f "Coralee" "Scalia") "C. Scalia")) +(constraint (= (f "Jeff" "Quashie") "J. Quashie")) +(constraint (= (f "Vena" "Babiarz") "V. Babiarz")) +(constraint (= (f "Karrie" "Lain") "K. Lain")) +(constraint (= (f "Tobias" "Dermody") "T. Dermody")) +(constraint (= (f "Celsa" "Hopkins") "C. Hopkins")) +(constraint (= (f "Kimberley" "Halpern") "K. Halpern")) +(constraint (= (f "Phillip" "Rowden") "P. Rowden")) +(constraint (= (f "Elias" "Neil") "E. Neil")) +(constraint (= (f "Lashanda" "Cortes") "L. Cortes")) +(constraint (= (f "Mackenzie" "Spell") "M. Spell")) +(constraint (= (f "Kathlyn" "Eccleston") "K. Eccleston")) +(constraint (= (f "Georgina" "Brescia") "G. Brescia")) +(constraint (= (f "Beata" "Miah") "B. Miah")) +(constraint (= (f "Desiree" "Seamons") "D. Seamons")) +(constraint (= (f "Jeanice" "Soderstrom") "J. Soderstrom")) +(constraint (= (f "Mariel" "Jurgens") "M. Jurgens")) +(constraint (= (f "Alida" "Bogle") "A. Bogle")) +(constraint (= (f "Jacqualine" "Olague") "J. Olague")) +(constraint (= (f "Joaquin" "Clasen") "J. Clasen")) +(constraint (= (f "Samuel" "Richert") "S. Richert")) +(constraint (= (f "Malissa" "Marcus") "M. Marcus")) +(constraint (= (f "Alaina" "Partida") "A. Partida")) +(constraint (= (f "Trinidad" "Mulloy") "T. Mulloy")) +(constraint (= (f "Carlene" "Garrard") "C. Garrard")) +(constraint (= (f "Melodi" "Chism") "M. Chism")) +(constraint (= (f "Bess" "Chilcott") "B. Chilcott")) +(constraint (= (f "Chong" "Aylward") "C. Aylward")) +(constraint (= (f "Jani" "Ramthun") "J. Ramthun")) +(constraint (= (f "Jacquiline" "Heintz") "J. Heintz")) +(constraint (= (f "Hayley" "Marquess") "H. Marquess")) +(constraint (= (f "Andria" "Spagnoli") "A. Spagnoli")) +(constraint (= (f "Irwin" "Covelli") "I. Covelli")) +(constraint (= (f "Gertude" "Montiel") "G. Montiel")) +(constraint (= (f "Stefany" "Reily") "S. Reily")) +(constraint (= (f "Rae" "Mcgaughey") "R. Mcgaughey")) +(constraint (= (f "Cruz" "Latimore") "C. Latimore")) +(constraint (= (f "Maryann" "Casler") "M. Casler")) +(constraint (= (f "Annalisa" "Gregori") "A. Gregori")) +(constraint (= (f "Jenee" "Pannell") "J. Pannell")) + + +(check-synth) diff --git a/data/sygus/name-combine-3-long.sl b/data/sygus/name-combine-3-long.sl new file mode 100644 index 0000000000000000000000000000000000000000..235ef78369932231800d2b96db3a9824aeb83600 --- /dev/null +++ b/data/sygus/name-combine-3-long.sl @@ -0,0 +1,78 @@ +(set-logic SLIA) + +(synth-fun f ((firstname String) (lastname String)) String + ((Start String (ntString)) + (ntString String (firstname lastname " " "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var firstname String) +(declare-var lastname String) + +(constraint (= (f "Launa" "Withers") "L. Withers")) +(constraint (= (f "Lakenya" "Edison") "L. Edison")) +(constraint (= (f "Brendan" "Hage") "B. Hage")) +(constraint (= (f "Bradford" "Lango") "B. Lango")) +(constraint (= (f "Rudolf" "Akiyama") "R. Akiyama")) +(constraint (= (f "Lara" "Constable") "L. Constable")) +(constraint (= (f "Madelaine" "Ghoston") "M. Ghoston")) +(constraint (= (f "Salley" "Hornak") "S. Hornak")) +(constraint (= (f "Micha" "Junkin") "M. Junkin")) +(constraint (= (f "Teddy" "Bobo") "T. Bobo")) +(constraint (= (f "Coralee" "Scalia") "C. Scalia")) +(constraint (= (f "Jeff" "Quashie") "J. Quashie")) +(constraint (= (f "Vena" "Babiarz") "V. Babiarz")) +(constraint (= (f "Karrie" "Lain") "K. Lain")) +(constraint (= (f "Tobias" "Dermody") "T. Dermody")) +(constraint (= (f "Celsa" "Hopkins") "C. Hopkins")) +(constraint (= (f "Kimberley" "Halpern") "K. Halpern")) +(constraint (= (f "Phillip" "Rowden") "P. Rowden")) +(constraint (= (f "Elias" "Neil") "E. Neil")) +(constraint (= (f "Lashanda" "Cortes") "L. Cortes")) +(constraint (= (f "Mackenzie" "Spell") "M. Spell")) +(constraint (= (f "Kathlyn" "Eccleston") "K. Eccleston")) +(constraint (= (f "Georgina" "Brescia") "G. Brescia")) +(constraint (= (f "Beata" "Miah") "B. Miah")) +(constraint (= (f "Desiree" "Seamons") "D. Seamons")) +(constraint (= (f "Jeanice" "Soderstrom") "J. Soderstrom")) +(constraint (= (f "Mariel" "Jurgens") "M. Jurgens")) +(constraint (= (f "Alida" "Bogle") "A. Bogle")) +(constraint (= (f "Jacqualine" "Olague") "J. Olague")) +(constraint (= (f "Joaquin" "Clasen") "J. Clasen")) +(constraint (= (f "Samuel" "Richert") "S. Richert")) +(constraint (= (f "Malissa" "Marcus") "M. Marcus")) +(constraint (= (f "Alaina" "Partida") "A. Partida")) +(constraint (= (f "Trinidad" "Mulloy") "T. Mulloy")) +(constraint (= (f "Carlene" "Garrard") "C. Garrard")) +(constraint (= (f "Melodi" "Chism") "M. Chism")) +(constraint (= (f "Bess" "Chilcott") "B. Chilcott")) +(constraint (= (f "Chong" "Aylward") "C. Aylward")) +(constraint (= (f "Jani" "Ramthun") "J. Ramthun")) +(constraint (= (f "Jacquiline" "Heintz") "J. Heintz")) +(constraint (= (f "Hayley" "Marquess") "H. Marquess")) +(constraint (= (f "Andria" "Spagnoli") "A. Spagnoli")) +(constraint (= (f "Irwin" "Covelli") "I. Covelli")) +(constraint (= (f "Gertude" "Montiel") "G. Montiel")) +(constraint (= (f "Stefany" "Reily") "S. Reily")) +(constraint (= (f "Rae" "Mcgaughey") "R. Mcgaughey")) +(constraint (= (f "Cruz" "Latimore") "C. Latimore")) +(constraint (= (f "Maryann" "Casler") "M. Casler")) +(constraint (= (f "Annalisa" "Gregori") "A. Gregori")) +(constraint (= (f "Jenee" "Pannell") "J. Pannell")) + + +(check-synth) diff --git a/data/sygus/name-combine-3.sl b/data/sygus/name-combine-3.sl new file mode 100644 index 0000000000000000000000000000000000000000..c075e62b5d392ffe302569ffc51bfb702e7ee99d --- /dev/null +++ b/data/sygus/name-combine-3.sl @@ -0,0 +1,33 @@ +(set-logic SLIA) + +(synth-fun f ((firstname String) (lastname String)) String + ((Start String (ntString)) + (ntString String (firstname lastname " " "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var firstname String) +(declare-var lastname String) + +(constraint (= (f "Launa" "Withers") "L. Withers")) +(constraint (= (f "Lakenya" "Edison") "L. Edison")) +(constraint (= (f "Brendan" "Hage") "B. Hage")) +(constraint (= (f "Bradford" "Lango") "B. Lango")) +(constraint (= (f "Rudolf" "Akiyama") "R. Akiyama")) +(constraint (= (f "Lara" "Constable") "L. Constable")) + +(check-synth) diff --git a/data/sygus/name-combine-3_short.sl b/data/sygus/name-combine-3_short.sl new file mode 100644 index 0000000000000000000000000000000000000000..d902fd62a3e017ec31197fbcb752374d0dedb849 --- /dev/null +++ b/data/sygus/name-combine-3_short.sl @@ -0,0 +1,29 @@ +(set-logic SLIA) + +(synth-fun f ((firstname String) (lastname String)) String + ((Start String (ntString)) + (ntString String (firstname lastname " " "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (str.len ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString))))) + + +(declare-var firstname String) +(declare-var lastname String) + +(constraint (= (f "Launa" "Withers") "L. Withers")) +(constraint (= (f "Lakenya" "Edison") "L. Edison")) +(constraint (= (f "Brendan" "Hage") "B. Hage")) +(constraint (= (f "Bradford" "Lango") "B. Lango")) +(constraint (= (f "Rudolf" "Akiyama") "R. Akiyama")) +(constraint (= (f "Lara" "Constable") "L. Constable")) + +(check-synth) diff --git a/data/sygus/name-combine-4-long-repeat.sl b/data/sygus/name-combine-4-long-repeat.sl new file mode 100644 index 0000000000000000000000000000000000000000..4642551f8f2e1739bf769f001bc072c07ea05360 --- /dev/null +++ b/data/sygus/name-combine-4-long-repeat.sl @@ -0,0 +1,226 @@ +(set-logic SLIA) + +(synth-fun f ((firstname String) (lastname String)) String + ((Start String (ntString)) + (ntString String (firstname lastname "," " " "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "Launa" "Withers") "Withers, L.")) +(constraint (= (f "Launa" "Withers") "Withers, L.")) +(constraint (= (f "Launa" "Withers") "Withers, L.")) +(constraint (= (f "Lakenya" "Edison") "Edison, L.")) +(constraint (= (f "Lakenya" "Edison") "Edison, L.")) +(constraint (= (f "Lakenya" "Edison") "Edison, L.")) +(constraint (= (f "Brendan" "Hage") "Hage, B.")) +(constraint (= (f "Brendan" "Hage") "Hage, B.")) +(constraint (= (f "Brendan" "Hage") "Hage, B.")) +(constraint (= (f "Bradford" "Lango") "Lango, B.")) +(constraint (= (f "Bradford" "Lango") "Lango, B.")) +(constraint (= (f "Bradford" "Lango") "Lango, B.")) +(constraint (= (f "Rudolf" "Akiyama") "Akiyama, R.")) +(constraint (= (f "Rudolf" "Akiyama") "Akiyama, R.")) +(constraint (= (f "Rudolf" "Akiyama") "Akiyama, R.")) +(constraint (= (f "Lara" "Constable") "Constable, L.")) +(constraint (= (f "Lara" "Constable") "Constable, L.")) +(constraint (= (f "Lara" "Constable") "Constable, L.")) +(constraint (= (f "Madelaine" "Ghoston") "Ghoston, M.")) +(constraint (= (f "Madelaine" "Ghoston") "Ghoston, M.")) +(constraint (= (f "Madelaine" "Ghoston") "Ghoston, M.")) +(constraint (= (f "Salley" "Hornak") "Hornak, S.")) +(constraint (= (f "Salley" "Hornak") "Hornak, S.")) +(constraint (= (f "Salley" "Hornak") "Hornak, S.")) +(constraint (= (f "Micha" "Junkin") "Junkin, M.")) +(constraint (= (f "Micha" "Junkin") "Junkin, M.")) +(constraint (= (f "Micha" "Junkin") "Junkin, M.")) +(constraint (= (f "Teddy" "Bobo") "Bobo, T.")) +(constraint (= (f "Teddy" "Bobo") "Bobo, T.")) +(constraint (= (f "Teddy" "Bobo") "Bobo, T.")) +(constraint (= (f "Coralee" "Scalia") "Scalia, C.")) +(constraint (= (f "Coralee" "Scalia") "Scalia, C.")) +(constraint (= (f "Coralee" "Scalia") "Scalia, C.")) +(constraint (= (f "Jeff" "Quashie") "Quashie, J.")) +(constraint (= (f "Jeff" "Quashie") "Quashie, J.")) +(constraint (= (f "Jeff" "Quashie") "Quashie, J.")) +(constraint (= (f "Vena" "Babiarz") "Babiarz, V.")) +(constraint (= (f "Vena" "Babiarz") "Babiarz, V.")) +(constraint (= (f "Vena" "Babiarz") "Babiarz, V.")) +(constraint (= (f "Karrie" "Lain") "Lain, K.")) +(constraint (= (f "Karrie" "Lain") "Lain, K.")) +(constraint (= (f "Karrie" "Lain") "Lain, K.")) +(constraint (= (f "Tobias" "Dermody") "Dermody, T.")) +(constraint (= (f "Tobias" "Dermody") "Dermody, T.")) +(constraint (= (f "Tobias" "Dermody") "Dermody, T.")) +(constraint (= (f "Celsa" "Hopkins") "Hopkins, C.")) +(constraint (= (f "Celsa" "Hopkins") "Hopkins, C.")) +(constraint (= (f "Celsa" "Hopkins") "Hopkins, C.")) +(constraint (= (f "Kimberley" "Halpern") "Halpern, K.")) +(constraint (= (f "Kimberley" "Halpern") "Halpern, K.")) +(constraint (= (f "Kimberley" "Halpern") "Halpern, K.")) +(constraint (= (f "Phillip" "Rowden") "Rowden, P.")) +(constraint (= (f "Phillip" "Rowden") "Rowden, P.")) +(constraint (= (f "Phillip" "Rowden") "Rowden, P.")) +(constraint (= (f "Elias" "Neil") "Neil, E.")) +(constraint (= (f "Elias" "Neil") "Neil, E.")) +(constraint (= (f "Elias" "Neil") "Neil, E.")) +(constraint (= (f "Lashanda" "Cortes") "Cortes, L.")) +(constraint (= (f "Lashanda" "Cortes") "Cortes, L.")) +(constraint (= (f "Lashanda" "Cortes") "Cortes, L.")) +(constraint (= (f "Mackenzie" "Spell") "Spell, M.")) +(constraint (= (f "Mackenzie" "Spell") "Spell, M.")) +(constraint (= (f "Mackenzie" "Spell") "Spell, M.")) +(constraint (= (f "Kathlyn" "Eccleston") "Eccleston, K.")) +(constraint (= (f "Kathlyn" "Eccleston") "Eccleston, K.")) +(constraint (= (f "Kathlyn" "Eccleston") "Eccleston, K.")) +(constraint (= (f "Georgina" "Brescia") "Brescia, G.")) +(constraint (= (f "Georgina" "Brescia") "Brescia, G.")) +(constraint (= (f "Georgina" "Brescia") "Brescia, G.")) +(constraint (= (f "Beata" "Miah") "Miah, B.")) +(constraint (= (f "Beata" "Miah") "Miah, B.")) +(constraint (= (f "Beata" "Miah") "Miah, B.")) +(constraint (= (f "Desiree" "Seamons") "Seamons, D.")) +(constraint (= (f "Desiree" "Seamons") "Seamons, D.")) +(constraint (= (f "Desiree" "Seamons") "Seamons, D.")) +(constraint (= (f "Jeanice" "Soderstrom") "Soderstrom, J.")) +(constraint (= (f "Jeanice" "Soderstrom") "Soderstrom, J.")) +(constraint (= (f "Jeanice" "Soderstrom") "Soderstrom, J.")) +(constraint (= (f "Mariel" "Jurgens") "Jurgens, M.")) +(constraint (= (f "Mariel" "Jurgens") "Jurgens, M.")) +(constraint (= (f "Mariel" "Jurgens") "Jurgens, M.")) +(constraint (= (f "Alida" "Bogle") "Bogle, A.")) +(constraint (= (f "Alida" "Bogle") "Bogle, A.")) +(constraint (= (f "Alida" "Bogle") "Bogle, A.")) +(constraint (= (f "Jacqualine" "Olague") "Olague, J.")) +(constraint (= (f "Jacqualine" "Olague") "Olague, J.")) +(constraint (= (f "Jacqualine" "Olague") "Olague, J.")) +(constraint (= (f "Joaquin" "Clasen") "Clasen, J.")) +(constraint (= (f "Joaquin" "Clasen") "Clasen, J.")) +(constraint (= (f "Joaquin" "Clasen") "Clasen, J.")) +(constraint (= (f "Samuel" "Richert") "Richert, S.")) +(constraint (= (f "Samuel" "Richert") "Richert, S.")) +(constraint (= (f "Samuel" "Richert") "Richert, S.")) +(constraint (= (f "Malissa" "Marcus") "Marcus, M.")) +(constraint (= (f "Malissa" "Marcus") "Marcus, M.")) +(constraint (= (f "Malissa" "Marcus") "Marcus, M.")) +(constraint (= (f "Alaina" "Partida") "Partida, A.")) +(constraint (= (f "Alaina" "Partida") "Partida, A.")) +(constraint (= (f "Alaina" "Partida") "Partida, A.")) +(constraint (= (f "Trinidad" "Mulloy") "Mulloy, T.")) +(constraint (= (f "Trinidad" "Mulloy") "Mulloy, T.")) +(constraint (= (f "Trinidad" "Mulloy") "Mulloy, T.")) +(constraint (= (f "Carlene" "Garrard") "Garrard, C.")) +(constraint (= (f "Carlene" "Garrard") "Garrard, C.")) +(constraint (= (f "Carlene" "Garrard") "Garrard, C.")) +(constraint (= (f "Melodi" "Chism") "Chism, M.")) +(constraint (= (f "Melodi" "Chism") "Chism, M.")) +(constraint (= (f "Melodi" "Chism") "Chism, M.")) +(constraint (= (f "Bess" "Chilcott") "Chilcott, B.")) +(constraint (= (f "Bess" "Chilcott") "Chilcott, B.")) +(constraint (= (f "Bess" "Chilcott") "Chilcott, B.")) +(constraint (= (f "Chong" "Aylward") "Aylward, C.")) +(constraint (= (f "Chong" "Aylward") "Aylward, C.")) +(constraint (= (f "Chong" "Aylward") "Aylward, C.")) +(constraint (= (f "Jani" "Ramthun") "Ramthun, J.")) +(constraint (= (f "Jani" "Ramthun") "Ramthun, J.")) +(constraint (= (f "Jani" "Ramthun") "Ramthun, J.")) +(constraint (= (f "Jacquiline" "Heintz") "Heintz, J.")) +(constraint (= (f "Jacquiline" "Heintz") "Heintz, J.")) +(constraint (= (f "Jacquiline" "Heintz") "Heintz, J.")) +(constraint (= (f "Hayley" "Marquess") "Marquess, H.")) +(constraint (= (f "Hayley" "Marquess") "Marquess, H.")) +(constraint (= (f "Hayley" "Marquess") "Marquess, H.")) +(constraint (= (f "Andria" "Spagnoli") "Spagnoli, A.")) +(constraint (= (f "Andria" "Spagnoli") "Spagnoli, A.")) +(constraint (= (f "Andria" "Spagnoli") "Spagnoli, A.")) +(constraint (= (f "Irwin" "Covelli") "Covelli, I.")) +(constraint (= (f "Irwin" "Covelli") "Covelli, I.")) +(constraint (= (f "Irwin" "Covelli") "Covelli, I.")) +(constraint (= (f "Gertude" "Montiel") "Montiel, G.")) +(constraint (= (f "Gertude" "Montiel") "Montiel, G.")) +(constraint (= (f "Gertude" "Montiel") "Montiel, G.")) +(constraint (= (f "Stefany" "Reily") "Reily, S.")) +(constraint (= (f "Stefany" "Reily") "Reily, S.")) +(constraint (= (f "Stefany" "Reily") "Reily, S.")) +(constraint (= (f "Rae" "Mcgaughey") "Mcgaughey, R.")) +(constraint (= (f "Rae" "Mcgaughey") "Mcgaughey, R.")) +(constraint (= (f "Rae" "Mcgaughey") "Mcgaughey, R.")) +(constraint (= (f "Cruz" "Latimore") "Latimore, C.")) +(constraint (= (f "Cruz" "Latimore") "Latimore, C.")) +(constraint (= (f "Cruz" "Latimore") "Latimore, C.")) +(constraint (= (f "Maryann" "Casler") "Casler, M.")) +(constraint (= (f "Maryann" "Casler") "Casler, M.")) +(constraint (= (f "Maryann" "Casler") "Casler, M.")) +(constraint (= (f "Annalisa" "Gregori") "Gregori, A.")) +(constraint (= (f "Annalisa" "Gregori") "Gregori, A.")) +(constraint (= (f "Annalisa" "Gregori") "Gregori, A.")) +(constraint (= (f "Jenee" "Pannell") "Pannell, J.")) +(constraint (= (f "Jenee" "Pannell") "Pannell, J.")) +(constraint (= (f "Jenee" "Pannell") "Pannell, J.")) +(constraint (= (f "Launa" "Withers") "Withers, L.")) +(constraint (= (f "Lakenya" "Edison") "Edison, L.")) +(constraint (= (f "Brendan" "Hage") "Hage, B.")) +(constraint (= (f "Bradford" "Lango") "Lango, B.")) +(constraint (= (f "Rudolf" "Akiyama") "Akiyama, R.")) +(constraint (= (f "Lara" "Constable") "Constable, L.")) +(constraint (= (f "Madelaine" "Ghoston") "Ghoston, M.")) +(constraint (= (f "Salley" "Hornak") "Hornak, S.")) +(constraint (= (f "Micha" "Junkin") "Junkin, M.")) +(constraint (= (f "Teddy" "Bobo") "Bobo, T.")) +(constraint (= (f "Coralee" "Scalia") "Scalia, C.")) +(constraint (= (f "Jeff" "Quashie") "Quashie, J.")) +(constraint (= (f "Vena" "Babiarz") "Babiarz, V.")) +(constraint (= (f "Karrie" "Lain") "Lain, K.")) +(constraint (= (f "Tobias" "Dermody") "Dermody, T.")) +(constraint (= (f "Celsa" "Hopkins") "Hopkins, C.")) +(constraint (= (f "Kimberley" "Halpern") "Halpern, K.")) +(constraint (= (f "Phillip" "Rowden") "Rowden, P.")) +(constraint (= (f "Elias" "Neil") "Neil, E.")) +(constraint (= (f "Lashanda" "Cortes") "Cortes, L.")) +(constraint (= (f "Mackenzie" "Spell") "Spell, M.")) +(constraint (= (f "Kathlyn" "Eccleston") "Eccleston, K.")) +(constraint (= (f "Georgina" "Brescia") "Brescia, G.")) +(constraint (= (f "Beata" "Miah") "Miah, B.")) +(constraint (= (f "Desiree" "Seamons") "Seamons, D.")) +(constraint (= (f "Jeanice" "Soderstrom") "Soderstrom, J.")) +(constraint (= (f "Mariel" "Jurgens") "Jurgens, M.")) +(constraint (= (f "Alida" "Bogle") "Bogle, A.")) +(constraint (= (f "Jacqualine" "Olague") "Olague, J.")) +(constraint (= (f "Joaquin" "Clasen") "Clasen, J.")) +(constraint (= (f "Samuel" "Richert") "Richert, S.")) +(constraint (= (f "Malissa" "Marcus") "Marcus, M.")) +(constraint (= (f "Alaina" "Partida") "Partida, A.")) +(constraint (= (f "Trinidad" "Mulloy") "Mulloy, T.")) +(constraint (= (f "Carlene" "Garrard") "Garrard, C.")) +(constraint (= (f "Melodi" "Chism") "Chism, M.")) +(constraint (= (f "Bess" "Chilcott") "Chilcott, B.")) +(constraint (= (f "Chong" "Aylward") "Aylward, C.")) +(constraint (= (f "Jani" "Ramthun") "Ramthun, J.")) +(constraint (= (f "Jacquiline" "Heintz") "Heintz, J.")) +(constraint (= (f "Hayley" "Marquess") "Marquess, H.")) +(constraint (= (f "Andria" "Spagnoli") "Spagnoli, A.")) +(constraint (= (f "Irwin" "Covelli") "Covelli, I.")) +(constraint (= (f "Gertude" "Montiel") "Montiel, G.")) +(constraint (= (f "Stefany" "Reily") "Reily, S.")) +(constraint (= (f "Rae" "Mcgaughey") "Mcgaughey, R.")) +(constraint (= (f "Cruz" "Latimore") "Latimore, C.")) +(constraint (= (f "Maryann" "Casler") "Casler, M.")) +(constraint (= (f "Annalisa" "Gregori") "Gregori, A.")) +(constraint (= (f "Jenee" "Pannell") "Pannell, J.")) + +(check-synth) diff --git a/data/sygus/name-combine-4-long.sl b/data/sygus/name-combine-4-long.sl new file mode 100644 index 0000000000000000000000000000000000000000..789fea9b7ba6a13a3f20ac658b314665995bc557 --- /dev/null +++ b/data/sygus/name-combine-4-long.sl @@ -0,0 +1,76 @@ +(set-logic SLIA) + +(synth-fun f ((firstname String) (lastname String)) String + ((Start String (ntString)) + (ntString String (firstname lastname "," " " "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "Launa" "Withers") "Withers, L.")) +(constraint (= (f "Lakenya" "Edison") "Edison, L.")) +(constraint (= (f "Brendan" "Hage") "Hage, B.")) +(constraint (= (f "Bradford" "Lango") "Lango, B.")) +(constraint (= (f "Rudolf" "Akiyama") "Akiyama, R.")) +(constraint (= (f "Lara" "Constable") "Constable, L.")) +(constraint (= (f "Madelaine" "Ghoston") "Ghoston, M.")) +(constraint (= (f "Salley" "Hornak") "Hornak, S.")) +(constraint (= (f "Micha" "Junkin") "Junkin, M.")) +(constraint (= (f "Teddy" "Bobo") "Bobo, T.")) +(constraint (= (f "Coralee" "Scalia") "Scalia, C.")) +(constraint (= (f "Jeff" "Quashie") "Quashie, J.")) +(constraint (= (f "Vena" "Babiarz") "Babiarz, V.")) +(constraint (= (f "Karrie" "Lain") "Lain, K.")) +(constraint (= (f "Tobias" "Dermody") "Dermody, T.")) +(constraint (= (f "Celsa" "Hopkins") "Hopkins, C.")) +(constraint (= (f "Kimberley" "Halpern") "Halpern, K.")) +(constraint (= (f "Phillip" "Rowden") "Rowden, P.")) +(constraint (= (f "Elias" "Neil") "Neil, E.")) +(constraint (= (f "Lashanda" "Cortes") "Cortes, L.")) +(constraint (= (f "Mackenzie" "Spell") "Spell, M.")) +(constraint (= (f "Kathlyn" "Eccleston") "Eccleston, K.")) +(constraint (= (f "Georgina" "Brescia") "Brescia, G.")) +(constraint (= (f "Beata" "Miah") "Miah, B.")) +(constraint (= (f "Desiree" "Seamons") "Seamons, D.")) +(constraint (= (f "Jeanice" "Soderstrom") "Soderstrom, J.")) +(constraint (= (f "Mariel" "Jurgens") "Jurgens, M.")) +(constraint (= (f "Alida" "Bogle") "Bogle, A.")) +(constraint (= (f "Jacqualine" "Olague") "Olague, J.")) +(constraint (= (f "Joaquin" "Clasen") "Clasen, J.")) +(constraint (= (f "Samuel" "Richert") "Richert, S.")) +(constraint (= (f "Malissa" "Marcus") "Marcus, M.")) +(constraint (= (f "Alaina" "Partida") "Partida, A.")) +(constraint (= (f "Trinidad" "Mulloy") "Mulloy, T.")) +(constraint (= (f "Carlene" "Garrard") "Garrard, C.")) +(constraint (= (f "Melodi" "Chism") "Chism, M.")) +(constraint (= (f "Bess" "Chilcott") "Chilcott, B.")) +(constraint (= (f "Chong" "Aylward") "Aylward, C.")) +(constraint (= (f "Jani" "Ramthun") "Ramthun, J.")) +(constraint (= (f "Jacquiline" "Heintz") "Heintz, J.")) +(constraint (= (f "Hayley" "Marquess") "Marquess, H.")) +(constraint (= (f "Andria" "Spagnoli") "Spagnoli, A.")) +(constraint (= (f "Irwin" "Covelli") "Covelli, I.")) +(constraint (= (f "Gertude" "Montiel") "Montiel, G.")) +(constraint (= (f "Stefany" "Reily") "Reily, S.")) +(constraint (= (f "Rae" "Mcgaughey") "Mcgaughey, R.")) +(constraint (= (f "Cruz" "Latimore") "Latimore, C.")) +(constraint (= (f "Maryann" "Casler") "Casler, M.")) +(constraint (= (f "Annalisa" "Gregori") "Gregori, A.")) +(constraint (= (f "Jenee" "Pannell") "Pannell, J.")) + +(check-synth) diff --git a/data/sygus/name-combine-4.sl b/data/sygus/name-combine-4.sl new file mode 100644 index 0000000000000000000000000000000000000000..2f63326ec53d47c466cc270be80e49c74b84d3be --- /dev/null +++ b/data/sygus/name-combine-4.sl @@ -0,0 +1,32 @@ +(set-logic SLIA) + +(synth-fun f ((firstname String) (lastname String)) String + ((Start String (ntString)) + (ntString String (firstname lastname "," " " "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var firstname String) +(declare-var lastname String) + +(constraint (= (f "Launa" "Withers") "Withers, L.")) +(constraint (= (f "Lakenya" "Edison") "Edison, L.")) +(constraint (= (f "Brendan" "Hage") "Hage, B.")) +(constraint (= (f "Bradford" "Lango") "Lango, B.")) +(constraint (= (f "Rudolf" "Akiyama") "Akiyama, R.")) + +(check-synth) diff --git a/data/sygus/name-combine-4_short.sl b/data/sygus/name-combine-4_short.sl new file mode 100644 index 0000000000000000000000000000000000000000..898bd9ebc00681d8cb4bd7ab0df324b36297dcb1 --- /dev/null +++ b/data/sygus/name-combine-4_short.sl @@ -0,0 +1,29 @@ +(set-logic SLIA) + +(synth-fun f ((firstname String) (lastname String)) String + ((Start String (ntString)) + (ntString String (firstname lastname "," " " "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString))))) + + +(declare-var firstname String) +(declare-var lastname String) + +(constraint (= (f "Launa" "Withers") "Withers, L.")) +(constraint (= (f "Lakenya" "Edison") "Edison, L.")) +(constraint (= (f "Brendan" "Hage") "Hage, B.")) +(constraint (= (f "Bradford" "Lango") "Lango, B.")) +(constraint (= (f "Rudolf" "Akiyama") "Akiyama, R.")) + +(check-synth) diff --git a/data/sygus/name-combine-long-repeat.sl b/data/sygus/name-combine-long-repeat.sl new file mode 100644 index 0000000000000000000000000000000000000000..d0e5a8552e4e846bf35fa31b79f087ae356b9e53 --- /dev/null +++ b/data/sygus/name-combine-long-repeat.sl @@ -0,0 +1,229 @@ +(set-logic SLIA) + +(synth-fun f ((firstname String) (lastname String)) String + ((Start String (ntString)) + (ntString String (firstname lastname " " + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "Nancy" "FreeHafer") "Nancy FreeHafer")) +(constraint (= (f "Andrew" "Cencici") "Andrew Cencici")) +(constraint (= (f "Jan" "Kotas") "Jan Kotas")) +(constraint (= (f "Mariya" "Sergienko") "Mariya Sergienko")) +(constraint (= (f "Launa" "Withers") "Launa Withers")) +(constraint (= (f "Launa" "Withers") "Launa Withers")) +(constraint (= (f "Launa" "Withers") "Launa Withers")) +(constraint (= (f "Lakenya" "Edison") "Lakenya Edison")) +(constraint (= (f "Lakenya" "Edison") "Lakenya Edison")) +(constraint (= (f "Lakenya" "Edison") "Lakenya Edison")) +(constraint (= (f "Brendan" "Hage") "Brendan Hage")) +(constraint (= (f "Brendan" "Hage") "Brendan Hage")) +(constraint (= (f "Brendan" "Hage") "Brendan Hage")) +(constraint (= (f "Bradford" "Lango") "Bradford Lango")) +(constraint (= (f "Bradford" "Lango") "Bradford Lango")) +(constraint (= (f "Bradford" "Lango") "Bradford Lango")) +(constraint (= (f "Rudolf" "Akiyama") "Rudolf Akiyama")) +(constraint (= (f "Rudolf" "Akiyama") "Rudolf Akiyama")) +(constraint (= (f "Rudolf" "Akiyama") "Rudolf Akiyama")) +(constraint (= (f "Lara" "Constable") "Lara Constable")) +(constraint (= (f "Lara" "Constable") "Lara Constable")) +(constraint (= (f "Lara" "Constable") "Lara Constable")) +(constraint (= (f "Madelaine" "Ghoston") "Madelaine Ghoston")) +(constraint (= (f "Madelaine" "Ghoston") "Madelaine Ghoston")) +(constraint (= (f "Madelaine" "Ghoston") "Madelaine Ghoston")) +(constraint (= (f "Salley" "Hornak") "Salley Hornak")) +(constraint (= (f "Salley" "Hornak") "Salley Hornak")) +(constraint (= (f "Salley" "Hornak") "Salley Hornak")) +(constraint (= (f "Micha" "Junkin") "Micha Junkin")) +(constraint (= (f "Micha" "Junkin") "Micha Junkin")) +(constraint (= (f "Micha" "Junkin") "Micha Junkin")) +(constraint (= (f "Teddy" "Bobo") "Teddy Bobo")) +(constraint (= (f "Teddy" "Bobo") "Teddy Bobo")) +(constraint (= (f "Teddy" "Bobo") "Teddy Bobo")) +(constraint (= (f "Coralee" "Scalia") "Coralee Scalia")) +(constraint (= (f "Coralee" "Scalia") "Coralee Scalia")) +(constraint (= (f "Coralee" "Scalia") "Coralee Scalia")) +(constraint (= (f "Jeff" "Quashie") "Jeff Quashie")) +(constraint (= (f "Jeff" "Quashie") "Jeff Quashie")) +(constraint (= (f "Jeff" "Quashie") "Jeff Quashie")) +(constraint (= (f "Vena" "Babiarz") "Vena Babiarz")) +(constraint (= (f "Vena" "Babiarz") "Vena Babiarz")) +(constraint (= (f "Vena" "Babiarz") "Vena Babiarz")) +(constraint (= (f "Karrie" "Lain") "Karrie Lain")) +(constraint (= (f "Karrie" "Lain") "Karrie Lain")) +(constraint (= (f "Karrie" "Lain") "Karrie Lain")) +(constraint (= (f "Tobias" "Dermody") "Tobias Dermody")) +(constraint (= (f "Tobias" "Dermody") "Tobias Dermody")) +(constraint (= (f "Tobias" "Dermody") "Tobias Dermody")) +(constraint (= (f "Celsa" "Hopkins") "Celsa Hopkins")) +(constraint (= (f "Celsa" "Hopkins") "Celsa Hopkins")) +(constraint (= (f "Celsa" "Hopkins") "Celsa Hopkins")) +(constraint (= (f "Kimberley" "Halpern") "Kimberley Halpern")) +(constraint (= (f "Kimberley" "Halpern") "Kimberley Halpern")) +(constraint (= (f "Kimberley" "Halpern") "Kimberley Halpern")) +(constraint (= (f "Phillip" "Rowden") "Phillip Rowden")) +(constraint (= (f "Phillip" "Rowden") "Phillip Rowden")) +(constraint (= (f "Phillip" "Rowden") "Phillip Rowden")) +(constraint (= (f "Elias" "Neil") "Elias Neil")) +(constraint (= (f "Elias" "Neil") "Elias Neil")) +(constraint (= (f "Elias" "Neil") "Elias Neil")) +(constraint (= (f "Lashanda" "Cortes") "Lashanda Cortes")) +(constraint (= (f "Lashanda" "Cortes") "Lashanda Cortes")) +(constraint (= (f "Lashanda" "Cortes") "Lashanda Cortes")) +(constraint (= (f "Mackenzie" "Spell") "Mackenzie Spell")) +(constraint (= (f "Mackenzie" "Spell") "Mackenzie Spell")) +(constraint (= (f "Mackenzie" "Spell") "Mackenzie Spell")) +(constraint (= (f "Kathlyn" "Eccleston") "Kathlyn Eccleston")) +(constraint (= (f "Kathlyn" "Eccleston") "Kathlyn Eccleston")) +(constraint (= (f "Kathlyn" "Eccleston") "Kathlyn Eccleston")) +(constraint (= (f "Georgina" "Brescia") "Georgina Brescia")) +(constraint (= (f "Georgina" "Brescia") "Georgina Brescia")) +(constraint (= (f "Georgina" "Brescia") "Georgina Brescia")) +(constraint (= (f "Beata" "Miah") "Beata Miah")) +(constraint (= (f "Beata" "Miah") "Beata Miah")) +(constraint (= (f "Beata" "Miah") "Beata Miah")) +(constraint (= (f "Desiree" "Seamons") "Desiree Seamons")) +(constraint (= (f "Desiree" "Seamons") "Desiree Seamons")) +(constraint (= (f "Desiree" "Seamons") "Desiree Seamons")) +(constraint (= (f "Jeanice" "Soderstrom") "Jeanice Soderstrom")) +(constraint (= (f "Jeanice" "Soderstrom") "Jeanice Soderstrom")) +(constraint (= (f "Jeanice" "Soderstrom") "Jeanice Soderstrom")) +(constraint (= (f "Mariel" "Jurgens") "Mariel Jurgens")) +(constraint (= (f "Mariel" "Jurgens") "Mariel Jurgens")) +(constraint (= (f "Mariel" "Jurgens") "Mariel Jurgens")) +(constraint (= (f "Alida" "Bogle") "Alida Bogle")) +(constraint (= (f "Alida" "Bogle") "Alida Bogle")) +(constraint (= (f "Alida" "Bogle") "Alida Bogle")) +(constraint (= (f "Jacqualine" "Olague") "Jacqualine Olague")) +(constraint (= (f "Jacqualine" "Olague") "Jacqualine Olague")) +(constraint (= (f "Jacqualine" "Olague") "Jacqualine Olague")) +(constraint (= (f "Joaquin" "Clasen") "Joaquin Clasen")) +(constraint (= (f "Joaquin" "Clasen") "Joaquin Clasen")) +(constraint (= (f "Joaquin" "Clasen") "Joaquin Clasen")) +(constraint (= (f "Samuel" "Richert") "Samuel Richert")) +(constraint (= (f "Samuel" "Richert") "Samuel Richert")) +(constraint (= (f "Samuel" "Richert") "Samuel Richert")) +(constraint (= (f "Malissa" "Marcus") "Malissa Marcus")) +(constraint (= (f "Malissa" "Marcus") "Malissa Marcus")) +(constraint (= (f "Malissa" "Marcus") "Malissa Marcus")) +(constraint (= (f "Alaina" "Partida") "Alaina Partida")) +(constraint (= (f "Alaina" "Partida") "Alaina Partida")) +(constraint (= (f "Alaina" "Partida") "Alaina Partida")) +(constraint (= (f "Trinidad" "Mulloy") "Trinidad Mulloy")) +(constraint (= (f "Trinidad" "Mulloy") "Trinidad Mulloy")) +(constraint (= (f "Trinidad" "Mulloy") "Trinidad Mulloy")) +(constraint (= (f "Carlene" "Garrard") "Carlene Garrard")) +(constraint (= (f "Carlene" "Garrard") "Carlene Garrard")) +(constraint (= (f "Carlene" "Garrard") "Carlene Garrard")) +(constraint (= (f "Melodi" "Chism") "Melodi Chism")) +(constraint (= (f "Melodi" "Chism") "Melodi Chism")) +(constraint (= (f "Melodi" "Chism") "Melodi Chism")) +(constraint (= (f "Bess" "Chilcott") "Bess Chilcott")) +(constraint (= (f "Bess" "Chilcott") "Bess Chilcott")) +(constraint (= (f "Bess" "Chilcott") "Bess Chilcott")) +(constraint (= (f "Chong" "Aylward") "Chong Aylward")) +(constraint (= (f "Chong" "Aylward") "Chong Aylward")) +(constraint (= (f "Chong" "Aylward") "Chong Aylward")) +(constraint (= (f "Jani" "Ramthun") "Jani Ramthun")) +(constraint (= (f "Jani" "Ramthun") "Jani Ramthun")) +(constraint (= (f "Jani" "Ramthun") "Jani Ramthun")) +(constraint (= (f "Jacquiline" "Heintz") "Jacquiline Heintz")) +(constraint (= (f "Jacquiline" "Heintz") "Jacquiline Heintz")) +(constraint (= (f "Jacquiline" "Heintz") "Jacquiline Heintz")) +(constraint (= (f "Hayley" "Marquess") "Hayley Marquess")) +(constraint (= (f "Hayley" "Marquess") "Hayley Marquess")) +(constraint (= (f "Hayley" "Marquess") "Hayley Marquess")) +(constraint (= (f "Andria" "Spagnoli") "Andria Spagnoli")) +(constraint (= (f "Andria" "Spagnoli") "Andria Spagnoli")) +(constraint (= (f "Andria" "Spagnoli") "Andria Spagnoli")) +(constraint (= (f "Irwin" "Covelli") "Irwin Covelli")) +(constraint (= (f "Irwin" "Covelli") "Irwin Covelli")) +(constraint (= (f "Irwin" "Covelli") "Irwin Covelli")) +(constraint (= (f "Gertude" "Montiel") "Gertude Montiel")) +(constraint (= (f "Gertude" "Montiel") "Gertude Montiel")) +(constraint (= (f "Gertude" "Montiel") "Gertude Montiel")) +(constraint (= (f "Stefany" "Reily") "Stefany Reily")) +(constraint (= (f "Stefany" "Reily") "Stefany Reily")) +(constraint (= (f "Stefany" "Reily") "Stefany Reily")) +(constraint (= (f "Rae" "Mcgaughey") "Rae Mcgaughey")) +(constraint (= (f "Rae" "Mcgaughey") "Rae Mcgaughey")) +(constraint (= (f "Rae" "Mcgaughey") "Rae Mcgaughey")) +(constraint (= (f "Cruz" "Latimore") "Cruz Latimore")) +(constraint (= (f "Cruz" "Latimore") "Cruz Latimore")) +(constraint (= (f "Cruz" "Latimore") "Cruz Latimore")) +(constraint (= (f "Maryann" "Casler") "Maryann Casler")) +(constraint (= (f "Maryann" "Casler") "Maryann Casler")) +(constraint (= (f "Maryann" "Casler") "Maryann Casler")) +(constraint (= (f "Annalisa" "Gregori") "Annalisa Gregori")) +(constraint (= (f "Annalisa" "Gregori") "Annalisa Gregori")) +(constraint (= (f "Annalisa" "Gregori") "Annalisa Gregori")) +(constraint (= (f "Jenee" "Pannell") "Jenee Pannell")) +(constraint (= (f "Jenee" "Pannell") "Jenee Pannell")) +(constraint (= (f "Jenee" "Pannell") "Jenee Pannell")) +(constraint (= (f "Launa" "Withers") "Launa Withers")) +(constraint (= (f "Lakenya" "Edison") "Lakenya Edison")) +(constraint (= (f "Brendan" "Hage") "Brendan Hage")) +(constraint (= (f "Bradford" "Lango") "Bradford Lango")) +(constraint (= (f "Rudolf" "Akiyama") "Rudolf Akiyama")) +(constraint (= (f "Lara" "Constable") "Lara Constable")) +(constraint (= (f "Madelaine" "Ghoston") "Madelaine Ghoston")) +(constraint (= (f "Salley" "Hornak") "Salley Hornak")) +(constraint (= (f "Micha" "Junkin") "Micha Junkin")) +(constraint (= (f "Teddy" "Bobo") "Teddy Bobo")) +(constraint (= (f "Coralee" "Scalia") "Coralee Scalia")) +(constraint (= (f "Jeff" "Quashie") "Jeff Quashie")) +(constraint (= (f "Vena" "Babiarz") "Vena Babiarz")) +(constraint (= (f "Karrie" "Lain") "Karrie Lain")) +(constraint (= (f "Tobias" "Dermody") "Tobias Dermody")) +(constraint (= (f "Celsa" "Hopkins") "Celsa Hopkins")) +(constraint (= (f "Kimberley" "Halpern") "Kimberley Halpern")) +(constraint (= (f "Phillip" "Rowden") "Phillip Rowden")) +(constraint (= (f "Elias" "Neil") "Elias Neil")) +(constraint (= (f "Lashanda" "Cortes") "Lashanda Cortes")) +(constraint (= (f "Mackenzie" "Spell") "Mackenzie Spell")) +(constraint (= (f "Kathlyn" "Eccleston") "Kathlyn Eccleston")) +(constraint (= (f "Georgina" "Brescia") "Georgina Brescia")) +(constraint (= (f "Beata" "Miah") "Beata Miah")) +(constraint (= (f "Desiree" "Seamons") "Desiree Seamons")) +(constraint (= (f "Jeanice" "Soderstrom") "Jeanice Soderstrom")) +(constraint (= (f "Mariel" "Jurgens") "Mariel Jurgens")) +(constraint (= (f "Alida" "Bogle") "Alida Bogle")) +(constraint (= (f "Jacqualine" "Olague") "Jacqualine Olague")) +(constraint (= (f "Joaquin" "Clasen") "Joaquin Clasen")) +(constraint (= (f "Samuel" "Richert") "Samuel Richert")) +(constraint (= (f "Malissa" "Marcus") "Malissa Marcus")) +(constraint (= (f "Alaina" "Partida") "Alaina Partida")) +(constraint (= (f "Trinidad" "Mulloy") "Trinidad Mulloy")) +(constraint (= (f "Carlene" "Garrard") "Carlene Garrard")) +(constraint (= (f "Melodi" "Chism") "Melodi Chism")) +(constraint (= (f "Bess" "Chilcott") "Bess Chilcott")) +(constraint (= (f "Chong" "Aylward") "Chong Aylward")) +(constraint (= (f "Jani" "Ramthun") "Jani Ramthun")) +(constraint (= (f "Jacquiline" "Heintz") "Jacquiline Heintz")) +(constraint (= (f "Hayley" "Marquess") "Hayley Marquess")) +(constraint (= (f "Andria" "Spagnoli") "Andria Spagnoli")) +(constraint (= (f "Irwin" "Covelli") "Irwin Covelli")) +(constraint (= (f "Gertude" "Montiel") "Gertude Montiel")) +(constraint (= (f "Stefany" "Reily") "Stefany Reily")) +(constraint (= (f "Rae" "Mcgaughey") "Rae Mcgaughey")) +(constraint (= (f "Cruz" "Latimore") "Cruz Latimore")) +(constraint (= (f "Maryann" "Casler") "Maryann Casler")) +(constraint (= (f "Annalisa" "Gregori") "Annalisa Gregori")) +(constraint (= (f "Jenee" "Pannell") "Jenee Pannell")) +(check-synth) diff --git a/data/sygus/name-combine-long.sl b/data/sygus/name-combine-long.sl new file mode 100644 index 0000000000000000000000000000000000000000..c20a758fe93c4e0f8a3fde333594afa778812847 --- /dev/null +++ b/data/sygus/name-combine-long.sl @@ -0,0 +1,76 @@ +(set-logic SLIA) + +(synth-fun f ((firstname String) (lastname String)) String + ((Start String (ntString)) + (ntString String (firstname lastname " " + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "Launa" "Withers") "Launa Withers")) +(constraint (= (f "Lakenya" "Edison") "Lakenya Edison")) +(constraint (= (f "Brendan" "Hage") "Brendan Hage")) +(constraint (= (f "Bradford" "Lango") "Bradford Lango")) +(constraint (= (f "Rudolf" "Akiyama") "Rudolf Akiyama")) +(constraint (= (f "Lara" "Constable") "Lara Constable")) +(constraint (= (f "Madelaine" "Ghoston") "Madelaine Ghoston")) +(constraint (= (f "Salley" "Hornak") "Salley Hornak")) +(constraint (= (f "Micha" "Junkin") "Micha Junkin")) +(constraint (= (f "Teddy" "Bobo") "Teddy Bobo")) +(constraint (= (f "Coralee" "Scalia") "Coralee Scalia")) +(constraint (= (f "Jeff" "Quashie") "Jeff Quashie")) +(constraint (= (f "Vena" "Babiarz") "Vena Babiarz")) +(constraint (= (f "Karrie" "Lain") "Karrie Lain")) +(constraint (= (f "Tobias" "Dermody") "Tobias Dermody")) +(constraint (= (f "Celsa" "Hopkins") "Celsa Hopkins")) +(constraint (= (f "Kimberley" "Halpern") "Kimberley Halpern")) +(constraint (= (f "Phillip" "Rowden") "Phillip Rowden")) +(constraint (= (f "Elias" "Neil") "Elias Neil")) +(constraint (= (f "Lashanda" "Cortes") "Lashanda Cortes")) +(constraint (= (f "Mackenzie" "Spell") "Mackenzie Spell")) +(constraint (= (f "Kathlyn" "Eccleston") "Kathlyn Eccleston")) +(constraint (= (f "Georgina" "Brescia") "Georgina Brescia")) +(constraint (= (f "Beata" "Miah") "Beata Miah")) +(constraint (= (f "Desiree" "Seamons") "Desiree Seamons")) +(constraint (= (f "Jeanice" "Soderstrom") "Jeanice Soderstrom")) +(constraint (= (f "Mariel" "Jurgens") "Mariel Jurgens")) +(constraint (= (f "Alida" "Bogle") "Alida Bogle")) +(constraint (= (f "Jacqualine" "Olague") "Jacqualine Olague")) +(constraint (= (f "Joaquin" "Clasen") "Joaquin Clasen")) +(constraint (= (f "Samuel" "Richert") "Samuel Richert")) +(constraint (= (f "Malissa" "Marcus") "Malissa Marcus")) +(constraint (= (f "Alaina" "Partida") "Alaina Partida")) +(constraint (= (f "Trinidad" "Mulloy") "Trinidad Mulloy")) +(constraint (= (f "Carlene" "Garrard") "Carlene Garrard")) +(constraint (= (f "Melodi" "Chism") "Melodi Chism")) +(constraint (= (f "Bess" "Chilcott") "Bess Chilcott")) +(constraint (= (f "Chong" "Aylward") "Chong Aylward")) +(constraint (= (f "Jani" "Ramthun") "Jani Ramthun")) +(constraint (= (f "Jacquiline" "Heintz") "Jacquiline Heintz")) +(constraint (= (f "Hayley" "Marquess") "Hayley Marquess")) +(constraint (= (f "Andria" "Spagnoli") "Andria Spagnoli")) +(constraint (= (f "Irwin" "Covelli") "Irwin Covelli")) +(constraint (= (f "Gertude" "Montiel") "Gertude Montiel")) +(constraint (= (f "Stefany" "Reily") "Stefany Reily")) +(constraint (= (f "Rae" "Mcgaughey") "Rae Mcgaughey")) +(constraint (= (f "Cruz" "Latimore") "Cruz Latimore")) +(constraint (= (f "Maryann" "Casler") "Maryann Casler")) +(constraint (= (f "Annalisa" "Gregori") "Annalisa Gregori")) +(constraint (= (f "Jenee" "Pannell") "Jenee Pannell")) + +(check-synth) diff --git a/data/sygus/name-combine.sl b/data/sygus/name-combine.sl new file mode 100644 index 0000000000000000000000000000000000000000..fb01bb432c4a8bebbdf7d125734f6073bbcfb809 --- /dev/null +++ b/data/sygus/name-combine.sl @@ -0,0 +1,33 @@ +(set-logic SLIA) + +(synth-fun f ((firstname String) (lastname String)) String + ((Start String (ntString)) + (ntString String (firstname lastname " " + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var firstname String) +(declare-var lastname String) + +(constraint (= (f "Launa" "Withers") "Launa Withers")) +(constraint (= (f "Lakenya" "Edison") "Lakenya Edison")) +(constraint (= (f "Brendan" "Hage") "Brendan Hage")) +(constraint (= (f "Bradford" "Lango") "Bradford Lango")) +(constraint (= (f "Rudolf" "Akiyama") "Rudolf Akiyama")) +(constraint (= (f "Lara" "Constable") "Lara Constable")) + +(check-synth) diff --git a/data/sygus/name-combine_short.sl b/data/sygus/name-combine_short.sl new file mode 100644 index 0000000000000000000000000000000000000000..ccf24fe3787f2e17a75177da4b49cfcb5dcd177f --- /dev/null +++ b/data/sygus/name-combine_short.sl @@ -0,0 +1,30 @@ +(set-logic SLIA) + +(synth-fun f ((firstname String) (lastname String)) String + ((Start String (ntString)) + (ntString String (firstname lastname " " + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString))))) + + +(declare-var firstname String) +(declare-var lastname String) + +(constraint (= (f "Launa" "Withers") "Launa Withers")) +(constraint (= (f "Lakenya" "Edison") "Lakenya Edison")) +(constraint (= (f "Brendan" "Hage") "Brendan Hage")) +(constraint (= (f "Bradford" "Lango") "Bradford Lango")) +(constraint (= (f "Rudolf" "Akiyama") "Rudolf Akiyama")) +(constraint (= (f "Lara" "Constable") "Lara Constable")) + +(check-synth) diff --git a/data/sygus/phone-1-long-repeat.sl b/data/sygus/phone-1-long-repeat.sl new file mode 100644 index 0000000000000000000000000000000000000000..bd7f392261eae06b5ae4de5f735e0a849c59c304 --- /dev/null +++ b/data/sygus/phone-1-long-repeat.sl @@ -0,0 +1,426 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "938-242-504") "242")) +(constraint (= (f "938-242-504") "242")) +(constraint (= (f "938-242-504") "242")) +(constraint (= (f "308-916-545") "916")) +(constraint (= (f "308-916-545") "916")) +(constraint (= (f "308-916-545") "916")) +(constraint (= (f "623-599-749") "599")) +(constraint (= (f "623-599-749") "599")) +(constraint (= (f "623-599-749") "599")) +(constraint (= (f "981-424-843") "424")) +(constraint (= (f "981-424-843") "424")) +(constraint (= (f "981-424-843") "424")) +(constraint (= (f "118-980-214") "980")) +(constraint (= (f "118-980-214") "980")) +(constraint (= (f "118-980-214") "980")) +(constraint (= (f "244-655-094") "655")) +(constraint (= (f "244-655-094") "655")) +(constraint (= (f "244-655-094") "655")) +(constraint (= (f "830-941-991") "941")) +(constraint (= (f "830-941-991") "941")) +(constraint (= (f "830-941-991") "941")) +(constraint (= (f "911-186-562") "186")) +(constraint (= (f "911-186-562") "186")) +(constraint (= (f "911-186-562") "186")) +(constraint (= (f "002-500-200") "500")) +(constraint (= (f "002-500-200") "500")) +(constraint (= (f "002-500-200") "500")) +(constraint (= (f "113-860-034") "860")) +(constraint (= (f "113-860-034") "860")) +(constraint (= (f "113-860-034") "860")) +(constraint (= (f "457-622-959") "622")) +(constraint (= (f "457-622-959") "622")) +(constraint (= (f "457-622-959") "622")) +(constraint (= (f "986-722-311") "722")) +(constraint (= (f "986-722-311") "722")) +(constraint (= (f "986-722-311") "722")) +(constraint (= (f "110-170-771") "170")) +(constraint (= (f "110-170-771") "170")) +(constraint (= (f "110-170-771") "170")) +(constraint (= (f "469-610-118") "610")) +(constraint (= (f "469-610-118") "610")) +(constraint (= (f "469-610-118") "610")) +(constraint (= (f "817-925-247") "925")) +(constraint (= (f "817-925-247") "925")) +(constraint (= (f "817-925-247") "925")) +(constraint (= (f "256-899-439") "899")) +(constraint (= (f "256-899-439") "899")) +(constraint (= (f "256-899-439") "899")) +(constraint (= (f "886-911-726") "911")) +(constraint (= (f "886-911-726") "911")) +(constraint (= (f "886-911-726") "911")) +(constraint (= (f "562-950-358") "950")) +(constraint (= (f "562-950-358") "950")) +(constraint (= (f "562-950-358") "950")) +(constraint (= (f "693-049-588") "049")) +(constraint (= (f "693-049-588") "049")) +(constraint (= (f "693-049-588") "049")) +(constraint (= (f "840-503-234") "503")) +(constraint (= (f "840-503-234") "503")) +(constraint (= (f "840-503-234") "503")) +(constraint (= (f "698-815-340") "815")) +(constraint (= (f "698-815-340") "815")) +(constraint (= (f "698-815-340") "815")) +(constraint (= (f "498-808-434") "808")) +(constraint (= (f "498-808-434") "808")) +(constraint (= (f "498-808-434") "808")) +(constraint (= (f "329-545-000") "545")) +(constraint (= (f "329-545-000") "545")) +(constraint (= (f "329-545-000") "545")) +(constraint (= (f "380-281-597") "281")) +(constraint (= (f "380-281-597") "281")) +(constraint (= (f "380-281-597") "281")) +(constraint (= (f "332-395-493") "395")) +(constraint (= (f "332-395-493") "395")) +(constraint (= (f "332-395-493") "395")) +(constraint (= (f "251-903-028") "903")) +(constraint (= (f "251-903-028") "903")) +(constraint (= (f "251-903-028") "903")) +(constraint (= (f "176-090-894") "090")) +(constraint (= (f "176-090-894") "090")) +(constraint (= (f "176-090-894") "090")) +(constraint (= (f "336-611-100") "611")) +(constraint (= (f "336-611-100") "611")) +(constraint (= (f "336-611-100") "611")) +(constraint (= (f "416-390-647") "390")) +(constraint (= (f "416-390-647") "390")) +(constraint (= (f "416-390-647") "390")) +(constraint (= (f "019-430-596") "430")) +(constraint (= (f "019-430-596") "430")) +(constraint (= (f "019-430-596") "430")) +(constraint (= (f "960-659-771") "659")) +(constraint (= (f "960-659-771") "659")) +(constraint (= (f "960-659-771") "659")) +(constraint (= (f "475-505-007") "505")) +(constraint (= (f "475-505-007") "505")) +(constraint (= (f "475-505-007") "505")) +(constraint (= (f "424-069-886") "069")) +(constraint (= (f "424-069-886") "069")) +(constraint (= (f "424-069-886") "069")) +(constraint (= (f "941-102-117") "102")) +(constraint (= (f "941-102-117") "102")) +(constraint (= (f "941-102-117") "102")) +(constraint (= (f "331-728-008") "728")) +(constraint (= (f "331-728-008") "728")) +(constraint (= (f "331-728-008") "728")) +(constraint (= (f "487-726-198") "726")) +(constraint (= (f "487-726-198") "726")) +(constraint (= (f "487-726-198") "726")) +(constraint (= (f "612-419-942") "419")) +(constraint (= (f "612-419-942") "419")) +(constraint (= (f "612-419-942") "419")) +(constraint (= (f "594-741-346") "741")) +(constraint (= (f "594-741-346") "741")) +(constraint (= (f "594-741-346") "741")) +(constraint (= (f "320-984-742") "984")) +(constraint (= (f "320-984-742") "984")) +(constraint (= (f "320-984-742") "984")) +(constraint (= (f "060-919-361") "919")) +(constraint (= (f "060-919-361") "919")) +(constraint (= (f "060-919-361") "919")) +(constraint (= (f "275-536-998") "536")) +(constraint (= (f "275-536-998") "536")) +(constraint (= (f "275-536-998") "536")) +(constraint (= (f "548-835-065") "835")) +(constraint (= (f "548-835-065") "835")) +(constraint (= (f "548-835-065") "835")) +(constraint (= (f "197-485-507") "485")) +(constraint (= (f "197-485-507") "485")) +(constraint (= (f "197-485-507") "485")) +(constraint (= (f "455-776-949") "776")) +(constraint (= (f "455-776-949") "776")) +(constraint (= (f "455-776-949") "776")) +(constraint (= (f "085-421-340") "421")) +(constraint (= (f "085-421-340") "421")) +(constraint (= (f "085-421-340") "421")) +(constraint (= (f "785-713-099") "713")) +(constraint (= (f "785-713-099") "713")) +(constraint (= (f "785-713-099") "713")) +(constraint (= (f "426-712-861") "712")) +(constraint (= (f "426-712-861") "712")) +(constraint (= (f "426-712-861") "712")) +(constraint (= (f "386-994-906") "994")) +(constraint (= (f "386-994-906") "994")) +(constraint (= (f "386-994-906") "994")) +(constraint (= (f "918-304-840") "304")) +(constraint (= (f "918-304-840") "304")) +(constraint (= (f "918-304-840") "304")) +(constraint (= (f "247-153-598") "153")) +(constraint (= (f "247-153-598") "153")) +(constraint (= (f "247-153-598") "153")) +(constraint (= (f "075-497-069") "497")) +(constraint (= (f "075-497-069") "497")) +(constraint (= (f "075-497-069") "497")) +(constraint (= (f "140-726-583") "726")) +(constraint (= (f "140-726-583") "726")) +(constraint (= (f "140-726-583") "726")) +(constraint (= (f "049-413-248") "413")) +(constraint (= (f "049-413-248") "413")) +(constraint (= (f "049-413-248") "413")) +(constraint (= (f "977-386-462") "386")) +(constraint (= (f "977-386-462") "386")) +(constraint (= (f "977-386-462") "386")) +(constraint (= (f "058-272-455") "272")) +(constraint (= (f "058-272-455") "272")) +(constraint (= (f "058-272-455") "272")) +(constraint (= (f "428-629-927") "629")) +(constraint (= (f "428-629-927") "629")) +(constraint (= (f "428-629-927") "629")) +(constraint (= (f "449-122-191") "122")) +(constraint (= (f "449-122-191") "122")) +(constraint (= (f "449-122-191") "122")) +(constraint (= (f "568-759-670") "759")) +(constraint (= (f "568-759-670") "759")) +(constraint (= (f "568-759-670") "759")) +(constraint (= (f "312-846-053") "846")) +(constraint (= (f "312-846-053") "846")) +(constraint (= (f "312-846-053") "846")) +(constraint (= (f "943-037-297") "037")) +(constraint (= (f "943-037-297") "037")) +(constraint (= (f "943-037-297") "037")) +(constraint (= (f "014-270-177") "270")) +(constraint (= (f "014-270-177") "270")) +(constraint (= (f "014-270-177") "270")) +(constraint (= (f "658-877-878") "877")) +(constraint (= (f "658-877-878") "877")) +(constraint (= (f "658-877-878") "877")) +(constraint (= (f "888-594-038") "594")) +(constraint (= (f "888-594-038") "594")) +(constraint (= (f "888-594-038") "594")) +(constraint (= (f "232-253-254") "253")) +(constraint (= (f "232-253-254") "253")) +(constraint (= (f "232-253-254") "253")) +(constraint (= (f "308-722-292") "722")) +(constraint (= (f "308-722-292") "722")) +(constraint (= (f "308-722-292") "722")) +(constraint (= (f "342-145-742") "145")) +(constraint (= (f "342-145-742") "145")) +(constraint (= (f "342-145-742") "145")) +(constraint (= (f "568-181-515") "181")) +(constraint (= (f "568-181-515") "181")) +(constraint (= (f "568-181-515") "181")) +(constraint (= (f "300-140-756") "140")) +(constraint (= (f "300-140-756") "140")) +(constraint (= (f "300-140-756") "140")) +(constraint (= (f "099-684-216") "684")) +(constraint (= (f "099-684-216") "684")) +(constraint (= (f "099-684-216") "684")) +(constraint (= (f "575-296-621") "296")) +(constraint (= (f "575-296-621") "296")) +(constraint (= (f "575-296-621") "296")) +(constraint (= (f "994-443-794") "443")) +(constraint (= (f "994-443-794") "443")) +(constraint (= (f "994-443-794") "443")) +(constraint (= (f "400-334-692") "334")) +(constraint (= (f "400-334-692") "334")) +(constraint (= (f "400-334-692") "334")) +(constraint (= (f "684-711-883") "711")) +(constraint (= (f "684-711-883") "711")) +(constraint (= (f "684-711-883") "711")) +(constraint (= (f "539-636-358") "636")) +(constraint (= (f "539-636-358") "636")) +(constraint (= (f "539-636-358") "636")) +(constraint (= (f "009-878-919") "878")) +(constraint (= (f "009-878-919") "878")) +(constraint (= (f "009-878-919") "878")) +(constraint (= (f "919-545-701") "545")) +(constraint (= (f "919-545-701") "545")) +(constraint (= (f "919-545-701") "545")) +(constraint (= (f "546-399-239") "399")) +(constraint (= (f "546-399-239") "399")) +(constraint (= (f "546-399-239") "399")) +(constraint (= (f "993-608-757") "608")) +(constraint (= (f "993-608-757") "608")) +(constraint (= (f "993-608-757") "608")) +(constraint (= (f "107-652-845") "652")) +(constraint (= (f "107-652-845") "652")) +(constraint (= (f "107-652-845") "652")) +(constraint (= (f "206-805-793") "805")) +(constraint (= (f "206-805-793") "805")) +(constraint (= (f "206-805-793") "805")) +(constraint (= (f "198-857-684") "857")) +(constraint (= (f "198-857-684") "857")) +(constraint (= (f "198-857-684") "857")) +(constraint (= (f "912-827-430") "827")) +(constraint (= (f "912-827-430") "827")) +(constraint (= (f "912-827-430") "827")) +(constraint (= (f "560-951-766") "951")) +(constraint (= (f "560-951-766") "951")) +(constraint (= (f "560-951-766") "951")) +(constraint (= (f "142-178-290") "178")) +(constraint (= (f "142-178-290") "178")) +(constraint (= (f "142-178-290") "178")) +(constraint (= (f "732-196-946") "196")) +(constraint (= (f "732-196-946") "196")) +(constraint (= (f "732-196-946") "196")) +(constraint (= (f "963-875-745") "875")) +(constraint (= (f "963-875-745") "875")) +(constraint (= (f "963-875-745") "875")) +(constraint (= (f "881-865-867") "865")) +(constraint (= (f "881-865-867") "865")) +(constraint (= (f "881-865-867") "865")) +(constraint (= (f "234-686-715") "686")) +(constraint (= (f "234-686-715") "686")) +(constraint (= (f "234-686-715") "686")) +(constraint (= (f "720-330-583") "330")) +(constraint (= (f "720-330-583") "330")) +(constraint (= (f "720-330-583") "330")) +(constraint (= (f "593-065-126") "065")) +(constraint (= (f "593-065-126") "065")) +(constraint (= (f "593-065-126") "065")) +(constraint (= (f "671-778-064") "778")) +(constraint (= (f "671-778-064") "778")) +(constraint (= (f "671-778-064") "778")) +(constraint (= (f "252-029-036") "029")) +(constraint (= (f "252-029-036") "029")) +(constraint (= (f "252-029-036") "029")) +(constraint (= (f "700-322-036") "322")) +(constraint (= (f "700-322-036") "322")) +(constraint (= (f "700-322-036") "322")) +(constraint (= (f "882-587-473") "587")) +(constraint (= (f "882-587-473") "587")) +(constraint (= (f "882-587-473") "587")) +(constraint (= (f "964-134-953") "134")) +(constraint (= (f "964-134-953") "134")) +(constraint (= (f "964-134-953") "134")) +(constraint (= (f "038-300-876") "300")) +(constraint (= (f "038-300-876") "300")) +(constraint (= (f "038-300-876") "300")) +(constraint (= (f "158-894-947") "894")) +(constraint (= (f "158-894-947") "894")) +(constraint (= (f "158-894-947") "894")) +(constraint (= (f "757-454-374") "454")) +(constraint (= (f "757-454-374") "454")) +(constraint (= (f "757-454-374") "454")) +(constraint (= (f "872-513-190") "513")) +(constraint (= (f "872-513-190") "513")) +(constraint (= (f "872-513-190") "513")) +(constraint (= (f "566-086-726") "086")) +(constraint (= (f "566-086-726") "086")) +(constraint (= (f "566-086-726") "086")) +(constraint (= (f "938-242-504") "242")) +(constraint (= (f "308-916-545") "916")) +(constraint (= (f "623-599-749") "599")) +(constraint (= (f "981-424-843") "424")) +(constraint (= (f "118-980-214") "980")) +(constraint (= (f "244-655-094") "655")) +(constraint (= (f "830-941-991") "941")) +(constraint (= (f "911-186-562") "186")) +(constraint (= (f "002-500-200") "500")) +(constraint (= (f "113-860-034") "860")) +(constraint (= (f "457-622-959") "622")) +(constraint (= (f "986-722-311") "722")) +(constraint (= (f "110-170-771") "170")) +(constraint (= (f "469-610-118") "610")) +(constraint (= (f "817-925-247") "925")) +(constraint (= (f "256-899-439") "899")) +(constraint (= (f "886-911-726") "911")) +(constraint (= (f "562-950-358") "950")) +(constraint (= (f "693-049-588") "049")) +(constraint (= (f "840-503-234") "503")) +(constraint (= (f "698-815-340") "815")) +(constraint (= (f "498-808-434") "808")) +(constraint (= (f "329-545-000") "545")) +(constraint (= (f "380-281-597") "281")) +(constraint (= (f "332-395-493") "395")) +(constraint (= (f "251-903-028") "903")) +(constraint (= (f "176-090-894") "090")) +(constraint (= (f "336-611-100") "611")) +(constraint (= (f "416-390-647") "390")) +(constraint (= (f "019-430-596") "430")) +(constraint (= (f "960-659-771") "659")) +(constraint (= (f "475-505-007") "505")) +(constraint (= (f "424-069-886") "069")) +(constraint (= (f "941-102-117") "102")) +(constraint (= (f "331-728-008") "728")) +(constraint (= (f "487-726-198") "726")) +(constraint (= (f "612-419-942") "419")) +(constraint (= (f "594-741-346") "741")) +(constraint (= (f "320-984-742") "984")) +(constraint (= (f "060-919-361") "919")) +(constraint (= (f "275-536-998") "536")) +(constraint (= (f "548-835-065") "835")) +(constraint (= (f "197-485-507") "485")) +(constraint (= (f "455-776-949") "776")) +(constraint (= (f "085-421-340") "421")) +(constraint (= (f "785-713-099") "713")) +(constraint (= (f "426-712-861") "712")) +(constraint (= (f "386-994-906") "994")) +(constraint (= (f "918-304-840") "304")) +(constraint (= (f "247-153-598") "153")) +(constraint (= (f "075-497-069") "497")) +(constraint (= (f "140-726-583") "726")) +(constraint (= (f "049-413-248") "413")) +(constraint (= (f "977-386-462") "386")) +(constraint (= (f "058-272-455") "272")) +(constraint (= (f "428-629-927") "629")) +(constraint (= (f "449-122-191") "122")) +(constraint (= (f "568-759-670") "759")) +(constraint (= (f "312-846-053") "846")) +(constraint (= (f "943-037-297") "037")) +(constraint (= (f "014-270-177") "270")) +(constraint (= (f "658-877-878") "877")) +(constraint (= (f "888-594-038") "594")) +(constraint (= (f "232-253-254") "253")) +(constraint (= (f "308-722-292") "722")) +(constraint (= (f "342-145-742") "145")) +(constraint (= (f "568-181-515") "181")) +(constraint (= (f "300-140-756") "140")) +(constraint (= (f "099-684-216") "684")) +(constraint (= (f "575-296-621") "296")) +(constraint (= (f "994-443-794") "443")) +(constraint (= (f "400-334-692") "334")) +(constraint (= (f "684-711-883") "711")) +(constraint (= (f "539-636-358") "636")) +(constraint (= (f "009-878-919") "878")) +(constraint (= (f "919-545-701") "545")) +(constraint (= (f "546-399-239") "399")) +(constraint (= (f "993-608-757") "608")) +(constraint (= (f "107-652-845") "652")) +(constraint (= (f "206-805-793") "805")) +(constraint (= (f "198-857-684") "857")) +(constraint (= (f "912-827-430") "827")) +(constraint (= (f "560-951-766") "951")) +(constraint (= (f "142-178-290") "178")) +(constraint (= (f "732-196-946") "196")) +(constraint (= (f "963-875-745") "875")) +(constraint (= (f "881-865-867") "865")) +(constraint (= (f "234-686-715") "686")) +(constraint (= (f "720-330-583") "330")) +(constraint (= (f "593-065-126") "065")) +(constraint (= (f "671-778-064") "778")) +(constraint (= (f "252-029-036") "029")) +(constraint (= (f "700-322-036") "322")) +(constraint (= (f "882-587-473") "587")) +(constraint (= (f "964-134-953") "134")) +(constraint (= (f "038-300-876") "300")) +(constraint (= (f "158-894-947") "894")) +(constraint (= (f "757-454-374") "454")) +(constraint (= (f "872-513-190") "513")) +(constraint (= (f "566-086-726") "086")) + +(check-synth) diff --git a/data/sygus/phone-1-long.sl b/data/sygus/phone-1-long.sl new file mode 100644 index 0000000000000000000000000000000000000000..d7ecfe2fd34c44f2295b36f2d7c669af71538a90 --- /dev/null +++ b/data/sygus/phone-1-long.sl @@ -0,0 +1,126 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "938-242-504") "242")) +(constraint (= (f "308-916-545") "916")) +(constraint (= (f "623-599-749") "599")) +(constraint (= (f "981-424-843") "424")) +(constraint (= (f "118-980-214") "980")) +(constraint (= (f "244-655-094") "655")) +(constraint (= (f "830-941-991") "941")) +(constraint (= (f "911-186-562") "186")) +(constraint (= (f "002-500-200") "500")) +(constraint (= (f "113-860-034") "860")) +(constraint (= (f "457-622-959") "622")) +(constraint (= (f "986-722-311") "722")) +(constraint (= (f "110-170-771") "170")) +(constraint (= (f "469-610-118") "610")) +(constraint (= (f "817-925-247") "925")) +(constraint (= (f "256-899-439") "899")) +(constraint (= (f "886-911-726") "911")) +(constraint (= (f "562-950-358") "950")) +(constraint (= (f "693-049-588") "049")) +(constraint (= (f "840-503-234") "503")) +(constraint (= (f "698-815-340") "815")) +(constraint (= (f "498-808-434") "808")) +(constraint (= (f "329-545-000") "545")) +(constraint (= (f "380-281-597") "281")) +(constraint (= (f "332-395-493") "395")) +(constraint (= (f "251-903-028") "903")) +(constraint (= (f "176-090-894") "090")) +(constraint (= (f "336-611-100") "611")) +(constraint (= (f "416-390-647") "390")) +(constraint (= (f "019-430-596") "430")) +(constraint (= (f "960-659-771") "659")) +(constraint (= (f "475-505-007") "505")) +(constraint (= (f "424-069-886") "069")) +(constraint (= (f "941-102-117") "102")) +(constraint (= (f "331-728-008") "728")) +(constraint (= (f "487-726-198") "726")) +(constraint (= (f "612-419-942") "419")) +(constraint (= (f "594-741-346") "741")) +(constraint (= (f "320-984-742") "984")) +(constraint (= (f "060-919-361") "919")) +(constraint (= (f "275-536-998") "536")) +(constraint (= (f "548-835-065") "835")) +(constraint (= (f "197-485-507") "485")) +(constraint (= (f "455-776-949") "776")) +(constraint (= (f "085-421-340") "421")) +(constraint (= (f "785-713-099") "713")) +(constraint (= (f "426-712-861") "712")) +(constraint (= (f "386-994-906") "994")) +(constraint (= (f "918-304-840") "304")) +(constraint (= (f "247-153-598") "153")) +(constraint (= (f "075-497-069") "497")) +(constraint (= (f "140-726-583") "726")) +(constraint (= (f "049-413-248") "413")) +(constraint (= (f "977-386-462") "386")) +(constraint (= (f "058-272-455") "272")) +(constraint (= (f "428-629-927") "629")) +(constraint (= (f "449-122-191") "122")) +(constraint (= (f "568-759-670") "759")) +(constraint (= (f "312-846-053") "846")) +(constraint (= (f "943-037-297") "037")) +(constraint (= (f "014-270-177") "270")) +(constraint (= (f "658-877-878") "877")) +(constraint (= (f "888-594-038") "594")) +(constraint (= (f "232-253-254") "253")) +(constraint (= (f "308-722-292") "722")) +(constraint (= (f "342-145-742") "145")) +(constraint (= (f "568-181-515") "181")) +(constraint (= (f "300-140-756") "140")) +(constraint (= (f "099-684-216") "684")) +(constraint (= (f "575-296-621") "296")) +(constraint (= (f "994-443-794") "443")) +(constraint (= (f "400-334-692") "334")) +(constraint (= (f "684-711-883") "711")) +(constraint (= (f "539-636-358") "636")) +(constraint (= (f "009-878-919") "878")) +(constraint (= (f "919-545-701") "545")) +(constraint (= (f "546-399-239") "399")) +(constraint (= (f "993-608-757") "608")) +(constraint (= (f "107-652-845") "652")) +(constraint (= (f "206-805-793") "805")) +(constraint (= (f "198-857-684") "857")) +(constraint (= (f "912-827-430") "827")) +(constraint (= (f "560-951-766") "951")) +(constraint (= (f "142-178-290") "178")) +(constraint (= (f "732-196-946") "196")) +(constraint (= (f "963-875-745") "875")) +(constraint (= (f "881-865-867") "865")) +(constraint (= (f "234-686-715") "686")) +(constraint (= (f "720-330-583") "330")) +(constraint (= (f "593-065-126") "065")) +(constraint (= (f "671-778-064") "778")) +(constraint (= (f "252-029-036") "029")) +(constraint (= (f "700-322-036") "322")) +(constraint (= (f "882-587-473") "587")) +(constraint (= (f "964-134-953") "134")) +(constraint (= (f "038-300-876") "300")) +(constraint (= (f "158-894-947") "894")) +(constraint (= (f "757-454-374") "454")) +(constraint (= (f "872-513-190") "513")) +(constraint (= (f "566-086-726") "086")) + +(check-synth) diff --git a/data/sygus/phone-1.sl b/data/sygus/phone-1.sl new file mode 100644 index 0000000000000000000000000000000000000000..7c26be80a08ebf5c9dc05e8f014e4dab973a4759 --- /dev/null +++ b/data/sygus/phone-1.sl @@ -0,0 +1,32 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "938-242-504") "242")) +(constraint (= (f "308-916-545") "916")) +(constraint (= (f "623-599-749") "599")) +(constraint (= (f "981-424-843") "424")) +(constraint (= (f "118-980-214") "980")) +(constraint (= (f "244-655-094") "655")) + +(check-synth) diff --git a/data/sygus/phone-10-long-repeat.sl b/data/sygus/phone-10-long-repeat.sl new file mode 100644 index 0000000000000000000000000000000000000000..bf20aae936d1fd4a562022fd01e28631700b868a --- /dev/null +++ b/data/sygus/phone-10-long-repeat.sl @@ -0,0 +1,426 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "+" "-" "." "(" ")" + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "+106 769-858-438") "+106 (769) 858-438")) +(constraint (= (f "+106 769-858-438") "+106 (769) 858-438")) +(constraint (= (f "+106 769-858-438") "+106 (769) 858-438")) +(constraint (= (f "+83 973-757-831") "+83 (973) 757-831")) +(constraint (= (f "+83 973-757-831") "+83 (973) 757-831")) +(constraint (= (f "+83 973-757-831") "+83 (973) 757-831")) +(constraint (= (f "+62 647-787-775") "+62 (647) 787-775")) +(constraint (= (f "+62 647-787-775") "+62 (647) 787-775")) +(constraint (= (f "+62 647-787-775") "+62 (647) 787-775")) +(constraint (= (f "+172 027-507-632") "+172 (027) 507-632")) +(constraint (= (f "+172 027-507-632") "+172 (027) 507-632")) +(constraint (= (f "+172 027-507-632") "+172 (027) 507-632")) +(constraint (= (f "+72 001-050-856") "+72 (001) 050-856")) +(constraint (= (f "+72 001-050-856") "+72 (001) 050-856")) +(constraint (= (f "+72 001-050-856") "+72 (001) 050-856")) +(constraint (= (f "+95 310-537-401") "+95 (310) 537-401")) +(constraint (= (f "+95 310-537-401") "+95 (310) 537-401")) +(constraint (= (f "+95 310-537-401") "+95 (310) 537-401")) +(constraint (= (f "+6 775-969-238") "+6 (775) 969-238")) +(constraint (= (f "+6 775-969-238") "+6 (775) 969-238")) +(constraint (= (f "+6 775-969-238") "+6 (775) 969-238")) +(constraint (= (f "+174 594-539-946") "+174 (594) 539-946")) +(constraint (= (f "+174 594-539-946") "+174 (594) 539-946")) +(constraint (= (f "+174 594-539-946") "+174 (594) 539-946")) +(constraint (= (f "+155 927-275-860") "+155 (927) 275-860")) +(constraint (= (f "+155 927-275-860") "+155 (927) 275-860")) +(constraint (= (f "+155 927-275-860") "+155 (927) 275-860")) +(constraint (= (f "+167 405-461-331") "+167 (405) 461-331")) +(constraint (= (f "+167 405-461-331") "+167 (405) 461-331")) +(constraint (= (f "+167 405-461-331") "+167 (405) 461-331")) +(constraint (= (f "+10 538-347-401") "+10 (538) 347-401")) +(constraint (= (f "+10 538-347-401") "+10 (538) 347-401")) +(constraint (= (f "+10 538-347-401") "+10 (538) 347-401")) +(constraint (= (f "+60 971-986-103") "+60 (971) 986-103")) +(constraint (= (f "+60 971-986-103") "+60 (971) 986-103")) +(constraint (= (f "+60 971-986-103") "+60 (971) 986-103")) +(constraint (= (f "+13 258-276-941") "+13 (258) 276-941")) +(constraint (= (f "+13 258-276-941") "+13 (258) 276-941")) +(constraint (= (f "+13 258-276-941") "+13 (258) 276-941")) +(constraint (= (f "+2 604-746-137") "+2 (604) 746-137")) +(constraint (= (f "+2 604-746-137") "+2 (604) 746-137")) +(constraint (= (f "+2 604-746-137") "+2 (604) 746-137")) +(constraint (= (f "+25 998-898-180") "+25 (998) 898-180")) +(constraint (= (f "+25 998-898-180") "+25 (998) 898-180")) +(constraint (= (f "+25 998-898-180") "+25 (998) 898-180")) +(constraint (= (f "+151 862-946-541") "+151 (862) 946-541")) +(constraint (= (f "+151 862-946-541") "+151 (862) 946-541")) +(constraint (= (f "+151 862-946-541") "+151 (862) 946-541")) +(constraint (= (f "+118 165-041-038") "+118 (165) 041-038")) +(constraint (= (f "+118 165-041-038") "+118 (165) 041-038")) +(constraint (= (f "+118 165-041-038") "+118 (165) 041-038")) +(constraint (= (f "+144 170-592-272") "+144 (170) 592-272")) +(constraint (= (f "+144 170-592-272") "+144 (170) 592-272")) +(constraint (= (f "+144 170-592-272") "+144 (170) 592-272")) +(constraint (= (f "+94 462-008-482") "+94 (462) 008-482")) +(constraint (= (f "+94 462-008-482") "+94 (462) 008-482")) +(constraint (= (f "+94 462-008-482") "+94 (462) 008-482")) +(constraint (= (f "+82 685-122-086") "+82 (685) 122-086")) +(constraint (= (f "+82 685-122-086") "+82 (685) 122-086")) +(constraint (= (f "+82 685-122-086") "+82 (685) 122-086")) +(constraint (= (f "+82 675-366-472") "+82 (675) 366-472")) +(constraint (= (f "+82 675-366-472") "+82 (675) 366-472")) +(constraint (= (f "+82 675-366-472") "+82 (675) 366-472")) +(constraint (= (f "+80 066-433-096") "+80 (066) 433-096")) +(constraint (= (f "+80 066-433-096") "+80 (066) 433-096")) +(constraint (= (f "+80 066-433-096") "+80 (066) 433-096")) +(constraint (= (f "+163 039-436-166") "+163 (039) 436-166")) +(constraint (= (f "+163 039-436-166") "+163 (039) 436-166")) +(constraint (= (f "+163 039-436-166") "+163 (039) 436-166")) +(constraint (= (f "+138 808-083-074") "+138 (808) 083-074")) +(constraint (= (f "+138 808-083-074") "+138 (808) 083-074")) +(constraint (= (f "+138 808-083-074") "+138 (808) 083-074")) +(constraint (= (f "+42 643-245-738") "+42 (643) 245-738")) +(constraint (= (f "+42 643-245-738") "+42 (643) 245-738")) +(constraint (= (f "+42 643-245-738") "+42 (643) 245-738")) +(constraint (= (f "+169 822-542-726") "+169 (822) 542-726")) +(constraint (= (f "+169 822-542-726") "+169 (822) 542-726")) +(constraint (= (f "+169 822-542-726") "+169 (822) 542-726")) +(constraint (= (f "+176 767-782-369") "+176 (767) 782-369")) +(constraint (= (f "+176 767-782-369") "+176 (767) 782-369")) +(constraint (= (f "+176 767-782-369") "+176 (767) 782-369")) +(constraint (= (f "+47 414-369-343") "+47 (414) 369-343")) +(constraint (= (f "+47 414-369-343") "+47 (414) 369-343")) +(constraint (= (f "+47 414-369-343") "+47 (414) 369-343")) +(constraint (= (f "+138 885-618-512") "+138 (885) 618-512")) +(constraint (= (f "+138 885-618-512") "+138 (885) 618-512")) +(constraint (= (f "+138 885-618-512") "+138 (885) 618-512")) +(constraint (= (f "+104 158-671-355") "+104 (158) 671-355")) +(constraint (= (f "+104 158-671-355") "+104 (158) 671-355")) +(constraint (= (f "+104 158-671-355") "+104 (158) 671-355")) +(constraint (= (f "+188 280-087-526") "+188 (280) 087-526")) +(constraint (= (f "+188 280-087-526") "+188 (280) 087-526")) +(constraint (= (f "+188 280-087-526") "+188 (280) 087-526")) +(constraint (= (f "+50 268-571-336") "+50 (268) 571-336")) +(constraint (= (f "+50 268-571-336") "+50 (268) 571-336")) +(constraint (= (f "+50 268-571-336") "+50 (268) 571-336")) +(constraint (= (f "+183 225-960-024") "+183 (225) 960-024")) +(constraint (= (f "+183 225-960-024") "+183 (225) 960-024")) +(constraint (= (f "+183 225-960-024") "+183 (225) 960-024")) +(constraint (= (f "+58 191-982-491") "+58 (191) 982-491")) +(constraint (= (f "+58 191-982-491") "+58 (191) 982-491")) +(constraint (= (f "+58 191-982-491") "+58 (191) 982-491")) +(constraint (= (f "+9 507-092-535") "+9 (507) 092-535")) +(constraint (= (f "+9 507-092-535") "+9 (507) 092-535")) +(constraint (= (f "+9 507-092-535") "+9 (507) 092-535")) +(constraint (= (f "+64 061-601-398") "+64 (061) 601-398")) +(constraint (= (f "+64 061-601-398") "+64 (061) 601-398")) +(constraint (= (f "+64 061-601-398") "+64 (061) 601-398")) +(constraint (= (f "+189 831-591-877") "+189 (831) 591-877")) +(constraint (= (f "+189 831-591-877") "+189 (831) 591-877")) +(constraint (= (f "+189 831-591-877") "+189 (831) 591-877")) +(constraint (= (f "+129 425-765-844") "+129 (425) 765-844")) +(constraint (= (f "+129 425-765-844") "+129 (425) 765-844")) +(constraint (= (f "+129 425-765-844") "+129 (425) 765-844")) +(constraint (= (f "+94 856-734-046") "+94 (856) 734-046")) +(constraint (= (f "+94 856-734-046") "+94 (856) 734-046")) +(constraint (= (f "+94 856-734-046") "+94 (856) 734-046")) +(constraint (= (f "+35 082-845-261") "+35 (082) 845-261")) +(constraint (= (f "+35 082-845-261") "+35 (082) 845-261")) +(constraint (= (f "+35 082-845-261") "+35 (082) 845-261")) +(constraint (= (f "+185 394-622-272") "+185 (394) 622-272")) +(constraint (= (f "+185 394-622-272") "+185 (394) 622-272")) +(constraint (= (f "+185 394-622-272") "+185 (394) 622-272")) +(constraint (= (f "+163 905-707-740") "+163 (905) 707-740")) +(constraint (= (f "+163 905-707-740") "+163 (905) 707-740")) +(constraint (= (f "+163 905-707-740") "+163 (905) 707-740")) +(constraint (= (f "+23 448-213-807") "+23 (448) 213-807")) +(constraint (= (f "+23 448-213-807") "+23 (448) 213-807")) +(constraint (= (f "+23 448-213-807") "+23 (448) 213-807")) +(constraint (= (f "+42 634-077-089") "+42 (634) 077-089")) +(constraint (= (f "+42 634-077-089") "+42 (634) 077-089")) +(constraint (= (f "+42 634-077-089") "+42 (634) 077-089")) +(constraint (= (f "+18 051-287-382") "+18 (051) 287-382")) +(constraint (= (f "+18 051-287-382") "+18 (051) 287-382")) +(constraint (= (f "+18 051-287-382") "+18 (051) 287-382")) +(constraint (= (f "+29 773-545-520") "+29 (773) 545-520")) +(constraint (= (f "+29 773-545-520") "+29 (773) 545-520")) +(constraint (= (f "+29 773-545-520") "+29 (773) 545-520")) +(constraint (= (f "+43 249-097-743") "+43 (249) 097-743")) +(constraint (= (f "+43 249-097-743") "+43 (249) 097-743")) +(constraint (= (f "+43 249-097-743") "+43 (249) 097-743")) +(constraint (= (f "+158 674-736-891") "+158 (674) 736-891")) +(constraint (= (f "+158 674-736-891") "+158 (674) 736-891")) +(constraint (= (f "+158 674-736-891") "+158 (674) 736-891")) +(constraint (= (f "+45 124-771-454") "+45 (124) 771-454")) +(constraint (= (f "+45 124-771-454") "+45 (124) 771-454")) +(constraint (= (f "+45 124-771-454") "+45 (124) 771-454")) +(constraint (= (f "+180 029-457-654") "+180 (029) 457-654")) +(constraint (= (f "+180 029-457-654") "+180 (029) 457-654")) +(constraint (= (f "+180 029-457-654") "+180 (029) 457-654")) +(constraint (= (f "+75 227-250-652") "+75 (227) 250-652")) +(constraint (= (f "+75 227-250-652") "+75 (227) 250-652")) +(constraint (= (f "+75 227-250-652") "+75 (227) 250-652")) +(constraint (= (f "+5 528-317-854") "+5 (528) 317-854")) +(constraint (= (f "+5 528-317-854") "+5 (528) 317-854")) +(constraint (= (f "+5 528-317-854") "+5 (528) 317-854")) +(constraint (= (f "+81 849-629-290") "+81 (849) 629-290")) +(constraint (= (f "+81 849-629-290") "+81 (849) 629-290")) +(constraint (= (f "+81 849-629-290") "+81 (849) 629-290")) +(constraint (= (f "+46 005-119-176") "+46 (005) 119-176")) +(constraint (= (f "+46 005-119-176") "+46 (005) 119-176")) +(constraint (= (f "+46 005-119-176") "+46 (005) 119-176")) +(constraint (= (f "+108 150-380-705") "+108 (150) 380-705")) +(constraint (= (f "+108 150-380-705") "+108 (150) 380-705")) +(constraint (= (f "+108 150-380-705") "+108 (150) 380-705")) +(constraint (= (f "+40 122-224-247") "+40 (122) 224-247")) +(constraint (= (f "+40 122-224-247") "+40 (122) 224-247")) +(constraint (= (f "+40 122-224-247") "+40 (122) 224-247")) +(constraint (= (f "+68 890-680-027") "+68 (890) 680-027")) +(constraint (= (f "+68 890-680-027") "+68 (890) 680-027")) +(constraint (= (f "+68 890-680-027") "+68 (890) 680-027")) +(constraint (= (f "+169 060-204-504") "+169 (060) 204-504")) +(constraint (= (f "+169 060-204-504") "+169 (060) 204-504")) +(constraint (= (f "+169 060-204-504") "+169 (060) 204-504")) +(constraint (= (f "+95 620-820-945") "+95 (620) 820-945")) +(constraint (= (f "+95 620-820-945") "+95 (620) 820-945")) +(constraint (= (f "+95 620-820-945") "+95 (620) 820-945")) +(constraint (= (f "+43 592-938-846") "+43 (592) 938-846")) +(constraint (= (f "+43 592-938-846") "+43 (592) 938-846")) +(constraint (= (f "+43 592-938-846") "+43 (592) 938-846")) +(constraint (= (f "+7 023-296-647") "+7 (023) 296-647")) +(constraint (= (f "+7 023-296-647") "+7 (023) 296-647")) +(constraint (= (f "+7 023-296-647") "+7 (023) 296-647")) +(constraint (= (f "+20 541-401-396") "+20 (541) 401-396")) +(constraint (= (f "+20 541-401-396") "+20 (541) 401-396")) +(constraint (= (f "+20 541-401-396") "+20 (541) 401-396")) +(constraint (= (f "+64 751-365-934") "+64 (751) 365-934")) +(constraint (= (f "+64 751-365-934") "+64 (751) 365-934")) +(constraint (= (f "+64 751-365-934") "+64 (751) 365-934")) +(constraint (= (f "+163 546-119-476") "+163 (546) 119-476")) +(constraint (= (f "+163 546-119-476") "+163 (546) 119-476")) +(constraint (= (f "+163 546-119-476") "+163 (546) 119-476")) +(constraint (= (f "+198 557-666-779") "+198 (557) 666-779")) +(constraint (= (f "+198 557-666-779") "+198 (557) 666-779")) +(constraint (= (f "+198 557-666-779") "+198 (557) 666-779")) +(constraint (= (f "+14 673-759-017") "+14 (673) 759-017")) +(constraint (= (f "+14 673-759-017") "+14 (673) 759-017")) +(constraint (= (f "+14 673-759-017") "+14 (673) 759-017")) +(constraint (= (f "+161 086-020-168") "+161 (086) 020-168")) +(constraint (= (f "+161 086-020-168") "+161 (086) 020-168")) +(constraint (= (f "+161 086-020-168") "+161 (086) 020-168")) +(constraint (= (f "+65 970-575-488") "+65 (970) 575-488")) +(constraint (= (f "+65 970-575-488") "+65 (970) 575-488")) +(constraint (= (f "+65 970-575-488") "+65 (970) 575-488")) +(constraint (= (f "+2 455-126-377") "+2 (455) 126-377")) +(constraint (= (f "+2 455-126-377") "+2 (455) 126-377")) +(constraint (= (f "+2 455-126-377") "+2 (455) 126-377")) +(constraint (= (f "+196 728-585-376") "+196 (728) 585-376")) +(constraint (= (f "+196 728-585-376") "+196 (728) 585-376")) +(constraint (= (f "+196 728-585-376") "+196 (728) 585-376")) +(constraint (= (f "+33 117-430-125") "+33 (117) 430-125")) +(constraint (= (f "+33 117-430-125") "+33 (117) 430-125")) +(constraint (= (f "+33 117-430-125") "+33 (117) 430-125")) +(constraint (= (f "+195 488-831-768") "+195 (488) 831-768")) +(constraint (= (f "+195 488-831-768") "+195 (488) 831-768")) +(constraint (= (f "+195 488-831-768") "+195 (488) 831-768")) +(constraint (= (f "+86 468-718-108") "+86 (468) 718-108")) +(constraint (= (f "+86 468-718-108") "+86 (468) 718-108")) +(constraint (= (f "+86 468-718-108") "+86 (468) 718-108")) +(constraint (= (f "+194 278-716-950") "+194 (278) 716-950")) +(constraint (= (f "+194 278-716-950") "+194 (278) 716-950")) +(constraint (= (f "+194 278-716-950") "+194 (278) 716-950")) +(constraint (= (f "+43 730-685-847") "+43 (730) 685-847")) +(constraint (= (f "+43 730-685-847") "+43 (730) 685-847")) +(constraint (= (f "+43 730-685-847") "+43 (730) 685-847")) +(constraint (= (f "+140 794-289-551") "+140 (794) 289-551")) +(constraint (= (f "+140 794-289-551") "+140 (794) 289-551")) +(constraint (= (f "+140 794-289-551") "+140 (794) 289-551")) +(constraint (= (f "+21 679-740-834") "+21 (679) 740-834")) +(constraint (= (f "+21 679-740-834") "+21 (679) 740-834")) +(constraint (= (f "+21 679-740-834") "+21 (679) 740-834")) +(constraint (= (f "+98 717-997-323") "+98 (717) 997-323")) +(constraint (= (f "+98 717-997-323") "+98 (717) 997-323")) +(constraint (= (f "+98 717-997-323") "+98 (717) 997-323")) +(constraint (= (f "+47 401-100-231") "+47 (401) 100-231")) +(constraint (= (f "+47 401-100-231") "+47 (401) 100-231")) +(constraint (= (f "+47 401-100-231") "+47 (401) 100-231")) +(constraint (= (f "+143 726-462-368") "+143 (726) 462-368")) +(constraint (= (f "+143 726-462-368") "+143 (726) 462-368")) +(constraint (= (f "+143 726-462-368") "+143 (726) 462-368")) +(constraint (= (f "+147 864-005-968") "+147 (864) 005-968")) +(constraint (= (f "+147 864-005-968") "+147 (864) 005-968")) +(constraint (= (f "+147 864-005-968") "+147 (864) 005-968")) +(constraint (= (f "+130 590-757-665") "+130 (590) 757-665")) +(constraint (= (f "+130 590-757-665") "+130 (590) 757-665")) +(constraint (= (f "+130 590-757-665") "+130 (590) 757-665")) +(constraint (= (f "+197 700-858-976") "+197 (700) 858-976")) +(constraint (= (f "+197 700-858-976") "+197 (700) 858-976")) +(constraint (= (f "+197 700-858-976") "+197 (700) 858-976")) +(constraint (= (f "+158 344-541-946") "+158 (344) 541-946")) +(constraint (= (f "+158 344-541-946") "+158 (344) 541-946")) +(constraint (= (f "+158 344-541-946") "+158 (344) 541-946")) +(constraint (= (f "+56 242-901-234") "+56 (242) 901-234")) +(constraint (= (f "+56 242-901-234") "+56 (242) 901-234")) +(constraint (= (f "+56 242-901-234") "+56 (242) 901-234")) +(constraint (= (f "+132 313-075-754") "+132 (313) 075-754")) +(constraint (= (f "+132 313-075-754") "+132 (313) 075-754")) +(constraint (= (f "+132 313-075-754") "+132 (313) 075-754")) +(constraint (= (f "+130 517-953-149") "+130 (517) 953-149")) +(constraint (= (f "+130 517-953-149") "+130 (517) 953-149")) +(constraint (= (f "+130 517-953-149") "+130 (517) 953-149")) +(constraint (= (f "+158 684-878-743") "+158 (684) 878-743")) +(constraint (= (f "+158 684-878-743") "+158 (684) 878-743")) +(constraint (= (f "+158 684-878-743") "+158 (684) 878-743")) +(constraint (= (f "+52 836-582-035") "+52 (836) 582-035")) +(constraint (= (f "+52 836-582-035") "+52 (836) 582-035")) +(constraint (= (f "+52 836-582-035") "+52 (836) 582-035")) +(constraint (= (f "+138 117-484-671") "+138 (117) 484-671")) +(constraint (= (f "+138 117-484-671") "+138 (117) 484-671")) +(constraint (= (f "+138 117-484-671") "+138 (117) 484-671")) +(constraint (= (f "+50 012-148-873") "+50 (012) 148-873")) +(constraint (= (f "+50 012-148-873") "+50 (012) 148-873")) +(constraint (= (f "+50 012-148-873") "+50 (012) 148-873")) +(constraint (= (f "+105 048-919-483") "+105 (048) 919-483")) +(constraint (= (f "+105 048-919-483") "+105 (048) 919-483")) +(constraint (= (f "+105 048-919-483") "+105 (048) 919-483")) +(constraint (= (f "+18 209-851-997") "+18 (209) 851-997")) +(constraint (= (f "+18 209-851-997") "+18 (209) 851-997")) +(constraint (= (f "+18 209-851-997") "+18 (209) 851-997")) +(constraint (= (f "+176 938-056-084") "+176 (938) 056-084")) +(constraint (= (f "+176 938-056-084") "+176 (938) 056-084")) +(constraint (= (f "+176 938-056-084") "+176 (938) 056-084")) +(constraint (= (f "+141 018-132-973") "+141 (018) 132-973")) +(constraint (= (f "+141 018-132-973") "+141 (018) 132-973")) +(constraint (= (f "+141 018-132-973") "+141 (018) 132-973")) +(constraint (= (f "+199 936-162-415") "+199 (936) 162-415")) +(constraint (= (f "+199 936-162-415") "+199 (936) 162-415")) +(constraint (= (f "+199 936-162-415") "+199 (936) 162-415")) +(constraint (= (f "+33 547-051-264") "+33 (547) 051-264")) +(constraint (= (f "+33 547-051-264") "+33 (547) 051-264")) +(constraint (= (f "+33 547-051-264") "+33 (547) 051-264")) +(constraint (= (f "+161 233-981-513") "+161 (233) 981-513")) +(constraint (= (f "+161 233-981-513") "+161 (233) 981-513")) +(constraint (= (f "+161 233-981-513") "+161 (233) 981-513")) +(constraint (= (f "+115 101-728-328") "+115 (101) 728-328")) +(constraint (= (f "+115 101-728-328") "+115 (101) 728-328")) +(constraint (= (f "+115 101-728-328") "+115 (101) 728-328")) +(constraint (= (f "+45 095-746-635") "+45 (095) 746-635")) +(constraint (= (f "+45 095-746-635") "+45 (095) 746-635")) +(constraint (= (f "+45 095-746-635") "+45 (095) 746-635")) +(constraint (= (f "+106 769-858-438") "+106 (769) 858-438")) +(constraint (= (f "+83 973-757-831") "+83 (973) 757-831")) +(constraint (= (f "+62 647-787-775") "+62 (647) 787-775")) +(constraint (= (f "+172 027-507-632") "+172 (027) 507-632")) +(constraint (= (f "+72 001-050-856") "+72 (001) 050-856")) +(constraint (= (f "+95 310-537-401") "+95 (310) 537-401")) +(constraint (= (f "+6 775-969-238") "+6 (775) 969-238")) +(constraint (= (f "+174 594-539-946") "+174 (594) 539-946")) +(constraint (= (f "+155 927-275-860") "+155 (927) 275-860")) +(constraint (= (f "+167 405-461-331") "+167 (405) 461-331")) +(constraint (= (f "+10 538-347-401") "+10 (538) 347-401")) +(constraint (= (f "+60 971-986-103") "+60 (971) 986-103")) +(constraint (= (f "+13 258-276-941") "+13 (258) 276-941")) +(constraint (= (f "+2 604-746-137") "+2 (604) 746-137")) +(constraint (= (f "+25 998-898-180") "+25 (998) 898-180")) +(constraint (= (f "+151 862-946-541") "+151 (862) 946-541")) +(constraint (= (f "+118 165-041-038") "+118 (165) 041-038")) +(constraint (= (f "+144 170-592-272") "+144 (170) 592-272")) +(constraint (= (f "+94 462-008-482") "+94 (462) 008-482")) +(constraint (= (f "+82 685-122-086") "+82 (685) 122-086")) +(constraint (= (f "+82 675-366-472") "+82 (675) 366-472")) +(constraint (= (f "+80 066-433-096") "+80 (066) 433-096")) +(constraint (= (f "+163 039-436-166") "+163 (039) 436-166")) +(constraint (= (f "+138 808-083-074") "+138 (808) 083-074")) +(constraint (= (f "+42 643-245-738") "+42 (643) 245-738")) +(constraint (= (f "+169 822-542-726") "+169 (822) 542-726")) +(constraint (= (f "+176 767-782-369") "+176 (767) 782-369")) +(constraint (= (f "+47 414-369-343") "+47 (414) 369-343")) +(constraint (= (f "+138 885-618-512") "+138 (885) 618-512")) +(constraint (= (f "+104 158-671-355") "+104 (158) 671-355")) +(constraint (= (f "+188 280-087-526") "+188 (280) 087-526")) +(constraint (= (f "+50 268-571-336") "+50 (268) 571-336")) +(constraint (= (f "+183 225-960-024") "+183 (225) 960-024")) +(constraint (= (f "+58 191-982-491") "+58 (191) 982-491")) +(constraint (= (f "+9 507-092-535") "+9 (507) 092-535")) +(constraint (= (f "+64 061-601-398") "+64 (061) 601-398")) +(constraint (= (f "+189 831-591-877") "+189 (831) 591-877")) +(constraint (= (f "+129 425-765-844") "+129 (425) 765-844")) +(constraint (= (f "+94 856-734-046") "+94 (856) 734-046")) +(constraint (= (f "+35 082-845-261") "+35 (082) 845-261")) +(constraint (= (f "+185 394-622-272") "+185 (394) 622-272")) +(constraint (= (f "+163 905-707-740") "+163 (905) 707-740")) +(constraint (= (f "+23 448-213-807") "+23 (448) 213-807")) +(constraint (= (f "+42 634-077-089") "+42 (634) 077-089")) +(constraint (= (f "+18 051-287-382") "+18 (051) 287-382")) +(constraint (= (f "+29 773-545-520") "+29 (773) 545-520")) +(constraint (= (f "+43 249-097-743") "+43 (249) 097-743")) +(constraint (= (f "+158 674-736-891") "+158 (674) 736-891")) +(constraint (= (f "+45 124-771-454") "+45 (124) 771-454")) +(constraint (= (f "+180 029-457-654") "+180 (029) 457-654")) +(constraint (= (f "+75 227-250-652") "+75 (227) 250-652")) +(constraint (= (f "+5 528-317-854") "+5 (528) 317-854")) +(constraint (= (f "+81 849-629-290") "+81 (849) 629-290")) +(constraint (= (f "+46 005-119-176") "+46 (005) 119-176")) +(constraint (= (f "+108 150-380-705") "+108 (150) 380-705")) +(constraint (= (f "+40 122-224-247") "+40 (122) 224-247")) +(constraint (= (f "+68 890-680-027") "+68 (890) 680-027")) +(constraint (= (f "+169 060-204-504") "+169 (060) 204-504")) +(constraint (= (f "+95 620-820-945") "+95 (620) 820-945")) +(constraint (= (f "+43 592-938-846") "+43 (592) 938-846")) +(constraint (= (f "+7 023-296-647") "+7 (023) 296-647")) +(constraint (= (f "+20 541-401-396") "+20 (541) 401-396")) +(constraint (= (f "+64 751-365-934") "+64 (751) 365-934")) +(constraint (= (f "+163 546-119-476") "+163 (546) 119-476")) +(constraint (= (f "+198 557-666-779") "+198 (557) 666-779")) +(constraint (= (f "+14 673-759-017") "+14 (673) 759-017")) +(constraint (= (f "+161 086-020-168") "+161 (086) 020-168")) +(constraint (= (f "+65 970-575-488") "+65 (970) 575-488")) +(constraint (= (f "+2 455-126-377") "+2 (455) 126-377")) +(constraint (= (f "+196 728-585-376") "+196 (728) 585-376")) +(constraint (= (f "+33 117-430-125") "+33 (117) 430-125")) +(constraint (= (f "+195 488-831-768") "+195 (488) 831-768")) +(constraint (= (f "+86 468-718-108") "+86 (468) 718-108")) +(constraint (= (f "+194 278-716-950") "+194 (278) 716-950")) +(constraint (= (f "+43 730-685-847") "+43 (730) 685-847")) +(constraint (= (f "+140 794-289-551") "+140 (794) 289-551")) +(constraint (= (f "+21 679-740-834") "+21 (679) 740-834")) +(constraint (= (f "+98 717-997-323") "+98 (717) 997-323")) +(constraint (= (f "+47 401-100-231") "+47 (401) 100-231")) +(constraint (= (f "+143 726-462-368") "+143 (726) 462-368")) +(constraint (= (f "+147 864-005-968") "+147 (864) 005-968")) +(constraint (= (f "+130 590-757-665") "+130 (590) 757-665")) +(constraint (= (f "+197 700-858-976") "+197 (700) 858-976")) +(constraint (= (f "+158 344-541-946") "+158 (344) 541-946")) +(constraint (= (f "+56 242-901-234") "+56 (242) 901-234")) +(constraint (= (f "+132 313-075-754") "+132 (313) 075-754")) +(constraint (= (f "+130 517-953-149") "+130 (517) 953-149")) +(constraint (= (f "+158 684-878-743") "+158 (684) 878-743")) +(constraint (= (f "+52 836-582-035") "+52 (836) 582-035")) +(constraint (= (f "+138 117-484-671") "+138 (117) 484-671")) +(constraint (= (f "+50 012-148-873") "+50 (012) 148-873")) +(constraint (= (f "+105 048-919-483") "+105 (048) 919-483")) +(constraint (= (f "+18 209-851-997") "+18 (209) 851-997")) +(constraint (= (f "+176 938-056-084") "+176 (938) 056-084")) +(constraint (= (f "+141 018-132-973") "+141 (018) 132-973")) +(constraint (= (f "+199 936-162-415") "+199 (936) 162-415")) +(constraint (= (f "+33 547-051-264") "+33 (547) 051-264")) +(constraint (= (f "+161 233-981-513") "+161 (233) 981-513")) +(constraint (= (f "+115 101-728-328") "+115 (101) 728-328")) +(constraint (= (f "+45 095-746-635") "+45 (095) 746-635")) + +(check-synth) diff --git a/data/sygus/phone-10-long.sl b/data/sygus/phone-10-long.sl new file mode 100644 index 0000000000000000000000000000000000000000..18037ecc5383b0ea236f0568a4a88757708f4604 --- /dev/null +++ b/data/sygus/phone-10-long.sl @@ -0,0 +1,126 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "+" "-" "." "(" ")" + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "+106 769-858-438") "+106 (769) 858-438")) +(constraint (= (f "+83 973-757-831") "+83 (973) 757-831")) +(constraint (= (f "+62 647-787-775") "+62 (647) 787-775")) +(constraint (= (f "+172 027-507-632") "+172 (027) 507-632")) +(constraint (= (f "+72 001-050-856") "+72 (001) 050-856")) +(constraint (= (f "+95 310-537-401") "+95 (310) 537-401")) +(constraint (= (f "+6 775-969-238") "+6 (775) 969-238")) +(constraint (= (f "+174 594-539-946") "+174 (594) 539-946")) +(constraint (= (f "+155 927-275-860") "+155 (927) 275-860")) +(constraint (= (f "+167 405-461-331") "+167 (405) 461-331")) +(constraint (= (f "+10 538-347-401") "+10 (538) 347-401")) +(constraint (= (f "+60 971-986-103") "+60 (971) 986-103")) +(constraint (= (f "+13 258-276-941") "+13 (258) 276-941")) +(constraint (= (f "+2 604-746-137") "+2 (604) 746-137")) +(constraint (= (f "+25 998-898-180") "+25 (998) 898-180")) +(constraint (= (f "+151 862-946-541") "+151 (862) 946-541")) +(constraint (= (f "+118 165-041-038") "+118 (165) 041-038")) +(constraint (= (f "+144 170-592-272") "+144 (170) 592-272")) +(constraint (= (f "+94 462-008-482") "+94 (462) 008-482")) +(constraint (= (f "+82 685-122-086") "+82 (685) 122-086")) +(constraint (= (f "+82 675-366-472") "+82 (675) 366-472")) +(constraint (= (f "+80 066-433-096") "+80 (066) 433-096")) +(constraint (= (f "+163 039-436-166") "+163 (039) 436-166")) +(constraint (= (f "+138 808-083-074") "+138 (808) 083-074")) +(constraint (= (f "+42 643-245-738") "+42 (643) 245-738")) +(constraint (= (f "+169 822-542-726") "+169 (822) 542-726")) +(constraint (= (f "+176 767-782-369") "+176 (767) 782-369")) +(constraint (= (f "+47 414-369-343") "+47 (414) 369-343")) +(constraint (= (f "+138 885-618-512") "+138 (885) 618-512")) +(constraint (= (f "+104 158-671-355") "+104 (158) 671-355")) +(constraint (= (f "+188 280-087-526") "+188 (280) 087-526")) +(constraint (= (f "+50 268-571-336") "+50 (268) 571-336")) +(constraint (= (f "+183 225-960-024") "+183 (225) 960-024")) +(constraint (= (f "+58 191-982-491") "+58 (191) 982-491")) +(constraint (= (f "+9 507-092-535") "+9 (507) 092-535")) +(constraint (= (f "+64 061-601-398") "+64 (061) 601-398")) +(constraint (= (f "+189 831-591-877") "+189 (831) 591-877")) +(constraint (= (f "+129 425-765-844") "+129 (425) 765-844")) +(constraint (= (f "+94 856-734-046") "+94 (856) 734-046")) +(constraint (= (f "+35 082-845-261") "+35 (082) 845-261")) +(constraint (= (f "+185 394-622-272") "+185 (394) 622-272")) +(constraint (= (f "+163 905-707-740") "+163 (905) 707-740")) +(constraint (= (f "+23 448-213-807") "+23 (448) 213-807")) +(constraint (= (f "+42 634-077-089") "+42 (634) 077-089")) +(constraint (= (f "+18 051-287-382") "+18 (051) 287-382")) +(constraint (= (f "+29 773-545-520") "+29 (773) 545-520")) +(constraint (= (f "+43 249-097-743") "+43 (249) 097-743")) +(constraint (= (f "+158 674-736-891") "+158 (674) 736-891")) +(constraint (= (f "+45 124-771-454") "+45 (124) 771-454")) +(constraint (= (f "+180 029-457-654") "+180 (029) 457-654")) +(constraint (= (f "+75 227-250-652") "+75 (227) 250-652")) +(constraint (= (f "+5 528-317-854") "+5 (528) 317-854")) +(constraint (= (f "+81 849-629-290") "+81 (849) 629-290")) +(constraint (= (f "+46 005-119-176") "+46 (005) 119-176")) +(constraint (= (f "+108 150-380-705") "+108 (150) 380-705")) +(constraint (= (f "+40 122-224-247") "+40 (122) 224-247")) +(constraint (= (f "+68 890-680-027") "+68 (890) 680-027")) +(constraint (= (f "+169 060-204-504") "+169 (060) 204-504")) +(constraint (= (f "+95 620-820-945") "+95 (620) 820-945")) +(constraint (= (f "+43 592-938-846") "+43 (592) 938-846")) +(constraint (= (f "+7 023-296-647") "+7 (023) 296-647")) +(constraint (= (f "+20 541-401-396") "+20 (541) 401-396")) +(constraint (= (f "+64 751-365-934") "+64 (751) 365-934")) +(constraint (= (f "+163 546-119-476") "+163 (546) 119-476")) +(constraint (= (f "+198 557-666-779") "+198 (557) 666-779")) +(constraint (= (f "+14 673-759-017") "+14 (673) 759-017")) +(constraint (= (f "+161 086-020-168") "+161 (086) 020-168")) +(constraint (= (f "+65 970-575-488") "+65 (970) 575-488")) +(constraint (= (f "+2 455-126-377") "+2 (455) 126-377")) +(constraint (= (f "+196 728-585-376") "+196 (728) 585-376")) +(constraint (= (f "+33 117-430-125") "+33 (117) 430-125")) +(constraint (= (f "+195 488-831-768") "+195 (488) 831-768")) +(constraint (= (f "+86 468-718-108") "+86 (468) 718-108")) +(constraint (= (f "+194 278-716-950") "+194 (278) 716-950")) +(constraint (= (f "+43 730-685-847") "+43 (730) 685-847")) +(constraint (= (f "+140 794-289-551") "+140 (794) 289-551")) +(constraint (= (f "+21 679-740-834") "+21 (679) 740-834")) +(constraint (= (f "+98 717-997-323") "+98 (717) 997-323")) +(constraint (= (f "+47 401-100-231") "+47 (401) 100-231")) +(constraint (= (f "+143 726-462-368") "+143 (726) 462-368")) +(constraint (= (f "+147 864-005-968") "+147 (864) 005-968")) +(constraint (= (f "+130 590-757-665") "+130 (590) 757-665")) +(constraint (= (f "+197 700-858-976") "+197 (700) 858-976")) +(constraint (= (f "+158 344-541-946") "+158 (344) 541-946")) +(constraint (= (f "+56 242-901-234") "+56 (242) 901-234")) +(constraint (= (f "+132 313-075-754") "+132 (313) 075-754")) +(constraint (= (f "+130 517-953-149") "+130 (517) 953-149")) +(constraint (= (f "+158 684-878-743") "+158 (684) 878-743")) +(constraint (= (f "+52 836-582-035") "+52 (836) 582-035")) +(constraint (= (f "+138 117-484-671") "+138 (117) 484-671")) +(constraint (= (f "+50 012-148-873") "+50 (012) 148-873")) +(constraint (= (f "+105 048-919-483") "+105 (048) 919-483")) +(constraint (= (f "+18 209-851-997") "+18 (209) 851-997")) +(constraint (= (f "+176 938-056-084") "+176 (938) 056-084")) +(constraint (= (f "+141 018-132-973") "+141 (018) 132-973")) +(constraint (= (f "+199 936-162-415") "+199 (936) 162-415")) +(constraint (= (f "+33 547-051-264") "+33 (547) 051-264")) +(constraint (= (f "+161 233-981-513") "+161 (233) 981-513")) +(constraint (= (f "+115 101-728-328") "+115 (101) 728-328")) +(constraint (= (f "+45 095-746-635") "+45 (095) 746-635")) + +(check-synth) diff --git a/data/sygus/phone-10.sl b/data/sygus/phone-10.sl new file mode 100644 index 0000000000000000000000000000000000000000..dda6a0a0b2735d15a26156f96eb56420b1dfe026 --- /dev/null +++ b/data/sygus/phone-10.sl @@ -0,0 +1,33 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "+" "-" "." "(" ")" + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "+106 769-858-438") "+106 (769) 858-438")) +(constraint (= (f "+83 973-757-831") "+83 (973) 757-831")) +(constraint (= (f "+62 647-787-775") "+62 (647) 787-775")) +(constraint (= (f "+172 027-507-632") "+172 (027) 507-632")) +(constraint (= (f "+72 001-050-856") "+72 (001) 050-856")) +(constraint (= (f "+95 310-537-401") "+95 (310) 537-401")) +(constraint (= (f "+6 775-969-238") "+6 (775) 969-238")) + +(check-synth) diff --git a/data/sygus/phone-10_short.sl b/data/sygus/phone-10_short.sl new file mode 100644 index 0000000000000000000000000000000000000000..9cd6471ba9329d7125d5e4877911bd36b84f8b7f --- /dev/null +++ b/data/sygus/phone-10_short.sl @@ -0,0 +1,31 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "+" "-" "." "(" ")" + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "+106 769-858-438") "+106 (769) 858-438")) +(constraint (= (f "+83 973-757-831") "+83 (973) 757-831")) +(constraint (= (f "+62 647-787-775") "+62 (647) 787-775")) +(constraint (= (f "+172 027-507-632") "+172 (027) 507-632")) +(constraint (= (f "+72 001-050-856") "+72 (001) 050-856")) +(constraint (= (f "+95 310-537-401") "+95 (310) 537-401")) +(constraint (= (f "+6 775-969-238") "+6 (775) 969-238")) + +(check-synth) diff --git a/data/sygus/phone-1_short.sl b/data/sygus/phone-1_short.sl new file mode 100644 index 0000000000000000000000000000000000000000..9a97e92112ac24a5e4b7fdd32f049c764f6c94eb --- /dev/null +++ b/data/sygus/phone-1_short.sl @@ -0,0 +1,30 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "938-242-504") "242")) +(constraint (= (f "308-916-545") "916")) +(constraint (= (f "623-599-749") "599")) +(constraint (= (f "981-424-843") "424")) +(constraint (= (f "118-980-214") "980")) +(constraint (= (f "244-655-094") "655")) + +(check-synth) diff --git a/data/sygus/phone-2-long-repeat.sl b/data/sygus/phone-2-long-repeat.sl new file mode 100644 index 0000000000000000000000000000000000000000..41e7c6384ec4ff4fdc28786d16026c4d1c1d6eab --- /dev/null +++ b/data/sygus/phone-2-long-repeat.sl @@ -0,0 +1,426 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "938-242-504") "504")) +(constraint (= (f "938-242-504") "504")) +(constraint (= (f "938-242-504") "504")) +(constraint (= (f "308-916-545") "545")) +(constraint (= (f "308-916-545") "545")) +(constraint (= (f "308-916-545") "545")) +(constraint (= (f "623-599-749") "749")) +(constraint (= (f "623-599-749") "749")) +(constraint (= (f "623-599-749") "749")) +(constraint (= (f "981-424-843") "843")) +(constraint (= (f "981-424-843") "843")) +(constraint (= (f "981-424-843") "843")) +(constraint (= (f "118-980-214") "214")) +(constraint (= (f "118-980-214") "214")) +(constraint (= (f "118-980-214") "214")) +(constraint (= (f "244-655-094") "094")) +(constraint (= (f "244-655-094") "094")) +(constraint (= (f "244-655-094") "094")) +(constraint (= (f "830-941-991") "991")) +(constraint (= (f "830-941-991") "991")) +(constraint (= (f "830-941-991") "991")) +(constraint (= (f "911-186-562") "562")) +(constraint (= (f "911-186-562") "562")) +(constraint (= (f "911-186-562") "562")) +(constraint (= (f "002-500-200") "200")) +(constraint (= (f "002-500-200") "200")) +(constraint (= (f "002-500-200") "200")) +(constraint (= (f "113-860-034") "034")) +(constraint (= (f "113-860-034") "034")) +(constraint (= (f "113-860-034") "034")) +(constraint (= (f "457-622-959") "959")) +(constraint (= (f "457-622-959") "959")) +(constraint (= (f "457-622-959") "959")) +(constraint (= (f "986-722-311") "311")) +(constraint (= (f "986-722-311") "311")) +(constraint (= (f "986-722-311") "311")) +(constraint (= (f "110-170-771") "771")) +(constraint (= (f "110-170-771") "771")) +(constraint (= (f "110-170-771") "771")) +(constraint (= (f "469-610-118") "118")) +(constraint (= (f "469-610-118") "118")) +(constraint (= (f "469-610-118") "118")) +(constraint (= (f "817-925-247") "247")) +(constraint (= (f "817-925-247") "247")) +(constraint (= (f "817-925-247") "247")) +(constraint (= (f "256-899-439") "439")) +(constraint (= (f "256-899-439") "439")) +(constraint (= (f "256-899-439") "439")) +(constraint (= (f "886-911-726") "726")) +(constraint (= (f "886-911-726") "726")) +(constraint (= (f "886-911-726") "726")) +(constraint (= (f "562-950-358") "358")) +(constraint (= (f "562-950-358") "358")) +(constraint (= (f "562-950-358") "358")) +(constraint (= (f "693-049-588") "588")) +(constraint (= (f "693-049-588") "588")) +(constraint (= (f "693-049-588") "588")) +(constraint (= (f "840-503-234") "234")) +(constraint (= (f "840-503-234") "234")) +(constraint (= (f "840-503-234") "234")) +(constraint (= (f "698-815-340") "340")) +(constraint (= (f "698-815-340") "340")) +(constraint (= (f "698-815-340") "340")) +(constraint (= (f "498-808-434") "434")) +(constraint (= (f "498-808-434") "434")) +(constraint (= (f "498-808-434") "434")) +(constraint (= (f "329-545-000") "000")) +(constraint (= (f "329-545-000") "000")) +(constraint (= (f "329-545-000") "000")) +(constraint (= (f "380-281-597") "597")) +(constraint (= (f "380-281-597") "597")) +(constraint (= (f "380-281-597") "597")) +(constraint (= (f "332-395-493") "493")) +(constraint (= (f "332-395-493") "493")) +(constraint (= (f "332-395-493") "493")) +(constraint (= (f "251-903-028") "028")) +(constraint (= (f "251-903-028") "028")) +(constraint (= (f "251-903-028") "028")) +(constraint (= (f "176-090-894") "894")) +(constraint (= (f "176-090-894") "894")) +(constraint (= (f "176-090-894") "894")) +(constraint (= (f "336-611-100") "100")) +(constraint (= (f "336-611-100") "100")) +(constraint (= (f "336-611-100") "100")) +(constraint (= (f "416-390-647") "647")) +(constraint (= (f "416-390-647") "647")) +(constraint (= (f "416-390-647") "647")) +(constraint (= (f "019-430-596") "596")) +(constraint (= (f "019-430-596") "596")) +(constraint (= (f "019-430-596") "596")) +(constraint (= (f "960-659-771") "771")) +(constraint (= (f "960-659-771") "771")) +(constraint (= (f "960-659-771") "771")) +(constraint (= (f "475-505-007") "007")) +(constraint (= (f "475-505-007") "007")) +(constraint (= (f "475-505-007") "007")) +(constraint (= (f "424-069-886") "886")) +(constraint (= (f "424-069-886") "886")) +(constraint (= (f "424-069-886") "886")) +(constraint (= (f "941-102-117") "117")) +(constraint (= (f "941-102-117") "117")) +(constraint (= (f "941-102-117") "117")) +(constraint (= (f "331-728-008") "008")) +(constraint (= (f "331-728-008") "008")) +(constraint (= (f "331-728-008") "008")) +(constraint (= (f "487-726-198") "198")) +(constraint (= (f "487-726-198") "198")) +(constraint (= (f "487-726-198") "198")) +(constraint (= (f "612-419-942") "942")) +(constraint (= (f "612-419-942") "942")) +(constraint (= (f "612-419-942") "942")) +(constraint (= (f "594-741-346") "346")) +(constraint (= (f "594-741-346") "346")) +(constraint (= (f "594-741-346") "346")) +(constraint (= (f "320-984-742") "742")) +(constraint (= (f "320-984-742") "742")) +(constraint (= (f "320-984-742") "742")) +(constraint (= (f "060-919-361") "361")) +(constraint (= (f "060-919-361") "361")) +(constraint (= (f "060-919-361") "361")) +(constraint (= (f "275-536-998") "998")) +(constraint (= (f "275-536-998") "998")) +(constraint (= (f "275-536-998") "998")) +(constraint (= (f "548-835-065") "065")) +(constraint (= (f "548-835-065") "065")) +(constraint (= (f "548-835-065") "065")) +(constraint (= (f "197-485-507") "507")) +(constraint (= (f "197-485-507") "507")) +(constraint (= (f "197-485-507") "507")) +(constraint (= (f "455-776-949") "949")) +(constraint (= (f "455-776-949") "949")) +(constraint (= (f "455-776-949") "949")) +(constraint (= (f "085-421-340") "340")) +(constraint (= (f "085-421-340") "340")) +(constraint (= (f "085-421-340") "340")) +(constraint (= (f "785-713-099") "099")) +(constraint (= (f "785-713-099") "099")) +(constraint (= (f "785-713-099") "099")) +(constraint (= (f "426-712-861") "861")) +(constraint (= (f "426-712-861") "861")) +(constraint (= (f "426-712-861") "861")) +(constraint (= (f "386-994-906") "906")) +(constraint (= (f "386-994-906") "906")) +(constraint (= (f "386-994-906") "906")) +(constraint (= (f "918-304-840") "840")) +(constraint (= (f "918-304-840") "840")) +(constraint (= (f "918-304-840") "840")) +(constraint (= (f "247-153-598") "598")) +(constraint (= (f "247-153-598") "598")) +(constraint (= (f "247-153-598") "598")) +(constraint (= (f "075-497-069") "069")) +(constraint (= (f "075-497-069") "069")) +(constraint (= (f "075-497-069") "069")) +(constraint (= (f "140-726-583") "583")) +(constraint (= (f "140-726-583") "583")) +(constraint (= (f "140-726-583") "583")) +(constraint (= (f "049-413-248") "248")) +(constraint (= (f "049-413-248") "248")) +(constraint (= (f "049-413-248") "248")) +(constraint (= (f "977-386-462") "462")) +(constraint (= (f "977-386-462") "462")) +(constraint (= (f "977-386-462") "462")) +(constraint (= (f "058-272-455") "455")) +(constraint (= (f "058-272-455") "455")) +(constraint (= (f "058-272-455") "455")) +(constraint (= (f "428-629-927") "927")) +(constraint (= (f "428-629-927") "927")) +(constraint (= (f "428-629-927") "927")) +(constraint (= (f "449-122-191") "191")) +(constraint (= (f "449-122-191") "191")) +(constraint (= (f "449-122-191") "191")) +(constraint (= (f "568-759-670") "670")) +(constraint (= (f "568-759-670") "670")) +(constraint (= (f "568-759-670") "670")) +(constraint (= (f "312-846-053") "053")) +(constraint (= (f "312-846-053") "053")) +(constraint (= (f "312-846-053") "053")) +(constraint (= (f "943-037-297") "297")) +(constraint (= (f "943-037-297") "297")) +(constraint (= (f "943-037-297") "297")) +(constraint (= (f "014-270-177") "177")) +(constraint (= (f "014-270-177") "177")) +(constraint (= (f "014-270-177") "177")) +(constraint (= (f "658-877-878") "878")) +(constraint (= (f "658-877-878") "878")) +(constraint (= (f "658-877-878") "878")) +(constraint (= (f "888-594-038") "038")) +(constraint (= (f "888-594-038") "038")) +(constraint (= (f "888-594-038") "038")) +(constraint (= (f "232-253-254") "254")) +(constraint (= (f "232-253-254") "254")) +(constraint (= (f "232-253-254") "254")) +(constraint (= (f "308-722-292") "292")) +(constraint (= (f "308-722-292") "292")) +(constraint (= (f "308-722-292") "292")) +(constraint (= (f "342-145-742") "742")) +(constraint (= (f "342-145-742") "742")) +(constraint (= (f "342-145-742") "742")) +(constraint (= (f "568-181-515") "515")) +(constraint (= (f "568-181-515") "515")) +(constraint (= (f "568-181-515") "515")) +(constraint (= (f "300-140-756") "756")) +(constraint (= (f "300-140-756") "756")) +(constraint (= (f "300-140-756") "756")) +(constraint (= (f "099-684-216") "216")) +(constraint (= (f "099-684-216") "216")) +(constraint (= (f "099-684-216") "216")) +(constraint (= (f "575-296-621") "621")) +(constraint (= (f "575-296-621") "621")) +(constraint (= (f "575-296-621") "621")) +(constraint (= (f "994-443-794") "794")) +(constraint (= (f "994-443-794") "794")) +(constraint (= (f "994-443-794") "794")) +(constraint (= (f "400-334-692") "692")) +(constraint (= (f "400-334-692") "692")) +(constraint (= (f "400-334-692") "692")) +(constraint (= (f "684-711-883") "883")) +(constraint (= (f "684-711-883") "883")) +(constraint (= (f "684-711-883") "883")) +(constraint (= (f "539-636-358") "358")) +(constraint (= (f "539-636-358") "358")) +(constraint (= (f "539-636-358") "358")) +(constraint (= (f "009-878-919") "919")) +(constraint (= (f "009-878-919") "919")) +(constraint (= (f "009-878-919") "919")) +(constraint (= (f "919-545-701") "701")) +(constraint (= (f "919-545-701") "701")) +(constraint (= (f "919-545-701") "701")) +(constraint (= (f "546-399-239") "239")) +(constraint (= (f "546-399-239") "239")) +(constraint (= (f "546-399-239") "239")) +(constraint (= (f "993-608-757") "757")) +(constraint (= (f "993-608-757") "757")) +(constraint (= (f "993-608-757") "757")) +(constraint (= (f "107-652-845") "845")) +(constraint (= (f "107-652-845") "845")) +(constraint (= (f "107-652-845") "845")) +(constraint (= (f "206-805-793") "793")) +(constraint (= (f "206-805-793") "793")) +(constraint (= (f "206-805-793") "793")) +(constraint (= (f "198-857-684") "684")) +(constraint (= (f "198-857-684") "684")) +(constraint (= (f "198-857-684") "684")) +(constraint (= (f "912-827-430") "430")) +(constraint (= (f "912-827-430") "430")) +(constraint (= (f "912-827-430") "430")) +(constraint (= (f "560-951-766") "766")) +(constraint (= (f "560-951-766") "766")) +(constraint (= (f "560-951-766") "766")) +(constraint (= (f "142-178-290") "290")) +(constraint (= (f "142-178-290") "290")) +(constraint (= (f "142-178-290") "290")) +(constraint (= (f "732-196-946") "946")) +(constraint (= (f "732-196-946") "946")) +(constraint (= (f "732-196-946") "946")) +(constraint (= (f "963-875-745") "745")) +(constraint (= (f "963-875-745") "745")) +(constraint (= (f "963-875-745") "745")) +(constraint (= (f "881-865-867") "867")) +(constraint (= (f "881-865-867") "867")) +(constraint (= (f "881-865-867") "867")) +(constraint (= (f "234-686-715") "715")) +(constraint (= (f "234-686-715") "715")) +(constraint (= (f "234-686-715") "715")) +(constraint (= (f "720-330-583") "583")) +(constraint (= (f "720-330-583") "583")) +(constraint (= (f "720-330-583") "583")) +(constraint (= (f "593-065-126") "126")) +(constraint (= (f "593-065-126") "126")) +(constraint (= (f "593-065-126") "126")) +(constraint (= (f "671-778-064") "064")) +(constraint (= (f "671-778-064") "064")) +(constraint (= (f "671-778-064") "064")) +(constraint (= (f "252-029-036") "036")) +(constraint (= (f "252-029-036") "036")) +(constraint (= (f "252-029-036") "036")) +(constraint (= (f "700-322-036") "036")) +(constraint (= (f "700-322-036") "036")) +(constraint (= (f "700-322-036") "036")) +(constraint (= (f "882-587-473") "473")) +(constraint (= (f "882-587-473") "473")) +(constraint (= (f "882-587-473") "473")) +(constraint (= (f "964-134-953") "953")) +(constraint (= (f "964-134-953") "953")) +(constraint (= (f "964-134-953") "953")) +(constraint (= (f "038-300-876") "876")) +(constraint (= (f "038-300-876") "876")) +(constraint (= (f "038-300-876") "876")) +(constraint (= (f "158-894-947") "947")) +(constraint (= (f "158-894-947") "947")) +(constraint (= (f "158-894-947") "947")) +(constraint (= (f "757-454-374") "374")) +(constraint (= (f "757-454-374") "374")) +(constraint (= (f "757-454-374") "374")) +(constraint (= (f "872-513-190") "190")) +(constraint (= (f "872-513-190") "190")) +(constraint (= (f "872-513-190") "190")) +(constraint (= (f "566-086-726") "726")) +(constraint (= (f "566-086-726") "726")) +(constraint (= (f "566-086-726") "726")) +(constraint (= (f "938-242-504") "504")) +(constraint (= (f "308-916-545") "545")) +(constraint (= (f "623-599-749") "749")) +(constraint (= (f "981-424-843") "843")) +(constraint (= (f "118-980-214") "214")) +(constraint (= (f "244-655-094") "094")) +(constraint (= (f "830-941-991") "991")) +(constraint (= (f "911-186-562") "562")) +(constraint (= (f "002-500-200") "200")) +(constraint (= (f "113-860-034") "034")) +(constraint (= (f "457-622-959") "959")) +(constraint (= (f "986-722-311") "311")) +(constraint (= (f "110-170-771") "771")) +(constraint (= (f "469-610-118") "118")) +(constraint (= (f "817-925-247") "247")) +(constraint (= (f "256-899-439") "439")) +(constraint (= (f "886-911-726") "726")) +(constraint (= (f "562-950-358") "358")) +(constraint (= (f "693-049-588") "588")) +(constraint (= (f "840-503-234") "234")) +(constraint (= (f "698-815-340") "340")) +(constraint (= (f "498-808-434") "434")) +(constraint (= (f "329-545-000") "000")) +(constraint (= (f "380-281-597") "597")) +(constraint (= (f "332-395-493") "493")) +(constraint (= (f "251-903-028") "028")) +(constraint (= (f "176-090-894") "894")) +(constraint (= (f "336-611-100") "100")) +(constraint (= (f "416-390-647") "647")) +(constraint (= (f "019-430-596") "596")) +(constraint (= (f "960-659-771") "771")) +(constraint (= (f "475-505-007") "007")) +(constraint (= (f "424-069-886") "886")) +(constraint (= (f "941-102-117") "117")) +(constraint (= (f "331-728-008") "008")) +(constraint (= (f "487-726-198") "198")) +(constraint (= (f "612-419-942") "942")) +(constraint (= (f "594-741-346") "346")) +(constraint (= (f "320-984-742") "742")) +(constraint (= (f "060-919-361") "361")) +(constraint (= (f "275-536-998") "998")) +(constraint (= (f "548-835-065") "065")) +(constraint (= (f "197-485-507") "507")) +(constraint (= (f "455-776-949") "949")) +(constraint (= (f "085-421-340") "340")) +(constraint (= (f "785-713-099") "099")) +(constraint (= (f "426-712-861") "861")) +(constraint (= (f "386-994-906") "906")) +(constraint (= (f "918-304-840") "840")) +(constraint (= (f "247-153-598") "598")) +(constraint (= (f "075-497-069") "069")) +(constraint (= (f "140-726-583") "583")) +(constraint (= (f "049-413-248") "248")) +(constraint (= (f "977-386-462") "462")) +(constraint (= (f "058-272-455") "455")) +(constraint (= (f "428-629-927") "927")) +(constraint (= (f "449-122-191") "191")) +(constraint (= (f "568-759-670") "670")) +(constraint (= (f "312-846-053") "053")) +(constraint (= (f "943-037-297") "297")) +(constraint (= (f "014-270-177") "177")) +(constraint (= (f "658-877-878") "878")) +(constraint (= (f "888-594-038") "038")) +(constraint (= (f "232-253-254") "254")) +(constraint (= (f "308-722-292") "292")) +(constraint (= (f "342-145-742") "742")) +(constraint (= (f "568-181-515") "515")) +(constraint (= (f "300-140-756") "756")) +(constraint (= (f "099-684-216") "216")) +(constraint (= (f "575-296-621") "621")) +(constraint (= (f "994-443-794") "794")) +(constraint (= (f "400-334-692") "692")) +(constraint (= (f "684-711-883") "883")) +(constraint (= (f "539-636-358") "358")) +(constraint (= (f "009-878-919") "919")) +(constraint (= (f "919-545-701") "701")) +(constraint (= (f "546-399-239") "239")) +(constraint (= (f "993-608-757") "757")) +(constraint (= (f "107-652-845") "845")) +(constraint (= (f "206-805-793") "793")) +(constraint (= (f "198-857-684") "684")) +(constraint (= (f "912-827-430") "430")) +(constraint (= (f "560-951-766") "766")) +(constraint (= (f "142-178-290") "290")) +(constraint (= (f "732-196-946") "946")) +(constraint (= (f "963-875-745") "745")) +(constraint (= (f "881-865-867") "867")) +(constraint (= (f "234-686-715") "715")) +(constraint (= (f "720-330-583") "583")) +(constraint (= (f "593-065-126") "126")) +(constraint (= (f "671-778-064") "064")) +(constraint (= (f "252-029-036") "036")) +(constraint (= (f "700-322-036") "036")) +(constraint (= (f "882-587-473") "473")) +(constraint (= (f "964-134-953") "953")) +(constraint (= (f "038-300-876") "876")) +(constraint (= (f "158-894-947") "947")) +(constraint (= (f "757-454-374") "374")) +(constraint (= (f "872-513-190") "190")) +(constraint (= (f "566-086-726") "726")) + +(check-synth) diff --git a/data/sygus/phone-2-long.sl b/data/sygus/phone-2-long.sl new file mode 100644 index 0000000000000000000000000000000000000000..83c9bb4a5c565ab9f345e7a9827f3fecfbbffc52 --- /dev/null +++ b/data/sygus/phone-2-long.sl @@ -0,0 +1,126 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "938-242-504") "504")) +(constraint (= (f "308-916-545") "545")) +(constraint (= (f "623-599-749") "749")) +(constraint (= (f "981-424-843") "843")) +(constraint (= (f "118-980-214") "214")) +(constraint (= (f "244-655-094") "094")) +(constraint (= (f "830-941-991") "991")) +(constraint (= (f "911-186-562") "562")) +(constraint (= (f "002-500-200") "200")) +(constraint (= (f "113-860-034") "034")) +(constraint (= (f "457-622-959") "959")) +(constraint (= (f "986-722-311") "311")) +(constraint (= (f "110-170-771") "771")) +(constraint (= (f "469-610-118") "118")) +(constraint (= (f "817-925-247") "247")) +(constraint (= (f "256-899-439") "439")) +(constraint (= (f "886-911-726") "726")) +(constraint (= (f "562-950-358") "358")) +(constraint (= (f "693-049-588") "588")) +(constraint (= (f "840-503-234") "234")) +(constraint (= (f "698-815-340") "340")) +(constraint (= (f "498-808-434") "434")) +(constraint (= (f "329-545-000") "000")) +(constraint (= (f "380-281-597") "597")) +(constraint (= (f "332-395-493") "493")) +(constraint (= (f "251-903-028") "028")) +(constraint (= (f "176-090-894") "894")) +(constraint (= (f "336-611-100") "100")) +(constraint (= (f "416-390-647") "647")) +(constraint (= (f "019-430-596") "596")) +(constraint (= (f "960-659-771") "771")) +(constraint (= (f "475-505-007") "007")) +(constraint (= (f "424-069-886") "886")) +(constraint (= (f "941-102-117") "117")) +(constraint (= (f "331-728-008") "008")) +(constraint (= (f "487-726-198") "198")) +(constraint (= (f "612-419-942") "942")) +(constraint (= (f "594-741-346") "346")) +(constraint (= (f "320-984-742") "742")) +(constraint (= (f "060-919-361") "361")) +(constraint (= (f "275-536-998") "998")) +(constraint (= (f "548-835-065") "065")) +(constraint (= (f "197-485-507") "507")) +(constraint (= (f "455-776-949") "949")) +(constraint (= (f "085-421-340") "340")) +(constraint (= (f "785-713-099") "099")) +(constraint (= (f "426-712-861") "861")) +(constraint (= (f "386-994-906") "906")) +(constraint (= (f "918-304-840") "840")) +(constraint (= (f "247-153-598") "598")) +(constraint (= (f "075-497-069") "069")) +(constraint (= (f "140-726-583") "583")) +(constraint (= (f "049-413-248") "248")) +(constraint (= (f "977-386-462") "462")) +(constraint (= (f "058-272-455") "455")) +(constraint (= (f "428-629-927") "927")) +(constraint (= (f "449-122-191") "191")) +(constraint (= (f "568-759-670") "670")) +(constraint (= (f "312-846-053") "053")) +(constraint (= (f "943-037-297") "297")) +(constraint (= (f "014-270-177") "177")) +(constraint (= (f "658-877-878") "878")) +(constraint (= (f "888-594-038") "038")) +(constraint (= (f "232-253-254") "254")) +(constraint (= (f "308-722-292") "292")) +(constraint (= (f "342-145-742") "742")) +(constraint (= (f "568-181-515") "515")) +(constraint (= (f "300-140-756") "756")) +(constraint (= (f "099-684-216") "216")) +(constraint (= (f "575-296-621") "621")) +(constraint (= (f "994-443-794") "794")) +(constraint (= (f "400-334-692") "692")) +(constraint (= (f "684-711-883") "883")) +(constraint (= (f "539-636-358") "358")) +(constraint (= (f "009-878-919") "919")) +(constraint (= (f "919-545-701") "701")) +(constraint (= (f "546-399-239") "239")) +(constraint (= (f "993-608-757") "757")) +(constraint (= (f "107-652-845") "845")) +(constraint (= (f "206-805-793") "793")) +(constraint (= (f "198-857-684") "684")) +(constraint (= (f "912-827-430") "430")) +(constraint (= (f "560-951-766") "766")) +(constraint (= (f "142-178-290") "290")) +(constraint (= (f "732-196-946") "946")) +(constraint (= (f "963-875-745") "745")) +(constraint (= (f "881-865-867") "867")) +(constraint (= (f "234-686-715") "715")) +(constraint (= (f "720-330-583") "583")) +(constraint (= (f "593-065-126") "126")) +(constraint (= (f "671-778-064") "064")) +(constraint (= (f "252-029-036") "036")) +(constraint (= (f "700-322-036") "036")) +(constraint (= (f "882-587-473") "473")) +(constraint (= (f "964-134-953") "953")) +(constraint (= (f "038-300-876") "876")) +(constraint (= (f "158-894-947") "947")) +(constraint (= (f "757-454-374") "374")) +(constraint (= (f "872-513-190") "190")) +(constraint (= (f "566-086-726") "726")) + +(check-synth) diff --git a/data/sygus/phone-2.sl b/data/sygus/phone-2.sl new file mode 100644 index 0000000000000000000000000000000000000000..0d0f2c6d572f8bda89b5d814902a3c819e45fc4b --- /dev/null +++ b/data/sygus/phone-2.sl @@ -0,0 +1,32 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "938-242-504") "504")) +(constraint (= (f "308-916-545") "545")) +(constraint (= (f "623-599-749") "749")) +(constraint (= (f "981-424-843") "843")) +(constraint (= (f "118-980-214") "214")) +(constraint (= (f "244-655-094") "094")) + +(check-synth) diff --git a/data/sygus/phone-2_short.sl b/data/sygus/phone-2_short.sl new file mode 100644 index 0000000000000000000000000000000000000000..b58c2792a55aa0a49f4946d2632d502139e4a15b --- /dev/null +++ b/data/sygus/phone-2_short.sl @@ -0,0 +1,29 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "938-242-504") "504")) +(constraint (= (f "308-916-545") "545")) +(constraint (= (f "623-599-749") "749")) +(constraint (= (f "981-424-843") "843")) +(constraint (= (f "118-980-214") "214")) +(constraint (= (f "244-655-094") "094")) + +(check-synth) diff --git a/data/sygus/phone-3-long-repeat.sl b/data/sygus/phone-3-long-repeat.sl new file mode 100644 index 0000000000000000000000000000000000000000..1c18a4207304d769dcf79bedd6fbba5f0d068922 --- /dev/null +++ b/data/sygus/phone-3-long-repeat.sl @@ -0,0 +1,426 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "(" ")" "-" + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "938-242-504") "(938) 242-504")) +(constraint (= (f "938-242-504") "(938) 242-504")) +(constraint (= (f "938-242-504") "(938) 242-504")) +(constraint (= (f "308-916-545") "(308) 916-545")) +(constraint (= (f "308-916-545") "(308) 916-545")) +(constraint (= (f "308-916-545") "(308) 916-545")) +(constraint (= (f "623-599-749") "(623) 599-749")) +(constraint (= (f "623-599-749") "(623) 599-749")) +(constraint (= (f "623-599-749") "(623) 599-749")) +(constraint (= (f "981-424-843") "(981) 424-843")) +(constraint (= (f "981-424-843") "(981) 424-843")) +(constraint (= (f "981-424-843") "(981) 424-843")) +(constraint (= (f "118-980-214") "(118) 980-214")) +(constraint (= (f "118-980-214") "(118) 980-214")) +(constraint (= (f "118-980-214") "(118) 980-214")) +(constraint (= (f "244-655-094") "(244) 655-094")) +(constraint (= (f "244-655-094") "(244) 655-094")) +(constraint (= (f "244-655-094") "(244) 655-094")) +(constraint (= (f "830-941-991") "(830) 941-991")) +(constraint (= (f "830-941-991") "(830) 941-991")) +(constraint (= (f "830-941-991") "(830) 941-991")) +(constraint (= (f "911-186-562") "(911) 186-562")) +(constraint (= (f "911-186-562") "(911) 186-562")) +(constraint (= (f "911-186-562") "(911) 186-562")) +(constraint (= (f "002-500-200") "(002) 500-200")) +(constraint (= (f "002-500-200") "(002) 500-200")) +(constraint (= (f "002-500-200") "(002) 500-200")) +(constraint (= (f "113-860-034") "(113) 860-034")) +(constraint (= (f "113-860-034") "(113) 860-034")) +(constraint (= (f "113-860-034") "(113) 860-034")) +(constraint (= (f "457-622-959") "(457) 622-959")) +(constraint (= (f "457-622-959") "(457) 622-959")) +(constraint (= (f "457-622-959") "(457) 622-959")) +(constraint (= (f "986-722-311") "(986) 722-311")) +(constraint (= (f "986-722-311") "(986) 722-311")) +(constraint (= (f "986-722-311") "(986) 722-311")) +(constraint (= (f "110-170-771") "(110) 170-771")) +(constraint (= (f "110-170-771") "(110) 170-771")) +(constraint (= (f "110-170-771") "(110) 170-771")) +(constraint (= (f "469-610-118") "(469) 610-118")) +(constraint (= (f "469-610-118") "(469) 610-118")) +(constraint (= (f "469-610-118") "(469) 610-118")) +(constraint (= (f "817-925-247") "(817) 925-247")) +(constraint (= (f "817-925-247") "(817) 925-247")) +(constraint (= (f "817-925-247") "(817) 925-247")) +(constraint (= (f "256-899-439") "(256) 899-439")) +(constraint (= (f "256-899-439") "(256) 899-439")) +(constraint (= (f "256-899-439") "(256) 899-439")) +(constraint (= (f "886-911-726") "(886) 911-726")) +(constraint (= (f "886-911-726") "(886) 911-726")) +(constraint (= (f "886-911-726") "(886) 911-726")) +(constraint (= (f "562-950-358") "(562) 950-358")) +(constraint (= (f "562-950-358") "(562) 950-358")) +(constraint (= (f "562-950-358") "(562) 950-358")) +(constraint (= (f "693-049-588") "(693) 049-588")) +(constraint (= (f "693-049-588") "(693) 049-588")) +(constraint (= (f "693-049-588") "(693) 049-588")) +(constraint (= (f "840-503-234") "(840) 503-234")) +(constraint (= (f "840-503-234") "(840) 503-234")) +(constraint (= (f "840-503-234") "(840) 503-234")) +(constraint (= (f "698-815-340") "(698) 815-340")) +(constraint (= (f "698-815-340") "(698) 815-340")) +(constraint (= (f "698-815-340") "(698) 815-340")) +(constraint (= (f "498-808-434") "(498) 808-434")) +(constraint (= (f "498-808-434") "(498) 808-434")) +(constraint (= (f "498-808-434") "(498) 808-434")) +(constraint (= (f "329-545-000") "(329) 545-000")) +(constraint (= (f "329-545-000") "(329) 545-000")) +(constraint (= (f "329-545-000") "(329) 545-000")) +(constraint (= (f "380-281-597") "(380) 281-597")) +(constraint (= (f "380-281-597") "(380) 281-597")) +(constraint (= (f "380-281-597") "(380) 281-597")) +(constraint (= (f "332-395-493") "(332) 395-493")) +(constraint (= (f "332-395-493") "(332) 395-493")) +(constraint (= (f "332-395-493") "(332) 395-493")) +(constraint (= (f "251-903-028") "(251) 903-028")) +(constraint (= (f "251-903-028") "(251) 903-028")) +(constraint (= (f "251-903-028") "(251) 903-028")) +(constraint (= (f "176-090-894") "(176) 090-894")) +(constraint (= (f "176-090-894") "(176) 090-894")) +(constraint (= (f "176-090-894") "(176) 090-894")) +(constraint (= (f "336-611-100") "(336) 611-100")) +(constraint (= (f "336-611-100") "(336) 611-100")) +(constraint (= (f "336-611-100") "(336) 611-100")) +(constraint (= (f "416-390-647") "(416) 390-647")) +(constraint (= (f "416-390-647") "(416) 390-647")) +(constraint (= (f "416-390-647") "(416) 390-647")) +(constraint (= (f "019-430-596") "(019) 430-596")) +(constraint (= (f "019-430-596") "(019) 430-596")) +(constraint (= (f "019-430-596") "(019) 430-596")) +(constraint (= (f "960-659-771") "(960) 659-771")) +(constraint (= (f "960-659-771") "(960) 659-771")) +(constraint (= (f "960-659-771") "(960) 659-771")) +(constraint (= (f "475-505-007") "(475) 505-007")) +(constraint (= (f "475-505-007") "(475) 505-007")) +(constraint (= (f "475-505-007") "(475) 505-007")) +(constraint (= (f "424-069-886") "(424) 069-886")) +(constraint (= (f "424-069-886") "(424) 069-886")) +(constraint (= (f "424-069-886") "(424) 069-886")) +(constraint (= (f "941-102-117") "(941) 102-117")) +(constraint (= (f "941-102-117") "(941) 102-117")) +(constraint (= (f "941-102-117") "(941) 102-117")) +(constraint (= (f "331-728-008") "(331) 728-008")) +(constraint (= (f "331-728-008") "(331) 728-008")) +(constraint (= (f "331-728-008") "(331) 728-008")) +(constraint (= (f "487-726-198") "(487) 726-198")) +(constraint (= (f "487-726-198") "(487) 726-198")) +(constraint (= (f "487-726-198") "(487) 726-198")) +(constraint (= (f "612-419-942") "(612) 419-942")) +(constraint (= (f "612-419-942") "(612) 419-942")) +(constraint (= (f "612-419-942") "(612) 419-942")) +(constraint (= (f "594-741-346") "(594) 741-346")) +(constraint (= (f "594-741-346") "(594) 741-346")) +(constraint (= (f "594-741-346") "(594) 741-346")) +(constraint (= (f "320-984-742") "(320) 984-742")) +(constraint (= (f "320-984-742") "(320) 984-742")) +(constraint (= (f "320-984-742") "(320) 984-742")) +(constraint (= (f "060-919-361") "(060) 919-361")) +(constraint (= (f "060-919-361") "(060) 919-361")) +(constraint (= (f "060-919-361") "(060) 919-361")) +(constraint (= (f "275-536-998") "(275) 536-998")) +(constraint (= (f "275-536-998") "(275) 536-998")) +(constraint (= (f "275-536-998") "(275) 536-998")) +(constraint (= (f "548-835-065") "(548) 835-065")) +(constraint (= (f "548-835-065") "(548) 835-065")) +(constraint (= (f "548-835-065") "(548) 835-065")) +(constraint (= (f "197-485-507") "(197) 485-507")) +(constraint (= (f "197-485-507") "(197) 485-507")) +(constraint (= (f "197-485-507") "(197) 485-507")) +(constraint (= (f "455-776-949") "(455) 776-949")) +(constraint (= (f "455-776-949") "(455) 776-949")) +(constraint (= (f "455-776-949") "(455) 776-949")) +(constraint (= (f "085-421-340") "(085) 421-340")) +(constraint (= (f "085-421-340") "(085) 421-340")) +(constraint (= (f "085-421-340") "(085) 421-340")) +(constraint (= (f "785-713-099") "(785) 713-099")) +(constraint (= (f "785-713-099") "(785) 713-099")) +(constraint (= (f "785-713-099") "(785) 713-099")) +(constraint (= (f "426-712-861") "(426) 712-861")) +(constraint (= (f "426-712-861") "(426) 712-861")) +(constraint (= (f "426-712-861") "(426) 712-861")) +(constraint (= (f "386-994-906") "(386) 994-906")) +(constraint (= (f "386-994-906") "(386) 994-906")) +(constraint (= (f "386-994-906") "(386) 994-906")) +(constraint (= (f "918-304-840") "(918) 304-840")) +(constraint (= (f "918-304-840") "(918) 304-840")) +(constraint (= (f "918-304-840") "(918) 304-840")) +(constraint (= (f "247-153-598") "(247) 153-598")) +(constraint (= (f "247-153-598") "(247) 153-598")) +(constraint (= (f "247-153-598") "(247) 153-598")) +(constraint (= (f "075-497-069") "(075) 497-069")) +(constraint (= (f "075-497-069") "(075) 497-069")) +(constraint (= (f "075-497-069") "(075) 497-069")) +(constraint (= (f "140-726-583") "(140) 726-583")) +(constraint (= (f "140-726-583") "(140) 726-583")) +(constraint (= (f "140-726-583") "(140) 726-583")) +(constraint (= (f "049-413-248") "(049) 413-248")) +(constraint (= (f "049-413-248") "(049) 413-248")) +(constraint (= (f "049-413-248") "(049) 413-248")) +(constraint (= (f "977-386-462") "(977) 386-462")) +(constraint (= (f "977-386-462") "(977) 386-462")) +(constraint (= (f "977-386-462") "(977) 386-462")) +(constraint (= (f "058-272-455") "(058) 272-455")) +(constraint (= (f "058-272-455") "(058) 272-455")) +(constraint (= (f "058-272-455") "(058) 272-455")) +(constraint (= (f "428-629-927") "(428) 629-927")) +(constraint (= (f "428-629-927") "(428) 629-927")) +(constraint (= (f "428-629-927") "(428) 629-927")) +(constraint (= (f "449-122-191") "(449) 122-191")) +(constraint (= (f "449-122-191") "(449) 122-191")) +(constraint (= (f "449-122-191") "(449) 122-191")) +(constraint (= (f "568-759-670") "(568) 759-670")) +(constraint (= (f "568-759-670") "(568) 759-670")) +(constraint (= (f "568-759-670") "(568) 759-670")) +(constraint (= (f "312-846-053") "(312) 846-053")) +(constraint (= (f "312-846-053") "(312) 846-053")) +(constraint (= (f "312-846-053") "(312) 846-053")) +(constraint (= (f "943-037-297") "(943) 037-297")) +(constraint (= (f "943-037-297") "(943) 037-297")) +(constraint (= (f "943-037-297") "(943) 037-297")) +(constraint (= (f "014-270-177") "(014) 270-177")) +(constraint (= (f "014-270-177") "(014) 270-177")) +(constraint (= (f "014-270-177") "(014) 270-177")) +(constraint (= (f "658-877-878") "(658) 877-878")) +(constraint (= (f "658-877-878") "(658) 877-878")) +(constraint (= (f "658-877-878") "(658) 877-878")) +(constraint (= (f "888-594-038") "(888) 594-038")) +(constraint (= (f "888-594-038") "(888) 594-038")) +(constraint (= (f "888-594-038") "(888) 594-038")) +(constraint (= (f "232-253-254") "(232) 253-254")) +(constraint (= (f "232-253-254") "(232) 253-254")) +(constraint (= (f "232-253-254") "(232) 253-254")) +(constraint (= (f "308-722-292") "(308) 722-292")) +(constraint (= (f "308-722-292") "(308) 722-292")) +(constraint (= (f "308-722-292") "(308) 722-292")) +(constraint (= (f "342-145-742") "(342) 145-742")) +(constraint (= (f "342-145-742") "(342) 145-742")) +(constraint (= (f "342-145-742") "(342) 145-742")) +(constraint (= (f "568-181-515") "(568) 181-515")) +(constraint (= (f "568-181-515") "(568) 181-515")) +(constraint (= (f "568-181-515") "(568) 181-515")) +(constraint (= (f "300-140-756") "(300) 140-756")) +(constraint (= (f "300-140-756") "(300) 140-756")) +(constraint (= (f "300-140-756") "(300) 140-756")) +(constraint (= (f "099-684-216") "(099) 684-216")) +(constraint (= (f "099-684-216") "(099) 684-216")) +(constraint (= (f "099-684-216") "(099) 684-216")) +(constraint (= (f "575-296-621") "(575) 296-621")) +(constraint (= (f "575-296-621") "(575) 296-621")) +(constraint (= (f "575-296-621") "(575) 296-621")) +(constraint (= (f "994-443-794") "(994) 443-794")) +(constraint (= (f "994-443-794") "(994) 443-794")) +(constraint (= (f "994-443-794") "(994) 443-794")) +(constraint (= (f "400-334-692") "(400) 334-692")) +(constraint (= (f "400-334-692") "(400) 334-692")) +(constraint (= (f "400-334-692") "(400) 334-692")) +(constraint (= (f "684-711-883") "(684) 711-883")) +(constraint (= (f "684-711-883") "(684) 711-883")) +(constraint (= (f "684-711-883") "(684) 711-883")) +(constraint (= (f "539-636-358") "(539) 636-358")) +(constraint (= (f "539-636-358") "(539) 636-358")) +(constraint (= (f "539-636-358") "(539) 636-358")) +(constraint (= (f "009-878-919") "(009) 878-919")) +(constraint (= (f "009-878-919") "(009) 878-919")) +(constraint (= (f "009-878-919") "(009) 878-919")) +(constraint (= (f "919-545-701") "(919) 545-701")) +(constraint (= (f "919-545-701") "(919) 545-701")) +(constraint (= (f "919-545-701") "(919) 545-701")) +(constraint (= (f "546-399-239") "(546) 399-239")) +(constraint (= (f "546-399-239") "(546) 399-239")) +(constraint (= (f "546-399-239") "(546) 399-239")) +(constraint (= (f "993-608-757") "(993) 608-757")) +(constraint (= (f "993-608-757") "(993) 608-757")) +(constraint (= (f "993-608-757") "(993) 608-757")) +(constraint (= (f "107-652-845") "(107) 652-845")) +(constraint (= (f "107-652-845") "(107) 652-845")) +(constraint (= (f "107-652-845") "(107) 652-845")) +(constraint (= (f "206-805-793") "(206) 805-793")) +(constraint (= (f "206-805-793") "(206) 805-793")) +(constraint (= (f "206-805-793") "(206) 805-793")) +(constraint (= (f "198-857-684") "(198) 857-684")) +(constraint (= (f "198-857-684") "(198) 857-684")) +(constraint (= (f "198-857-684") "(198) 857-684")) +(constraint (= (f "912-827-430") "(912) 827-430")) +(constraint (= (f "912-827-430") "(912) 827-430")) +(constraint (= (f "912-827-430") "(912) 827-430")) +(constraint (= (f "560-951-766") "(560) 951-766")) +(constraint (= (f "560-951-766") "(560) 951-766")) +(constraint (= (f "560-951-766") "(560) 951-766")) +(constraint (= (f "142-178-290") "(142) 178-290")) +(constraint (= (f "142-178-290") "(142) 178-290")) +(constraint (= (f "142-178-290") "(142) 178-290")) +(constraint (= (f "732-196-946") "(732) 196-946")) +(constraint (= (f "732-196-946") "(732) 196-946")) +(constraint (= (f "732-196-946") "(732) 196-946")) +(constraint (= (f "963-875-745") "(963) 875-745")) +(constraint (= (f "963-875-745") "(963) 875-745")) +(constraint (= (f "963-875-745") "(963) 875-745")) +(constraint (= (f "881-865-867") "(881) 865-867")) +(constraint (= (f "881-865-867") "(881) 865-867")) +(constraint (= (f "881-865-867") "(881) 865-867")) +(constraint (= (f "234-686-715") "(234) 686-715")) +(constraint (= (f "234-686-715") "(234) 686-715")) +(constraint (= (f "234-686-715") "(234) 686-715")) +(constraint (= (f "720-330-583") "(720) 330-583")) +(constraint (= (f "720-330-583") "(720) 330-583")) +(constraint (= (f "720-330-583") "(720) 330-583")) +(constraint (= (f "593-065-126") "(593) 065-126")) +(constraint (= (f "593-065-126") "(593) 065-126")) +(constraint (= (f "593-065-126") "(593) 065-126")) +(constraint (= (f "671-778-064") "(671) 778-064")) +(constraint (= (f "671-778-064") "(671) 778-064")) +(constraint (= (f "671-778-064") "(671) 778-064")) +(constraint (= (f "252-029-036") "(252) 029-036")) +(constraint (= (f "252-029-036") "(252) 029-036")) +(constraint (= (f "252-029-036") "(252) 029-036")) +(constraint (= (f "700-322-036") "(700) 322-036")) +(constraint (= (f "700-322-036") "(700) 322-036")) +(constraint (= (f "700-322-036") "(700) 322-036")) +(constraint (= (f "882-587-473") "(882) 587-473")) +(constraint (= (f "882-587-473") "(882) 587-473")) +(constraint (= (f "882-587-473") "(882) 587-473")) +(constraint (= (f "964-134-953") "(964) 134-953")) +(constraint (= (f "964-134-953") "(964) 134-953")) +(constraint (= (f "964-134-953") "(964) 134-953")) +(constraint (= (f "038-300-876") "(038) 300-876")) +(constraint (= (f "038-300-876") "(038) 300-876")) +(constraint (= (f "038-300-876") "(038) 300-876")) +(constraint (= (f "158-894-947") "(158) 894-947")) +(constraint (= (f "158-894-947") "(158) 894-947")) +(constraint (= (f "158-894-947") "(158) 894-947")) +(constraint (= (f "757-454-374") "(757) 454-374")) +(constraint (= (f "757-454-374") "(757) 454-374")) +(constraint (= (f "757-454-374") "(757) 454-374")) +(constraint (= (f "872-513-190") "(872) 513-190")) +(constraint (= (f "872-513-190") "(872) 513-190")) +(constraint (= (f "872-513-190") "(872) 513-190")) +(constraint (= (f "566-086-726") "(566) 086-726")) +(constraint (= (f "566-086-726") "(566) 086-726")) +(constraint (= (f "566-086-726") "(566) 086-726")) +(constraint (= (f "938-242-504") "(938) 242-504")) +(constraint (= (f "308-916-545") "(308) 916-545")) +(constraint (= (f "623-599-749") "(623) 599-749")) +(constraint (= (f "981-424-843") "(981) 424-843")) +(constraint (= (f "118-980-214") "(118) 980-214")) +(constraint (= (f "244-655-094") "(244) 655-094")) +(constraint (= (f "830-941-991") "(830) 941-991")) +(constraint (= (f "911-186-562") "(911) 186-562")) +(constraint (= (f "002-500-200") "(002) 500-200")) +(constraint (= (f "113-860-034") "(113) 860-034")) +(constraint (= (f "457-622-959") "(457) 622-959")) +(constraint (= (f "986-722-311") "(986) 722-311")) +(constraint (= (f "110-170-771") "(110) 170-771")) +(constraint (= (f "469-610-118") "(469) 610-118")) +(constraint (= (f "817-925-247") "(817) 925-247")) +(constraint (= (f "256-899-439") "(256) 899-439")) +(constraint (= (f "886-911-726") "(886) 911-726")) +(constraint (= (f "562-950-358") "(562) 950-358")) +(constraint (= (f "693-049-588") "(693) 049-588")) +(constraint (= (f "840-503-234") "(840) 503-234")) +(constraint (= (f "698-815-340") "(698) 815-340")) +(constraint (= (f "498-808-434") "(498) 808-434")) +(constraint (= (f "329-545-000") "(329) 545-000")) +(constraint (= (f "380-281-597") "(380) 281-597")) +(constraint (= (f "332-395-493") "(332) 395-493")) +(constraint (= (f "251-903-028") "(251) 903-028")) +(constraint (= (f "176-090-894") "(176) 090-894")) +(constraint (= (f "336-611-100") "(336) 611-100")) +(constraint (= (f "416-390-647") "(416) 390-647")) +(constraint (= (f "019-430-596") "(019) 430-596")) +(constraint (= (f "960-659-771") "(960) 659-771")) +(constraint (= (f "475-505-007") "(475) 505-007")) +(constraint (= (f "424-069-886") "(424) 069-886")) +(constraint (= (f "941-102-117") "(941) 102-117")) +(constraint (= (f "331-728-008") "(331) 728-008")) +(constraint (= (f "487-726-198") "(487) 726-198")) +(constraint (= (f "612-419-942") "(612) 419-942")) +(constraint (= (f "594-741-346") "(594) 741-346")) +(constraint (= (f "320-984-742") "(320) 984-742")) +(constraint (= (f "060-919-361") "(060) 919-361")) +(constraint (= (f "275-536-998") "(275) 536-998")) +(constraint (= (f "548-835-065") "(548) 835-065")) +(constraint (= (f "197-485-507") "(197) 485-507")) +(constraint (= (f "455-776-949") "(455) 776-949")) +(constraint (= (f "085-421-340") "(085) 421-340")) +(constraint (= (f "785-713-099") "(785) 713-099")) +(constraint (= (f "426-712-861") "(426) 712-861")) +(constraint (= (f "386-994-906") "(386) 994-906")) +(constraint (= (f "918-304-840") "(918) 304-840")) +(constraint (= (f "247-153-598") "(247) 153-598")) +(constraint (= (f "075-497-069") "(075) 497-069")) +(constraint (= (f "140-726-583") "(140) 726-583")) +(constraint (= (f "049-413-248") "(049) 413-248")) +(constraint (= (f "977-386-462") "(977) 386-462")) +(constraint (= (f "058-272-455") "(058) 272-455")) +(constraint (= (f "428-629-927") "(428) 629-927")) +(constraint (= (f "449-122-191") "(449) 122-191")) +(constraint (= (f "568-759-670") "(568) 759-670")) +(constraint (= (f "312-846-053") "(312) 846-053")) +(constraint (= (f "943-037-297") "(943) 037-297")) +(constraint (= (f "014-270-177") "(014) 270-177")) +(constraint (= (f "658-877-878") "(658) 877-878")) +(constraint (= (f "888-594-038") "(888) 594-038")) +(constraint (= (f "232-253-254") "(232) 253-254")) +(constraint (= (f "308-722-292") "(308) 722-292")) +(constraint (= (f "342-145-742") "(342) 145-742")) +(constraint (= (f "568-181-515") "(568) 181-515")) +(constraint (= (f "300-140-756") "(300) 140-756")) +(constraint (= (f "099-684-216") "(099) 684-216")) +(constraint (= (f "575-296-621") "(575) 296-621")) +(constraint (= (f "994-443-794") "(994) 443-794")) +(constraint (= (f "400-334-692") "(400) 334-692")) +(constraint (= (f "684-711-883") "(684) 711-883")) +(constraint (= (f "539-636-358") "(539) 636-358")) +(constraint (= (f "009-878-919") "(009) 878-919")) +(constraint (= (f "919-545-701") "(919) 545-701")) +(constraint (= (f "546-399-239") "(546) 399-239")) +(constraint (= (f "993-608-757") "(993) 608-757")) +(constraint (= (f "107-652-845") "(107) 652-845")) +(constraint (= (f "206-805-793") "(206) 805-793")) +(constraint (= (f "198-857-684") "(198) 857-684")) +(constraint (= (f "912-827-430") "(912) 827-430")) +(constraint (= (f "560-951-766") "(560) 951-766")) +(constraint (= (f "142-178-290") "(142) 178-290")) +(constraint (= (f "732-196-946") "(732) 196-946")) +(constraint (= (f "963-875-745") "(963) 875-745")) +(constraint (= (f "881-865-867") "(881) 865-867")) +(constraint (= (f "234-686-715") "(234) 686-715")) +(constraint (= (f "720-330-583") "(720) 330-583")) +(constraint (= (f "593-065-126") "(593) 065-126")) +(constraint (= (f "671-778-064") "(671) 778-064")) +(constraint (= (f "252-029-036") "(252) 029-036")) +(constraint (= (f "700-322-036") "(700) 322-036")) +(constraint (= (f "882-587-473") "(882) 587-473")) +(constraint (= (f "964-134-953") "(964) 134-953")) +(constraint (= (f "038-300-876") "(038) 300-876")) +(constraint (= (f "158-894-947") "(158) 894-947")) +(constraint (= (f "757-454-374") "(757) 454-374")) +(constraint (= (f "872-513-190") "(872) 513-190")) +(constraint (= (f "566-086-726") "(566) 086-726")) + +(check-synth) diff --git a/data/sygus/phone-3-long.sl b/data/sygus/phone-3-long.sl new file mode 100644 index 0000000000000000000000000000000000000000..4aa18325863d0edc12a5685b98c3a42c64c93670 --- /dev/null +++ b/data/sygus/phone-3-long.sl @@ -0,0 +1,126 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "(" ")" "-" + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "938-242-504") "(938) 242-504")) +(constraint (= (f "308-916-545") "(308) 916-545")) +(constraint (= (f "623-599-749") "(623) 599-749")) +(constraint (= (f "981-424-843") "(981) 424-843")) +(constraint (= (f "118-980-214") "(118) 980-214")) +(constraint (= (f "244-655-094") "(244) 655-094")) +(constraint (= (f "830-941-991") "(830) 941-991")) +(constraint (= (f "911-186-562") "(911) 186-562")) +(constraint (= (f "002-500-200") "(002) 500-200")) +(constraint (= (f "113-860-034") "(113) 860-034")) +(constraint (= (f "457-622-959") "(457) 622-959")) +(constraint (= (f "986-722-311") "(986) 722-311")) +(constraint (= (f "110-170-771") "(110) 170-771")) +(constraint (= (f "469-610-118") "(469) 610-118")) +(constraint (= (f "817-925-247") "(817) 925-247")) +(constraint (= (f "256-899-439") "(256) 899-439")) +(constraint (= (f "886-911-726") "(886) 911-726")) +(constraint (= (f "562-950-358") "(562) 950-358")) +(constraint (= (f "693-049-588") "(693) 049-588")) +(constraint (= (f "840-503-234") "(840) 503-234")) +(constraint (= (f "698-815-340") "(698) 815-340")) +(constraint (= (f "498-808-434") "(498) 808-434")) +(constraint (= (f "329-545-000") "(329) 545-000")) +(constraint (= (f "380-281-597") "(380) 281-597")) +(constraint (= (f "332-395-493") "(332) 395-493")) +(constraint (= (f "251-903-028") "(251) 903-028")) +(constraint (= (f "176-090-894") "(176) 090-894")) +(constraint (= (f "336-611-100") "(336) 611-100")) +(constraint (= (f "416-390-647") "(416) 390-647")) +(constraint (= (f "019-430-596") "(019) 430-596")) +(constraint (= (f "960-659-771") "(960) 659-771")) +(constraint (= (f "475-505-007") "(475) 505-007")) +(constraint (= (f "424-069-886") "(424) 069-886")) +(constraint (= (f "941-102-117") "(941) 102-117")) +(constraint (= (f "331-728-008") "(331) 728-008")) +(constraint (= (f "487-726-198") "(487) 726-198")) +(constraint (= (f "612-419-942") "(612) 419-942")) +(constraint (= (f "594-741-346") "(594) 741-346")) +(constraint (= (f "320-984-742") "(320) 984-742")) +(constraint (= (f "060-919-361") "(060) 919-361")) +(constraint (= (f "275-536-998") "(275) 536-998")) +(constraint (= (f "548-835-065") "(548) 835-065")) +(constraint (= (f "197-485-507") "(197) 485-507")) +(constraint (= (f "455-776-949") "(455) 776-949")) +(constraint (= (f "085-421-340") "(085) 421-340")) +(constraint (= (f "785-713-099") "(785) 713-099")) +(constraint (= (f "426-712-861") "(426) 712-861")) +(constraint (= (f "386-994-906") "(386) 994-906")) +(constraint (= (f "918-304-840") "(918) 304-840")) +(constraint (= (f "247-153-598") "(247) 153-598")) +(constraint (= (f "075-497-069") "(075) 497-069")) +(constraint (= (f "140-726-583") "(140) 726-583")) +(constraint (= (f "049-413-248") "(049) 413-248")) +(constraint (= (f "977-386-462") "(977) 386-462")) +(constraint (= (f "058-272-455") "(058) 272-455")) +(constraint (= (f "428-629-927") "(428) 629-927")) +(constraint (= (f "449-122-191") "(449) 122-191")) +(constraint (= (f "568-759-670") "(568) 759-670")) +(constraint (= (f "312-846-053") "(312) 846-053")) +(constraint (= (f "943-037-297") "(943) 037-297")) +(constraint (= (f "014-270-177") "(014) 270-177")) +(constraint (= (f "658-877-878") "(658) 877-878")) +(constraint (= (f "888-594-038") "(888) 594-038")) +(constraint (= (f "232-253-254") "(232) 253-254")) +(constraint (= (f "308-722-292") "(308) 722-292")) +(constraint (= (f "342-145-742") "(342) 145-742")) +(constraint (= (f "568-181-515") "(568) 181-515")) +(constraint (= (f "300-140-756") "(300) 140-756")) +(constraint (= (f "099-684-216") "(099) 684-216")) +(constraint (= (f "575-296-621") "(575) 296-621")) +(constraint (= (f "994-443-794") "(994) 443-794")) +(constraint (= (f "400-334-692") "(400) 334-692")) +(constraint (= (f "684-711-883") "(684) 711-883")) +(constraint (= (f "539-636-358") "(539) 636-358")) +(constraint (= (f "009-878-919") "(009) 878-919")) +(constraint (= (f "919-545-701") "(919) 545-701")) +(constraint (= (f "546-399-239") "(546) 399-239")) +(constraint (= (f "993-608-757") "(993) 608-757")) +(constraint (= (f "107-652-845") "(107) 652-845")) +(constraint (= (f "206-805-793") "(206) 805-793")) +(constraint (= (f "198-857-684") "(198) 857-684")) +(constraint (= (f "912-827-430") "(912) 827-430")) +(constraint (= (f "560-951-766") "(560) 951-766")) +(constraint (= (f "142-178-290") "(142) 178-290")) +(constraint (= (f "732-196-946") "(732) 196-946")) +(constraint (= (f "963-875-745") "(963) 875-745")) +(constraint (= (f "881-865-867") "(881) 865-867")) +(constraint (= (f "234-686-715") "(234) 686-715")) +(constraint (= (f "720-330-583") "(720) 330-583")) +(constraint (= (f "593-065-126") "(593) 065-126")) +(constraint (= (f "671-778-064") "(671) 778-064")) +(constraint (= (f "252-029-036") "(252) 029-036")) +(constraint (= (f "700-322-036") "(700) 322-036")) +(constraint (= (f "882-587-473") "(882) 587-473")) +(constraint (= (f "964-134-953") "(964) 134-953")) +(constraint (= (f "038-300-876") "(038) 300-876")) +(constraint (= (f "158-894-947") "(158) 894-947")) +(constraint (= (f "757-454-374") "(757) 454-374")) +(constraint (= (f "872-513-190") "(872) 513-190")) +(constraint (= (f "566-086-726") "(566) 086-726")) + +(check-synth) diff --git a/data/sygus/phone-3.sl b/data/sygus/phone-3.sl new file mode 100644 index 0000000000000000000000000000000000000000..6c719adeaf80961e85ce7af6d287ccfe033eadd0 --- /dev/null +++ b/data/sygus/phone-3.sl @@ -0,0 +1,33 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "(" ")" "-" + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "938-242-504") "(938) 242-504")) +(constraint (= (f "308-916-545") "(308) 916-545")) +(constraint (= (f "623-599-749") "(623) 599-749")) +(constraint (= (f "981-424-843") "(981) 424-843")) +(constraint (= (f "118-980-214") "(118) 980-214")) +(constraint (= (f "244-655-094") "(244) 655-094")) +(constraint (= (f "830-941-991") "(830) 941-991")) + +(check-synth) diff --git a/data/sygus/phone-3_short.sl b/data/sygus/phone-3_short.sl new file mode 100644 index 0000000000000000000000000000000000000000..9b299087bdf2a6e98f6ff35844cf4cb0aed716b5 --- /dev/null +++ b/data/sygus/phone-3_short.sl @@ -0,0 +1,30 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "(" ")" "-" + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "938-242-504") "(938) 242-504")) +(constraint (= (f "308-916-545") "(308) 916-545")) +(constraint (= (f "623-599-749") "(623) 599-749")) +(constraint (= (f "981-424-843") "(981) 424-843")) +(constraint (= (f "118-980-214") "(118) 980-214")) +(constraint (= (f "244-655-094") "(244) 655-094")) +(constraint (= (f "830-941-991") "(830) 941-991")) + +(check-synth) diff --git a/data/sygus/phone-4-long-repeat.sl b/data/sygus/phone-4-long-repeat.sl new file mode 100644 index 0000000000000000000000000000000000000000..b35df92e75c6f1f4cff2506fbc523d2407b6918d --- /dev/null +++ b/data/sygus/phone-4-long-repeat.sl @@ -0,0 +1,426 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "(" ")" "-" "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "938-242-504") "938.242.504")) +(constraint (= (f "938-242-504") "938.242.504")) +(constraint (= (f "938-242-504") "938.242.504")) +(constraint (= (f "308-916-545") "308.916.545")) +(constraint (= (f "308-916-545") "308.916.545")) +(constraint (= (f "308-916-545") "308.916.545")) +(constraint (= (f "623-599-749") "623.599.749")) +(constraint (= (f "623-599-749") "623.599.749")) +(constraint (= (f "623-599-749") "623.599.749")) +(constraint (= (f "981-424-843") "981.424.843")) +(constraint (= (f "981-424-843") "981.424.843")) +(constraint (= (f "981-424-843") "981.424.843")) +(constraint (= (f "118-980-214") "118.980.214")) +(constraint (= (f "118-980-214") "118.980.214")) +(constraint (= (f "118-980-214") "118.980.214")) +(constraint (= (f "244-655-094") "244.655.094")) +(constraint (= (f "244-655-094") "244.655.094")) +(constraint (= (f "244-655-094") "244.655.094")) +(constraint (= (f "830-941-991") "830.941.991")) +(constraint (= (f "830-941-991") "830.941.991")) +(constraint (= (f "830-941-991") "830.941.991")) +(constraint (= (f "911-186-562") "911.186.562")) +(constraint (= (f "911-186-562") "911.186.562")) +(constraint (= (f "911-186-562") "911.186.562")) +(constraint (= (f "002-500-200") "002.500.200")) +(constraint (= (f "002-500-200") "002.500.200")) +(constraint (= (f "002-500-200") "002.500.200")) +(constraint (= (f "113-860-034") "113.860.034")) +(constraint (= (f "113-860-034") "113.860.034")) +(constraint (= (f "113-860-034") "113.860.034")) +(constraint (= (f "457-622-959") "457.622.959")) +(constraint (= (f "457-622-959") "457.622.959")) +(constraint (= (f "457-622-959") "457.622.959")) +(constraint (= (f "986-722-311") "986.722.311")) +(constraint (= (f "986-722-311") "986.722.311")) +(constraint (= (f "986-722-311") "986.722.311")) +(constraint (= (f "110-170-771") "110.170.771")) +(constraint (= (f "110-170-771") "110.170.771")) +(constraint (= (f "110-170-771") "110.170.771")) +(constraint (= (f "469-610-118") "469.610.118")) +(constraint (= (f "469-610-118") "469.610.118")) +(constraint (= (f "469-610-118") "469.610.118")) +(constraint (= (f "817-925-247") "817.925.247")) +(constraint (= (f "817-925-247") "817.925.247")) +(constraint (= (f "817-925-247") "817.925.247")) +(constraint (= (f "256-899-439") "256.899.439")) +(constraint (= (f "256-899-439") "256.899.439")) +(constraint (= (f "256-899-439") "256.899.439")) +(constraint (= (f "886-911-726") "886.911.726")) +(constraint (= (f "886-911-726") "886.911.726")) +(constraint (= (f "886-911-726") "886.911.726")) +(constraint (= (f "562-950-358") "562.950.358")) +(constraint (= (f "562-950-358") "562.950.358")) +(constraint (= (f "562-950-358") "562.950.358")) +(constraint (= (f "693-049-588") "693.049.588")) +(constraint (= (f "693-049-588") "693.049.588")) +(constraint (= (f "693-049-588") "693.049.588")) +(constraint (= (f "840-503-234") "840.503.234")) +(constraint (= (f "840-503-234") "840.503.234")) +(constraint (= (f "840-503-234") "840.503.234")) +(constraint (= (f "698-815-340") "698.815.340")) +(constraint (= (f "698-815-340") "698.815.340")) +(constraint (= (f "698-815-340") "698.815.340")) +(constraint (= (f "498-808-434") "498.808.434")) +(constraint (= (f "498-808-434") "498.808.434")) +(constraint (= (f "498-808-434") "498.808.434")) +(constraint (= (f "329-545-000") "329.545.000")) +(constraint (= (f "329-545-000") "329.545.000")) +(constraint (= (f "329-545-000") "329.545.000")) +(constraint (= (f "380-281-597") "380.281.597")) +(constraint (= (f "380-281-597") "380.281.597")) +(constraint (= (f "380-281-597") "380.281.597")) +(constraint (= (f "332-395-493") "332.395.493")) +(constraint (= (f "332-395-493") "332.395.493")) +(constraint (= (f "332-395-493") "332.395.493")) +(constraint (= (f "251-903-028") "251.903.028")) +(constraint (= (f "251-903-028") "251.903.028")) +(constraint (= (f "251-903-028") "251.903.028")) +(constraint (= (f "176-090-894") "176.090.894")) +(constraint (= (f "176-090-894") "176.090.894")) +(constraint (= (f "176-090-894") "176.090.894")) +(constraint (= (f "336-611-100") "336.611.100")) +(constraint (= (f "336-611-100") "336.611.100")) +(constraint (= (f "336-611-100") "336.611.100")) +(constraint (= (f "416-390-647") "416.390.647")) +(constraint (= (f "416-390-647") "416.390.647")) +(constraint (= (f "416-390-647") "416.390.647")) +(constraint (= (f "019-430-596") "019.430.596")) +(constraint (= (f "019-430-596") "019.430.596")) +(constraint (= (f "019-430-596") "019.430.596")) +(constraint (= (f "960-659-771") "960.659.771")) +(constraint (= (f "960-659-771") "960.659.771")) +(constraint (= (f "960-659-771") "960.659.771")) +(constraint (= (f "475-505-007") "475.505.007")) +(constraint (= (f "475-505-007") "475.505.007")) +(constraint (= (f "475-505-007") "475.505.007")) +(constraint (= (f "424-069-886") "424.069.886")) +(constraint (= (f "424-069-886") "424.069.886")) +(constraint (= (f "424-069-886") "424.069.886")) +(constraint (= (f "941-102-117") "941.102.117")) +(constraint (= (f "941-102-117") "941.102.117")) +(constraint (= (f "941-102-117") "941.102.117")) +(constraint (= (f "331-728-008") "331.728.008")) +(constraint (= (f "331-728-008") "331.728.008")) +(constraint (= (f "331-728-008") "331.728.008")) +(constraint (= (f "487-726-198") "487.726.198")) +(constraint (= (f "487-726-198") "487.726.198")) +(constraint (= (f "487-726-198") "487.726.198")) +(constraint (= (f "612-419-942") "612.419.942")) +(constraint (= (f "612-419-942") "612.419.942")) +(constraint (= (f "612-419-942") "612.419.942")) +(constraint (= (f "594-741-346") "594.741.346")) +(constraint (= (f "594-741-346") "594.741.346")) +(constraint (= (f "594-741-346") "594.741.346")) +(constraint (= (f "320-984-742") "320.984.742")) +(constraint (= (f "320-984-742") "320.984.742")) +(constraint (= (f "320-984-742") "320.984.742")) +(constraint (= (f "060-919-361") "060.919.361")) +(constraint (= (f "060-919-361") "060.919.361")) +(constraint (= (f "060-919-361") "060.919.361")) +(constraint (= (f "275-536-998") "275.536.998")) +(constraint (= (f "275-536-998") "275.536.998")) +(constraint (= (f "275-536-998") "275.536.998")) +(constraint (= (f "548-835-065") "548.835.065")) +(constraint (= (f "548-835-065") "548.835.065")) +(constraint (= (f "548-835-065") "548.835.065")) +(constraint (= (f "197-485-507") "197.485.507")) +(constraint (= (f "197-485-507") "197.485.507")) +(constraint (= (f "197-485-507") "197.485.507")) +(constraint (= (f "455-776-949") "455.776.949")) +(constraint (= (f "455-776-949") "455.776.949")) +(constraint (= (f "455-776-949") "455.776.949")) +(constraint (= (f "085-421-340") "085.421.340")) +(constraint (= (f "085-421-340") "085.421.340")) +(constraint (= (f "085-421-340") "085.421.340")) +(constraint (= (f "785-713-099") "785.713.099")) +(constraint (= (f "785-713-099") "785.713.099")) +(constraint (= (f "785-713-099") "785.713.099")) +(constraint (= (f "426-712-861") "426.712.861")) +(constraint (= (f "426-712-861") "426.712.861")) +(constraint (= (f "426-712-861") "426.712.861")) +(constraint (= (f "386-994-906") "386.994.906")) +(constraint (= (f "386-994-906") "386.994.906")) +(constraint (= (f "386-994-906") "386.994.906")) +(constraint (= (f "918-304-840") "918.304.840")) +(constraint (= (f "918-304-840") "918.304.840")) +(constraint (= (f "918-304-840") "918.304.840")) +(constraint (= (f "247-153-598") "247.153.598")) +(constraint (= (f "247-153-598") "247.153.598")) +(constraint (= (f "247-153-598") "247.153.598")) +(constraint (= (f "075-497-069") "075.497.069")) +(constraint (= (f "075-497-069") "075.497.069")) +(constraint (= (f "075-497-069") "075.497.069")) +(constraint (= (f "140-726-583") "140.726.583")) +(constraint (= (f "140-726-583") "140.726.583")) +(constraint (= (f "140-726-583") "140.726.583")) +(constraint (= (f "049-413-248") "049.413.248")) +(constraint (= (f "049-413-248") "049.413.248")) +(constraint (= (f "049-413-248") "049.413.248")) +(constraint (= (f "977-386-462") "977.386.462")) +(constraint (= (f "977-386-462") "977.386.462")) +(constraint (= (f "977-386-462") "977.386.462")) +(constraint (= (f "058-272-455") "058.272.455")) +(constraint (= (f "058-272-455") "058.272.455")) +(constraint (= (f "058-272-455") "058.272.455")) +(constraint (= (f "428-629-927") "428.629.927")) +(constraint (= (f "428-629-927") "428.629.927")) +(constraint (= (f "428-629-927") "428.629.927")) +(constraint (= (f "449-122-191") "449.122.191")) +(constraint (= (f "449-122-191") "449.122.191")) +(constraint (= (f "449-122-191") "449.122.191")) +(constraint (= (f "568-759-670") "568.759.670")) +(constraint (= (f "568-759-670") "568.759.670")) +(constraint (= (f "568-759-670") "568.759.670")) +(constraint (= (f "312-846-053") "312.846.053")) +(constraint (= (f "312-846-053") "312.846.053")) +(constraint (= (f "312-846-053") "312.846.053")) +(constraint (= (f "943-037-297") "943.037.297")) +(constraint (= (f "943-037-297") "943.037.297")) +(constraint (= (f "943-037-297") "943.037.297")) +(constraint (= (f "014-270-177") "014.270.177")) +(constraint (= (f "014-270-177") "014.270.177")) +(constraint (= (f "014-270-177") "014.270.177")) +(constraint (= (f "658-877-878") "658.877.878")) +(constraint (= (f "658-877-878") "658.877.878")) +(constraint (= (f "658-877-878") "658.877.878")) +(constraint (= (f "888-594-038") "888.594.038")) +(constraint (= (f "888-594-038") "888.594.038")) +(constraint (= (f "888-594-038") "888.594.038")) +(constraint (= (f "232-253-254") "232.253.254")) +(constraint (= (f "232-253-254") "232.253.254")) +(constraint (= (f "232-253-254") "232.253.254")) +(constraint (= (f "308-722-292") "308.722.292")) +(constraint (= (f "308-722-292") "308.722.292")) +(constraint (= (f "308-722-292") "308.722.292")) +(constraint (= (f "342-145-742") "342.145.742")) +(constraint (= (f "342-145-742") "342.145.742")) +(constraint (= (f "342-145-742") "342.145.742")) +(constraint (= (f "568-181-515") "568.181.515")) +(constraint (= (f "568-181-515") "568.181.515")) +(constraint (= (f "568-181-515") "568.181.515")) +(constraint (= (f "300-140-756") "300.140.756")) +(constraint (= (f "300-140-756") "300.140.756")) +(constraint (= (f "300-140-756") "300.140.756")) +(constraint (= (f "099-684-216") "099.684.216")) +(constraint (= (f "099-684-216") "099.684.216")) +(constraint (= (f "099-684-216") "099.684.216")) +(constraint (= (f "575-296-621") "575.296.621")) +(constraint (= (f "575-296-621") "575.296.621")) +(constraint (= (f "575-296-621") "575.296.621")) +(constraint (= (f "994-443-794") "994.443.794")) +(constraint (= (f "994-443-794") "994.443.794")) +(constraint (= (f "994-443-794") "994.443.794")) +(constraint (= (f "400-334-692") "400.334.692")) +(constraint (= (f "400-334-692") "400.334.692")) +(constraint (= (f "400-334-692") "400.334.692")) +(constraint (= (f "684-711-883") "684.711.883")) +(constraint (= (f "684-711-883") "684.711.883")) +(constraint (= (f "684-711-883") "684.711.883")) +(constraint (= (f "539-636-358") "539.636.358")) +(constraint (= (f "539-636-358") "539.636.358")) +(constraint (= (f "539-636-358") "539.636.358")) +(constraint (= (f "009-878-919") "009.878.919")) +(constraint (= (f "009-878-919") "009.878.919")) +(constraint (= (f "009-878-919") "009.878.919")) +(constraint (= (f "919-545-701") "919.545.701")) +(constraint (= (f "919-545-701") "919.545.701")) +(constraint (= (f "919-545-701") "919.545.701")) +(constraint (= (f "546-399-239") "546.399.239")) +(constraint (= (f "546-399-239") "546.399.239")) +(constraint (= (f "546-399-239") "546.399.239")) +(constraint (= (f "993-608-757") "993.608.757")) +(constraint (= (f "993-608-757") "993.608.757")) +(constraint (= (f "993-608-757") "993.608.757")) +(constraint (= (f "107-652-845") "107.652.845")) +(constraint (= (f "107-652-845") "107.652.845")) +(constraint (= (f "107-652-845") "107.652.845")) +(constraint (= (f "206-805-793") "206.805.793")) +(constraint (= (f "206-805-793") "206.805.793")) +(constraint (= (f "206-805-793") "206.805.793")) +(constraint (= (f "198-857-684") "198.857.684")) +(constraint (= (f "198-857-684") "198.857.684")) +(constraint (= (f "198-857-684") "198.857.684")) +(constraint (= (f "912-827-430") "912.827.430")) +(constraint (= (f "912-827-430") "912.827.430")) +(constraint (= (f "912-827-430") "912.827.430")) +(constraint (= (f "560-951-766") "560.951.766")) +(constraint (= (f "560-951-766") "560.951.766")) +(constraint (= (f "560-951-766") "560.951.766")) +(constraint (= (f "142-178-290") "142.178.290")) +(constraint (= (f "142-178-290") "142.178.290")) +(constraint (= (f "142-178-290") "142.178.290")) +(constraint (= (f "732-196-946") "732.196.946")) +(constraint (= (f "732-196-946") "732.196.946")) +(constraint (= (f "732-196-946") "732.196.946")) +(constraint (= (f "963-875-745") "963.875.745")) +(constraint (= (f "963-875-745") "963.875.745")) +(constraint (= (f "963-875-745") "963.875.745")) +(constraint (= (f "881-865-867") "881.865.867")) +(constraint (= (f "881-865-867") "881.865.867")) +(constraint (= (f "881-865-867") "881.865.867")) +(constraint (= (f "234-686-715") "234.686.715")) +(constraint (= (f "234-686-715") "234.686.715")) +(constraint (= (f "234-686-715") "234.686.715")) +(constraint (= (f "720-330-583") "720.330.583")) +(constraint (= (f "720-330-583") "720.330.583")) +(constraint (= (f "720-330-583") "720.330.583")) +(constraint (= (f "593-065-126") "593.065.126")) +(constraint (= (f "593-065-126") "593.065.126")) +(constraint (= (f "593-065-126") "593.065.126")) +(constraint (= (f "671-778-064") "671.778.064")) +(constraint (= (f "671-778-064") "671.778.064")) +(constraint (= (f "671-778-064") "671.778.064")) +(constraint (= (f "252-029-036") "252.029.036")) +(constraint (= (f "252-029-036") "252.029.036")) +(constraint (= (f "252-029-036") "252.029.036")) +(constraint (= (f "700-322-036") "700.322.036")) +(constraint (= (f "700-322-036") "700.322.036")) +(constraint (= (f "700-322-036") "700.322.036")) +(constraint (= (f "882-587-473") "882.587.473")) +(constraint (= (f "882-587-473") "882.587.473")) +(constraint (= (f "882-587-473") "882.587.473")) +(constraint (= (f "964-134-953") "964.134.953")) +(constraint (= (f "964-134-953") "964.134.953")) +(constraint (= (f "964-134-953") "964.134.953")) +(constraint (= (f "038-300-876") "038.300.876")) +(constraint (= (f "038-300-876") "038.300.876")) +(constraint (= (f "038-300-876") "038.300.876")) +(constraint (= (f "158-894-947") "158.894.947")) +(constraint (= (f "158-894-947") "158.894.947")) +(constraint (= (f "158-894-947") "158.894.947")) +(constraint (= (f "757-454-374") "757.454.374")) +(constraint (= (f "757-454-374") "757.454.374")) +(constraint (= (f "757-454-374") "757.454.374")) +(constraint (= (f "872-513-190") "872.513.190")) +(constraint (= (f "872-513-190") "872.513.190")) +(constraint (= (f "872-513-190") "872.513.190")) +(constraint (= (f "566-086-726") "566.086.726")) +(constraint (= (f "566-086-726") "566.086.726")) +(constraint (= (f "566-086-726") "566.086.726")) +(constraint (= (f "938-242-504") "938.242.504")) +(constraint (= (f "308-916-545") "308.916.545")) +(constraint (= (f "623-599-749") "623.599.749")) +(constraint (= (f "981-424-843") "981.424.843")) +(constraint (= (f "118-980-214") "118.980.214")) +(constraint (= (f "244-655-094") "244.655.094")) +(constraint (= (f "830-941-991") "830.941.991")) +(constraint (= (f "911-186-562") "911.186.562")) +(constraint (= (f "002-500-200") "002.500.200")) +(constraint (= (f "113-860-034") "113.860.034")) +(constraint (= (f "457-622-959") "457.622.959")) +(constraint (= (f "986-722-311") "986.722.311")) +(constraint (= (f "110-170-771") "110.170.771")) +(constraint (= (f "469-610-118") "469.610.118")) +(constraint (= (f "817-925-247") "817.925.247")) +(constraint (= (f "256-899-439") "256.899.439")) +(constraint (= (f "886-911-726") "886.911.726")) +(constraint (= (f "562-950-358") "562.950.358")) +(constraint (= (f "693-049-588") "693.049.588")) +(constraint (= (f "840-503-234") "840.503.234")) +(constraint (= (f "698-815-340") "698.815.340")) +(constraint (= (f "498-808-434") "498.808.434")) +(constraint (= (f "329-545-000") "329.545.000")) +(constraint (= (f "380-281-597") "380.281.597")) +(constraint (= (f "332-395-493") "332.395.493")) +(constraint (= (f "251-903-028") "251.903.028")) +(constraint (= (f "176-090-894") "176.090.894")) +(constraint (= (f "336-611-100") "336.611.100")) +(constraint (= (f "416-390-647") "416.390.647")) +(constraint (= (f "019-430-596") "019.430.596")) +(constraint (= (f "960-659-771") "960.659.771")) +(constraint (= (f "475-505-007") "475.505.007")) +(constraint (= (f "424-069-886") "424.069.886")) +(constraint (= (f "941-102-117") "941.102.117")) +(constraint (= (f "331-728-008") "331.728.008")) +(constraint (= (f "487-726-198") "487.726.198")) +(constraint (= (f "612-419-942") "612.419.942")) +(constraint (= (f "594-741-346") "594.741.346")) +(constraint (= (f "320-984-742") "320.984.742")) +(constraint (= (f "060-919-361") "060.919.361")) +(constraint (= (f "275-536-998") "275.536.998")) +(constraint (= (f "548-835-065") "548.835.065")) +(constraint (= (f "197-485-507") "197.485.507")) +(constraint (= (f "455-776-949") "455.776.949")) +(constraint (= (f "085-421-340") "085.421.340")) +(constraint (= (f "785-713-099") "785.713.099")) +(constraint (= (f "426-712-861") "426.712.861")) +(constraint (= (f "386-994-906") "386.994.906")) +(constraint (= (f "918-304-840") "918.304.840")) +(constraint (= (f "247-153-598") "247.153.598")) +(constraint (= (f "075-497-069") "075.497.069")) +(constraint (= (f "140-726-583") "140.726.583")) +(constraint (= (f "049-413-248") "049.413.248")) +(constraint (= (f "977-386-462") "977.386.462")) +(constraint (= (f "058-272-455") "058.272.455")) +(constraint (= (f "428-629-927") "428.629.927")) +(constraint (= (f "449-122-191") "449.122.191")) +(constraint (= (f "568-759-670") "568.759.670")) +(constraint (= (f "312-846-053") "312.846.053")) +(constraint (= (f "943-037-297") "943.037.297")) +(constraint (= (f "014-270-177") "014.270.177")) +(constraint (= (f "658-877-878") "658.877.878")) +(constraint (= (f "888-594-038") "888.594.038")) +(constraint (= (f "232-253-254") "232.253.254")) +(constraint (= (f "308-722-292") "308.722.292")) +(constraint (= (f "342-145-742") "342.145.742")) +(constraint (= (f "568-181-515") "568.181.515")) +(constraint (= (f "300-140-756") "300.140.756")) +(constraint (= (f "099-684-216") "099.684.216")) +(constraint (= (f "575-296-621") "575.296.621")) +(constraint (= (f "994-443-794") "994.443.794")) +(constraint (= (f "400-334-692") "400.334.692")) +(constraint (= (f "684-711-883") "684.711.883")) +(constraint (= (f "539-636-358") "539.636.358")) +(constraint (= (f "009-878-919") "009.878.919")) +(constraint (= (f "919-545-701") "919.545.701")) +(constraint (= (f "546-399-239") "546.399.239")) +(constraint (= (f "993-608-757") "993.608.757")) +(constraint (= (f "107-652-845") "107.652.845")) +(constraint (= (f "206-805-793") "206.805.793")) +(constraint (= (f "198-857-684") "198.857.684")) +(constraint (= (f "912-827-430") "912.827.430")) +(constraint (= (f "560-951-766") "560.951.766")) +(constraint (= (f "142-178-290") "142.178.290")) +(constraint (= (f "732-196-946") "732.196.946")) +(constraint (= (f "963-875-745") "963.875.745")) +(constraint (= (f "881-865-867") "881.865.867")) +(constraint (= (f "234-686-715") "234.686.715")) +(constraint (= (f "720-330-583") "720.330.583")) +(constraint (= (f "593-065-126") "593.065.126")) +(constraint (= (f "671-778-064") "671.778.064")) +(constraint (= (f "252-029-036") "252.029.036")) +(constraint (= (f "700-322-036") "700.322.036")) +(constraint (= (f "882-587-473") "882.587.473")) +(constraint (= (f "964-134-953") "964.134.953")) +(constraint (= (f "038-300-876") "038.300.876")) +(constraint (= (f "158-894-947") "158.894.947")) +(constraint (= (f "757-454-374") "757.454.374")) +(constraint (= (f "872-513-190") "872.513.190")) +(constraint (= (f "566-086-726") "566.086.726")) + +(check-synth) diff --git a/data/sygus/phone-4-long.sl b/data/sygus/phone-4-long.sl new file mode 100644 index 0000000000000000000000000000000000000000..a314bcfdf3faae5ecb8d828e52bb0ed53a5378a9 --- /dev/null +++ b/data/sygus/phone-4-long.sl @@ -0,0 +1,126 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "(" ")" "-" "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "938-242-504") "938.242.504")) +(constraint (= (f "308-916-545") "308.916.545")) +(constraint (= (f "623-599-749") "623.599.749")) +(constraint (= (f "981-424-843") "981.424.843")) +(constraint (= (f "118-980-214") "118.980.214")) +(constraint (= (f "244-655-094") "244.655.094")) +(constraint (= (f "830-941-991") "830.941.991")) +(constraint (= (f "911-186-562") "911.186.562")) +(constraint (= (f "002-500-200") "002.500.200")) +(constraint (= (f "113-860-034") "113.860.034")) +(constraint (= (f "457-622-959") "457.622.959")) +(constraint (= (f "986-722-311") "986.722.311")) +(constraint (= (f "110-170-771") "110.170.771")) +(constraint (= (f "469-610-118") "469.610.118")) +(constraint (= (f "817-925-247") "817.925.247")) +(constraint (= (f "256-899-439") "256.899.439")) +(constraint (= (f "886-911-726") "886.911.726")) +(constraint (= (f "562-950-358") "562.950.358")) +(constraint (= (f "693-049-588") "693.049.588")) +(constraint (= (f "840-503-234") "840.503.234")) +(constraint (= (f "698-815-340") "698.815.340")) +(constraint (= (f "498-808-434") "498.808.434")) +(constraint (= (f "329-545-000") "329.545.000")) +(constraint (= (f "380-281-597") "380.281.597")) +(constraint (= (f "332-395-493") "332.395.493")) +(constraint (= (f "251-903-028") "251.903.028")) +(constraint (= (f "176-090-894") "176.090.894")) +(constraint (= (f "336-611-100") "336.611.100")) +(constraint (= (f "416-390-647") "416.390.647")) +(constraint (= (f "019-430-596") "019.430.596")) +(constraint (= (f "960-659-771") "960.659.771")) +(constraint (= (f "475-505-007") "475.505.007")) +(constraint (= (f "424-069-886") "424.069.886")) +(constraint (= (f "941-102-117") "941.102.117")) +(constraint (= (f "331-728-008") "331.728.008")) +(constraint (= (f "487-726-198") "487.726.198")) +(constraint (= (f "612-419-942") "612.419.942")) +(constraint (= (f "594-741-346") "594.741.346")) +(constraint (= (f "320-984-742") "320.984.742")) +(constraint (= (f "060-919-361") "060.919.361")) +(constraint (= (f "275-536-998") "275.536.998")) +(constraint (= (f "548-835-065") "548.835.065")) +(constraint (= (f "197-485-507") "197.485.507")) +(constraint (= (f "455-776-949") "455.776.949")) +(constraint (= (f "085-421-340") "085.421.340")) +(constraint (= (f "785-713-099") "785.713.099")) +(constraint (= (f "426-712-861") "426.712.861")) +(constraint (= (f "386-994-906") "386.994.906")) +(constraint (= (f "918-304-840") "918.304.840")) +(constraint (= (f "247-153-598") "247.153.598")) +(constraint (= (f "075-497-069") "075.497.069")) +(constraint (= (f "140-726-583") "140.726.583")) +(constraint (= (f "049-413-248") "049.413.248")) +(constraint (= (f "977-386-462") "977.386.462")) +(constraint (= (f "058-272-455") "058.272.455")) +(constraint (= (f "428-629-927") "428.629.927")) +(constraint (= (f "449-122-191") "449.122.191")) +(constraint (= (f "568-759-670") "568.759.670")) +(constraint (= (f "312-846-053") "312.846.053")) +(constraint (= (f "943-037-297") "943.037.297")) +(constraint (= (f "014-270-177") "014.270.177")) +(constraint (= (f "658-877-878") "658.877.878")) +(constraint (= (f "888-594-038") "888.594.038")) +(constraint (= (f "232-253-254") "232.253.254")) +(constraint (= (f "308-722-292") "308.722.292")) +(constraint (= (f "342-145-742") "342.145.742")) +(constraint (= (f "568-181-515") "568.181.515")) +(constraint (= (f "300-140-756") "300.140.756")) +(constraint (= (f "099-684-216") "099.684.216")) +(constraint (= (f "575-296-621") "575.296.621")) +(constraint (= (f "994-443-794") "994.443.794")) +(constraint (= (f "400-334-692") "400.334.692")) +(constraint (= (f "684-711-883") "684.711.883")) +(constraint (= (f "539-636-358") "539.636.358")) +(constraint (= (f "009-878-919") "009.878.919")) +(constraint (= (f "919-545-701") "919.545.701")) +(constraint (= (f "546-399-239") "546.399.239")) +(constraint (= (f "993-608-757") "993.608.757")) +(constraint (= (f "107-652-845") "107.652.845")) +(constraint (= (f "206-805-793") "206.805.793")) +(constraint (= (f "198-857-684") "198.857.684")) +(constraint (= (f "912-827-430") "912.827.430")) +(constraint (= (f "560-951-766") "560.951.766")) +(constraint (= (f "142-178-290") "142.178.290")) +(constraint (= (f "732-196-946") "732.196.946")) +(constraint (= (f "963-875-745") "963.875.745")) +(constraint (= (f "881-865-867") "881.865.867")) +(constraint (= (f "234-686-715") "234.686.715")) +(constraint (= (f "720-330-583") "720.330.583")) +(constraint (= (f "593-065-126") "593.065.126")) +(constraint (= (f "671-778-064") "671.778.064")) +(constraint (= (f "252-029-036") "252.029.036")) +(constraint (= (f "700-322-036") "700.322.036")) +(constraint (= (f "882-587-473") "882.587.473")) +(constraint (= (f "964-134-953") "964.134.953")) +(constraint (= (f "038-300-876") "038.300.876")) +(constraint (= (f "158-894-947") "158.894.947")) +(constraint (= (f "757-454-374") "757.454.374")) +(constraint (= (f "872-513-190") "872.513.190")) +(constraint (= (f "566-086-726") "566.086.726")) + +(check-synth) diff --git a/data/sygus/phone-4.sl b/data/sygus/phone-4.sl new file mode 100644 index 0000000000000000000000000000000000000000..2c1d2a2669bb1618bcedf5ac5708ad47fa2258ed --- /dev/null +++ b/data/sygus/phone-4.sl @@ -0,0 +1,32 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "(" ")" "-" "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "938-242-504") "938.242.504")) +(constraint (= (f "308-916-545") "308.916.545")) +(constraint (= (f "623-599-749") "623.599.749")) +(constraint (= (f "981-424-843") "981.424.843")) +(constraint (= (f "118-980-214") "118.980.214")) +(constraint (= (f "244-655-094") "244.655.094")) + +(check-synth) diff --git a/data/sygus/phone-4_short.sl b/data/sygus/phone-4_short.sl new file mode 100644 index 0000000000000000000000000000000000000000..76b7563dfc4ac810ab94827a13da02961bda3b9d --- /dev/null +++ b/data/sygus/phone-4_short.sl @@ -0,0 +1,30 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "(" ")" "-" "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "938-242-504") "938.242.504")) +(constraint (= (f "308-916-545") "308.916.545")) +(constraint (= (f "623-599-749") "623.599.749")) +(constraint (= (f "981-424-843") "981.424.843")) +(constraint (= (f "118-980-214") "118.980.214")) +(constraint (= (f "244-655-094") "244.655.094")) + +(check-synth) diff --git a/data/sygus/phone-5-long-repeat.sl b/data/sygus/phone-5-long-repeat.sl new file mode 100644 index 0000000000000000000000000000000000000000..6af133081b5532f40eef5692f612c10b23616d28 --- /dev/null +++ b/data/sygus/phone-5-long-repeat.sl @@ -0,0 +1,426 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "+" "-" "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "+106 769-858-438") "106")) +(constraint (= (f "+106 769-858-438") "106")) +(constraint (= (f "+106 769-858-438") "106")) +(constraint (= (f "+83 973-757-831") "83")) +(constraint (= (f "+83 973-757-831") "83")) +(constraint (= (f "+83 973-757-831") "83")) +(constraint (= (f "+62 647-787-775") "62")) +(constraint (= (f "+62 647-787-775") "62")) +(constraint (= (f "+62 647-787-775") "62")) +(constraint (= (f "+172 027-507-632") "172")) +(constraint (= (f "+172 027-507-632") "172")) +(constraint (= (f "+172 027-507-632") "172")) +(constraint (= (f "+72 001-050-856") "72")) +(constraint (= (f "+72 001-050-856") "72")) +(constraint (= (f "+72 001-050-856") "72")) +(constraint (= (f "+95 310-537-401") "95")) +(constraint (= (f "+95 310-537-401") "95")) +(constraint (= (f "+95 310-537-401") "95")) +(constraint (= (f "+6 775-969-238") "6")) +(constraint (= (f "+6 775-969-238") "6")) +(constraint (= (f "+6 775-969-238") "6")) +(constraint (= (f "+174 594-539-946") "174")) +(constraint (= (f "+174 594-539-946") "174")) +(constraint (= (f "+174 594-539-946") "174")) +(constraint (= (f "+155 927-275-860") "155")) +(constraint (= (f "+155 927-275-860") "155")) +(constraint (= (f "+155 927-275-860") "155")) +(constraint (= (f "+167 405-461-331") "167")) +(constraint (= (f "+167 405-461-331") "167")) +(constraint (= (f "+167 405-461-331") "167")) +(constraint (= (f "+10 538-347-401") "10")) +(constraint (= (f "+10 538-347-401") "10")) +(constraint (= (f "+10 538-347-401") "10")) +(constraint (= (f "+60 971-986-103") "60")) +(constraint (= (f "+60 971-986-103") "60")) +(constraint (= (f "+60 971-986-103") "60")) +(constraint (= (f "+13 258-276-941") "13")) +(constraint (= (f "+13 258-276-941") "13")) +(constraint (= (f "+13 258-276-941") "13")) +(constraint (= (f "+2 604-746-137") "2")) +(constraint (= (f "+2 604-746-137") "2")) +(constraint (= (f "+2 604-746-137") "2")) +(constraint (= (f "+25 998-898-180") "25")) +(constraint (= (f "+25 998-898-180") "25")) +(constraint (= (f "+25 998-898-180") "25")) +(constraint (= (f "+151 862-946-541") "151")) +(constraint (= (f "+151 862-946-541") "151")) +(constraint (= (f "+151 862-946-541") "151")) +(constraint (= (f "+118 165-041-038") "118")) +(constraint (= (f "+118 165-041-038") "118")) +(constraint (= (f "+118 165-041-038") "118")) +(constraint (= (f "+144 170-592-272") "144")) +(constraint (= (f "+144 170-592-272") "144")) +(constraint (= (f "+144 170-592-272") "144")) +(constraint (= (f "+94 462-008-482") "94")) +(constraint (= (f "+94 462-008-482") "94")) +(constraint (= (f "+94 462-008-482") "94")) +(constraint (= (f "+82 685-122-086") "82")) +(constraint (= (f "+82 685-122-086") "82")) +(constraint (= (f "+82 685-122-086") "82")) +(constraint (= (f "+82 675-366-472") "82")) +(constraint (= (f "+82 675-366-472") "82")) +(constraint (= (f "+82 675-366-472") "82")) +(constraint (= (f "+80 066-433-096") "80")) +(constraint (= (f "+80 066-433-096") "80")) +(constraint (= (f "+80 066-433-096") "80")) +(constraint (= (f "+163 039-436-166") "163")) +(constraint (= (f "+163 039-436-166") "163")) +(constraint (= (f "+163 039-436-166") "163")) +(constraint (= (f "+138 808-083-074") "138")) +(constraint (= (f "+138 808-083-074") "138")) +(constraint (= (f "+138 808-083-074") "138")) +(constraint (= (f "+42 643-245-738") "42")) +(constraint (= (f "+42 643-245-738") "42")) +(constraint (= (f "+42 643-245-738") "42")) +(constraint (= (f "+169 822-542-726") "169")) +(constraint (= (f "+169 822-542-726") "169")) +(constraint (= (f "+169 822-542-726") "169")) +(constraint (= (f "+176 767-782-369") "176")) +(constraint (= (f "+176 767-782-369") "176")) +(constraint (= (f "+176 767-782-369") "176")) +(constraint (= (f "+47 414-369-343") "47")) +(constraint (= (f "+47 414-369-343") "47")) +(constraint (= (f "+47 414-369-343") "47")) +(constraint (= (f "+138 885-618-512") "138")) +(constraint (= (f "+138 885-618-512") "138")) +(constraint (= (f "+138 885-618-512") "138")) +(constraint (= (f "+104 158-671-355") "104")) +(constraint (= (f "+104 158-671-355") "104")) +(constraint (= (f "+104 158-671-355") "104")) +(constraint (= (f "+188 280-087-526") "188")) +(constraint (= (f "+188 280-087-526") "188")) +(constraint (= (f "+188 280-087-526") "188")) +(constraint (= (f "+50 268-571-336") "50")) +(constraint (= (f "+50 268-571-336") "50")) +(constraint (= (f "+50 268-571-336") "50")) +(constraint (= (f "+183 225-960-024") "183")) +(constraint (= (f "+183 225-960-024") "183")) +(constraint (= (f "+183 225-960-024") "183")) +(constraint (= (f "+58 191-982-491") "58")) +(constraint (= (f "+58 191-982-491") "58")) +(constraint (= (f "+58 191-982-491") "58")) +(constraint (= (f "+9 507-092-535") "9")) +(constraint (= (f "+9 507-092-535") "9")) +(constraint (= (f "+9 507-092-535") "9")) +(constraint (= (f "+64 061-601-398") "64")) +(constraint (= (f "+64 061-601-398") "64")) +(constraint (= (f "+64 061-601-398") "64")) +(constraint (= (f "+189 831-591-877") "189")) +(constraint (= (f "+189 831-591-877") "189")) +(constraint (= (f "+189 831-591-877") "189")) +(constraint (= (f "+129 425-765-844") "129")) +(constraint (= (f "+129 425-765-844") "129")) +(constraint (= (f "+129 425-765-844") "129")) +(constraint (= (f "+94 856-734-046") "94")) +(constraint (= (f "+94 856-734-046") "94")) +(constraint (= (f "+94 856-734-046") "94")) +(constraint (= (f "+35 082-845-261") "35")) +(constraint (= (f "+35 082-845-261") "35")) +(constraint (= (f "+35 082-845-261") "35")) +(constraint (= (f "+185 394-622-272") "185")) +(constraint (= (f "+185 394-622-272") "185")) +(constraint (= (f "+185 394-622-272") "185")) +(constraint (= (f "+163 905-707-740") "163")) +(constraint (= (f "+163 905-707-740") "163")) +(constraint (= (f "+163 905-707-740") "163")) +(constraint (= (f "+23 448-213-807") "23")) +(constraint (= (f "+23 448-213-807") "23")) +(constraint (= (f "+23 448-213-807") "23")) +(constraint (= (f "+42 634-077-089") "42")) +(constraint (= (f "+42 634-077-089") "42")) +(constraint (= (f "+42 634-077-089") "42")) +(constraint (= (f "+18 051-287-382") "18")) +(constraint (= (f "+18 051-287-382") "18")) +(constraint (= (f "+18 051-287-382") "18")) +(constraint (= (f "+29 773-545-520") "29")) +(constraint (= (f "+29 773-545-520") "29")) +(constraint (= (f "+29 773-545-520") "29")) +(constraint (= (f "+43 249-097-743") "43")) +(constraint (= (f "+43 249-097-743") "43")) +(constraint (= (f "+43 249-097-743") "43")) +(constraint (= (f "+158 674-736-891") "158")) +(constraint (= (f "+158 674-736-891") "158")) +(constraint (= (f "+158 674-736-891") "158")) +(constraint (= (f "+45 124-771-454") "45")) +(constraint (= (f "+45 124-771-454") "45")) +(constraint (= (f "+45 124-771-454") "45")) +(constraint (= (f "+180 029-457-654") "180")) +(constraint (= (f "+180 029-457-654") "180")) +(constraint (= (f "+180 029-457-654") "180")) +(constraint (= (f "+75 227-250-652") "75")) +(constraint (= (f "+75 227-250-652") "75")) +(constraint (= (f "+75 227-250-652") "75")) +(constraint (= (f "+5 528-317-854") "5")) +(constraint (= (f "+5 528-317-854") "5")) +(constraint (= (f "+5 528-317-854") "5")) +(constraint (= (f "+81 849-629-290") "81")) +(constraint (= (f "+81 849-629-290") "81")) +(constraint (= (f "+81 849-629-290") "81")) +(constraint (= (f "+46 005-119-176") "46")) +(constraint (= (f "+46 005-119-176") "46")) +(constraint (= (f "+46 005-119-176") "46")) +(constraint (= (f "+108 150-380-705") "108")) +(constraint (= (f "+108 150-380-705") "108")) +(constraint (= (f "+108 150-380-705") "108")) +(constraint (= (f "+40 122-224-247") "40")) +(constraint (= (f "+40 122-224-247") "40")) +(constraint (= (f "+40 122-224-247") "40")) +(constraint (= (f "+68 890-680-027") "68")) +(constraint (= (f "+68 890-680-027") "68")) +(constraint (= (f "+68 890-680-027") "68")) +(constraint (= (f "+169 060-204-504") "169")) +(constraint (= (f "+169 060-204-504") "169")) +(constraint (= (f "+169 060-204-504") "169")) +(constraint (= (f "+95 620-820-945") "95")) +(constraint (= (f "+95 620-820-945") "95")) +(constraint (= (f "+95 620-820-945") "95")) +(constraint (= (f "+43 592-938-846") "43")) +(constraint (= (f "+43 592-938-846") "43")) +(constraint (= (f "+43 592-938-846") "43")) +(constraint (= (f "+7 023-296-647") "7")) +(constraint (= (f "+7 023-296-647") "7")) +(constraint (= (f "+7 023-296-647") "7")) +(constraint (= (f "+20 541-401-396") "20")) +(constraint (= (f "+20 541-401-396") "20")) +(constraint (= (f "+20 541-401-396") "20")) +(constraint (= (f "+64 751-365-934") "64")) +(constraint (= (f "+64 751-365-934") "64")) +(constraint (= (f "+64 751-365-934") "64")) +(constraint (= (f "+163 546-119-476") "163")) +(constraint (= (f "+163 546-119-476") "163")) +(constraint (= (f "+163 546-119-476") "163")) +(constraint (= (f "+198 557-666-779") "198")) +(constraint (= (f "+198 557-666-779") "198")) +(constraint (= (f "+198 557-666-779") "198")) +(constraint (= (f "+14 673-759-017") "14")) +(constraint (= (f "+14 673-759-017") "14")) +(constraint (= (f "+14 673-759-017") "14")) +(constraint (= (f "+161 086-020-168") "161")) +(constraint (= (f "+161 086-020-168") "161")) +(constraint (= (f "+161 086-020-168") "161")) +(constraint (= (f "+65 970-575-488") "65")) +(constraint (= (f "+65 970-575-488") "65")) +(constraint (= (f "+65 970-575-488") "65")) +(constraint (= (f "+2 455-126-377") "2")) +(constraint (= (f "+2 455-126-377") "2")) +(constraint (= (f "+2 455-126-377") "2")) +(constraint (= (f "+196 728-585-376") "196")) +(constraint (= (f "+196 728-585-376") "196")) +(constraint (= (f "+196 728-585-376") "196")) +(constraint (= (f "+33 117-430-125") "33")) +(constraint (= (f "+33 117-430-125") "33")) +(constraint (= (f "+33 117-430-125") "33")) +(constraint (= (f "+195 488-831-768") "195")) +(constraint (= (f "+195 488-831-768") "195")) +(constraint (= (f "+195 488-831-768") "195")) +(constraint (= (f "+86 468-718-108") "86")) +(constraint (= (f "+86 468-718-108") "86")) +(constraint (= (f "+86 468-718-108") "86")) +(constraint (= (f "+194 278-716-950") "194")) +(constraint (= (f "+194 278-716-950") "194")) +(constraint (= (f "+194 278-716-950") "194")) +(constraint (= (f "+43 730-685-847") "43")) +(constraint (= (f "+43 730-685-847") "43")) +(constraint (= (f "+43 730-685-847") "43")) +(constraint (= (f "+140 794-289-551") "140")) +(constraint (= (f "+140 794-289-551") "140")) +(constraint (= (f "+140 794-289-551") "140")) +(constraint (= (f "+21 679-740-834") "21")) +(constraint (= (f "+21 679-740-834") "21")) +(constraint (= (f "+21 679-740-834") "21")) +(constraint (= (f "+98 717-997-323") "98")) +(constraint (= (f "+98 717-997-323") "98")) +(constraint (= (f "+98 717-997-323") "98")) +(constraint (= (f "+47 401-100-231") "47")) +(constraint (= (f "+47 401-100-231") "47")) +(constraint (= (f "+47 401-100-231") "47")) +(constraint (= (f "+143 726-462-368") "143")) +(constraint (= (f "+143 726-462-368") "143")) +(constraint (= (f "+143 726-462-368") "143")) +(constraint (= (f "+147 864-005-968") "147")) +(constraint (= (f "+147 864-005-968") "147")) +(constraint (= (f "+147 864-005-968") "147")) +(constraint (= (f "+130 590-757-665") "130")) +(constraint (= (f "+130 590-757-665") "130")) +(constraint (= (f "+130 590-757-665") "130")) +(constraint (= (f "+197 700-858-976") "197")) +(constraint (= (f "+197 700-858-976") "197")) +(constraint (= (f "+197 700-858-976") "197")) +(constraint (= (f "+158 344-541-946") "158")) +(constraint (= (f "+158 344-541-946") "158")) +(constraint (= (f "+158 344-541-946") "158")) +(constraint (= (f "+56 242-901-234") "56")) +(constraint (= (f "+56 242-901-234") "56")) +(constraint (= (f "+56 242-901-234") "56")) +(constraint (= (f "+132 313-075-754") "132")) +(constraint (= (f "+132 313-075-754") "132")) +(constraint (= (f "+132 313-075-754") "132")) +(constraint (= (f "+130 517-953-149") "130")) +(constraint (= (f "+130 517-953-149") "130")) +(constraint (= (f "+130 517-953-149") "130")) +(constraint (= (f "+158 684-878-743") "158")) +(constraint (= (f "+158 684-878-743") "158")) +(constraint (= (f "+158 684-878-743") "158")) +(constraint (= (f "+52 836-582-035") "52")) +(constraint (= (f "+52 836-582-035") "52")) +(constraint (= (f "+52 836-582-035") "52")) +(constraint (= (f "+138 117-484-671") "138")) +(constraint (= (f "+138 117-484-671") "138")) +(constraint (= (f "+138 117-484-671") "138")) +(constraint (= (f "+50 012-148-873") "50")) +(constraint (= (f "+50 012-148-873") "50")) +(constraint (= (f "+50 012-148-873") "50")) +(constraint (= (f "+105 048-919-483") "105")) +(constraint (= (f "+105 048-919-483") "105")) +(constraint (= (f "+105 048-919-483") "105")) +(constraint (= (f "+18 209-851-997") "18")) +(constraint (= (f "+18 209-851-997") "18")) +(constraint (= (f "+18 209-851-997") "18")) +(constraint (= (f "+176 938-056-084") "176")) +(constraint (= (f "+176 938-056-084") "176")) +(constraint (= (f "+176 938-056-084") "176")) +(constraint (= (f "+141 018-132-973") "141")) +(constraint (= (f "+141 018-132-973") "141")) +(constraint (= (f "+141 018-132-973") "141")) +(constraint (= (f "+199 936-162-415") "199")) +(constraint (= (f "+199 936-162-415") "199")) +(constraint (= (f "+199 936-162-415") "199")) +(constraint (= (f "+33 547-051-264") "33")) +(constraint (= (f "+33 547-051-264") "33")) +(constraint (= (f "+33 547-051-264") "33")) +(constraint (= (f "+161 233-981-513") "161")) +(constraint (= (f "+161 233-981-513") "161")) +(constraint (= (f "+161 233-981-513") "161")) +(constraint (= (f "+115 101-728-328") "115")) +(constraint (= (f "+115 101-728-328") "115")) +(constraint (= (f "+115 101-728-328") "115")) +(constraint (= (f "+45 095-746-635") "45")) +(constraint (= (f "+45 095-746-635") "45")) +(constraint (= (f "+45 095-746-635") "45")) +(constraint (= (f "+106 769-858-438") "106")) +(constraint (= (f "+83 973-757-831") "83")) +(constraint (= (f "+62 647-787-775") "62")) +(constraint (= (f "+172 027-507-632") "172")) +(constraint (= (f "+72 001-050-856") "72")) +(constraint (= (f "+95 310-537-401") "95")) +(constraint (= (f "+6 775-969-238") "6")) +(constraint (= (f "+174 594-539-946") "174")) +(constraint (= (f "+155 927-275-860") "155")) +(constraint (= (f "+167 405-461-331") "167")) +(constraint (= (f "+10 538-347-401") "10")) +(constraint (= (f "+60 971-986-103") "60")) +(constraint (= (f "+13 258-276-941") "13")) +(constraint (= (f "+2 604-746-137") "2")) +(constraint (= (f "+25 998-898-180") "25")) +(constraint (= (f "+151 862-946-541") "151")) +(constraint (= (f "+118 165-041-038") "118")) +(constraint (= (f "+144 170-592-272") "144")) +(constraint (= (f "+94 462-008-482") "94")) +(constraint (= (f "+82 685-122-086") "82")) +(constraint (= (f "+82 675-366-472") "82")) +(constraint (= (f "+80 066-433-096") "80")) +(constraint (= (f "+163 039-436-166") "163")) +(constraint (= (f "+138 808-083-074") "138")) +(constraint (= (f "+42 643-245-738") "42")) +(constraint (= (f "+169 822-542-726") "169")) +(constraint (= (f "+176 767-782-369") "176")) +(constraint (= (f "+47 414-369-343") "47")) +(constraint (= (f "+138 885-618-512") "138")) +(constraint (= (f "+104 158-671-355") "104")) +(constraint (= (f "+188 280-087-526") "188")) +(constraint (= (f "+50 268-571-336") "50")) +(constraint (= (f "+183 225-960-024") "183")) +(constraint (= (f "+58 191-982-491") "58")) +(constraint (= (f "+9 507-092-535") "9")) +(constraint (= (f "+64 061-601-398") "64")) +(constraint (= (f "+189 831-591-877") "189")) +(constraint (= (f "+129 425-765-844") "129")) +(constraint (= (f "+94 856-734-046") "94")) +(constraint (= (f "+35 082-845-261") "35")) +(constraint (= (f "+185 394-622-272") "185")) +(constraint (= (f "+163 905-707-740") "163")) +(constraint (= (f "+23 448-213-807") "23")) +(constraint (= (f "+42 634-077-089") "42")) +(constraint (= (f "+18 051-287-382") "18")) +(constraint (= (f "+29 773-545-520") "29")) +(constraint (= (f "+43 249-097-743") "43")) +(constraint (= (f "+158 674-736-891") "158")) +(constraint (= (f "+45 124-771-454") "45")) +(constraint (= (f "+180 029-457-654") "180")) +(constraint (= (f "+75 227-250-652") "75")) +(constraint (= (f "+5 528-317-854") "5")) +(constraint (= (f "+81 849-629-290") "81")) +(constraint (= (f "+46 005-119-176") "46")) +(constraint (= (f "+108 150-380-705") "108")) +(constraint (= (f "+40 122-224-247") "40")) +(constraint (= (f "+68 890-680-027") "68")) +(constraint (= (f "+169 060-204-504") "169")) +(constraint (= (f "+95 620-820-945") "95")) +(constraint (= (f "+43 592-938-846") "43")) +(constraint (= (f "+7 023-296-647") "7")) +(constraint (= (f "+20 541-401-396") "20")) +(constraint (= (f "+64 751-365-934") "64")) +(constraint (= (f "+163 546-119-476") "163")) +(constraint (= (f "+198 557-666-779") "198")) +(constraint (= (f "+14 673-759-017") "14")) +(constraint (= (f "+161 086-020-168") "161")) +(constraint (= (f "+65 970-575-488") "65")) +(constraint (= (f "+2 455-126-377") "2")) +(constraint (= (f "+196 728-585-376") "196")) +(constraint (= (f "+33 117-430-125") "33")) +(constraint (= (f "+195 488-831-768") "195")) +(constraint (= (f "+86 468-718-108") "86")) +(constraint (= (f "+194 278-716-950") "194")) +(constraint (= (f "+43 730-685-847") "43")) +(constraint (= (f "+140 794-289-551") "140")) +(constraint (= (f "+21 679-740-834") "21")) +(constraint (= (f "+98 717-997-323") "98")) +(constraint (= (f "+47 401-100-231") "47")) +(constraint (= (f "+143 726-462-368") "143")) +(constraint (= (f "+147 864-005-968") "147")) +(constraint (= (f "+130 590-757-665") "130")) +(constraint (= (f "+197 700-858-976") "197")) +(constraint (= (f "+158 344-541-946") "158")) +(constraint (= (f "+56 242-901-234") "56")) +(constraint (= (f "+132 313-075-754") "132")) +(constraint (= (f "+130 517-953-149") "130")) +(constraint (= (f "+158 684-878-743") "158")) +(constraint (= (f "+52 836-582-035") "52")) +(constraint (= (f "+138 117-484-671") "138")) +(constraint (= (f "+50 012-148-873") "50")) +(constraint (= (f "+105 048-919-483") "105")) +(constraint (= (f "+18 209-851-997") "18")) +(constraint (= (f "+176 938-056-084") "176")) +(constraint (= (f "+141 018-132-973") "141")) +(constraint (= (f "+199 936-162-415") "199")) +(constraint (= (f "+33 547-051-264") "33")) +(constraint (= (f "+161 233-981-513") "161")) +(constraint (= (f "+115 101-728-328") "115")) +(constraint (= (f "+45 095-746-635") "45")) + +(check-synth) diff --git a/data/sygus/phone-5-long.sl b/data/sygus/phone-5-long.sl new file mode 100644 index 0000000000000000000000000000000000000000..35e25256f16fb47828a383c7cb0d89b6a6457f39 --- /dev/null +++ b/data/sygus/phone-5-long.sl @@ -0,0 +1,126 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "+" "-" "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "+106 769-858-438") "106")) +(constraint (= (f "+83 973-757-831") "83")) +(constraint (= (f "+62 647-787-775") "62")) +(constraint (= (f "+172 027-507-632") "172")) +(constraint (= (f "+72 001-050-856") "72")) +(constraint (= (f "+95 310-537-401") "95")) +(constraint (= (f "+6 775-969-238") "6")) +(constraint (= (f "+174 594-539-946") "174")) +(constraint (= (f "+155 927-275-860") "155")) +(constraint (= (f "+167 405-461-331") "167")) +(constraint (= (f "+10 538-347-401") "10")) +(constraint (= (f "+60 971-986-103") "60")) +(constraint (= (f "+13 258-276-941") "13")) +(constraint (= (f "+2 604-746-137") "2")) +(constraint (= (f "+25 998-898-180") "25")) +(constraint (= (f "+151 862-946-541") "151")) +(constraint (= (f "+118 165-041-038") "118")) +(constraint (= (f "+144 170-592-272") "144")) +(constraint (= (f "+94 462-008-482") "94")) +(constraint (= (f "+82 685-122-086") "82")) +(constraint (= (f "+82 675-366-472") "82")) +(constraint (= (f "+80 066-433-096") "80")) +(constraint (= (f "+163 039-436-166") "163")) +(constraint (= (f "+138 808-083-074") "138")) +(constraint (= (f "+42 643-245-738") "42")) +(constraint (= (f "+169 822-542-726") "169")) +(constraint (= (f "+176 767-782-369") "176")) +(constraint (= (f "+47 414-369-343") "47")) +(constraint (= (f "+138 885-618-512") "138")) +(constraint (= (f "+104 158-671-355") "104")) +(constraint (= (f "+188 280-087-526") "188")) +(constraint (= (f "+50 268-571-336") "50")) +(constraint (= (f "+183 225-960-024") "183")) +(constraint (= (f "+58 191-982-491") "58")) +(constraint (= (f "+9 507-092-535") "9")) +(constraint (= (f "+64 061-601-398") "64")) +(constraint (= (f "+189 831-591-877") "189")) +(constraint (= (f "+129 425-765-844") "129")) +(constraint (= (f "+94 856-734-046") "94")) +(constraint (= (f "+35 082-845-261") "35")) +(constraint (= (f "+185 394-622-272") "185")) +(constraint (= (f "+163 905-707-740") "163")) +(constraint (= (f "+23 448-213-807") "23")) +(constraint (= (f "+42 634-077-089") "42")) +(constraint (= (f "+18 051-287-382") "18")) +(constraint (= (f "+29 773-545-520") "29")) +(constraint (= (f "+43 249-097-743") "43")) +(constraint (= (f "+158 674-736-891") "158")) +(constraint (= (f "+45 124-771-454") "45")) +(constraint (= (f "+180 029-457-654") "180")) +(constraint (= (f "+75 227-250-652") "75")) +(constraint (= (f "+5 528-317-854") "5")) +(constraint (= (f "+81 849-629-290") "81")) +(constraint (= (f "+46 005-119-176") "46")) +(constraint (= (f "+108 150-380-705") "108")) +(constraint (= (f "+40 122-224-247") "40")) +(constraint (= (f "+68 890-680-027") "68")) +(constraint (= (f "+169 060-204-504") "169")) +(constraint (= (f "+95 620-820-945") "95")) +(constraint (= (f "+43 592-938-846") "43")) +(constraint (= (f "+7 023-296-647") "7")) +(constraint (= (f "+20 541-401-396") "20")) +(constraint (= (f "+64 751-365-934") "64")) +(constraint (= (f "+163 546-119-476") "163")) +(constraint (= (f "+198 557-666-779") "198")) +(constraint (= (f "+14 673-759-017") "14")) +(constraint (= (f "+161 086-020-168") "161")) +(constraint (= (f "+65 970-575-488") "65")) +(constraint (= (f "+2 455-126-377") "2")) +(constraint (= (f "+196 728-585-376") "196")) +(constraint (= (f "+33 117-430-125") "33")) +(constraint (= (f "+195 488-831-768") "195")) +(constraint (= (f "+86 468-718-108") "86")) +(constraint (= (f "+194 278-716-950") "194")) +(constraint (= (f "+43 730-685-847") "43")) +(constraint (= (f "+140 794-289-551") "140")) +(constraint (= (f "+21 679-740-834") "21")) +(constraint (= (f "+98 717-997-323") "98")) +(constraint (= (f "+47 401-100-231") "47")) +(constraint (= (f "+143 726-462-368") "143")) +(constraint (= (f "+147 864-005-968") "147")) +(constraint (= (f "+130 590-757-665") "130")) +(constraint (= (f "+197 700-858-976") "197")) +(constraint (= (f "+158 344-541-946") "158")) +(constraint (= (f "+56 242-901-234") "56")) +(constraint (= (f "+132 313-075-754") "132")) +(constraint (= (f "+130 517-953-149") "130")) +(constraint (= (f "+158 684-878-743") "158")) +(constraint (= (f "+52 836-582-035") "52")) +(constraint (= (f "+138 117-484-671") "138")) +(constraint (= (f "+50 012-148-873") "50")) +(constraint (= (f "+105 048-919-483") "105")) +(constraint (= (f "+18 209-851-997") "18")) +(constraint (= (f "+176 938-056-084") "176")) +(constraint (= (f "+141 018-132-973") "141")) +(constraint (= (f "+199 936-162-415") "199")) +(constraint (= (f "+33 547-051-264") "33")) +(constraint (= (f "+161 233-981-513") "161")) +(constraint (= (f "+115 101-728-328") "115")) +(constraint (= (f "+45 095-746-635") "45")) + +(check-synth) diff --git a/data/sygus/phone-5.sl b/data/sygus/phone-5.sl new file mode 100644 index 0000000000000000000000000000000000000000..165ece7d6776ca7989ce641f40b6b4627f4f63d1 --- /dev/null +++ b/data/sygus/phone-5.sl @@ -0,0 +1,33 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "+" "-" "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "+106 769-858-438") "106")) +(constraint (= (f "+83 973-757-831") "83")) +(constraint (= (f "+62 647-787-775") "62")) +(constraint (= (f "+172 027-507-632") "172")) +(constraint (= (f "+72 001-050-856") "72")) +(constraint (= (f "+95 310-537-401") "95")) +(constraint (= (f "+6 775-969-238") "6")) + +(check-synth) diff --git a/data/sygus/phone-5_short.sl b/data/sygus/phone-5_short.sl new file mode 100644 index 0000000000000000000000000000000000000000..6a45e11ef4ec6bb113ce67e23f4331591fa90cf2 --- /dev/null +++ b/data/sygus/phone-5_short.sl @@ -0,0 +1,30 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "+" "-" "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "+106 769-858-438") "106")) +(constraint (= (f "+83 973-757-831") "83")) +(constraint (= (f "+62 647-787-775") "62")) +(constraint (= (f "+172 027-507-632") "172")) +(constraint (= (f "+72 001-050-856") "72")) +(constraint (= (f "+95 310-537-401") "95")) +(constraint (= (f "+6 775-969-238") "6")) + +(check-synth) diff --git a/data/sygus/phone-6-long-repeat.sl b/data/sygus/phone-6-long-repeat.sl new file mode 100644 index 0000000000000000000000000000000000000000..03a77f044cd954bc264ede2c829d200edfde0866 --- /dev/null +++ b/data/sygus/phone-6-long-repeat.sl @@ -0,0 +1,426 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "+" "-" "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "+106 769-858-438") "769")) +(constraint (= (f "+106 769-858-438") "769")) +(constraint (= (f "+106 769-858-438") "769")) +(constraint (= (f "+83 973-757-831") "973")) +(constraint (= (f "+83 973-757-831") "973")) +(constraint (= (f "+83 973-757-831") "973")) +(constraint (= (f "+62 647-787-775") "647")) +(constraint (= (f "+62 647-787-775") "647")) +(constraint (= (f "+62 647-787-775") "647")) +(constraint (= (f "+172 027-507-632") "027")) +(constraint (= (f "+172 027-507-632") "027")) +(constraint (= (f "+172 027-507-632") "027")) +(constraint (= (f "+72 001-050-856") "001")) +(constraint (= (f "+72 001-050-856") "001")) +(constraint (= (f "+72 001-050-856") "001")) +(constraint (= (f "+95 310-537-401") "310")) +(constraint (= (f "+95 310-537-401") "310")) +(constraint (= (f "+95 310-537-401") "310")) +(constraint (= (f "+6 775-969-238") "775")) +(constraint (= (f "+6 775-969-238") "775")) +(constraint (= (f "+6 775-969-238") "775")) +(constraint (= (f "+174 594-539-946") "594")) +(constraint (= (f "+174 594-539-946") "594")) +(constraint (= (f "+174 594-539-946") "594")) +(constraint (= (f "+155 927-275-860") "927")) +(constraint (= (f "+155 927-275-860") "927")) +(constraint (= (f "+155 927-275-860") "927")) +(constraint (= (f "+167 405-461-331") "405")) +(constraint (= (f "+167 405-461-331") "405")) +(constraint (= (f "+167 405-461-331") "405")) +(constraint (= (f "+10 538-347-401") "538")) +(constraint (= (f "+10 538-347-401") "538")) +(constraint (= (f "+10 538-347-401") "538")) +(constraint (= (f "+60 971-986-103") "971")) +(constraint (= (f "+60 971-986-103") "971")) +(constraint (= (f "+60 971-986-103") "971")) +(constraint (= (f "+13 258-276-941") "258")) +(constraint (= (f "+13 258-276-941") "258")) +(constraint (= (f "+13 258-276-941") "258")) +(constraint (= (f "+2 604-746-137") "604")) +(constraint (= (f "+2 604-746-137") "604")) +(constraint (= (f "+2 604-746-137") "604")) +(constraint (= (f "+25 998-898-180") "998")) +(constraint (= (f "+25 998-898-180") "998")) +(constraint (= (f "+25 998-898-180") "998")) +(constraint (= (f "+151 862-946-541") "862")) +(constraint (= (f "+151 862-946-541") "862")) +(constraint (= (f "+151 862-946-541") "862")) +(constraint (= (f "+118 165-041-038") "165")) +(constraint (= (f "+118 165-041-038") "165")) +(constraint (= (f "+118 165-041-038") "165")) +(constraint (= (f "+144 170-592-272") "170")) +(constraint (= (f "+144 170-592-272") "170")) +(constraint (= (f "+144 170-592-272") "170")) +(constraint (= (f "+94 462-008-482") "462")) +(constraint (= (f "+94 462-008-482") "462")) +(constraint (= (f "+94 462-008-482") "462")) +(constraint (= (f "+82 685-122-086") "685")) +(constraint (= (f "+82 685-122-086") "685")) +(constraint (= (f "+82 685-122-086") "685")) +(constraint (= (f "+82 675-366-472") "675")) +(constraint (= (f "+82 675-366-472") "675")) +(constraint (= (f "+82 675-366-472") "675")) +(constraint (= (f "+80 066-433-096") "066")) +(constraint (= (f "+80 066-433-096") "066")) +(constraint (= (f "+80 066-433-096") "066")) +(constraint (= (f "+163 039-436-166") "039")) +(constraint (= (f "+163 039-436-166") "039")) +(constraint (= (f "+163 039-436-166") "039")) +(constraint (= (f "+138 808-083-074") "808")) +(constraint (= (f "+138 808-083-074") "808")) +(constraint (= (f "+138 808-083-074") "808")) +(constraint (= (f "+42 643-245-738") "643")) +(constraint (= (f "+42 643-245-738") "643")) +(constraint (= (f "+42 643-245-738") "643")) +(constraint (= (f "+169 822-542-726") "822")) +(constraint (= (f "+169 822-542-726") "822")) +(constraint (= (f "+169 822-542-726") "822")) +(constraint (= (f "+176 767-782-369") "767")) +(constraint (= (f "+176 767-782-369") "767")) +(constraint (= (f "+176 767-782-369") "767")) +(constraint (= (f "+47 414-369-343") "414")) +(constraint (= (f "+47 414-369-343") "414")) +(constraint (= (f "+47 414-369-343") "414")) +(constraint (= (f "+138 885-618-512") "885")) +(constraint (= (f "+138 885-618-512") "885")) +(constraint (= (f "+138 885-618-512") "885")) +(constraint (= (f "+104 158-671-355") "158")) +(constraint (= (f "+104 158-671-355") "158")) +(constraint (= (f "+104 158-671-355") "158")) +(constraint (= (f "+188 280-087-526") "280")) +(constraint (= (f "+188 280-087-526") "280")) +(constraint (= (f "+188 280-087-526") "280")) +(constraint (= (f "+50 268-571-336") "268")) +(constraint (= (f "+50 268-571-336") "268")) +(constraint (= (f "+50 268-571-336") "268")) +(constraint (= (f "+183 225-960-024") "225")) +(constraint (= (f "+183 225-960-024") "225")) +(constraint (= (f "+183 225-960-024") "225")) +(constraint (= (f "+58 191-982-491") "191")) +(constraint (= (f "+58 191-982-491") "191")) +(constraint (= (f "+58 191-982-491") "191")) +(constraint (= (f "+9 507-092-535") "507")) +(constraint (= (f "+9 507-092-535") "507")) +(constraint (= (f "+9 507-092-535") "507")) +(constraint (= (f "+64 061-601-398") "061")) +(constraint (= (f "+64 061-601-398") "061")) +(constraint (= (f "+64 061-601-398") "061")) +(constraint (= (f "+189 831-591-877") "831")) +(constraint (= (f "+189 831-591-877") "831")) +(constraint (= (f "+189 831-591-877") "831")) +(constraint (= (f "+129 425-765-844") "425")) +(constraint (= (f "+129 425-765-844") "425")) +(constraint (= (f "+129 425-765-844") "425")) +(constraint (= (f "+94 856-734-046") "856")) +(constraint (= (f "+94 856-734-046") "856")) +(constraint (= (f "+94 856-734-046") "856")) +(constraint (= (f "+35 082-845-261") "082")) +(constraint (= (f "+35 082-845-261") "082")) +(constraint (= (f "+35 082-845-261") "082")) +(constraint (= (f "+185 394-622-272") "394")) +(constraint (= (f "+185 394-622-272") "394")) +(constraint (= (f "+185 394-622-272") "394")) +(constraint (= (f "+163 905-707-740") "905")) +(constraint (= (f "+163 905-707-740") "905")) +(constraint (= (f "+163 905-707-740") "905")) +(constraint (= (f "+23 448-213-807") "448")) +(constraint (= (f "+23 448-213-807") "448")) +(constraint (= (f "+23 448-213-807") "448")) +(constraint (= (f "+42 634-077-089") "634")) +(constraint (= (f "+42 634-077-089") "634")) +(constraint (= (f "+42 634-077-089") "634")) +(constraint (= (f "+18 051-287-382") "051")) +(constraint (= (f "+18 051-287-382") "051")) +(constraint (= (f "+18 051-287-382") "051")) +(constraint (= (f "+29 773-545-520") "773")) +(constraint (= (f "+29 773-545-520") "773")) +(constraint (= (f "+29 773-545-520") "773")) +(constraint (= (f "+43 249-097-743") "249")) +(constraint (= (f "+43 249-097-743") "249")) +(constraint (= (f "+43 249-097-743") "249")) +(constraint (= (f "+158 674-736-891") "674")) +(constraint (= (f "+158 674-736-891") "674")) +(constraint (= (f "+158 674-736-891") "674")) +(constraint (= (f "+45 124-771-454") "124")) +(constraint (= (f "+45 124-771-454") "124")) +(constraint (= (f "+45 124-771-454") "124")) +(constraint (= (f "+180 029-457-654") "029")) +(constraint (= (f "+180 029-457-654") "029")) +(constraint (= (f "+180 029-457-654") "029")) +(constraint (= (f "+75 227-250-652") "227")) +(constraint (= (f "+75 227-250-652") "227")) +(constraint (= (f "+75 227-250-652") "227")) +(constraint (= (f "+5 528-317-854") "528")) +(constraint (= (f "+5 528-317-854") "528")) +(constraint (= (f "+5 528-317-854") "528")) +(constraint (= (f "+81 849-629-290") "849")) +(constraint (= (f "+81 849-629-290") "849")) +(constraint (= (f "+81 849-629-290") "849")) +(constraint (= (f "+46 005-119-176") "005")) +(constraint (= (f "+46 005-119-176") "005")) +(constraint (= (f "+46 005-119-176") "005")) +(constraint (= (f "+108 150-380-705") "150")) +(constraint (= (f "+108 150-380-705") "150")) +(constraint (= (f "+108 150-380-705") "150")) +(constraint (= (f "+40 122-224-247") "122")) +(constraint (= (f "+40 122-224-247") "122")) +(constraint (= (f "+40 122-224-247") "122")) +(constraint (= (f "+68 890-680-027") "890")) +(constraint (= (f "+68 890-680-027") "890")) +(constraint (= (f "+68 890-680-027") "890")) +(constraint (= (f "+169 060-204-504") "060")) +(constraint (= (f "+169 060-204-504") "060")) +(constraint (= (f "+169 060-204-504") "060")) +(constraint (= (f "+95 620-820-945") "620")) +(constraint (= (f "+95 620-820-945") "620")) +(constraint (= (f "+95 620-820-945") "620")) +(constraint (= (f "+43 592-938-846") "592")) +(constraint (= (f "+43 592-938-846") "592")) +(constraint (= (f "+43 592-938-846") "592")) +(constraint (= (f "+7 023-296-647") "023")) +(constraint (= (f "+7 023-296-647") "023")) +(constraint (= (f "+7 023-296-647") "023")) +(constraint (= (f "+20 541-401-396") "541")) +(constraint (= (f "+20 541-401-396") "541")) +(constraint (= (f "+20 541-401-396") "541")) +(constraint (= (f "+64 751-365-934") "751")) +(constraint (= (f "+64 751-365-934") "751")) +(constraint (= (f "+64 751-365-934") "751")) +(constraint (= (f "+163 546-119-476") "546")) +(constraint (= (f "+163 546-119-476") "546")) +(constraint (= (f "+163 546-119-476") "546")) +(constraint (= (f "+198 557-666-779") "557")) +(constraint (= (f "+198 557-666-779") "557")) +(constraint (= (f "+198 557-666-779") "557")) +(constraint (= (f "+14 673-759-017") "673")) +(constraint (= (f "+14 673-759-017") "673")) +(constraint (= (f "+14 673-759-017") "673")) +(constraint (= (f "+161 086-020-168") "086")) +(constraint (= (f "+161 086-020-168") "086")) +(constraint (= (f "+161 086-020-168") "086")) +(constraint (= (f "+65 970-575-488") "970")) +(constraint (= (f "+65 970-575-488") "970")) +(constraint (= (f "+65 970-575-488") "970")) +(constraint (= (f "+2 455-126-377") "455")) +(constraint (= (f "+2 455-126-377") "455")) +(constraint (= (f "+2 455-126-377") "455")) +(constraint (= (f "+196 728-585-376") "728")) +(constraint (= (f "+196 728-585-376") "728")) +(constraint (= (f "+196 728-585-376") "728")) +(constraint (= (f "+33 117-430-125") "117")) +(constraint (= (f "+33 117-430-125") "117")) +(constraint (= (f "+33 117-430-125") "117")) +(constraint (= (f "+195 488-831-768") "488")) +(constraint (= (f "+195 488-831-768") "488")) +(constraint (= (f "+195 488-831-768") "488")) +(constraint (= (f "+86 468-718-108") "468")) +(constraint (= (f "+86 468-718-108") "468")) +(constraint (= (f "+86 468-718-108") "468")) +(constraint (= (f "+194 278-716-950") "278")) +(constraint (= (f "+194 278-716-950") "278")) +(constraint (= (f "+194 278-716-950") "278")) +(constraint (= (f "+43 730-685-847") "730")) +(constraint (= (f "+43 730-685-847") "730")) +(constraint (= (f "+43 730-685-847") "730")) +(constraint (= (f "+140 794-289-551") "794")) +(constraint (= (f "+140 794-289-551") "794")) +(constraint (= (f "+140 794-289-551") "794")) +(constraint (= (f "+21 679-740-834") "679")) +(constraint (= (f "+21 679-740-834") "679")) +(constraint (= (f "+21 679-740-834") "679")) +(constraint (= (f "+98 717-997-323") "717")) +(constraint (= (f "+98 717-997-323") "717")) +(constraint (= (f "+98 717-997-323") "717")) +(constraint (= (f "+47 401-100-231") "401")) +(constraint (= (f "+47 401-100-231") "401")) +(constraint (= (f "+47 401-100-231") "401")) +(constraint (= (f "+143 726-462-368") "726")) +(constraint (= (f "+143 726-462-368") "726")) +(constraint (= (f "+143 726-462-368") "726")) +(constraint (= (f "+147 864-005-968") "864")) +(constraint (= (f "+147 864-005-968") "864")) +(constraint (= (f "+147 864-005-968") "864")) +(constraint (= (f "+130 590-757-665") "590")) +(constraint (= (f "+130 590-757-665") "590")) +(constraint (= (f "+130 590-757-665") "590")) +(constraint (= (f "+197 700-858-976") "700")) +(constraint (= (f "+197 700-858-976") "700")) +(constraint (= (f "+197 700-858-976") "700")) +(constraint (= (f "+158 344-541-946") "344")) +(constraint (= (f "+158 344-541-946") "344")) +(constraint (= (f "+158 344-541-946") "344")) +(constraint (= (f "+56 242-901-234") "242")) +(constraint (= (f "+56 242-901-234") "242")) +(constraint (= (f "+56 242-901-234") "242")) +(constraint (= (f "+132 313-075-754") "313")) +(constraint (= (f "+132 313-075-754") "313")) +(constraint (= (f "+132 313-075-754") "313")) +(constraint (= (f "+130 517-953-149") "517")) +(constraint (= (f "+130 517-953-149") "517")) +(constraint (= (f "+130 517-953-149") "517")) +(constraint (= (f "+158 684-878-743") "684")) +(constraint (= (f "+158 684-878-743") "684")) +(constraint (= (f "+158 684-878-743") "684")) +(constraint (= (f "+52 836-582-035") "836")) +(constraint (= (f "+52 836-582-035") "836")) +(constraint (= (f "+52 836-582-035") "836")) +(constraint (= (f "+138 117-484-671") "117")) +(constraint (= (f "+138 117-484-671") "117")) +(constraint (= (f "+138 117-484-671") "117")) +(constraint (= (f "+50 012-148-873") "012")) +(constraint (= (f "+50 012-148-873") "012")) +(constraint (= (f "+50 012-148-873") "012")) +(constraint (= (f "+105 048-919-483") "048")) +(constraint (= (f "+105 048-919-483") "048")) +(constraint (= (f "+105 048-919-483") "048")) +(constraint (= (f "+18 209-851-997") "209")) +(constraint (= (f "+18 209-851-997") "209")) +(constraint (= (f "+18 209-851-997") "209")) +(constraint (= (f "+176 938-056-084") "938")) +(constraint (= (f "+176 938-056-084") "938")) +(constraint (= (f "+176 938-056-084") "938")) +(constraint (= (f "+141 018-132-973") "018")) +(constraint (= (f "+141 018-132-973") "018")) +(constraint (= (f "+141 018-132-973") "018")) +(constraint (= (f "+199 936-162-415") "936")) +(constraint (= (f "+199 936-162-415") "936")) +(constraint (= (f "+199 936-162-415") "936")) +(constraint (= (f "+33 547-051-264") "547")) +(constraint (= (f "+33 547-051-264") "547")) +(constraint (= (f "+33 547-051-264") "547")) +(constraint (= (f "+161 233-981-513") "233")) +(constraint (= (f "+161 233-981-513") "233")) +(constraint (= (f "+161 233-981-513") "233")) +(constraint (= (f "+115 101-728-328") "101")) +(constraint (= (f "+115 101-728-328") "101")) +(constraint (= (f "+115 101-728-328") "101")) +(constraint (= (f "+45 095-746-635") "095")) +(constraint (= (f "+45 095-746-635") "095")) +(constraint (= (f "+45 095-746-635") "095")) +(constraint (= (f "+106 769-858-438") "769")) +(constraint (= (f "+83 973-757-831") "973")) +(constraint (= (f "+62 647-787-775") "647")) +(constraint (= (f "+172 027-507-632") "027")) +(constraint (= (f "+72 001-050-856") "001")) +(constraint (= (f "+95 310-537-401") "310")) +(constraint (= (f "+6 775-969-238") "775")) +(constraint (= (f "+174 594-539-946") "594")) +(constraint (= (f "+155 927-275-860") "927")) +(constraint (= (f "+167 405-461-331") "405")) +(constraint (= (f "+10 538-347-401") "538")) +(constraint (= (f "+60 971-986-103") "971")) +(constraint (= (f "+13 258-276-941") "258")) +(constraint (= (f "+2 604-746-137") "604")) +(constraint (= (f "+25 998-898-180") "998")) +(constraint (= (f "+151 862-946-541") "862")) +(constraint (= (f "+118 165-041-038") "165")) +(constraint (= (f "+144 170-592-272") "170")) +(constraint (= (f "+94 462-008-482") "462")) +(constraint (= (f "+82 685-122-086") "685")) +(constraint (= (f "+82 675-366-472") "675")) +(constraint (= (f "+80 066-433-096") "066")) +(constraint (= (f "+163 039-436-166") "039")) +(constraint (= (f "+138 808-083-074") "808")) +(constraint (= (f "+42 643-245-738") "643")) +(constraint (= (f "+169 822-542-726") "822")) +(constraint (= (f "+176 767-782-369") "767")) +(constraint (= (f "+47 414-369-343") "414")) +(constraint (= (f "+138 885-618-512") "885")) +(constraint (= (f "+104 158-671-355") "158")) +(constraint (= (f "+188 280-087-526") "280")) +(constraint (= (f "+50 268-571-336") "268")) +(constraint (= (f "+183 225-960-024") "225")) +(constraint (= (f "+58 191-982-491") "191")) +(constraint (= (f "+9 507-092-535") "507")) +(constraint (= (f "+64 061-601-398") "061")) +(constraint (= (f "+189 831-591-877") "831")) +(constraint (= (f "+129 425-765-844") "425")) +(constraint (= (f "+94 856-734-046") "856")) +(constraint (= (f "+35 082-845-261") "082")) +(constraint (= (f "+185 394-622-272") "394")) +(constraint (= (f "+163 905-707-740") "905")) +(constraint (= (f "+23 448-213-807") "448")) +(constraint (= (f "+42 634-077-089") "634")) +(constraint (= (f "+18 051-287-382") "051")) +(constraint (= (f "+29 773-545-520") "773")) +(constraint (= (f "+43 249-097-743") "249")) +(constraint (= (f "+158 674-736-891") "674")) +(constraint (= (f "+45 124-771-454") "124")) +(constraint (= (f "+180 029-457-654") "029")) +(constraint (= (f "+75 227-250-652") "227")) +(constraint (= (f "+5 528-317-854") "528")) +(constraint (= (f "+81 849-629-290") "849")) +(constraint (= (f "+46 005-119-176") "005")) +(constraint (= (f "+108 150-380-705") "150")) +(constraint (= (f "+40 122-224-247") "122")) +(constraint (= (f "+68 890-680-027") "890")) +(constraint (= (f "+169 060-204-504") "060")) +(constraint (= (f "+95 620-820-945") "620")) +(constraint (= (f "+43 592-938-846") "592")) +(constraint (= (f "+7 023-296-647") "023")) +(constraint (= (f "+20 541-401-396") "541")) +(constraint (= (f "+64 751-365-934") "751")) +(constraint (= (f "+163 546-119-476") "546")) +(constraint (= (f "+198 557-666-779") "557")) +(constraint (= (f "+14 673-759-017") "673")) +(constraint (= (f "+161 086-020-168") "086")) +(constraint (= (f "+65 970-575-488") "970")) +(constraint (= (f "+2 455-126-377") "455")) +(constraint (= (f "+196 728-585-376") "728")) +(constraint (= (f "+33 117-430-125") "117")) +(constraint (= (f "+195 488-831-768") "488")) +(constraint (= (f "+86 468-718-108") "468")) +(constraint (= (f "+194 278-716-950") "278")) +(constraint (= (f "+43 730-685-847") "730")) +(constraint (= (f "+140 794-289-551") "794")) +(constraint (= (f "+21 679-740-834") "679")) +(constraint (= (f "+98 717-997-323") "717")) +(constraint (= (f "+47 401-100-231") "401")) +(constraint (= (f "+143 726-462-368") "726")) +(constraint (= (f "+147 864-005-968") "864")) +(constraint (= (f "+130 590-757-665") "590")) +(constraint (= (f "+197 700-858-976") "700")) +(constraint (= (f "+158 344-541-946") "344")) +(constraint (= (f "+56 242-901-234") "242")) +(constraint (= (f "+132 313-075-754") "313")) +(constraint (= (f "+130 517-953-149") "517")) +(constraint (= (f "+158 684-878-743") "684")) +(constraint (= (f "+52 836-582-035") "836")) +(constraint (= (f "+138 117-484-671") "117")) +(constraint (= (f "+50 012-148-873") "012")) +(constraint (= (f "+105 048-919-483") "048")) +(constraint (= (f "+18 209-851-997") "209")) +(constraint (= (f "+176 938-056-084") "938")) +(constraint (= (f "+141 018-132-973") "018")) +(constraint (= (f "+199 936-162-415") "936")) +(constraint (= (f "+33 547-051-264") "547")) +(constraint (= (f "+161 233-981-513") "233")) +(constraint (= (f "+115 101-728-328") "101")) +(constraint (= (f "+45 095-746-635") "095")) + +(check-synth) diff --git a/data/sygus/phone-6-long.sl b/data/sygus/phone-6-long.sl new file mode 100644 index 0000000000000000000000000000000000000000..dd11092c438cb788a0ce152925ad4ac0f046e82e --- /dev/null +++ b/data/sygus/phone-6-long.sl @@ -0,0 +1,127 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "+" "-" "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + + +(constraint (= (f "+106 769-858-438") "769")) +(constraint (= (f "+83 973-757-831") "973")) +(constraint (= (f "+62 647-787-775") "647")) +(constraint (= (f "+172 027-507-632") "027")) +(constraint (= (f "+72 001-050-856") "001")) +(constraint (= (f "+95 310-537-401") "310")) +(constraint (= (f "+6 775-969-238") "775")) +(constraint (= (f "+174 594-539-946") "594")) +(constraint (= (f "+155 927-275-860") "927")) +(constraint (= (f "+167 405-461-331") "405")) +(constraint (= (f "+10 538-347-401") "538")) +(constraint (= (f "+60 971-986-103") "971")) +(constraint (= (f "+13 258-276-941") "258")) +(constraint (= (f "+2 604-746-137") "604")) +(constraint (= (f "+25 998-898-180") "998")) +(constraint (= (f "+151 862-946-541") "862")) +(constraint (= (f "+118 165-041-038") "165")) +(constraint (= (f "+144 170-592-272") "170")) +(constraint (= (f "+94 462-008-482") "462")) +(constraint (= (f "+82 685-122-086") "685")) +(constraint (= (f "+82 675-366-472") "675")) +(constraint (= (f "+80 066-433-096") "066")) +(constraint (= (f "+163 039-436-166") "039")) +(constraint (= (f "+138 808-083-074") "808")) +(constraint (= (f "+42 643-245-738") "643")) +(constraint (= (f "+169 822-542-726") "822")) +(constraint (= (f "+176 767-782-369") "767")) +(constraint (= (f "+47 414-369-343") "414")) +(constraint (= (f "+138 885-618-512") "885")) +(constraint (= (f "+104 158-671-355") "158")) +(constraint (= (f "+188 280-087-526") "280")) +(constraint (= (f "+50 268-571-336") "268")) +(constraint (= (f "+183 225-960-024") "225")) +(constraint (= (f "+58 191-982-491") "191")) +(constraint (= (f "+9 507-092-535") "507")) +(constraint (= (f "+64 061-601-398") "061")) +(constraint (= (f "+189 831-591-877") "831")) +(constraint (= (f "+129 425-765-844") "425")) +(constraint (= (f "+94 856-734-046") "856")) +(constraint (= (f "+35 082-845-261") "082")) +(constraint (= (f "+185 394-622-272") "394")) +(constraint (= (f "+163 905-707-740") "905")) +(constraint (= (f "+23 448-213-807") "448")) +(constraint (= (f "+42 634-077-089") "634")) +(constraint (= (f "+18 051-287-382") "051")) +(constraint (= (f "+29 773-545-520") "773")) +(constraint (= (f "+43 249-097-743") "249")) +(constraint (= (f "+158 674-736-891") "674")) +(constraint (= (f "+45 124-771-454") "124")) +(constraint (= (f "+180 029-457-654") "029")) +(constraint (= (f "+75 227-250-652") "227")) +(constraint (= (f "+5 528-317-854") "528")) +(constraint (= (f "+81 849-629-290") "849")) +(constraint (= (f "+46 005-119-176") "005")) +(constraint (= (f "+108 150-380-705") "150")) +(constraint (= (f "+40 122-224-247") "122")) +(constraint (= (f "+68 890-680-027") "890")) +(constraint (= (f "+169 060-204-504") "060")) +(constraint (= (f "+95 620-820-945") "620")) +(constraint (= (f "+43 592-938-846") "592")) +(constraint (= (f "+7 023-296-647") "023")) +(constraint (= (f "+20 541-401-396") "541")) +(constraint (= (f "+64 751-365-934") "751")) +(constraint (= (f "+163 546-119-476") "546")) +(constraint (= (f "+198 557-666-779") "557")) +(constraint (= (f "+14 673-759-017") "673")) +(constraint (= (f "+161 086-020-168") "086")) +(constraint (= (f "+65 970-575-488") "970")) +(constraint (= (f "+2 455-126-377") "455")) +(constraint (= (f "+196 728-585-376") "728")) +(constraint (= (f "+33 117-430-125") "117")) +(constraint (= (f "+195 488-831-768") "488")) +(constraint (= (f "+86 468-718-108") "468")) +(constraint (= (f "+194 278-716-950") "278")) +(constraint (= (f "+43 730-685-847") "730")) +(constraint (= (f "+140 794-289-551") "794")) +(constraint (= (f "+21 679-740-834") "679")) +(constraint (= (f "+98 717-997-323") "717")) +(constraint (= (f "+47 401-100-231") "401")) +(constraint (= (f "+143 726-462-368") "726")) +(constraint (= (f "+147 864-005-968") "864")) +(constraint (= (f "+130 590-757-665") "590")) +(constraint (= (f "+197 700-858-976") "700")) +(constraint (= (f "+158 344-541-946") "344")) +(constraint (= (f "+56 242-901-234") "242")) +(constraint (= (f "+132 313-075-754") "313")) +(constraint (= (f "+130 517-953-149") "517")) +(constraint (= (f "+158 684-878-743") "684")) +(constraint (= (f "+52 836-582-035") "836")) +(constraint (= (f "+138 117-484-671") "117")) +(constraint (= (f "+50 012-148-873") "012")) +(constraint (= (f "+105 048-919-483") "048")) +(constraint (= (f "+18 209-851-997") "209")) +(constraint (= (f "+176 938-056-084") "938")) +(constraint (= (f "+141 018-132-973") "018")) +(constraint (= (f "+199 936-162-415") "936")) +(constraint (= (f "+33 547-051-264") "547")) +(constraint (= (f "+161 233-981-513") "233")) +(constraint (= (f "+115 101-728-328") "101")) +(constraint (= (f "+45 095-746-635") "095")) + +(check-synth) diff --git a/data/sygus/phone-6.sl b/data/sygus/phone-6.sl new file mode 100644 index 0000000000000000000000000000000000000000..abf58bb4361d066a454d7e2e621c71bea2f5840a --- /dev/null +++ b/data/sygus/phone-6.sl @@ -0,0 +1,34 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "+" "-" "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + + +(constraint (= (f "+106 769-858-438") "769")) +(constraint (= (f "+83 973-757-831") "973")) +(constraint (= (f "+62 647-787-775") "647")) +(constraint (= (f "+172 027-507-632") "027")) +(constraint (= (f "+72 001-050-856") "001")) +(constraint (= (f "+95 310-537-401") "310")) +(constraint (= (f "+6 775-969-238") "775")) + +(check-synth) diff --git a/data/sygus/phone-6_short.sl b/data/sygus/phone-6_short.sl new file mode 100644 index 0000000000000000000000000000000000000000..bebbf42b4873bd369992cf30709a21d309a131dc --- /dev/null +++ b/data/sygus/phone-6_short.sl @@ -0,0 +1,32 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "+" "-" "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + + +(constraint (= (f "+106 769-858-438") "769")) +(constraint (= (f "+83 973-757-831") "973")) +(constraint (= (f "+62 647-787-775") "647")) +(constraint (= (f "+172 027-507-632") "027")) +(constraint (= (f "+72 001-050-856") "001")) +(constraint (= (f "+95 310-537-401") "310")) +(constraint (= (f "+6 775-969-238") "775")) + +(check-synth) diff --git a/data/sygus/phone-7-long-repeat.sl b/data/sygus/phone-7-long-repeat.sl new file mode 100644 index 0000000000000000000000000000000000000000..aa4bdc1ac8a5f46c95e399de9528a7f73190d1cd --- /dev/null +++ b/data/sygus/phone-7-long-repeat.sl @@ -0,0 +1,426 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "+" "-" "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "+106 769-858-438") "858")) +(constraint (= (f "+106 769-858-438") "858")) +(constraint (= (f "+106 769-858-438") "858")) +(constraint (= (f "+83 973-757-831") "757")) +(constraint (= (f "+83 973-757-831") "757")) +(constraint (= (f "+83 973-757-831") "757")) +(constraint (= (f "+62 647-787-775") "787")) +(constraint (= (f "+62 647-787-775") "787")) +(constraint (= (f "+62 647-787-775") "787")) +(constraint (= (f "+172 027-507-632") "507")) +(constraint (= (f "+172 027-507-632") "507")) +(constraint (= (f "+172 027-507-632") "507")) +(constraint (= (f "+72 001-050-856") "050")) +(constraint (= (f "+72 001-050-856") "050")) +(constraint (= (f "+72 001-050-856") "050")) +(constraint (= (f "+95 310-537-401") "537")) +(constraint (= (f "+95 310-537-401") "537")) +(constraint (= (f "+95 310-537-401") "537")) +(constraint (= (f "+6 775-969-238") "969")) +(constraint (= (f "+6 775-969-238") "969")) +(constraint (= (f "+6 775-969-238") "969")) +(constraint (= (f "+174 594-539-946") "539")) +(constraint (= (f "+174 594-539-946") "539")) +(constraint (= (f "+174 594-539-946") "539")) +(constraint (= (f "+155 927-275-860") "275")) +(constraint (= (f "+155 927-275-860") "275")) +(constraint (= (f "+155 927-275-860") "275")) +(constraint (= (f "+167 405-461-331") "461")) +(constraint (= (f "+167 405-461-331") "461")) +(constraint (= (f "+167 405-461-331") "461")) +(constraint (= (f "+10 538-347-401") "347")) +(constraint (= (f "+10 538-347-401") "347")) +(constraint (= (f "+10 538-347-401") "347")) +(constraint (= (f "+60 971-986-103") "986")) +(constraint (= (f "+60 971-986-103") "986")) +(constraint (= (f "+60 971-986-103") "986")) +(constraint (= (f "+13 258-276-941") "276")) +(constraint (= (f "+13 258-276-941") "276")) +(constraint (= (f "+13 258-276-941") "276")) +(constraint (= (f "+2 604-746-137") "746")) +(constraint (= (f "+2 604-746-137") "746")) +(constraint (= (f "+2 604-746-137") "746")) +(constraint (= (f "+25 998-898-180") "898")) +(constraint (= (f "+25 998-898-180") "898")) +(constraint (= (f "+25 998-898-180") "898")) +(constraint (= (f "+151 862-946-541") "946")) +(constraint (= (f "+151 862-946-541") "946")) +(constraint (= (f "+151 862-946-541") "946")) +(constraint (= (f "+118 165-041-038") "041")) +(constraint (= (f "+118 165-041-038") "041")) +(constraint (= (f "+118 165-041-038") "041")) +(constraint (= (f "+144 170-592-272") "592")) +(constraint (= (f "+144 170-592-272") "592")) +(constraint (= (f "+144 170-592-272") "592")) +(constraint (= (f "+94 462-008-482") "008")) +(constraint (= (f "+94 462-008-482") "008")) +(constraint (= (f "+94 462-008-482") "008")) +(constraint (= (f "+82 685-122-086") "122")) +(constraint (= (f "+82 685-122-086") "122")) +(constraint (= (f "+82 685-122-086") "122")) +(constraint (= (f "+82 675-366-472") "366")) +(constraint (= (f "+82 675-366-472") "366")) +(constraint (= (f "+82 675-366-472") "366")) +(constraint (= (f "+80 066-433-096") "433")) +(constraint (= (f "+80 066-433-096") "433")) +(constraint (= (f "+80 066-433-096") "433")) +(constraint (= (f "+163 039-436-166") "436")) +(constraint (= (f "+163 039-436-166") "436")) +(constraint (= (f "+163 039-436-166") "436")) +(constraint (= (f "+138 808-083-074") "083")) +(constraint (= (f "+138 808-083-074") "083")) +(constraint (= (f "+138 808-083-074") "083")) +(constraint (= (f "+42 643-245-738") "245")) +(constraint (= (f "+42 643-245-738") "245")) +(constraint (= (f "+42 643-245-738") "245")) +(constraint (= (f "+169 822-542-726") "542")) +(constraint (= (f "+169 822-542-726") "542")) +(constraint (= (f "+169 822-542-726") "542")) +(constraint (= (f "+176 767-782-369") "782")) +(constraint (= (f "+176 767-782-369") "782")) +(constraint (= (f "+176 767-782-369") "782")) +(constraint (= (f "+47 414-369-343") "369")) +(constraint (= (f "+47 414-369-343") "369")) +(constraint (= (f "+47 414-369-343") "369")) +(constraint (= (f "+138 885-618-512") "618")) +(constraint (= (f "+138 885-618-512") "618")) +(constraint (= (f "+138 885-618-512") "618")) +(constraint (= (f "+104 158-671-355") "671")) +(constraint (= (f "+104 158-671-355") "671")) +(constraint (= (f "+104 158-671-355") "671")) +(constraint (= (f "+188 280-087-526") "087")) +(constraint (= (f "+188 280-087-526") "087")) +(constraint (= (f "+188 280-087-526") "087")) +(constraint (= (f "+50 268-571-336") "571")) +(constraint (= (f "+50 268-571-336") "571")) +(constraint (= (f "+50 268-571-336") "571")) +(constraint (= (f "+183 225-960-024") "960")) +(constraint (= (f "+183 225-960-024") "960")) +(constraint (= (f "+183 225-960-024") "960")) +(constraint (= (f "+58 191-982-491") "982")) +(constraint (= (f "+58 191-982-491") "982")) +(constraint (= (f "+58 191-982-491") "982")) +(constraint (= (f "+9 507-092-535") "092")) +(constraint (= (f "+9 507-092-535") "092")) +(constraint (= (f "+9 507-092-535") "092")) +(constraint (= (f "+64 061-601-398") "601")) +(constraint (= (f "+64 061-601-398") "601")) +(constraint (= (f "+64 061-601-398") "601")) +(constraint (= (f "+189 831-591-877") "591")) +(constraint (= (f "+189 831-591-877") "591")) +(constraint (= (f "+189 831-591-877") "591")) +(constraint (= (f "+129 425-765-844") "765")) +(constraint (= (f "+129 425-765-844") "765")) +(constraint (= (f "+129 425-765-844") "765")) +(constraint (= (f "+94 856-734-046") "734")) +(constraint (= (f "+94 856-734-046") "734")) +(constraint (= (f "+94 856-734-046") "734")) +(constraint (= (f "+35 082-845-261") "845")) +(constraint (= (f "+35 082-845-261") "845")) +(constraint (= (f "+35 082-845-261") "845")) +(constraint (= (f "+185 394-622-272") "622")) +(constraint (= (f "+185 394-622-272") "622")) +(constraint (= (f "+185 394-622-272") "622")) +(constraint (= (f "+163 905-707-740") "707")) +(constraint (= (f "+163 905-707-740") "707")) +(constraint (= (f "+163 905-707-740") "707")) +(constraint (= (f "+23 448-213-807") "213")) +(constraint (= (f "+23 448-213-807") "213")) +(constraint (= (f "+23 448-213-807") "213")) +(constraint (= (f "+42 634-077-089") "077")) +(constraint (= (f "+42 634-077-089") "077")) +(constraint (= (f "+42 634-077-089") "077")) +(constraint (= (f "+18 051-287-382") "287")) +(constraint (= (f "+18 051-287-382") "287")) +(constraint (= (f "+18 051-287-382") "287")) +(constraint (= (f "+29 773-545-520") "545")) +(constraint (= (f "+29 773-545-520") "545")) +(constraint (= (f "+29 773-545-520") "545")) +(constraint (= (f "+43 249-097-743") "097")) +(constraint (= (f "+43 249-097-743") "097")) +(constraint (= (f "+43 249-097-743") "097")) +(constraint (= (f "+158 674-736-891") "736")) +(constraint (= (f "+158 674-736-891") "736")) +(constraint (= (f "+158 674-736-891") "736")) +(constraint (= (f "+45 124-771-454") "771")) +(constraint (= (f "+45 124-771-454") "771")) +(constraint (= (f "+45 124-771-454") "771")) +(constraint (= (f "+180 029-457-654") "457")) +(constraint (= (f "+180 029-457-654") "457")) +(constraint (= (f "+180 029-457-654") "457")) +(constraint (= (f "+75 227-250-652") "250")) +(constraint (= (f "+75 227-250-652") "250")) +(constraint (= (f "+75 227-250-652") "250")) +(constraint (= (f "+5 528-317-854") "317")) +(constraint (= (f "+5 528-317-854") "317")) +(constraint (= (f "+5 528-317-854") "317")) +(constraint (= (f "+81 849-629-290") "629")) +(constraint (= (f "+81 849-629-290") "629")) +(constraint (= (f "+81 849-629-290") "629")) +(constraint (= (f "+46 005-119-176") "119")) +(constraint (= (f "+46 005-119-176") "119")) +(constraint (= (f "+46 005-119-176") "119")) +(constraint (= (f "+108 150-380-705") "380")) +(constraint (= (f "+108 150-380-705") "380")) +(constraint (= (f "+108 150-380-705") "380")) +(constraint (= (f "+40 122-224-247") "224")) +(constraint (= (f "+40 122-224-247") "224")) +(constraint (= (f "+40 122-224-247") "224")) +(constraint (= (f "+68 890-680-027") "680")) +(constraint (= (f "+68 890-680-027") "680")) +(constraint (= (f "+68 890-680-027") "680")) +(constraint (= (f "+169 060-204-504") "204")) +(constraint (= (f "+169 060-204-504") "204")) +(constraint (= (f "+169 060-204-504") "204")) +(constraint (= (f "+95 620-820-945") "820")) +(constraint (= (f "+95 620-820-945") "820")) +(constraint (= (f "+95 620-820-945") "820")) +(constraint (= (f "+43 592-938-846") "938")) +(constraint (= (f "+43 592-938-846") "938")) +(constraint (= (f "+43 592-938-846") "938")) +(constraint (= (f "+7 023-296-647") "296")) +(constraint (= (f "+7 023-296-647") "296")) +(constraint (= (f "+7 023-296-647") "296")) +(constraint (= (f "+20 541-401-396") "401")) +(constraint (= (f "+20 541-401-396") "401")) +(constraint (= (f "+20 541-401-396") "401")) +(constraint (= (f "+64 751-365-934") "365")) +(constraint (= (f "+64 751-365-934") "365")) +(constraint (= (f "+64 751-365-934") "365")) +(constraint (= (f "+163 546-119-476") "119")) +(constraint (= (f "+163 546-119-476") "119")) +(constraint (= (f "+163 546-119-476") "119")) +(constraint (= (f "+198 557-666-779") "666")) +(constraint (= (f "+198 557-666-779") "666")) +(constraint (= (f "+198 557-666-779") "666")) +(constraint (= (f "+14 673-759-017") "759")) +(constraint (= (f "+14 673-759-017") "759")) +(constraint (= (f "+14 673-759-017") "759")) +(constraint (= (f "+161 086-020-168") "020")) +(constraint (= (f "+161 086-020-168") "020")) +(constraint (= (f "+161 086-020-168") "020")) +(constraint (= (f "+65 970-575-488") "575")) +(constraint (= (f "+65 970-575-488") "575")) +(constraint (= (f "+65 970-575-488") "575")) +(constraint (= (f "+2 455-126-377") "126")) +(constraint (= (f "+2 455-126-377") "126")) +(constraint (= (f "+2 455-126-377") "126")) +(constraint (= (f "+196 728-585-376") "585")) +(constraint (= (f "+196 728-585-376") "585")) +(constraint (= (f "+196 728-585-376") "585")) +(constraint (= (f "+33 117-430-125") "430")) +(constraint (= (f "+33 117-430-125") "430")) +(constraint (= (f "+33 117-430-125") "430")) +(constraint (= (f "+195 488-831-768") "831")) +(constraint (= (f "+195 488-831-768") "831")) +(constraint (= (f "+195 488-831-768") "831")) +(constraint (= (f "+86 468-718-108") "718")) +(constraint (= (f "+86 468-718-108") "718")) +(constraint (= (f "+86 468-718-108") "718")) +(constraint (= (f "+194 278-716-950") "716")) +(constraint (= (f "+194 278-716-950") "716")) +(constraint (= (f "+194 278-716-950") "716")) +(constraint (= (f "+43 730-685-847") "685")) +(constraint (= (f "+43 730-685-847") "685")) +(constraint (= (f "+43 730-685-847") "685")) +(constraint (= (f "+140 794-289-551") "289")) +(constraint (= (f "+140 794-289-551") "289")) +(constraint (= (f "+140 794-289-551") "289")) +(constraint (= (f "+21 679-740-834") "740")) +(constraint (= (f "+21 679-740-834") "740")) +(constraint (= (f "+21 679-740-834") "740")) +(constraint (= (f "+98 717-997-323") "997")) +(constraint (= (f "+98 717-997-323") "997")) +(constraint (= (f "+98 717-997-323") "997")) +(constraint (= (f "+47 401-100-231") "100")) +(constraint (= (f "+47 401-100-231") "100")) +(constraint (= (f "+47 401-100-231") "100")) +(constraint (= (f "+143 726-462-368") "462")) +(constraint (= (f "+143 726-462-368") "462")) +(constraint (= (f "+143 726-462-368") "462")) +(constraint (= (f "+147 864-005-968") "005")) +(constraint (= (f "+147 864-005-968") "005")) +(constraint (= (f "+147 864-005-968") "005")) +(constraint (= (f "+130 590-757-665") "757")) +(constraint (= (f "+130 590-757-665") "757")) +(constraint (= (f "+130 590-757-665") "757")) +(constraint (= (f "+197 700-858-976") "858")) +(constraint (= (f "+197 700-858-976") "858")) +(constraint (= (f "+197 700-858-976") "858")) +(constraint (= (f "+158 344-541-946") "541")) +(constraint (= (f "+158 344-541-946") "541")) +(constraint (= (f "+158 344-541-946") "541")) +(constraint (= (f "+56 242-901-234") "901")) +(constraint (= (f "+56 242-901-234") "901")) +(constraint (= (f "+56 242-901-234") "901")) +(constraint (= (f "+132 313-075-754") "075")) +(constraint (= (f "+132 313-075-754") "075")) +(constraint (= (f "+132 313-075-754") "075")) +(constraint (= (f "+130 517-953-149") "953")) +(constraint (= (f "+130 517-953-149") "953")) +(constraint (= (f "+130 517-953-149") "953")) +(constraint (= (f "+158 684-878-743") "878")) +(constraint (= (f "+158 684-878-743") "878")) +(constraint (= (f "+158 684-878-743") "878")) +(constraint (= (f "+52 836-582-035") "582")) +(constraint (= (f "+52 836-582-035") "582")) +(constraint (= (f "+52 836-582-035") "582")) +(constraint (= (f "+138 117-484-671") "484")) +(constraint (= (f "+138 117-484-671") "484")) +(constraint (= (f "+138 117-484-671") "484")) +(constraint (= (f "+50 012-148-873") "148")) +(constraint (= (f "+50 012-148-873") "148")) +(constraint (= (f "+50 012-148-873") "148")) +(constraint (= (f "+105 048-919-483") "919")) +(constraint (= (f "+105 048-919-483") "919")) +(constraint (= (f "+105 048-919-483") "919")) +(constraint (= (f "+18 209-851-997") "851")) +(constraint (= (f "+18 209-851-997") "851")) +(constraint (= (f "+18 209-851-997") "851")) +(constraint (= (f "+176 938-056-084") "056")) +(constraint (= (f "+176 938-056-084") "056")) +(constraint (= (f "+176 938-056-084") "056")) +(constraint (= (f "+141 018-132-973") "132")) +(constraint (= (f "+141 018-132-973") "132")) +(constraint (= (f "+141 018-132-973") "132")) +(constraint (= (f "+199 936-162-415") "162")) +(constraint (= (f "+199 936-162-415") "162")) +(constraint (= (f "+199 936-162-415") "162")) +(constraint (= (f "+33 547-051-264") "051")) +(constraint (= (f "+33 547-051-264") "051")) +(constraint (= (f "+33 547-051-264") "051")) +(constraint (= (f "+161 233-981-513") "981")) +(constraint (= (f "+161 233-981-513") "981")) +(constraint (= (f "+161 233-981-513") "981")) +(constraint (= (f "+115 101-728-328") "728")) +(constraint (= (f "+115 101-728-328") "728")) +(constraint (= (f "+115 101-728-328") "728")) +(constraint (= (f "+45 095-746-635") "746")) +(constraint (= (f "+45 095-746-635") "746")) +(constraint (= (f "+45 095-746-635") "746")) +(constraint (= (f "+106 769-858-438") "858")) +(constraint (= (f "+83 973-757-831") "757")) +(constraint (= (f "+62 647-787-775") "787")) +(constraint (= (f "+172 027-507-632") "507")) +(constraint (= (f "+72 001-050-856") "050")) +(constraint (= (f "+95 310-537-401") "537")) +(constraint (= (f "+6 775-969-238") "969")) +(constraint (= (f "+174 594-539-946") "539")) +(constraint (= (f "+155 927-275-860") "275")) +(constraint (= (f "+167 405-461-331") "461")) +(constraint (= (f "+10 538-347-401") "347")) +(constraint (= (f "+60 971-986-103") "986")) +(constraint (= (f "+13 258-276-941") "276")) +(constraint (= (f "+2 604-746-137") "746")) +(constraint (= (f "+25 998-898-180") "898")) +(constraint (= (f "+151 862-946-541") "946")) +(constraint (= (f "+118 165-041-038") "041")) +(constraint (= (f "+144 170-592-272") "592")) +(constraint (= (f "+94 462-008-482") "008")) +(constraint (= (f "+82 685-122-086") "122")) +(constraint (= (f "+82 675-366-472") "366")) +(constraint (= (f "+80 066-433-096") "433")) +(constraint (= (f "+163 039-436-166") "436")) +(constraint (= (f "+138 808-083-074") "083")) +(constraint (= (f "+42 643-245-738") "245")) +(constraint (= (f "+169 822-542-726") "542")) +(constraint (= (f "+176 767-782-369") "782")) +(constraint (= (f "+47 414-369-343") "369")) +(constraint (= (f "+138 885-618-512") "618")) +(constraint (= (f "+104 158-671-355") "671")) +(constraint (= (f "+188 280-087-526") "087")) +(constraint (= (f "+50 268-571-336") "571")) +(constraint (= (f "+183 225-960-024") "960")) +(constraint (= (f "+58 191-982-491") "982")) +(constraint (= (f "+9 507-092-535") "092")) +(constraint (= (f "+64 061-601-398") "601")) +(constraint (= (f "+189 831-591-877") "591")) +(constraint (= (f "+129 425-765-844") "765")) +(constraint (= (f "+94 856-734-046") "734")) +(constraint (= (f "+35 082-845-261") "845")) +(constraint (= (f "+185 394-622-272") "622")) +(constraint (= (f "+163 905-707-740") "707")) +(constraint (= (f "+23 448-213-807") "213")) +(constraint (= (f "+42 634-077-089") "077")) +(constraint (= (f "+18 051-287-382") "287")) +(constraint (= (f "+29 773-545-520") "545")) +(constraint (= (f "+43 249-097-743") "097")) +(constraint (= (f "+158 674-736-891") "736")) +(constraint (= (f "+45 124-771-454") "771")) +(constraint (= (f "+180 029-457-654") "457")) +(constraint (= (f "+75 227-250-652") "250")) +(constraint (= (f "+5 528-317-854") "317")) +(constraint (= (f "+81 849-629-290") "629")) +(constraint (= (f "+46 005-119-176") "119")) +(constraint (= (f "+108 150-380-705") "380")) +(constraint (= (f "+40 122-224-247") "224")) +(constraint (= (f "+68 890-680-027") "680")) +(constraint (= (f "+169 060-204-504") "204")) +(constraint (= (f "+95 620-820-945") "820")) +(constraint (= (f "+43 592-938-846") "938")) +(constraint (= (f "+7 023-296-647") "296")) +(constraint (= (f "+20 541-401-396") "401")) +(constraint (= (f "+64 751-365-934") "365")) +(constraint (= (f "+163 546-119-476") "119")) +(constraint (= (f "+198 557-666-779") "666")) +(constraint (= (f "+14 673-759-017") "759")) +(constraint (= (f "+161 086-020-168") "020")) +(constraint (= (f "+65 970-575-488") "575")) +(constraint (= (f "+2 455-126-377") "126")) +(constraint (= (f "+196 728-585-376") "585")) +(constraint (= (f "+33 117-430-125") "430")) +(constraint (= (f "+195 488-831-768") "831")) +(constraint (= (f "+86 468-718-108") "718")) +(constraint (= (f "+194 278-716-950") "716")) +(constraint (= (f "+43 730-685-847") "685")) +(constraint (= (f "+140 794-289-551") "289")) +(constraint (= (f "+21 679-740-834") "740")) +(constraint (= (f "+98 717-997-323") "997")) +(constraint (= (f "+47 401-100-231") "100")) +(constraint (= (f "+143 726-462-368") "462")) +(constraint (= (f "+147 864-005-968") "005")) +(constraint (= (f "+130 590-757-665") "757")) +(constraint (= (f "+197 700-858-976") "858")) +(constraint (= (f "+158 344-541-946") "541")) +(constraint (= (f "+56 242-901-234") "901")) +(constraint (= (f "+132 313-075-754") "075")) +(constraint (= (f "+130 517-953-149") "953")) +(constraint (= (f "+158 684-878-743") "878")) +(constraint (= (f "+52 836-582-035") "582")) +(constraint (= (f "+138 117-484-671") "484")) +(constraint (= (f "+50 012-148-873") "148")) +(constraint (= (f "+105 048-919-483") "919")) +(constraint (= (f "+18 209-851-997") "851")) +(constraint (= (f "+176 938-056-084") "056")) +(constraint (= (f "+141 018-132-973") "132")) +(constraint (= (f "+199 936-162-415") "162")) +(constraint (= (f "+33 547-051-264") "051")) +(constraint (= (f "+161 233-981-513") "981")) +(constraint (= (f "+115 101-728-328") "728")) +(constraint (= (f "+45 095-746-635") "746")) + +(check-synth) diff --git a/data/sygus/phone-7-long.sl b/data/sygus/phone-7-long.sl new file mode 100644 index 0000000000000000000000000000000000000000..21ddaac623f375b9d7b8ab2e2c54422545a3c2dc --- /dev/null +++ b/data/sygus/phone-7-long.sl @@ -0,0 +1,126 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "+" "-" "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "+106 769-858-438") "858")) +(constraint (= (f "+83 973-757-831") "757")) +(constraint (= (f "+62 647-787-775") "787")) +(constraint (= (f "+172 027-507-632") "507")) +(constraint (= (f "+72 001-050-856") "050")) +(constraint (= (f "+95 310-537-401") "537")) +(constraint (= (f "+6 775-969-238") "969")) +(constraint (= (f "+174 594-539-946") "539")) +(constraint (= (f "+155 927-275-860") "275")) +(constraint (= (f "+167 405-461-331") "461")) +(constraint (= (f "+10 538-347-401") "347")) +(constraint (= (f "+60 971-986-103") "986")) +(constraint (= (f "+13 258-276-941") "276")) +(constraint (= (f "+2 604-746-137") "746")) +(constraint (= (f "+25 998-898-180") "898")) +(constraint (= (f "+151 862-946-541") "946")) +(constraint (= (f "+118 165-041-038") "041")) +(constraint (= (f "+144 170-592-272") "592")) +(constraint (= (f "+94 462-008-482") "008")) +(constraint (= (f "+82 685-122-086") "122")) +(constraint (= (f "+82 675-366-472") "366")) +(constraint (= (f "+80 066-433-096") "433")) +(constraint (= (f "+163 039-436-166") "436")) +(constraint (= (f "+138 808-083-074") "083")) +(constraint (= (f "+42 643-245-738") "245")) +(constraint (= (f "+169 822-542-726") "542")) +(constraint (= (f "+176 767-782-369") "782")) +(constraint (= (f "+47 414-369-343") "369")) +(constraint (= (f "+138 885-618-512") "618")) +(constraint (= (f "+104 158-671-355") "671")) +(constraint (= (f "+188 280-087-526") "087")) +(constraint (= (f "+50 268-571-336") "571")) +(constraint (= (f "+183 225-960-024") "960")) +(constraint (= (f "+58 191-982-491") "982")) +(constraint (= (f "+9 507-092-535") "092")) +(constraint (= (f "+64 061-601-398") "601")) +(constraint (= (f "+189 831-591-877") "591")) +(constraint (= (f "+129 425-765-844") "765")) +(constraint (= (f "+94 856-734-046") "734")) +(constraint (= (f "+35 082-845-261") "845")) +(constraint (= (f "+185 394-622-272") "622")) +(constraint (= (f "+163 905-707-740") "707")) +(constraint (= (f "+23 448-213-807") "213")) +(constraint (= (f "+42 634-077-089") "077")) +(constraint (= (f "+18 051-287-382") "287")) +(constraint (= (f "+29 773-545-520") "545")) +(constraint (= (f "+43 249-097-743") "097")) +(constraint (= (f "+158 674-736-891") "736")) +(constraint (= (f "+45 124-771-454") "771")) +(constraint (= (f "+180 029-457-654") "457")) +(constraint (= (f "+75 227-250-652") "250")) +(constraint (= (f "+5 528-317-854") "317")) +(constraint (= (f "+81 849-629-290") "629")) +(constraint (= (f "+46 005-119-176") "119")) +(constraint (= (f "+108 150-380-705") "380")) +(constraint (= (f "+40 122-224-247") "224")) +(constraint (= (f "+68 890-680-027") "680")) +(constraint (= (f "+169 060-204-504") "204")) +(constraint (= (f "+95 620-820-945") "820")) +(constraint (= (f "+43 592-938-846") "938")) +(constraint (= (f "+7 023-296-647") "296")) +(constraint (= (f "+20 541-401-396") "401")) +(constraint (= (f "+64 751-365-934") "365")) +(constraint (= (f "+163 546-119-476") "119")) +(constraint (= (f "+198 557-666-779") "666")) +(constraint (= (f "+14 673-759-017") "759")) +(constraint (= (f "+161 086-020-168") "020")) +(constraint (= (f "+65 970-575-488") "575")) +(constraint (= (f "+2 455-126-377") "126")) +(constraint (= (f "+196 728-585-376") "585")) +(constraint (= (f "+33 117-430-125") "430")) +(constraint (= (f "+195 488-831-768") "831")) +(constraint (= (f "+86 468-718-108") "718")) +(constraint (= (f "+194 278-716-950") "716")) +(constraint (= (f "+43 730-685-847") "685")) +(constraint (= (f "+140 794-289-551") "289")) +(constraint (= (f "+21 679-740-834") "740")) +(constraint (= (f "+98 717-997-323") "997")) +(constraint (= (f "+47 401-100-231") "100")) +(constraint (= (f "+143 726-462-368") "462")) +(constraint (= (f "+147 864-005-968") "005")) +(constraint (= (f "+130 590-757-665") "757")) +(constraint (= (f "+197 700-858-976") "858")) +(constraint (= (f "+158 344-541-946") "541")) +(constraint (= (f "+56 242-901-234") "901")) +(constraint (= (f "+132 313-075-754") "075")) +(constraint (= (f "+130 517-953-149") "953")) +(constraint (= (f "+158 684-878-743") "878")) +(constraint (= (f "+52 836-582-035") "582")) +(constraint (= (f "+138 117-484-671") "484")) +(constraint (= (f "+50 012-148-873") "148")) +(constraint (= (f "+105 048-919-483") "919")) +(constraint (= (f "+18 209-851-997") "851")) +(constraint (= (f "+176 938-056-084") "056")) +(constraint (= (f "+141 018-132-973") "132")) +(constraint (= (f "+199 936-162-415") "162")) +(constraint (= (f "+33 547-051-264") "051")) +(constraint (= (f "+161 233-981-513") "981")) +(constraint (= (f "+115 101-728-328") "728")) +(constraint (= (f "+45 095-746-635") "746")) + +(check-synth) diff --git a/data/sygus/phone-7.sl b/data/sygus/phone-7.sl new file mode 100644 index 0000000000000000000000000000000000000000..f655f618d9f8ee1395c412269917eb4e7129a2f2 --- /dev/null +++ b/data/sygus/phone-7.sl @@ -0,0 +1,33 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "+" "-" "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "+106 769-858-438") "858")) +(constraint (= (f "+83 973-757-831") "757")) +(constraint (= (f "+62 647-787-775") "787")) +(constraint (= (f "+172 027-507-632") "507")) +(constraint (= (f "+72 001-050-856") "050")) +(constraint (= (f "+95 310-537-401") "537")) +(constraint (= (f "+6 775-969-238") "969")) + +(check-synth) diff --git a/data/sygus/phone-7_short.sl b/data/sygus/phone-7_short.sl new file mode 100644 index 0000000000000000000000000000000000000000..1dc851b319e19b532de9572ac19dd7fae4b0c06b --- /dev/null +++ b/data/sygus/phone-7_short.sl @@ -0,0 +1,31 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "+" "-" "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "+106 769-858-438") "858")) +(constraint (= (f "+83 973-757-831") "757")) +(constraint (= (f "+62 647-787-775") "787")) +(constraint (= (f "+172 027-507-632") "507")) +(constraint (= (f "+72 001-050-856") "050")) +(constraint (= (f "+95 310-537-401") "537")) +(constraint (= (f "+6 775-969-238") "969")) + +(check-synth) diff --git a/data/sygus/phone-8-long-repeat.sl b/data/sygus/phone-8-long-repeat.sl new file mode 100644 index 0000000000000000000000000000000000000000..2b898e5b4e0cf7bd6cc7dec49f79142c44742e8d --- /dev/null +++ b/data/sygus/phone-8-long-repeat.sl @@ -0,0 +1,426 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "+" "-" "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "+106 769-858-438") "438")) +(constraint (= (f "+106 769-858-438") "438")) +(constraint (= (f "+106 769-858-438") "438")) +(constraint (= (f "+83 973-757-831") "831")) +(constraint (= (f "+83 973-757-831") "831")) +(constraint (= (f "+83 973-757-831") "831")) +(constraint (= (f "+62 647-787-775") "775")) +(constraint (= (f "+62 647-787-775") "775")) +(constraint (= (f "+62 647-787-775") "775")) +(constraint (= (f "+172 027-507-632") "632")) +(constraint (= (f "+172 027-507-632") "632")) +(constraint (= (f "+172 027-507-632") "632")) +(constraint (= (f "+72 001-050-856") "856")) +(constraint (= (f "+72 001-050-856") "856")) +(constraint (= (f "+72 001-050-856") "856")) +(constraint (= (f "+95 310-537-401") "401")) +(constraint (= (f "+95 310-537-401") "401")) +(constraint (= (f "+95 310-537-401") "401")) +(constraint (= (f "+6 775-969-238") "238")) +(constraint (= (f "+6 775-969-238") "238")) +(constraint (= (f "+6 775-969-238") "238")) +(constraint (= (f "+174 594-539-946") "946")) +(constraint (= (f "+174 594-539-946") "946")) +(constraint (= (f "+174 594-539-946") "946")) +(constraint (= (f "+155 927-275-860") "860")) +(constraint (= (f "+155 927-275-860") "860")) +(constraint (= (f "+155 927-275-860") "860")) +(constraint (= (f "+167 405-461-331") "331")) +(constraint (= (f "+167 405-461-331") "331")) +(constraint (= (f "+167 405-461-331") "331")) +(constraint (= (f "+10 538-347-401") "401")) +(constraint (= (f "+10 538-347-401") "401")) +(constraint (= (f "+10 538-347-401") "401")) +(constraint (= (f "+60 971-986-103") "103")) +(constraint (= (f "+60 971-986-103") "103")) +(constraint (= (f "+60 971-986-103") "103")) +(constraint (= (f "+13 258-276-941") "941")) +(constraint (= (f "+13 258-276-941") "941")) +(constraint (= (f "+13 258-276-941") "941")) +(constraint (= (f "+2 604-746-137") "137")) +(constraint (= (f "+2 604-746-137") "137")) +(constraint (= (f "+2 604-746-137") "137")) +(constraint (= (f "+25 998-898-180") "180")) +(constraint (= (f "+25 998-898-180") "180")) +(constraint (= (f "+25 998-898-180") "180")) +(constraint (= (f "+151 862-946-541") "541")) +(constraint (= (f "+151 862-946-541") "541")) +(constraint (= (f "+151 862-946-541") "541")) +(constraint (= (f "+118 165-041-038") "038")) +(constraint (= (f "+118 165-041-038") "038")) +(constraint (= (f "+118 165-041-038") "038")) +(constraint (= (f "+144 170-592-272") "272")) +(constraint (= (f "+144 170-592-272") "272")) +(constraint (= (f "+144 170-592-272") "272")) +(constraint (= (f "+94 462-008-482") "482")) +(constraint (= (f "+94 462-008-482") "482")) +(constraint (= (f "+94 462-008-482") "482")) +(constraint (= (f "+82 685-122-086") "086")) +(constraint (= (f "+82 685-122-086") "086")) +(constraint (= (f "+82 685-122-086") "086")) +(constraint (= (f "+82 675-366-472") "472")) +(constraint (= (f "+82 675-366-472") "472")) +(constraint (= (f "+82 675-366-472") "472")) +(constraint (= (f "+80 066-433-096") "096")) +(constraint (= (f "+80 066-433-096") "096")) +(constraint (= (f "+80 066-433-096") "096")) +(constraint (= (f "+163 039-436-166") "166")) +(constraint (= (f "+163 039-436-166") "166")) +(constraint (= (f "+163 039-436-166") "166")) +(constraint (= (f "+138 808-083-074") "074")) +(constraint (= (f "+138 808-083-074") "074")) +(constraint (= (f "+138 808-083-074") "074")) +(constraint (= (f "+42 643-245-738") "738")) +(constraint (= (f "+42 643-245-738") "738")) +(constraint (= (f "+42 643-245-738") "738")) +(constraint (= (f "+169 822-542-726") "726")) +(constraint (= (f "+169 822-542-726") "726")) +(constraint (= (f "+169 822-542-726") "726")) +(constraint (= (f "+176 767-782-369") "369")) +(constraint (= (f "+176 767-782-369") "369")) +(constraint (= (f "+176 767-782-369") "369")) +(constraint (= (f "+47 414-369-343") "343")) +(constraint (= (f "+47 414-369-343") "343")) +(constraint (= (f "+47 414-369-343") "343")) +(constraint (= (f "+138 885-618-512") "512")) +(constraint (= (f "+138 885-618-512") "512")) +(constraint (= (f "+138 885-618-512") "512")) +(constraint (= (f "+104 158-671-355") "355")) +(constraint (= (f "+104 158-671-355") "355")) +(constraint (= (f "+104 158-671-355") "355")) +(constraint (= (f "+188 280-087-526") "526")) +(constraint (= (f "+188 280-087-526") "526")) +(constraint (= (f "+188 280-087-526") "526")) +(constraint (= (f "+50 268-571-336") "336")) +(constraint (= (f "+50 268-571-336") "336")) +(constraint (= (f "+50 268-571-336") "336")) +(constraint (= (f "+183 225-960-024") "024")) +(constraint (= (f "+183 225-960-024") "024")) +(constraint (= (f "+183 225-960-024") "024")) +(constraint (= (f "+58 191-982-491") "491")) +(constraint (= (f "+58 191-982-491") "491")) +(constraint (= (f "+58 191-982-491") "491")) +(constraint (= (f "+9 507-092-535") "535")) +(constraint (= (f "+9 507-092-535") "535")) +(constraint (= (f "+9 507-092-535") "535")) +(constraint (= (f "+64 061-601-398") "398")) +(constraint (= (f "+64 061-601-398") "398")) +(constraint (= (f "+64 061-601-398") "398")) +(constraint (= (f "+189 831-591-877") "877")) +(constraint (= (f "+189 831-591-877") "877")) +(constraint (= (f "+189 831-591-877") "877")) +(constraint (= (f "+129 425-765-844") "844")) +(constraint (= (f "+129 425-765-844") "844")) +(constraint (= (f "+129 425-765-844") "844")) +(constraint (= (f "+94 856-734-046") "046")) +(constraint (= (f "+94 856-734-046") "046")) +(constraint (= (f "+94 856-734-046") "046")) +(constraint (= (f "+35 082-845-261") "261")) +(constraint (= (f "+35 082-845-261") "261")) +(constraint (= (f "+35 082-845-261") "261")) +(constraint (= (f "+185 394-622-272") "272")) +(constraint (= (f "+185 394-622-272") "272")) +(constraint (= (f "+185 394-622-272") "272")) +(constraint (= (f "+163 905-707-740") "740")) +(constraint (= (f "+163 905-707-740") "740")) +(constraint (= (f "+163 905-707-740") "740")) +(constraint (= (f "+23 448-213-807") "807")) +(constraint (= (f "+23 448-213-807") "807")) +(constraint (= (f "+23 448-213-807") "807")) +(constraint (= (f "+42 634-077-089") "089")) +(constraint (= (f "+42 634-077-089") "089")) +(constraint (= (f "+42 634-077-089") "089")) +(constraint (= (f "+18 051-287-382") "382")) +(constraint (= (f "+18 051-287-382") "382")) +(constraint (= (f "+18 051-287-382") "382")) +(constraint (= (f "+29 773-545-520") "520")) +(constraint (= (f "+29 773-545-520") "520")) +(constraint (= (f "+29 773-545-520") "520")) +(constraint (= (f "+43 249-097-743") "743")) +(constraint (= (f "+43 249-097-743") "743")) +(constraint (= (f "+43 249-097-743") "743")) +(constraint (= (f "+158 674-736-891") "891")) +(constraint (= (f "+158 674-736-891") "891")) +(constraint (= (f "+158 674-736-891") "891")) +(constraint (= (f "+45 124-771-454") "454")) +(constraint (= (f "+45 124-771-454") "454")) +(constraint (= (f "+45 124-771-454") "454")) +(constraint (= (f "+180 029-457-654") "654")) +(constraint (= (f "+180 029-457-654") "654")) +(constraint (= (f "+180 029-457-654") "654")) +(constraint (= (f "+75 227-250-652") "652")) +(constraint (= (f "+75 227-250-652") "652")) +(constraint (= (f "+75 227-250-652") "652")) +(constraint (= (f "+5 528-317-854") "854")) +(constraint (= (f "+5 528-317-854") "854")) +(constraint (= (f "+5 528-317-854") "854")) +(constraint (= (f "+81 849-629-290") "290")) +(constraint (= (f "+81 849-629-290") "290")) +(constraint (= (f "+81 849-629-290") "290")) +(constraint (= (f "+46 005-119-176") "176")) +(constraint (= (f "+46 005-119-176") "176")) +(constraint (= (f "+46 005-119-176") "176")) +(constraint (= (f "+108 150-380-705") "705")) +(constraint (= (f "+108 150-380-705") "705")) +(constraint (= (f "+108 150-380-705") "705")) +(constraint (= (f "+40 122-224-247") "247")) +(constraint (= (f "+40 122-224-247") "247")) +(constraint (= (f "+40 122-224-247") "247")) +(constraint (= (f "+68 890-680-027") "027")) +(constraint (= (f "+68 890-680-027") "027")) +(constraint (= (f "+68 890-680-027") "027")) +(constraint (= (f "+169 060-204-504") "504")) +(constraint (= (f "+169 060-204-504") "504")) +(constraint (= (f "+169 060-204-504") "504")) +(constraint (= (f "+95 620-820-945") "945")) +(constraint (= (f "+95 620-820-945") "945")) +(constraint (= (f "+95 620-820-945") "945")) +(constraint (= (f "+43 592-938-846") "846")) +(constraint (= (f "+43 592-938-846") "846")) +(constraint (= (f "+43 592-938-846") "846")) +(constraint (= (f "+7 023-296-647") "647")) +(constraint (= (f "+7 023-296-647") "647")) +(constraint (= (f "+7 023-296-647") "647")) +(constraint (= (f "+20 541-401-396") "396")) +(constraint (= (f "+20 541-401-396") "396")) +(constraint (= (f "+20 541-401-396") "396")) +(constraint (= (f "+64 751-365-934") "934")) +(constraint (= (f "+64 751-365-934") "934")) +(constraint (= (f "+64 751-365-934") "934")) +(constraint (= (f "+163 546-119-476") "476")) +(constraint (= (f "+163 546-119-476") "476")) +(constraint (= (f "+163 546-119-476") "476")) +(constraint (= (f "+198 557-666-779") "779")) +(constraint (= (f "+198 557-666-779") "779")) +(constraint (= (f "+198 557-666-779") "779")) +(constraint (= (f "+14 673-759-017") "017")) +(constraint (= (f "+14 673-759-017") "017")) +(constraint (= (f "+14 673-759-017") "017")) +(constraint (= (f "+161 086-020-168") "168")) +(constraint (= (f "+161 086-020-168") "168")) +(constraint (= (f "+161 086-020-168") "168")) +(constraint (= (f "+65 970-575-488") "488")) +(constraint (= (f "+65 970-575-488") "488")) +(constraint (= (f "+65 970-575-488") "488")) +(constraint (= (f "+2 455-126-377") "377")) +(constraint (= (f "+2 455-126-377") "377")) +(constraint (= (f "+2 455-126-377") "377")) +(constraint (= (f "+196 728-585-376") "376")) +(constraint (= (f "+196 728-585-376") "376")) +(constraint (= (f "+196 728-585-376") "376")) +(constraint (= (f "+33 117-430-125") "125")) +(constraint (= (f "+33 117-430-125") "125")) +(constraint (= (f "+33 117-430-125") "125")) +(constraint (= (f "+195 488-831-768") "768")) +(constraint (= (f "+195 488-831-768") "768")) +(constraint (= (f "+195 488-831-768") "768")) +(constraint (= (f "+86 468-718-108") "108")) +(constraint (= (f "+86 468-718-108") "108")) +(constraint (= (f "+86 468-718-108") "108")) +(constraint (= (f "+194 278-716-950") "950")) +(constraint (= (f "+194 278-716-950") "950")) +(constraint (= (f "+194 278-716-950") "950")) +(constraint (= (f "+43 730-685-847") "847")) +(constraint (= (f "+43 730-685-847") "847")) +(constraint (= (f "+43 730-685-847") "847")) +(constraint (= (f "+140 794-289-551") "551")) +(constraint (= (f "+140 794-289-551") "551")) +(constraint (= (f "+140 794-289-551") "551")) +(constraint (= (f "+21 679-740-834") "834")) +(constraint (= (f "+21 679-740-834") "834")) +(constraint (= (f "+21 679-740-834") "834")) +(constraint (= (f "+98 717-997-323") "323")) +(constraint (= (f "+98 717-997-323") "323")) +(constraint (= (f "+98 717-997-323") "323")) +(constraint (= (f "+47 401-100-231") "231")) +(constraint (= (f "+47 401-100-231") "231")) +(constraint (= (f "+47 401-100-231") "231")) +(constraint (= (f "+143 726-462-368") "368")) +(constraint (= (f "+143 726-462-368") "368")) +(constraint (= (f "+143 726-462-368") "368")) +(constraint (= (f "+147 864-005-968") "968")) +(constraint (= (f "+147 864-005-968") "968")) +(constraint (= (f "+147 864-005-968") "968")) +(constraint (= (f "+130 590-757-665") "665")) +(constraint (= (f "+130 590-757-665") "665")) +(constraint (= (f "+130 590-757-665") "665")) +(constraint (= (f "+197 700-858-976") "976")) +(constraint (= (f "+197 700-858-976") "976")) +(constraint (= (f "+197 700-858-976") "976")) +(constraint (= (f "+158 344-541-946") "946")) +(constraint (= (f "+158 344-541-946") "946")) +(constraint (= (f "+158 344-541-946") "946")) +(constraint (= (f "+56 242-901-234") "234")) +(constraint (= (f "+56 242-901-234") "234")) +(constraint (= (f "+56 242-901-234") "234")) +(constraint (= (f "+132 313-075-754") "754")) +(constraint (= (f "+132 313-075-754") "754")) +(constraint (= (f "+132 313-075-754") "754")) +(constraint (= (f "+130 517-953-149") "149")) +(constraint (= (f "+130 517-953-149") "149")) +(constraint (= (f "+130 517-953-149") "149")) +(constraint (= (f "+158 684-878-743") "743")) +(constraint (= (f "+158 684-878-743") "743")) +(constraint (= (f "+158 684-878-743") "743")) +(constraint (= (f "+52 836-582-035") "035")) +(constraint (= (f "+52 836-582-035") "035")) +(constraint (= (f "+52 836-582-035") "035")) +(constraint (= (f "+138 117-484-671") "671")) +(constraint (= (f "+138 117-484-671") "671")) +(constraint (= (f "+138 117-484-671") "671")) +(constraint (= (f "+50 012-148-873") "873")) +(constraint (= (f "+50 012-148-873") "873")) +(constraint (= (f "+50 012-148-873") "873")) +(constraint (= (f "+105 048-919-483") "483")) +(constraint (= (f "+105 048-919-483") "483")) +(constraint (= (f "+105 048-919-483") "483")) +(constraint (= (f "+18 209-851-997") "997")) +(constraint (= (f "+18 209-851-997") "997")) +(constraint (= (f "+18 209-851-997") "997")) +(constraint (= (f "+176 938-056-084") "084")) +(constraint (= (f "+176 938-056-084") "084")) +(constraint (= (f "+176 938-056-084") "084")) +(constraint (= (f "+141 018-132-973") "973")) +(constraint (= (f "+141 018-132-973") "973")) +(constraint (= (f "+141 018-132-973") "973")) +(constraint (= (f "+199 936-162-415") "415")) +(constraint (= (f "+199 936-162-415") "415")) +(constraint (= (f "+199 936-162-415") "415")) +(constraint (= (f "+33 547-051-264") "264")) +(constraint (= (f "+33 547-051-264") "264")) +(constraint (= (f "+33 547-051-264") "264")) +(constraint (= (f "+161 233-981-513") "513")) +(constraint (= (f "+161 233-981-513") "513")) +(constraint (= (f "+161 233-981-513") "513")) +(constraint (= (f "+115 101-728-328") "328")) +(constraint (= (f "+115 101-728-328") "328")) +(constraint (= (f "+115 101-728-328") "328")) +(constraint (= (f "+45 095-746-635") "635")) +(constraint (= (f "+45 095-746-635") "635")) +(constraint (= (f "+45 095-746-635") "635")) +(constraint (= (f "+106 769-858-438") "438")) +(constraint (= (f "+83 973-757-831") "831")) +(constraint (= (f "+62 647-787-775") "775")) +(constraint (= (f "+172 027-507-632") "632")) +(constraint (= (f "+72 001-050-856") "856")) +(constraint (= (f "+95 310-537-401") "401")) +(constraint (= (f "+6 775-969-238") "238")) +(constraint (= (f "+174 594-539-946") "946")) +(constraint (= (f "+155 927-275-860") "860")) +(constraint (= (f "+167 405-461-331") "331")) +(constraint (= (f "+10 538-347-401") "401")) +(constraint (= (f "+60 971-986-103") "103")) +(constraint (= (f "+13 258-276-941") "941")) +(constraint (= (f "+2 604-746-137") "137")) +(constraint (= (f "+25 998-898-180") "180")) +(constraint (= (f "+151 862-946-541") "541")) +(constraint (= (f "+118 165-041-038") "038")) +(constraint (= (f "+144 170-592-272") "272")) +(constraint (= (f "+94 462-008-482") "482")) +(constraint (= (f "+82 685-122-086") "086")) +(constraint (= (f "+82 675-366-472") "472")) +(constraint (= (f "+80 066-433-096") "096")) +(constraint (= (f "+163 039-436-166") "166")) +(constraint (= (f "+138 808-083-074") "074")) +(constraint (= (f "+42 643-245-738") "738")) +(constraint (= (f "+169 822-542-726") "726")) +(constraint (= (f "+176 767-782-369") "369")) +(constraint (= (f "+47 414-369-343") "343")) +(constraint (= (f "+138 885-618-512") "512")) +(constraint (= (f "+104 158-671-355") "355")) +(constraint (= (f "+188 280-087-526") "526")) +(constraint (= (f "+50 268-571-336") "336")) +(constraint (= (f "+183 225-960-024") "024")) +(constraint (= (f "+58 191-982-491") "491")) +(constraint (= (f "+9 507-092-535") "535")) +(constraint (= (f "+64 061-601-398") "398")) +(constraint (= (f "+189 831-591-877") "877")) +(constraint (= (f "+129 425-765-844") "844")) +(constraint (= (f "+94 856-734-046") "046")) +(constraint (= (f "+35 082-845-261") "261")) +(constraint (= (f "+185 394-622-272") "272")) +(constraint (= (f "+163 905-707-740") "740")) +(constraint (= (f "+23 448-213-807") "807")) +(constraint (= (f "+42 634-077-089") "089")) +(constraint (= (f "+18 051-287-382") "382")) +(constraint (= (f "+29 773-545-520") "520")) +(constraint (= (f "+43 249-097-743") "743")) +(constraint (= (f "+158 674-736-891") "891")) +(constraint (= (f "+45 124-771-454") "454")) +(constraint (= (f "+180 029-457-654") "654")) +(constraint (= (f "+75 227-250-652") "652")) +(constraint (= (f "+5 528-317-854") "854")) +(constraint (= (f "+81 849-629-290") "290")) +(constraint (= (f "+46 005-119-176") "176")) +(constraint (= (f "+108 150-380-705") "705")) +(constraint (= (f "+40 122-224-247") "247")) +(constraint (= (f "+68 890-680-027") "027")) +(constraint (= (f "+169 060-204-504") "504")) +(constraint (= (f "+95 620-820-945") "945")) +(constraint (= (f "+43 592-938-846") "846")) +(constraint (= (f "+7 023-296-647") "647")) +(constraint (= (f "+20 541-401-396") "396")) +(constraint (= (f "+64 751-365-934") "934")) +(constraint (= (f "+163 546-119-476") "476")) +(constraint (= (f "+198 557-666-779") "779")) +(constraint (= (f "+14 673-759-017") "017")) +(constraint (= (f "+161 086-020-168") "168")) +(constraint (= (f "+65 970-575-488") "488")) +(constraint (= (f "+2 455-126-377") "377")) +(constraint (= (f "+196 728-585-376") "376")) +(constraint (= (f "+33 117-430-125") "125")) +(constraint (= (f "+195 488-831-768") "768")) +(constraint (= (f "+86 468-718-108") "108")) +(constraint (= (f "+194 278-716-950") "950")) +(constraint (= (f "+43 730-685-847") "847")) +(constraint (= (f "+140 794-289-551") "551")) +(constraint (= (f "+21 679-740-834") "834")) +(constraint (= (f "+98 717-997-323") "323")) +(constraint (= (f "+47 401-100-231") "231")) +(constraint (= (f "+143 726-462-368") "368")) +(constraint (= (f "+147 864-005-968") "968")) +(constraint (= (f "+130 590-757-665") "665")) +(constraint (= (f "+197 700-858-976") "976")) +(constraint (= (f "+158 344-541-946") "946")) +(constraint (= (f "+56 242-901-234") "234")) +(constraint (= (f "+132 313-075-754") "754")) +(constraint (= (f "+130 517-953-149") "149")) +(constraint (= (f "+158 684-878-743") "743")) +(constraint (= (f "+52 836-582-035") "035")) +(constraint (= (f "+138 117-484-671") "671")) +(constraint (= (f "+50 012-148-873") "873")) +(constraint (= (f "+105 048-919-483") "483")) +(constraint (= (f "+18 209-851-997") "997")) +(constraint (= (f "+176 938-056-084") "084")) +(constraint (= (f "+141 018-132-973") "973")) +(constraint (= (f "+199 936-162-415") "415")) +(constraint (= (f "+33 547-051-264") "264")) +(constraint (= (f "+161 233-981-513") "513")) +(constraint (= (f "+115 101-728-328") "328")) +(constraint (= (f "+45 095-746-635") "635")) + +(check-synth) diff --git a/data/sygus/phone-8-long.sl b/data/sygus/phone-8-long.sl new file mode 100644 index 0000000000000000000000000000000000000000..e91a79decf1a6c31c8b16d75882b5a08b291729c --- /dev/null +++ b/data/sygus/phone-8-long.sl @@ -0,0 +1,126 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "+" "-" "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "+106 769-858-438") "438")) +(constraint (= (f "+83 973-757-831") "831")) +(constraint (= (f "+62 647-787-775") "775")) +(constraint (= (f "+172 027-507-632") "632")) +(constraint (= (f "+72 001-050-856") "856")) +(constraint (= (f "+95 310-537-401") "401")) +(constraint (= (f "+6 775-969-238") "238")) +(constraint (= (f "+174 594-539-946") "946")) +(constraint (= (f "+155 927-275-860") "860")) +(constraint (= (f "+167 405-461-331") "331")) +(constraint (= (f "+10 538-347-401") "401")) +(constraint (= (f "+60 971-986-103") "103")) +(constraint (= (f "+13 258-276-941") "941")) +(constraint (= (f "+2 604-746-137") "137")) +(constraint (= (f "+25 998-898-180") "180")) +(constraint (= (f "+151 862-946-541") "541")) +(constraint (= (f "+118 165-041-038") "038")) +(constraint (= (f "+144 170-592-272") "272")) +(constraint (= (f "+94 462-008-482") "482")) +(constraint (= (f "+82 685-122-086") "086")) +(constraint (= (f "+82 675-366-472") "472")) +(constraint (= (f "+80 066-433-096") "096")) +(constraint (= (f "+163 039-436-166") "166")) +(constraint (= (f "+138 808-083-074") "074")) +(constraint (= (f "+42 643-245-738") "738")) +(constraint (= (f "+169 822-542-726") "726")) +(constraint (= (f "+176 767-782-369") "369")) +(constraint (= (f "+47 414-369-343") "343")) +(constraint (= (f "+138 885-618-512") "512")) +(constraint (= (f "+104 158-671-355") "355")) +(constraint (= (f "+188 280-087-526") "526")) +(constraint (= (f "+50 268-571-336") "336")) +(constraint (= (f "+183 225-960-024") "024")) +(constraint (= (f "+58 191-982-491") "491")) +(constraint (= (f "+9 507-092-535") "535")) +(constraint (= (f "+64 061-601-398") "398")) +(constraint (= (f "+189 831-591-877") "877")) +(constraint (= (f "+129 425-765-844") "844")) +(constraint (= (f "+94 856-734-046") "046")) +(constraint (= (f "+35 082-845-261") "261")) +(constraint (= (f "+185 394-622-272") "272")) +(constraint (= (f "+163 905-707-740") "740")) +(constraint (= (f "+23 448-213-807") "807")) +(constraint (= (f "+42 634-077-089") "089")) +(constraint (= (f "+18 051-287-382") "382")) +(constraint (= (f "+29 773-545-520") "520")) +(constraint (= (f "+43 249-097-743") "743")) +(constraint (= (f "+158 674-736-891") "891")) +(constraint (= (f "+45 124-771-454") "454")) +(constraint (= (f "+180 029-457-654") "654")) +(constraint (= (f "+75 227-250-652") "652")) +(constraint (= (f "+5 528-317-854") "854")) +(constraint (= (f "+81 849-629-290") "290")) +(constraint (= (f "+46 005-119-176") "176")) +(constraint (= (f "+108 150-380-705") "705")) +(constraint (= (f "+40 122-224-247") "247")) +(constraint (= (f "+68 890-680-027") "027")) +(constraint (= (f "+169 060-204-504") "504")) +(constraint (= (f "+95 620-820-945") "945")) +(constraint (= (f "+43 592-938-846") "846")) +(constraint (= (f "+7 023-296-647") "647")) +(constraint (= (f "+20 541-401-396") "396")) +(constraint (= (f "+64 751-365-934") "934")) +(constraint (= (f "+163 546-119-476") "476")) +(constraint (= (f "+198 557-666-779") "779")) +(constraint (= (f "+14 673-759-017") "017")) +(constraint (= (f "+161 086-020-168") "168")) +(constraint (= (f "+65 970-575-488") "488")) +(constraint (= (f "+2 455-126-377") "377")) +(constraint (= (f "+196 728-585-376") "376")) +(constraint (= (f "+33 117-430-125") "125")) +(constraint (= (f "+195 488-831-768") "768")) +(constraint (= (f "+86 468-718-108") "108")) +(constraint (= (f "+194 278-716-950") "950")) +(constraint (= (f "+43 730-685-847") "847")) +(constraint (= (f "+140 794-289-551") "551")) +(constraint (= (f "+21 679-740-834") "834")) +(constraint (= (f "+98 717-997-323") "323")) +(constraint (= (f "+47 401-100-231") "231")) +(constraint (= (f "+143 726-462-368") "368")) +(constraint (= (f "+147 864-005-968") "968")) +(constraint (= (f "+130 590-757-665") "665")) +(constraint (= (f "+197 700-858-976") "976")) +(constraint (= (f "+158 344-541-946") "946")) +(constraint (= (f "+56 242-901-234") "234")) +(constraint (= (f "+132 313-075-754") "754")) +(constraint (= (f "+130 517-953-149") "149")) +(constraint (= (f "+158 684-878-743") "743")) +(constraint (= (f "+52 836-582-035") "035")) +(constraint (= (f "+138 117-484-671") "671")) +(constraint (= (f "+50 012-148-873") "873")) +(constraint (= (f "+105 048-919-483") "483")) +(constraint (= (f "+18 209-851-997") "997")) +(constraint (= (f "+176 938-056-084") "084")) +(constraint (= (f "+141 018-132-973") "973")) +(constraint (= (f "+199 936-162-415") "415")) +(constraint (= (f "+33 547-051-264") "264")) +(constraint (= (f "+161 233-981-513") "513")) +(constraint (= (f "+115 101-728-328") "328")) +(constraint (= (f "+45 095-746-635") "635")) + +(check-synth) diff --git a/data/sygus/phone-8.sl b/data/sygus/phone-8.sl new file mode 100644 index 0000000000000000000000000000000000000000..2a399ae83d7c6ad00e2ccd2bf75f9f5a933d7dd8 --- /dev/null +++ b/data/sygus/phone-8.sl @@ -0,0 +1,33 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "+" "-" "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "+106 769-858-438") "438")) +(constraint (= (f "+83 973-757-831") "831")) +(constraint (= (f "+62 647-787-775") "775")) +(constraint (= (f "+172 027-507-632") "632")) +(constraint (= (f "+72 001-050-856") "856")) +(constraint (= (f "+95 310-537-401") "401")) +(constraint (= (f "+6 775-969-238") "238")) + +(check-synth) diff --git a/data/sygus/phone-8_short.sl b/data/sygus/phone-8_short.sl new file mode 100644 index 0000000000000000000000000000000000000000..38ec23582b2bd050f901a4d437bbd417adc5d4f9 --- /dev/null +++ b/data/sygus/phone-8_short.sl @@ -0,0 +1,31 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "+" "-" "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "+106 769-858-438") "438")) +(constraint (= (f "+83 973-757-831") "831")) +(constraint (= (f "+62 647-787-775") "775")) +(constraint (= (f "+172 027-507-632") "632")) +(constraint (= (f "+72 001-050-856") "856")) +(constraint (= (f "+95 310-537-401") "401")) +(constraint (= (f "+6 775-969-238") "238")) + +(check-synth) diff --git a/data/sygus/phone-9-long-repeat.sl b/data/sygus/phone-9-long-repeat.sl new file mode 100644 index 0000000000000000000000000000000000000000..099e71167f87f4388f23be13fd9e0f7b90f5ad5f --- /dev/null +++ b/data/sygus/phone-9-long-repeat.sl @@ -0,0 +1,426 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "+" "-" "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "+106 769-858-438") "106.769.858.438")) +(constraint (= (f "+106 769-858-438") "106.769.858.438")) +(constraint (= (f "+106 769-858-438") "106.769.858.438")) +(constraint (= (f "+83 973-757-831") "83.973.757.831")) +(constraint (= (f "+83 973-757-831") "83.973.757.831")) +(constraint (= (f "+83 973-757-831") "83.973.757.831")) +(constraint (= (f "+62 647-787-775") "62.647.787.775")) +(constraint (= (f "+62 647-787-775") "62.647.787.775")) +(constraint (= (f "+62 647-787-775") "62.647.787.775")) +(constraint (= (f "+172 027-507-632") "172.027.507.632")) +(constraint (= (f "+172 027-507-632") "172.027.507.632")) +(constraint (= (f "+172 027-507-632") "172.027.507.632")) +(constraint (= (f "+72 001-050-856") "72.001.050.856")) +(constraint (= (f "+72 001-050-856") "72.001.050.856")) +(constraint (= (f "+72 001-050-856") "72.001.050.856")) +(constraint (= (f "+95 310-537-401") "95.310.537.401")) +(constraint (= (f "+95 310-537-401") "95.310.537.401")) +(constraint (= (f "+95 310-537-401") "95.310.537.401")) +(constraint (= (f "+6 775-969-238") "6.775.969.238")) +(constraint (= (f "+6 775-969-238") "6.775.969.238")) +(constraint (= (f "+6 775-969-238") "6.775.969.238")) +(constraint (= (f "+174 594-539-946") "174.594.539.946")) +(constraint (= (f "+174 594-539-946") "174.594.539.946")) +(constraint (= (f "+174 594-539-946") "174.594.539.946")) +(constraint (= (f "+155 927-275-860") "155.927.275.860")) +(constraint (= (f "+155 927-275-860") "155.927.275.860")) +(constraint (= (f "+155 927-275-860") "155.927.275.860")) +(constraint (= (f "+167 405-461-331") "167.405.461.331")) +(constraint (= (f "+167 405-461-331") "167.405.461.331")) +(constraint (= (f "+167 405-461-331") "167.405.461.331")) +(constraint (= (f "+10 538-347-401") "10.538.347.401")) +(constraint (= (f "+10 538-347-401") "10.538.347.401")) +(constraint (= (f "+10 538-347-401") "10.538.347.401")) +(constraint (= (f "+60 971-986-103") "60.971.986.103")) +(constraint (= (f "+60 971-986-103") "60.971.986.103")) +(constraint (= (f "+60 971-986-103") "60.971.986.103")) +(constraint (= (f "+13 258-276-941") "13.258.276.941")) +(constraint (= (f "+13 258-276-941") "13.258.276.941")) +(constraint (= (f "+13 258-276-941") "13.258.276.941")) +(constraint (= (f "+2 604-746-137") "2.604.746.137")) +(constraint (= (f "+2 604-746-137") "2.604.746.137")) +(constraint (= (f "+2 604-746-137") "2.604.746.137")) +(constraint (= (f "+25 998-898-180") "25.998.898.180")) +(constraint (= (f "+25 998-898-180") "25.998.898.180")) +(constraint (= (f "+25 998-898-180") "25.998.898.180")) +(constraint (= (f "+151 862-946-541") "151.862.946.541")) +(constraint (= (f "+151 862-946-541") "151.862.946.541")) +(constraint (= (f "+151 862-946-541") "151.862.946.541")) +(constraint (= (f "+118 165-041-038") "118.165.041.038")) +(constraint (= (f "+118 165-041-038") "118.165.041.038")) +(constraint (= (f "+118 165-041-038") "118.165.041.038")) +(constraint (= (f "+144 170-592-272") "144.170.592.272")) +(constraint (= (f "+144 170-592-272") "144.170.592.272")) +(constraint (= (f "+144 170-592-272") "144.170.592.272")) +(constraint (= (f "+94 462-008-482") "94.462.008.482")) +(constraint (= (f "+94 462-008-482") "94.462.008.482")) +(constraint (= (f "+94 462-008-482") "94.462.008.482")) +(constraint (= (f "+82 685-122-086") "82.685.122.086")) +(constraint (= (f "+82 685-122-086") "82.685.122.086")) +(constraint (= (f "+82 685-122-086") "82.685.122.086")) +(constraint (= (f "+82 675-366-472") "82.675.366.472")) +(constraint (= (f "+82 675-366-472") "82.675.366.472")) +(constraint (= (f "+82 675-366-472") "82.675.366.472")) +(constraint (= (f "+80 066-433-096") "80.066.433.096")) +(constraint (= (f "+80 066-433-096") "80.066.433.096")) +(constraint (= (f "+80 066-433-096") "80.066.433.096")) +(constraint (= (f "+163 039-436-166") "163.039.436.166")) +(constraint (= (f "+163 039-436-166") "163.039.436.166")) +(constraint (= (f "+163 039-436-166") "163.039.436.166")) +(constraint (= (f "+138 808-083-074") "138.808.083.074")) +(constraint (= (f "+138 808-083-074") "138.808.083.074")) +(constraint (= (f "+138 808-083-074") "138.808.083.074")) +(constraint (= (f "+42 643-245-738") "42.643.245.738")) +(constraint (= (f "+42 643-245-738") "42.643.245.738")) +(constraint (= (f "+42 643-245-738") "42.643.245.738")) +(constraint (= (f "+169 822-542-726") "169.822.542.726")) +(constraint (= (f "+169 822-542-726") "169.822.542.726")) +(constraint (= (f "+169 822-542-726") "169.822.542.726")) +(constraint (= (f "+176 767-782-369") "176.767.782.369")) +(constraint (= (f "+176 767-782-369") "176.767.782.369")) +(constraint (= (f "+176 767-782-369") "176.767.782.369")) +(constraint (= (f "+47 414-369-343") "47.414.369.343")) +(constraint (= (f "+47 414-369-343") "47.414.369.343")) +(constraint (= (f "+47 414-369-343") "47.414.369.343")) +(constraint (= (f "+138 885-618-512") "138.885.618.512")) +(constraint (= (f "+138 885-618-512") "138.885.618.512")) +(constraint (= (f "+138 885-618-512") "138.885.618.512")) +(constraint (= (f "+104 158-671-355") "104.158.671.355")) +(constraint (= (f "+104 158-671-355") "104.158.671.355")) +(constraint (= (f "+104 158-671-355") "104.158.671.355")) +(constraint (= (f "+188 280-087-526") "188.280.087.526")) +(constraint (= (f "+188 280-087-526") "188.280.087.526")) +(constraint (= (f "+188 280-087-526") "188.280.087.526")) +(constraint (= (f "+50 268-571-336") "50.268.571.336")) +(constraint (= (f "+50 268-571-336") "50.268.571.336")) +(constraint (= (f "+50 268-571-336") "50.268.571.336")) +(constraint (= (f "+183 225-960-024") "183.225.960.024")) +(constraint (= (f "+183 225-960-024") "183.225.960.024")) +(constraint (= (f "+183 225-960-024") "183.225.960.024")) +(constraint (= (f "+58 191-982-491") "58.191.982.491")) +(constraint (= (f "+58 191-982-491") "58.191.982.491")) +(constraint (= (f "+58 191-982-491") "58.191.982.491")) +(constraint (= (f "+9 507-092-535") "9.507.092.535")) +(constraint (= (f "+9 507-092-535") "9.507.092.535")) +(constraint (= (f "+9 507-092-535") "9.507.092.535")) +(constraint (= (f "+64 061-601-398") "64.061.601.398")) +(constraint (= (f "+64 061-601-398") "64.061.601.398")) +(constraint (= (f "+64 061-601-398") "64.061.601.398")) +(constraint (= (f "+189 831-591-877") "189.831.591.877")) +(constraint (= (f "+189 831-591-877") "189.831.591.877")) +(constraint (= (f "+189 831-591-877") "189.831.591.877")) +(constraint (= (f "+129 425-765-844") "129.425.765.844")) +(constraint (= (f "+129 425-765-844") "129.425.765.844")) +(constraint (= (f "+129 425-765-844") "129.425.765.844")) +(constraint (= (f "+94 856-734-046") "94.856.734.046")) +(constraint (= (f "+94 856-734-046") "94.856.734.046")) +(constraint (= (f "+94 856-734-046") "94.856.734.046")) +(constraint (= (f "+35 082-845-261") "35.082.845.261")) +(constraint (= (f "+35 082-845-261") "35.082.845.261")) +(constraint (= (f "+35 082-845-261") "35.082.845.261")) +(constraint (= (f "+185 394-622-272") "185.394.622.272")) +(constraint (= (f "+185 394-622-272") "185.394.622.272")) +(constraint (= (f "+185 394-622-272") "185.394.622.272")) +(constraint (= (f "+163 905-707-740") "163.905.707.740")) +(constraint (= (f "+163 905-707-740") "163.905.707.740")) +(constraint (= (f "+163 905-707-740") "163.905.707.740")) +(constraint (= (f "+23 448-213-807") "23.448.213.807")) +(constraint (= (f "+23 448-213-807") "23.448.213.807")) +(constraint (= (f "+23 448-213-807") "23.448.213.807")) +(constraint (= (f "+42 634-077-089") "42.634.077.089")) +(constraint (= (f "+42 634-077-089") "42.634.077.089")) +(constraint (= (f "+42 634-077-089") "42.634.077.089")) +(constraint (= (f "+18 051-287-382") "18.051.287.382")) +(constraint (= (f "+18 051-287-382") "18.051.287.382")) +(constraint (= (f "+18 051-287-382") "18.051.287.382")) +(constraint (= (f "+29 773-545-520") "29.773.545.520")) +(constraint (= (f "+29 773-545-520") "29.773.545.520")) +(constraint (= (f "+29 773-545-520") "29.773.545.520")) +(constraint (= (f "+43 249-097-743") "43.249.097.743")) +(constraint (= (f "+43 249-097-743") "43.249.097.743")) +(constraint (= (f "+43 249-097-743") "43.249.097.743")) +(constraint (= (f "+158 674-736-891") "158.674.736.891")) +(constraint (= (f "+158 674-736-891") "158.674.736.891")) +(constraint (= (f "+158 674-736-891") "158.674.736.891")) +(constraint (= (f "+45 124-771-454") "45.124.771.454")) +(constraint (= (f "+45 124-771-454") "45.124.771.454")) +(constraint (= (f "+45 124-771-454") "45.124.771.454")) +(constraint (= (f "+180 029-457-654") "180.029.457.654")) +(constraint (= (f "+180 029-457-654") "180.029.457.654")) +(constraint (= (f "+180 029-457-654") "180.029.457.654")) +(constraint (= (f "+75 227-250-652") "75.227.250.652")) +(constraint (= (f "+75 227-250-652") "75.227.250.652")) +(constraint (= (f "+75 227-250-652") "75.227.250.652")) +(constraint (= (f "+5 528-317-854") "5.528.317.854")) +(constraint (= (f "+5 528-317-854") "5.528.317.854")) +(constraint (= (f "+5 528-317-854") "5.528.317.854")) +(constraint (= (f "+81 849-629-290") "81.849.629.290")) +(constraint (= (f "+81 849-629-290") "81.849.629.290")) +(constraint (= (f "+81 849-629-290") "81.849.629.290")) +(constraint (= (f "+46 005-119-176") "46.005.119.176")) +(constraint (= (f "+46 005-119-176") "46.005.119.176")) +(constraint (= (f "+46 005-119-176") "46.005.119.176")) +(constraint (= (f "+108 150-380-705") "108.150.380.705")) +(constraint (= (f "+108 150-380-705") "108.150.380.705")) +(constraint (= (f "+108 150-380-705") "108.150.380.705")) +(constraint (= (f "+40 122-224-247") "40.122.224.247")) +(constraint (= (f "+40 122-224-247") "40.122.224.247")) +(constraint (= (f "+40 122-224-247") "40.122.224.247")) +(constraint (= (f "+68 890-680-027") "68.890.680.027")) +(constraint (= (f "+68 890-680-027") "68.890.680.027")) +(constraint (= (f "+68 890-680-027") "68.890.680.027")) +(constraint (= (f "+169 060-204-504") "169.060.204.504")) +(constraint (= (f "+169 060-204-504") "169.060.204.504")) +(constraint (= (f "+169 060-204-504") "169.060.204.504")) +(constraint (= (f "+95 620-820-945") "95.620.820.945")) +(constraint (= (f "+95 620-820-945") "95.620.820.945")) +(constraint (= (f "+95 620-820-945") "95.620.820.945")) +(constraint (= (f "+43 592-938-846") "43.592.938.846")) +(constraint (= (f "+43 592-938-846") "43.592.938.846")) +(constraint (= (f "+43 592-938-846") "43.592.938.846")) +(constraint (= (f "+7 023-296-647") "7.023.296.647")) +(constraint (= (f "+7 023-296-647") "7.023.296.647")) +(constraint (= (f "+7 023-296-647") "7.023.296.647")) +(constraint (= (f "+20 541-401-396") "20.541.401.396")) +(constraint (= (f "+20 541-401-396") "20.541.401.396")) +(constraint (= (f "+20 541-401-396") "20.541.401.396")) +(constraint (= (f "+64 751-365-934") "64.751.365.934")) +(constraint (= (f "+64 751-365-934") "64.751.365.934")) +(constraint (= (f "+64 751-365-934") "64.751.365.934")) +(constraint (= (f "+163 546-119-476") "163.546.119.476")) +(constraint (= (f "+163 546-119-476") "163.546.119.476")) +(constraint (= (f "+163 546-119-476") "163.546.119.476")) +(constraint (= (f "+198 557-666-779") "198.557.666.779")) +(constraint (= (f "+198 557-666-779") "198.557.666.779")) +(constraint (= (f "+198 557-666-779") "198.557.666.779")) +(constraint (= (f "+14 673-759-017") "14.673.759.017")) +(constraint (= (f "+14 673-759-017") "14.673.759.017")) +(constraint (= (f "+14 673-759-017") "14.673.759.017")) +(constraint (= (f "+161 086-020-168") "161.086.020.168")) +(constraint (= (f "+161 086-020-168") "161.086.020.168")) +(constraint (= (f "+161 086-020-168") "161.086.020.168")) +(constraint (= (f "+65 970-575-488") "65.970.575.488")) +(constraint (= (f "+65 970-575-488") "65.970.575.488")) +(constraint (= (f "+65 970-575-488") "65.970.575.488")) +(constraint (= (f "+2 455-126-377") "2.455.126.377")) +(constraint (= (f "+2 455-126-377") "2.455.126.377")) +(constraint (= (f "+2 455-126-377") "2.455.126.377")) +(constraint (= (f "+196 728-585-376") "196.728.585.376")) +(constraint (= (f "+196 728-585-376") "196.728.585.376")) +(constraint (= (f "+196 728-585-376") "196.728.585.376")) +(constraint (= (f "+33 117-430-125") "33.117.430.125")) +(constraint (= (f "+33 117-430-125") "33.117.430.125")) +(constraint (= (f "+33 117-430-125") "33.117.430.125")) +(constraint (= (f "+195 488-831-768") "195.488.831.768")) +(constraint (= (f "+195 488-831-768") "195.488.831.768")) +(constraint (= (f "+195 488-831-768") "195.488.831.768")) +(constraint (= (f "+86 468-718-108") "86.468.718.108")) +(constraint (= (f "+86 468-718-108") "86.468.718.108")) +(constraint (= (f "+86 468-718-108") "86.468.718.108")) +(constraint (= (f "+194 278-716-950") "194.278.716.950")) +(constraint (= (f "+194 278-716-950") "194.278.716.950")) +(constraint (= (f "+194 278-716-950") "194.278.716.950")) +(constraint (= (f "+43 730-685-847") "43.730.685.847")) +(constraint (= (f "+43 730-685-847") "43.730.685.847")) +(constraint (= (f "+43 730-685-847") "43.730.685.847")) +(constraint (= (f "+140 794-289-551") "140.794.289.551")) +(constraint (= (f "+140 794-289-551") "140.794.289.551")) +(constraint (= (f "+140 794-289-551") "140.794.289.551")) +(constraint (= (f "+21 679-740-834") "21.679.740.834")) +(constraint (= (f "+21 679-740-834") "21.679.740.834")) +(constraint (= (f "+21 679-740-834") "21.679.740.834")) +(constraint (= (f "+98 717-997-323") "98.717.997.323")) +(constraint (= (f "+98 717-997-323") "98.717.997.323")) +(constraint (= (f "+98 717-997-323") "98.717.997.323")) +(constraint (= (f "+47 401-100-231") "47.401.100.231")) +(constraint (= (f "+47 401-100-231") "47.401.100.231")) +(constraint (= (f "+47 401-100-231") "47.401.100.231")) +(constraint (= (f "+143 726-462-368") "143.726.462.368")) +(constraint (= (f "+143 726-462-368") "143.726.462.368")) +(constraint (= (f "+143 726-462-368") "143.726.462.368")) +(constraint (= (f "+147 864-005-968") "147.864.005.968")) +(constraint (= (f "+147 864-005-968") "147.864.005.968")) +(constraint (= (f "+147 864-005-968") "147.864.005.968")) +(constraint (= (f "+130 590-757-665") "130.590.757.665")) +(constraint (= (f "+130 590-757-665") "130.590.757.665")) +(constraint (= (f "+130 590-757-665") "130.590.757.665")) +(constraint (= (f "+197 700-858-976") "197.700.858.976")) +(constraint (= (f "+197 700-858-976") "197.700.858.976")) +(constraint (= (f "+197 700-858-976") "197.700.858.976")) +(constraint (= (f "+158 344-541-946") "158.344.541.946")) +(constraint (= (f "+158 344-541-946") "158.344.541.946")) +(constraint (= (f "+158 344-541-946") "158.344.541.946")) +(constraint (= (f "+56 242-901-234") "56.242.901.234")) +(constraint (= (f "+56 242-901-234") "56.242.901.234")) +(constraint (= (f "+56 242-901-234") "56.242.901.234")) +(constraint (= (f "+132 313-075-754") "132.313.075.754")) +(constraint (= (f "+132 313-075-754") "132.313.075.754")) +(constraint (= (f "+132 313-075-754") "132.313.075.754")) +(constraint (= (f "+130 517-953-149") "130.517.953.149")) +(constraint (= (f "+130 517-953-149") "130.517.953.149")) +(constraint (= (f "+130 517-953-149") "130.517.953.149")) +(constraint (= (f "+158 684-878-743") "158.684.878.743")) +(constraint (= (f "+158 684-878-743") "158.684.878.743")) +(constraint (= (f "+158 684-878-743") "158.684.878.743")) +(constraint (= (f "+52 836-582-035") "52.836.582.035")) +(constraint (= (f "+52 836-582-035") "52.836.582.035")) +(constraint (= (f "+52 836-582-035") "52.836.582.035")) +(constraint (= (f "+138 117-484-671") "138.117.484.671")) +(constraint (= (f "+138 117-484-671") "138.117.484.671")) +(constraint (= (f "+138 117-484-671") "138.117.484.671")) +(constraint (= (f "+50 012-148-873") "50.012.148.873")) +(constraint (= (f "+50 012-148-873") "50.012.148.873")) +(constraint (= (f "+50 012-148-873") "50.012.148.873")) +(constraint (= (f "+105 048-919-483") "105.048.919.483")) +(constraint (= (f "+105 048-919-483") "105.048.919.483")) +(constraint (= (f "+105 048-919-483") "105.048.919.483")) +(constraint (= (f "+18 209-851-997") "18.209.851.997")) +(constraint (= (f "+18 209-851-997") "18.209.851.997")) +(constraint (= (f "+18 209-851-997") "18.209.851.997")) +(constraint (= (f "+176 938-056-084") "176.938.056.084")) +(constraint (= (f "+176 938-056-084") "176.938.056.084")) +(constraint (= (f "+176 938-056-084") "176.938.056.084")) +(constraint (= (f "+141 018-132-973") "141.018.132.973")) +(constraint (= (f "+141 018-132-973") "141.018.132.973")) +(constraint (= (f "+141 018-132-973") "141.018.132.973")) +(constraint (= (f "+199 936-162-415") "199.936.162.415")) +(constraint (= (f "+199 936-162-415") "199.936.162.415")) +(constraint (= (f "+199 936-162-415") "199.936.162.415")) +(constraint (= (f "+33 547-051-264") "33.547.051.264")) +(constraint (= (f "+33 547-051-264") "33.547.051.264")) +(constraint (= (f "+33 547-051-264") "33.547.051.264")) +(constraint (= (f "+161 233-981-513") "161.233.981.513")) +(constraint (= (f "+161 233-981-513") "161.233.981.513")) +(constraint (= (f "+161 233-981-513") "161.233.981.513")) +(constraint (= (f "+115 101-728-328") "115.101.728.328")) +(constraint (= (f "+115 101-728-328") "115.101.728.328")) +(constraint (= (f "+115 101-728-328") "115.101.728.328")) +(constraint (= (f "+45 095-746-635") "45.095.746.635")) +(constraint (= (f "+45 095-746-635") "45.095.746.635")) +(constraint (= (f "+45 095-746-635") "45.095.746.635")) +(constraint (= (f "+106 769-858-438") "106.769.858.438")) +(constraint (= (f "+83 973-757-831") "83.973.757.831")) +(constraint (= (f "+62 647-787-775") "62.647.787.775")) +(constraint (= (f "+172 027-507-632") "172.027.507.632")) +(constraint (= (f "+72 001-050-856") "72.001.050.856")) +(constraint (= (f "+95 310-537-401") "95.310.537.401")) +(constraint (= (f "+6 775-969-238") "6.775.969.238")) +(constraint (= (f "+174 594-539-946") "174.594.539.946")) +(constraint (= (f "+155 927-275-860") "155.927.275.860")) +(constraint (= (f "+167 405-461-331") "167.405.461.331")) +(constraint (= (f "+10 538-347-401") "10.538.347.401")) +(constraint (= (f "+60 971-986-103") "60.971.986.103")) +(constraint (= (f "+13 258-276-941") "13.258.276.941")) +(constraint (= (f "+2 604-746-137") "2.604.746.137")) +(constraint (= (f "+25 998-898-180") "25.998.898.180")) +(constraint (= (f "+151 862-946-541") "151.862.946.541")) +(constraint (= (f "+118 165-041-038") "118.165.041.038")) +(constraint (= (f "+144 170-592-272") "144.170.592.272")) +(constraint (= (f "+94 462-008-482") "94.462.008.482")) +(constraint (= (f "+82 685-122-086") "82.685.122.086")) +(constraint (= (f "+82 675-366-472") "82.675.366.472")) +(constraint (= (f "+80 066-433-096") "80.066.433.096")) +(constraint (= (f "+163 039-436-166") "163.039.436.166")) +(constraint (= (f "+138 808-083-074") "138.808.083.074")) +(constraint (= (f "+42 643-245-738") "42.643.245.738")) +(constraint (= (f "+169 822-542-726") "169.822.542.726")) +(constraint (= (f "+176 767-782-369") "176.767.782.369")) +(constraint (= (f "+47 414-369-343") "47.414.369.343")) +(constraint (= (f "+138 885-618-512") "138.885.618.512")) +(constraint (= (f "+104 158-671-355") "104.158.671.355")) +(constraint (= (f "+188 280-087-526") "188.280.087.526")) +(constraint (= (f "+50 268-571-336") "50.268.571.336")) +(constraint (= (f "+183 225-960-024") "183.225.960.024")) +(constraint (= (f "+58 191-982-491") "58.191.982.491")) +(constraint (= (f "+9 507-092-535") "9.507.092.535")) +(constraint (= (f "+64 061-601-398") "64.061.601.398")) +(constraint (= (f "+189 831-591-877") "189.831.591.877")) +(constraint (= (f "+129 425-765-844") "129.425.765.844")) +(constraint (= (f "+94 856-734-046") "94.856.734.046")) +(constraint (= (f "+35 082-845-261") "35.082.845.261")) +(constraint (= (f "+185 394-622-272") "185.394.622.272")) +(constraint (= (f "+163 905-707-740") "163.905.707.740")) +(constraint (= (f "+23 448-213-807") "23.448.213.807")) +(constraint (= (f "+42 634-077-089") "42.634.077.089")) +(constraint (= (f "+18 051-287-382") "18.051.287.382")) +(constraint (= (f "+29 773-545-520") "29.773.545.520")) +(constraint (= (f "+43 249-097-743") "43.249.097.743")) +(constraint (= (f "+158 674-736-891") "158.674.736.891")) +(constraint (= (f "+45 124-771-454") "45.124.771.454")) +(constraint (= (f "+180 029-457-654") "180.029.457.654")) +(constraint (= (f "+75 227-250-652") "75.227.250.652")) +(constraint (= (f "+5 528-317-854") "5.528.317.854")) +(constraint (= (f "+81 849-629-290") "81.849.629.290")) +(constraint (= (f "+46 005-119-176") "46.005.119.176")) +(constraint (= (f "+108 150-380-705") "108.150.380.705")) +(constraint (= (f "+40 122-224-247") "40.122.224.247")) +(constraint (= (f "+68 890-680-027") "68.890.680.027")) +(constraint (= (f "+169 060-204-504") "169.060.204.504")) +(constraint (= (f "+95 620-820-945") "95.620.820.945")) +(constraint (= (f "+43 592-938-846") "43.592.938.846")) +(constraint (= (f "+7 023-296-647") "7.023.296.647")) +(constraint (= (f "+20 541-401-396") "20.541.401.396")) +(constraint (= (f "+64 751-365-934") "64.751.365.934")) +(constraint (= (f "+163 546-119-476") "163.546.119.476")) +(constraint (= (f "+198 557-666-779") "198.557.666.779")) +(constraint (= (f "+14 673-759-017") "14.673.759.017")) +(constraint (= (f "+161 086-020-168") "161.086.020.168")) +(constraint (= (f "+65 970-575-488") "65.970.575.488")) +(constraint (= (f "+2 455-126-377") "2.455.126.377")) +(constraint (= (f "+196 728-585-376") "196.728.585.376")) +(constraint (= (f "+33 117-430-125") "33.117.430.125")) +(constraint (= (f "+195 488-831-768") "195.488.831.768")) +(constraint (= (f "+86 468-718-108") "86.468.718.108")) +(constraint (= (f "+194 278-716-950") "194.278.716.950")) +(constraint (= (f "+43 730-685-847") "43.730.685.847")) +(constraint (= (f "+140 794-289-551") "140.794.289.551")) +(constraint (= (f "+21 679-740-834") "21.679.740.834")) +(constraint (= (f "+98 717-997-323") "98.717.997.323")) +(constraint (= (f "+47 401-100-231") "47.401.100.231")) +(constraint (= (f "+143 726-462-368") "143.726.462.368")) +(constraint (= (f "+147 864-005-968") "147.864.005.968")) +(constraint (= (f "+130 590-757-665") "130.590.757.665")) +(constraint (= (f "+197 700-858-976") "197.700.858.976")) +(constraint (= (f "+158 344-541-946") "158.344.541.946")) +(constraint (= (f "+56 242-901-234") "56.242.901.234")) +(constraint (= (f "+132 313-075-754") "132.313.075.754")) +(constraint (= (f "+130 517-953-149") "130.517.953.149")) +(constraint (= (f "+158 684-878-743") "158.684.878.743")) +(constraint (= (f "+52 836-582-035") "52.836.582.035")) +(constraint (= (f "+138 117-484-671") "138.117.484.671")) +(constraint (= (f "+50 012-148-873") "50.012.148.873")) +(constraint (= (f "+105 048-919-483") "105.048.919.483")) +(constraint (= (f "+18 209-851-997") "18.209.851.997")) +(constraint (= (f "+176 938-056-084") "176.938.056.084")) +(constraint (= (f "+141 018-132-973") "141.018.132.973")) +(constraint (= (f "+199 936-162-415") "199.936.162.415")) +(constraint (= (f "+33 547-051-264") "33.547.051.264")) +(constraint (= (f "+161 233-981-513") "161.233.981.513")) +(constraint (= (f "+115 101-728-328") "115.101.728.328")) +(constraint (= (f "+45 095-746-635") "45.095.746.635")) + +(check-synth) diff --git a/data/sygus/phone-9-long.sl b/data/sygus/phone-9-long.sl new file mode 100644 index 0000000000000000000000000000000000000000..766e875f5c4605002b5db1d9922e9f39fcb7df1b --- /dev/null +++ b/data/sygus/phone-9-long.sl @@ -0,0 +1,126 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "+" "-" "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "+106 769-858-438") "106.769.858.438")) +(constraint (= (f "+83 973-757-831") "83.973.757.831")) +(constraint (= (f "+62 647-787-775") "62.647.787.775")) +(constraint (= (f "+172 027-507-632") "172.027.507.632")) +(constraint (= (f "+72 001-050-856") "72.001.050.856")) +(constraint (= (f "+95 310-537-401") "95.310.537.401")) +(constraint (= (f "+6 775-969-238") "6.775.969.238")) +(constraint (= (f "+174 594-539-946") "174.594.539.946")) +(constraint (= (f "+155 927-275-860") "155.927.275.860")) +(constraint (= (f "+167 405-461-331") "167.405.461.331")) +(constraint (= (f "+10 538-347-401") "10.538.347.401")) +(constraint (= (f "+60 971-986-103") "60.971.986.103")) +(constraint (= (f "+13 258-276-941") "13.258.276.941")) +(constraint (= (f "+2 604-746-137") "2.604.746.137")) +(constraint (= (f "+25 998-898-180") "25.998.898.180")) +(constraint (= (f "+151 862-946-541") "151.862.946.541")) +(constraint (= (f "+118 165-041-038") "118.165.041.038")) +(constraint (= (f "+144 170-592-272") "144.170.592.272")) +(constraint (= (f "+94 462-008-482") "94.462.008.482")) +(constraint (= (f "+82 685-122-086") "82.685.122.086")) +(constraint (= (f "+82 675-366-472") "82.675.366.472")) +(constraint (= (f "+80 066-433-096") "80.066.433.096")) +(constraint (= (f "+163 039-436-166") "163.039.436.166")) +(constraint (= (f "+138 808-083-074") "138.808.083.074")) +(constraint (= (f "+42 643-245-738") "42.643.245.738")) +(constraint (= (f "+169 822-542-726") "169.822.542.726")) +(constraint (= (f "+176 767-782-369") "176.767.782.369")) +(constraint (= (f "+47 414-369-343") "47.414.369.343")) +(constraint (= (f "+138 885-618-512") "138.885.618.512")) +(constraint (= (f "+104 158-671-355") "104.158.671.355")) +(constraint (= (f "+188 280-087-526") "188.280.087.526")) +(constraint (= (f "+50 268-571-336") "50.268.571.336")) +(constraint (= (f "+183 225-960-024") "183.225.960.024")) +(constraint (= (f "+58 191-982-491") "58.191.982.491")) +(constraint (= (f "+9 507-092-535") "9.507.092.535")) +(constraint (= (f "+64 061-601-398") "64.061.601.398")) +(constraint (= (f "+189 831-591-877") "189.831.591.877")) +(constraint (= (f "+129 425-765-844") "129.425.765.844")) +(constraint (= (f "+94 856-734-046") "94.856.734.046")) +(constraint (= (f "+35 082-845-261") "35.082.845.261")) +(constraint (= (f "+185 394-622-272") "185.394.622.272")) +(constraint (= (f "+163 905-707-740") "163.905.707.740")) +(constraint (= (f "+23 448-213-807") "23.448.213.807")) +(constraint (= (f "+42 634-077-089") "42.634.077.089")) +(constraint (= (f "+18 051-287-382") "18.051.287.382")) +(constraint (= (f "+29 773-545-520") "29.773.545.520")) +(constraint (= (f "+43 249-097-743") "43.249.097.743")) +(constraint (= (f "+158 674-736-891") "158.674.736.891")) +(constraint (= (f "+45 124-771-454") "45.124.771.454")) +(constraint (= (f "+180 029-457-654") "180.029.457.654")) +(constraint (= (f "+75 227-250-652") "75.227.250.652")) +(constraint (= (f "+5 528-317-854") "5.528.317.854")) +(constraint (= (f "+81 849-629-290") "81.849.629.290")) +(constraint (= (f "+46 005-119-176") "46.005.119.176")) +(constraint (= (f "+108 150-380-705") "108.150.380.705")) +(constraint (= (f "+40 122-224-247") "40.122.224.247")) +(constraint (= (f "+68 890-680-027") "68.890.680.027")) +(constraint (= (f "+169 060-204-504") "169.060.204.504")) +(constraint (= (f "+95 620-820-945") "95.620.820.945")) +(constraint (= (f "+43 592-938-846") "43.592.938.846")) +(constraint (= (f "+7 023-296-647") "7.023.296.647")) +(constraint (= (f "+20 541-401-396") "20.541.401.396")) +(constraint (= (f "+64 751-365-934") "64.751.365.934")) +(constraint (= (f "+163 546-119-476") "163.546.119.476")) +(constraint (= (f "+198 557-666-779") "198.557.666.779")) +(constraint (= (f "+14 673-759-017") "14.673.759.017")) +(constraint (= (f "+161 086-020-168") "161.086.020.168")) +(constraint (= (f "+65 970-575-488") "65.970.575.488")) +(constraint (= (f "+2 455-126-377") "2.455.126.377")) +(constraint (= (f "+196 728-585-376") "196.728.585.376")) +(constraint (= (f "+33 117-430-125") "33.117.430.125")) +(constraint (= (f "+195 488-831-768") "195.488.831.768")) +(constraint (= (f "+86 468-718-108") "86.468.718.108")) +(constraint (= (f "+194 278-716-950") "194.278.716.950")) +(constraint (= (f "+43 730-685-847") "43.730.685.847")) +(constraint (= (f "+140 794-289-551") "140.794.289.551")) +(constraint (= (f "+21 679-740-834") "21.679.740.834")) +(constraint (= (f "+98 717-997-323") "98.717.997.323")) +(constraint (= (f "+47 401-100-231") "47.401.100.231")) +(constraint (= (f "+143 726-462-368") "143.726.462.368")) +(constraint (= (f "+147 864-005-968") "147.864.005.968")) +(constraint (= (f "+130 590-757-665") "130.590.757.665")) +(constraint (= (f "+197 700-858-976") "197.700.858.976")) +(constraint (= (f "+158 344-541-946") "158.344.541.946")) +(constraint (= (f "+56 242-901-234") "56.242.901.234")) +(constraint (= (f "+132 313-075-754") "132.313.075.754")) +(constraint (= (f "+130 517-953-149") "130.517.953.149")) +(constraint (= (f "+158 684-878-743") "158.684.878.743")) +(constraint (= (f "+52 836-582-035") "52.836.582.035")) +(constraint (= (f "+138 117-484-671") "138.117.484.671")) +(constraint (= (f "+50 012-148-873") "50.012.148.873")) +(constraint (= (f "+105 048-919-483") "105.048.919.483")) +(constraint (= (f "+18 209-851-997") "18.209.851.997")) +(constraint (= (f "+176 938-056-084") "176.938.056.084")) +(constraint (= (f "+141 018-132-973") "141.018.132.973")) +(constraint (= (f "+199 936-162-415") "199.936.162.415")) +(constraint (= (f "+33 547-051-264") "33.547.051.264")) +(constraint (= (f "+161 233-981-513") "161.233.981.513")) +(constraint (= (f "+115 101-728-328") "115.101.728.328")) +(constraint (= (f "+45 095-746-635") "45.095.746.635")) + +(check-synth) diff --git a/data/sygus/phone-9.sl b/data/sygus/phone-9.sl new file mode 100644 index 0000000000000000000000000000000000000000..8ce1d13f9db277152ad37008e6e3589c6ae9c547 --- /dev/null +++ b/data/sygus/phone-9.sl @@ -0,0 +1,33 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "+" "-" "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "+106 769-858-438") "106.769.858.438")) +(constraint (= (f "+83 973-757-831") "83.973.757.831")) +(constraint (= (f "+62 647-787-775") "62.647.787.775")) +(constraint (= (f "+172 027-507-632") "172.027.507.632")) +(constraint (= (f "+72 001-050-856") "72.001.050.856")) +(constraint (= (f "+95 310-537-401") "95.310.537.401")) +(constraint (= (f "+6 775-969-238") "6.775.969.238")) + +(check-synth) diff --git a/data/sygus/phone-9_short.sl b/data/sygus/phone-9_short.sl new file mode 100644 index 0000000000000000000000000000000000000000..23b008d50bbac9a8a650996cbc8c60755648b867 --- /dev/null +++ b/data/sygus/phone-9_short.sl @@ -0,0 +1,31 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " "+" "-" "." + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "+106 769-858-438") "106.769.858.438")) +(constraint (= (f "+83 973-757-831") "83.973.757.831")) +(constraint (= (f "+62 647-787-775") "62.647.787.775")) +(constraint (= (f "+172 027-507-632") "172.027.507.632")) +(constraint (= (f "+72 001-050-856") "72.001.050.856")) +(constraint (= (f "+95 310-537-401") "95.310.537.401")) +(constraint (= (f "+6 775-969-238") "6.775.969.238")) + +(check-synth) diff --git a/data/sygus/phone-long-repeat.sl b/data/sygus/phone-long-repeat.sl new file mode 100644 index 0000000000000000000000000000000000000000..2bcba48e4480d0829c982b75d7d37c34ca6ebbf7 --- /dev/null +++ b/data/sygus/phone-long-repeat.sl @@ -0,0 +1,426 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "938-242-504") "938")) +(constraint (= (f "938-242-504") "938")) +(constraint (= (f "938-242-504") "938")) +(constraint (= (f "308-916-545") "308")) +(constraint (= (f "308-916-545") "308")) +(constraint (= (f "308-916-545") "308")) +(constraint (= (f "623-599-749") "623")) +(constraint (= (f "623-599-749") "623")) +(constraint (= (f "623-599-749") "623")) +(constraint (= (f "981-424-843") "981")) +(constraint (= (f "981-424-843") "981")) +(constraint (= (f "981-424-843") "981")) +(constraint (= (f "118-980-214") "118")) +(constraint (= (f "118-980-214") "118")) +(constraint (= (f "118-980-214") "118")) +(constraint (= (f "244-655-094") "244")) +(constraint (= (f "244-655-094") "244")) +(constraint (= (f "244-655-094") "244")) +(constraint (= (f "830-941-991") "830")) +(constraint (= (f "830-941-991") "830")) +(constraint (= (f "830-941-991") "830")) +(constraint (= (f "911-186-562") "911")) +(constraint (= (f "911-186-562") "911")) +(constraint (= (f "911-186-562") "911")) +(constraint (= (f "002-500-200") "002")) +(constraint (= (f "002-500-200") "002")) +(constraint (= (f "002-500-200") "002")) +(constraint (= (f "113-860-034") "113")) +(constraint (= (f "113-860-034") "113")) +(constraint (= (f "113-860-034") "113")) +(constraint (= (f "457-622-959") "457")) +(constraint (= (f "457-622-959") "457")) +(constraint (= (f "457-622-959") "457")) +(constraint (= (f "986-722-311") "986")) +(constraint (= (f "986-722-311") "986")) +(constraint (= (f "986-722-311") "986")) +(constraint (= (f "110-170-771") "110")) +(constraint (= (f "110-170-771") "110")) +(constraint (= (f "110-170-771") "110")) +(constraint (= (f "469-610-118") "469")) +(constraint (= (f "469-610-118") "469")) +(constraint (= (f "469-610-118") "469")) +(constraint (= (f "817-925-247") "817")) +(constraint (= (f "817-925-247") "817")) +(constraint (= (f "817-925-247") "817")) +(constraint (= (f "256-899-439") "256")) +(constraint (= (f "256-899-439") "256")) +(constraint (= (f "256-899-439") "256")) +(constraint (= (f "886-911-726") "886")) +(constraint (= (f "886-911-726") "886")) +(constraint (= (f "886-911-726") "886")) +(constraint (= (f "562-950-358") "562")) +(constraint (= (f "562-950-358") "562")) +(constraint (= (f "562-950-358") "562")) +(constraint (= (f "693-049-588") "693")) +(constraint (= (f "693-049-588") "693")) +(constraint (= (f "693-049-588") "693")) +(constraint (= (f "840-503-234") "840")) +(constraint (= (f "840-503-234") "840")) +(constraint (= (f "840-503-234") "840")) +(constraint (= (f "698-815-340") "698")) +(constraint (= (f "698-815-340") "698")) +(constraint (= (f "698-815-340") "698")) +(constraint (= (f "498-808-434") "498")) +(constraint (= (f "498-808-434") "498")) +(constraint (= (f "498-808-434") "498")) +(constraint (= (f "329-545-000") "329")) +(constraint (= (f "329-545-000") "329")) +(constraint (= (f "329-545-000") "329")) +(constraint (= (f "380-281-597") "380")) +(constraint (= (f "380-281-597") "380")) +(constraint (= (f "380-281-597") "380")) +(constraint (= (f "332-395-493") "332")) +(constraint (= (f "332-395-493") "332")) +(constraint (= (f "332-395-493") "332")) +(constraint (= (f "251-903-028") "251")) +(constraint (= (f "251-903-028") "251")) +(constraint (= (f "251-903-028") "251")) +(constraint (= (f "176-090-894") "176")) +(constraint (= (f "176-090-894") "176")) +(constraint (= (f "176-090-894") "176")) +(constraint (= (f "336-611-100") "336")) +(constraint (= (f "336-611-100") "336")) +(constraint (= (f "336-611-100") "336")) +(constraint (= (f "416-390-647") "416")) +(constraint (= (f "416-390-647") "416")) +(constraint (= (f "416-390-647") "416")) +(constraint (= (f "019-430-596") "019")) +(constraint (= (f "019-430-596") "019")) +(constraint (= (f "019-430-596") "019")) +(constraint (= (f "960-659-771") "960")) +(constraint (= (f "960-659-771") "960")) +(constraint (= (f "960-659-771") "960")) +(constraint (= (f "475-505-007") "475")) +(constraint (= (f "475-505-007") "475")) +(constraint (= (f "475-505-007") "475")) +(constraint (= (f "424-069-886") "424")) +(constraint (= (f "424-069-886") "424")) +(constraint (= (f "424-069-886") "424")) +(constraint (= (f "941-102-117") "941")) +(constraint (= (f "941-102-117") "941")) +(constraint (= (f "941-102-117") "941")) +(constraint (= (f "331-728-008") "331")) +(constraint (= (f "331-728-008") "331")) +(constraint (= (f "331-728-008") "331")) +(constraint (= (f "487-726-198") "487")) +(constraint (= (f "487-726-198") "487")) +(constraint (= (f "487-726-198") "487")) +(constraint (= (f "612-419-942") "612")) +(constraint (= (f "612-419-942") "612")) +(constraint (= (f "612-419-942") "612")) +(constraint (= (f "594-741-346") "594")) +(constraint (= (f "594-741-346") "594")) +(constraint (= (f "594-741-346") "594")) +(constraint (= (f "320-984-742") "320")) +(constraint (= (f "320-984-742") "320")) +(constraint (= (f "320-984-742") "320")) +(constraint (= (f "060-919-361") "060")) +(constraint (= (f "060-919-361") "060")) +(constraint (= (f "060-919-361") "060")) +(constraint (= (f "275-536-998") "275")) +(constraint (= (f "275-536-998") "275")) +(constraint (= (f "275-536-998") "275")) +(constraint (= (f "548-835-065") "548")) +(constraint (= (f "548-835-065") "548")) +(constraint (= (f "548-835-065") "548")) +(constraint (= (f "197-485-507") "197")) +(constraint (= (f "197-485-507") "197")) +(constraint (= (f "197-485-507") "197")) +(constraint (= (f "455-776-949") "455")) +(constraint (= (f "455-776-949") "455")) +(constraint (= (f "455-776-949") "455")) +(constraint (= (f "085-421-340") "085")) +(constraint (= (f "085-421-340") "085")) +(constraint (= (f "085-421-340") "085")) +(constraint (= (f "785-713-099") "785")) +(constraint (= (f "785-713-099") "785")) +(constraint (= (f "785-713-099") "785")) +(constraint (= (f "426-712-861") "426")) +(constraint (= (f "426-712-861") "426")) +(constraint (= (f "426-712-861") "426")) +(constraint (= (f "386-994-906") "386")) +(constraint (= (f "386-994-906") "386")) +(constraint (= (f "386-994-906") "386")) +(constraint (= (f "918-304-840") "918")) +(constraint (= (f "918-304-840") "918")) +(constraint (= (f "918-304-840") "918")) +(constraint (= (f "247-153-598") "247")) +(constraint (= (f "247-153-598") "247")) +(constraint (= (f "247-153-598") "247")) +(constraint (= (f "075-497-069") "075")) +(constraint (= (f "075-497-069") "075")) +(constraint (= (f "075-497-069") "075")) +(constraint (= (f "140-726-583") "140")) +(constraint (= (f "140-726-583") "140")) +(constraint (= (f "140-726-583") "140")) +(constraint (= (f "049-413-248") "049")) +(constraint (= (f "049-413-248") "049")) +(constraint (= (f "049-413-248") "049")) +(constraint (= (f "977-386-462") "977")) +(constraint (= (f "977-386-462") "977")) +(constraint (= (f "977-386-462") "977")) +(constraint (= (f "058-272-455") "058")) +(constraint (= (f "058-272-455") "058")) +(constraint (= (f "058-272-455") "058")) +(constraint (= (f "428-629-927") "428")) +(constraint (= (f "428-629-927") "428")) +(constraint (= (f "428-629-927") "428")) +(constraint (= (f "449-122-191") "449")) +(constraint (= (f "449-122-191") "449")) +(constraint (= (f "449-122-191") "449")) +(constraint (= (f "568-759-670") "568")) +(constraint (= (f "568-759-670") "568")) +(constraint (= (f "568-759-670") "568")) +(constraint (= (f "312-846-053") "312")) +(constraint (= (f "312-846-053") "312")) +(constraint (= (f "312-846-053") "312")) +(constraint (= (f "943-037-297") "943")) +(constraint (= (f "943-037-297") "943")) +(constraint (= (f "943-037-297") "943")) +(constraint (= (f "014-270-177") "014")) +(constraint (= (f "014-270-177") "014")) +(constraint (= (f "014-270-177") "014")) +(constraint (= (f "658-877-878") "658")) +(constraint (= (f "658-877-878") "658")) +(constraint (= (f "658-877-878") "658")) +(constraint (= (f "888-594-038") "888")) +(constraint (= (f "888-594-038") "888")) +(constraint (= (f "888-594-038") "888")) +(constraint (= (f "232-253-254") "232")) +(constraint (= (f "232-253-254") "232")) +(constraint (= (f "232-253-254") "232")) +(constraint (= (f "308-722-292") "308")) +(constraint (= (f "308-722-292") "308")) +(constraint (= (f "308-722-292") "308")) +(constraint (= (f "342-145-742") "342")) +(constraint (= (f "342-145-742") "342")) +(constraint (= (f "342-145-742") "342")) +(constraint (= (f "568-181-515") "568")) +(constraint (= (f "568-181-515") "568")) +(constraint (= (f "568-181-515") "568")) +(constraint (= (f "300-140-756") "300")) +(constraint (= (f "300-140-756") "300")) +(constraint (= (f "300-140-756") "300")) +(constraint (= (f "099-684-216") "099")) +(constraint (= (f "099-684-216") "099")) +(constraint (= (f "099-684-216") "099")) +(constraint (= (f "575-296-621") "575")) +(constraint (= (f "575-296-621") "575")) +(constraint (= (f "575-296-621") "575")) +(constraint (= (f "994-443-794") "994")) +(constraint (= (f "994-443-794") "994")) +(constraint (= (f "994-443-794") "994")) +(constraint (= (f "400-334-692") "400")) +(constraint (= (f "400-334-692") "400")) +(constraint (= (f "400-334-692") "400")) +(constraint (= (f "684-711-883") "684")) +(constraint (= (f "684-711-883") "684")) +(constraint (= (f "684-711-883") "684")) +(constraint (= (f "539-636-358") "539")) +(constraint (= (f "539-636-358") "539")) +(constraint (= (f "539-636-358") "539")) +(constraint (= (f "009-878-919") "009")) +(constraint (= (f "009-878-919") "009")) +(constraint (= (f "009-878-919") "009")) +(constraint (= (f "919-545-701") "919")) +(constraint (= (f "919-545-701") "919")) +(constraint (= (f "919-545-701") "919")) +(constraint (= (f "546-399-239") "546")) +(constraint (= (f "546-399-239") "546")) +(constraint (= (f "546-399-239") "546")) +(constraint (= (f "993-608-757") "993")) +(constraint (= (f "993-608-757") "993")) +(constraint (= (f "993-608-757") "993")) +(constraint (= (f "107-652-845") "107")) +(constraint (= (f "107-652-845") "107")) +(constraint (= (f "107-652-845") "107")) +(constraint (= (f "206-805-793") "206")) +(constraint (= (f "206-805-793") "206")) +(constraint (= (f "206-805-793") "206")) +(constraint (= (f "198-857-684") "198")) +(constraint (= (f "198-857-684") "198")) +(constraint (= (f "198-857-684") "198")) +(constraint (= (f "912-827-430") "912")) +(constraint (= (f "912-827-430") "912")) +(constraint (= (f "912-827-430") "912")) +(constraint (= (f "560-951-766") "560")) +(constraint (= (f "560-951-766") "560")) +(constraint (= (f "560-951-766") "560")) +(constraint (= (f "142-178-290") "142")) +(constraint (= (f "142-178-290") "142")) +(constraint (= (f "142-178-290") "142")) +(constraint (= (f "732-196-946") "732")) +(constraint (= (f "732-196-946") "732")) +(constraint (= (f "732-196-946") "732")) +(constraint (= (f "963-875-745") "963")) +(constraint (= (f "963-875-745") "963")) +(constraint (= (f "963-875-745") "963")) +(constraint (= (f "881-865-867") "881")) +(constraint (= (f "881-865-867") "881")) +(constraint (= (f "881-865-867") "881")) +(constraint (= (f "234-686-715") "234")) +(constraint (= (f "234-686-715") "234")) +(constraint (= (f "234-686-715") "234")) +(constraint (= (f "720-330-583") "720")) +(constraint (= (f "720-330-583") "720")) +(constraint (= (f "720-330-583") "720")) +(constraint (= (f "593-065-126") "593")) +(constraint (= (f "593-065-126") "593")) +(constraint (= (f "593-065-126") "593")) +(constraint (= (f "671-778-064") "671")) +(constraint (= (f "671-778-064") "671")) +(constraint (= (f "671-778-064") "671")) +(constraint (= (f "252-029-036") "252")) +(constraint (= (f "252-029-036") "252")) +(constraint (= (f "252-029-036") "252")) +(constraint (= (f "700-322-036") "700")) +(constraint (= (f "700-322-036") "700")) +(constraint (= (f "700-322-036") "700")) +(constraint (= (f "882-587-473") "882")) +(constraint (= (f "882-587-473") "882")) +(constraint (= (f "882-587-473") "882")) +(constraint (= (f "964-134-953") "964")) +(constraint (= (f "964-134-953") "964")) +(constraint (= (f "964-134-953") "964")) +(constraint (= (f "038-300-876") "038")) +(constraint (= (f "038-300-876") "038")) +(constraint (= (f "038-300-876") "038")) +(constraint (= (f "158-894-947") "158")) +(constraint (= (f "158-894-947") "158")) +(constraint (= (f "158-894-947") "158")) +(constraint (= (f "757-454-374") "757")) +(constraint (= (f "757-454-374") "757")) +(constraint (= (f "757-454-374") "757")) +(constraint (= (f "872-513-190") "872")) +(constraint (= (f "872-513-190") "872")) +(constraint (= (f "872-513-190") "872")) +(constraint (= (f "566-086-726") "566")) +(constraint (= (f "566-086-726") "566")) +(constraint (= (f "566-086-726") "566")) +(constraint (= (f "938-242-504") "938")) +(constraint (= (f "308-916-545") "308")) +(constraint (= (f "623-599-749") "623")) +(constraint (= (f "981-424-843") "981")) +(constraint (= (f "118-980-214") "118")) +(constraint (= (f "244-655-094") "244")) +(constraint (= (f "830-941-991") "830")) +(constraint (= (f "911-186-562") "911")) +(constraint (= (f "002-500-200") "002")) +(constraint (= (f "113-860-034") "113")) +(constraint (= (f "457-622-959") "457")) +(constraint (= (f "986-722-311") "986")) +(constraint (= (f "110-170-771") "110")) +(constraint (= (f "469-610-118") "469")) +(constraint (= (f "817-925-247") "817")) +(constraint (= (f "256-899-439") "256")) +(constraint (= (f "886-911-726") "886")) +(constraint (= (f "562-950-358") "562")) +(constraint (= (f "693-049-588") "693")) +(constraint (= (f "840-503-234") "840")) +(constraint (= (f "698-815-340") "698")) +(constraint (= (f "498-808-434") "498")) +(constraint (= (f "329-545-000") "329")) +(constraint (= (f "380-281-597") "380")) +(constraint (= (f "332-395-493") "332")) +(constraint (= (f "251-903-028") "251")) +(constraint (= (f "176-090-894") "176")) +(constraint (= (f "336-611-100") "336")) +(constraint (= (f "416-390-647") "416")) +(constraint (= (f "019-430-596") "019")) +(constraint (= (f "960-659-771") "960")) +(constraint (= (f "475-505-007") "475")) +(constraint (= (f "424-069-886") "424")) +(constraint (= (f "941-102-117") "941")) +(constraint (= (f "331-728-008") "331")) +(constraint (= (f "487-726-198") "487")) +(constraint (= (f "612-419-942") "612")) +(constraint (= (f "594-741-346") "594")) +(constraint (= (f "320-984-742") "320")) +(constraint (= (f "060-919-361") "060")) +(constraint (= (f "275-536-998") "275")) +(constraint (= (f "548-835-065") "548")) +(constraint (= (f "197-485-507") "197")) +(constraint (= (f "455-776-949") "455")) +(constraint (= (f "085-421-340") "085")) +(constraint (= (f "785-713-099") "785")) +(constraint (= (f "426-712-861") "426")) +(constraint (= (f "386-994-906") "386")) +(constraint (= (f "918-304-840") "918")) +(constraint (= (f "247-153-598") "247")) +(constraint (= (f "075-497-069") "075")) +(constraint (= (f "140-726-583") "140")) +(constraint (= (f "049-413-248") "049")) +(constraint (= (f "977-386-462") "977")) +(constraint (= (f "058-272-455") "058")) +(constraint (= (f "428-629-927") "428")) +(constraint (= (f "449-122-191") "449")) +(constraint (= (f "568-759-670") "568")) +(constraint (= (f "312-846-053") "312")) +(constraint (= (f "943-037-297") "943")) +(constraint (= (f "014-270-177") "014")) +(constraint (= (f "658-877-878") "658")) +(constraint (= (f "888-594-038") "888")) +(constraint (= (f "232-253-254") "232")) +(constraint (= (f "308-722-292") "308")) +(constraint (= (f "342-145-742") "342")) +(constraint (= (f "568-181-515") "568")) +(constraint (= (f "300-140-756") "300")) +(constraint (= (f "099-684-216") "099")) +(constraint (= (f "575-296-621") "575")) +(constraint (= (f "994-443-794") "994")) +(constraint (= (f "400-334-692") "400")) +(constraint (= (f "684-711-883") "684")) +(constraint (= (f "539-636-358") "539")) +(constraint (= (f "009-878-919") "009")) +(constraint (= (f "919-545-701") "919")) +(constraint (= (f "546-399-239") "546")) +(constraint (= (f "993-608-757") "993")) +(constraint (= (f "107-652-845") "107")) +(constraint (= (f "206-805-793") "206")) +(constraint (= (f "198-857-684") "198")) +(constraint (= (f "912-827-430") "912")) +(constraint (= (f "560-951-766") "560")) +(constraint (= (f "142-178-290") "142")) +(constraint (= (f "732-196-946") "732")) +(constraint (= (f "963-875-745") "963")) +(constraint (= (f "881-865-867") "881")) +(constraint (= (f "234-686-715") "234")) +(constraint (= (f "720-330-583") "720")) +(constraint (= (f "593-065-126") "593")) +(constraint (= (f "671-778-064") "671")) +(constraint (= (f "252-029-036") "252")) +(constraint (= (f "700-322-036") "700")) +(constraint (= (f "882-587-473") "882")) +(constraint (= (f "964-134-953") "964")) +(constraint (= (f "038-300-876") "038")) +(constraint (= (f "158-894-947") "158")) +(constraint (= (f "757-454-374") "757")) +(constraint (= (f "872-513-190") "872")) +(constraint (= (f "566-086-726") "566")) + +(check-synth) diff --git a/data/sygus/phone-long.sl b/data/sygus/phone-long.sl new file mode 100644 index 0000000000000000000000000000000000000000..5d4d19c1eee6633050a4157d7c5163a2d95bb334 --- /dev/null +++ b/data/sygus/phone-long.sl @@ -0,0 +1,126 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "938-242-504") "938")) +(constraint (= (f "308-916-545") "308")) +(constraint (= (f "623-599-749") "623")) +(constraint (= (f "981-424-843") "981")) +(constraint (= (f "118-980-214") "118")) +(constraint (= (f "244-655-094") "244")) +(constraint (= (f "830-941-991") "830")) +(constraint (= (f "911-186-562") "911")) +(constraint (= (f "002-500-200") "002")) +(constraint (= (f "113-860-034") "113")) +(constraint (= (f "457-622-959") "457")) +(constraint (= (f "986-722-311") "986")) +(constraint (= (f "110-170-771") "110")) +(constraint (= (f "469-610-118") "469")) +(constraint (= (f "817-925-247") "817")) +(constraint (= (f "256-899-439") "256")) +(constraint (= (f "886-911-726") "886")) +(constraint (= (f "562-950-358") "562")) +(constraint (= (f "693-049-588") "693")) +(constraint (= (f "840-503-234") "840")) +(constraint (= (f "698-815-340") "698")) +(constraint (= (f "498-808-434") "498")) +(constraint (= (f "329-545-000") "329")) +(constraint (= (f "380-281-597") "380")) +(constraint (= (f "332-395-493") "332")) +(constraint (= (f "251-903-028") "251")) +(constraint (= (f "176-090-894") "176")) +(constraint (= (f "336-611-100") "336")) +(constraint (= (f "416-390-647") "416")) +(constraint (= (f "019-430-596") "019")) +(constraint (= (f "960-659-771") "960")) +(constraint (= (f "475-505-007") "475")) +(constraint (= (f "424-069-886") "424")) +(constraint (= (f "941-102-117") "941")) +(constraint (= (f "331-728-008") "331")) +(constraint (= (f "487-726-198") "487")) +(constraint (= (f "612-419-942") "612")) +(constraint (= (f "594-741-346") "594")) +(constraint (= (f "320-984-742") "320")) +(constraint (= (f "060-919-361") "060")) +(constraint (= (f "275-536-998") "275")) +(constraint (= (f "548-835-065") "548")) +(constraint (= (f "197-485-507") "197")) +(constraint (= (f "455-776-949") "455")) +(constraint (= (f "085-421-340") "085")) +(constraint (= (f "785-713-099") "785")) +(constraint (= (f "426-712-861") "426")) +(constraint (= (f "386-994-906") "386")) +(constraint (= (f "918-304-840") "918")) +(constraint (= (f "247-153-598") "247")) +(constraint (= (f "075-497-069") "075")) +(constraint (= (f "140-726-583") "140")) +(constraint (= (f "049-413-248") "049")) +(constraint (= (f "977-386-462") "977")) +(constraint (= (f "058-272-455") "058")) +(constraint (= (f "428-629-927") "428")) +(constraint (= (f "449-122-191") "449")) +(constraint (= (f "568-759-670") "568")) +(constraint (= (f "312-846-053") "312")) +(constraint (= (f "943-037-297") "943")) +(constraint (= (f "014-270-177") "014")) +(constraint (= (f "658-877-878") "658")) +(constraint (= (f "888-594-038") "888")) +(constraint (= (f "232-253-254") "232")) +(constraint (= (f "308-722-292") "308")) +(constraint (= (f "342-145-742") "342")) +(constraint (= (f "568-181-515") "568")) +(constraint (= (f "300-140-756") "300")) +(constraint (= (f "099-684-216") "099")) +(constraint (= (f "575-296-621") "575")) +(constraint (= (f "994-443-794") "994")) +(constraint (= (f "400-334-692") "400")) +(constraint (= (f "684-711-883") "684")) +(constraint (= (f "539-636-358") "539")) +(constraint (= (f "009-878-919") "009")) +(constraint (= (f "919-545-701") "919")) +(constraint (= (f "546-399-239") "546")) +(constraint (= (f "993-608-757") "993")) +(constraint (= (f "107-652-845") "107")) +(constraint (= (f "206-805-793") "206")) +(constraint (= (f "198-857-684") "198")) +(constraint (= (f "912-827-430") "912")) +(constraint (= (f "560-951-766") "560")) +(constraint (= (f "142-178-290") "142")) +(constraint (= (f "732-196-946") "732")) +(constraint (= (f "963-875-745") "963")) +(constraint (= (f "881-865-867") "881")) +(constraint (= (f "234-686-715") "234")) +(constraint (= (f "720-330-583") "720")) +(constraint (= (f "593-065-126") "593")) +(constraint (= (f "671-778-064") "671")) +(constraint (= (f "252-029-036") "252")) +(constraint (= (f "700-322-036") "700")) +(constraint (= (f "882-587-473") "882")) +(constraint (= (f "964-134-953") "964")) +(constraint (= (f "038-300-876") "038")) +(constraint (= (f "158-894-947") "158")) +(constraint (= (f "757-454-374") "757")) +(constraint (= (f "872-513-190") "872")) +(constraint (= (f "566-086-726") "566")) + +(check-synth) diff --git a/data/sygus/phone.sl b/data/sygus/phone.sl new file mode 100644 index 0000000000000000000000000000000000000000..2e757c9d85e349103749064bde749faba799df42 --- /dev/null +++ b/data/sygus/phone.sl @@ -0,0 +1,32 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 4 5 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "938-242-504") "938")) +(constraint (= (f "308-916-545") "308")) +(constraint (= (f "623-599-749") "623")) +(constraint (= (f "981-424-843") "981")) +(constraint (= (f "118-980-214") "118")) +(constraint (= (f "244-655-094") "244")) + +(check-synth) diff --git a/data/sygus/phone_short.sl b/data/sygus/phone_short.sl new file mode 100644 index 0000000000000000000000000000000000000000..28202756732680afa5aaca92cc720916a65fc541 --- /dev/null +++ b/data/sygus/phone_short.sl @@ -0,0 +1,30 @@ +(set-logic SLIA) + +(synth-fun f ((name String)) String + ((Start String (ntString)) + (ntString String (name " " + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 3 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var name String) + +(constraint (= (f "938-242-504") "938")) +(constraint (= (f "308-916-545") "308")) +(constraint (= (f "623-599-749") "623")) +(constraint (= (f "981-424-843") "981")) +(constraint (= (f "118-980-214") "118")) +(constraint (= (f "244-655-094") "244")) + +(check-synth) diff --git a/data/sygus/reverse-name-long-repeat.sl b/data/sygus/reverse-name-long-repeat.sl new file mode 100644 index 0000000000000000000000000000000000000000..0fb21fadab219fca0fd07bb754eaaf5a677484f9 --- /dev/null +++ b/data/sygus/reverse-name-long-repeat.sl @@ -0,0 +1,227 @@ +(set-logic SLIA) + +(synth-fun f ((firstname String) (lastname String)) String + ((Start String (ntString)) + (ntString String (firstname lastname " " + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var firstname String) +(declare-var lastname String) + +(constraint (= (f "Launa" "Withers") "Withers Launa")) +(constraint (= (f "Launa" "Withers") "Withers Launa")) +(constraint (= (f "Launa" "Withers") "Withers Launa")) +(constraint (= (f "Lakenya" "Edison") "Edison Lakenya")) +(constraint (= (f "Lakenya" "Edison") "Edison Lakenya")) +(constraint (= (f "Lakenya" "Edison") "Edison Lakenya")) +(constraint (= (f "Brendan" "Hage") "Hage Brendan")) +(constraint (= (f "Brendan" "Hage") "Hage Brendan")) +(constraint (= (f "Brendan" "Hage") "Hage Brendan")) +(constraint (= (f "Bradford" "Lango") "Lango Bradford")) +(constraint (= (f "Bradford" "Lango") "Lango Bradford")) +(constraint (= (f "Bradford" "Lango") "Lango Bradford")) +(constraint (= (f "Rudolf" "Akiyama") "Akiyama Rudolf")) +(constraint (= (f "Rudolf" "Akiyama") "Akiyama Rudolf")) +(constraint (= (f "Rudolf" "Akiyama") "Akiyama Rudolf")) +(constraint (= (f "Lara" "Constable") "Constable Lara")) +(constraint (= (f "Lara" "Constable") "Constable Lara")) +(constraint (= (f "Lara" "Constable") "Constable Lara")) +(constraint (= (f "Madelaine" "Ghoston") "Ghoston Madelaine")) +(constraint (= (f "Madelaine" "Ghoston") "Ghoston Madelaine")) +(constraint (= (f "Madelaine" "Ghoston") "Ghoston Madelaine")) +(constraint (= (f "Salley" "Hornak") "Hornak Salley")) +(constraint (= (f "Salley" "Hornak") "Hornak Salley")) +(constraint (= (f "Salley" "Hornak") "Hornak Salley")) +(constraint (= (f "Micha" "Junkin") "Junkin Micha")) +(constraint (= (f "Micha" "Junkin") "Junkin Micha")) +(constraint (= (f "Micha" "Junkin") "Junkin Micha")) +(constraint (= (f "Teddy" "Bobo") "Bobo Teddy")) +(constraint (= (f "Teddy" "Bobo") "Bobo Teddy")) +(constraint (= (f "Teddy" "Bobo") "Bobo Teddy")) +(constraint (= (f "Coralee" "Scalia") "Scalia Coralee")) +(constraint (= (f "Coralee" "Scalia") "Scalia Coralee")) +(constraint (= (f "Coralee" "Scalia") "Scalia Coralee")) +(constraint (= (f "Jeff" "Quashie") "Quashie Jeff")) +(constraint (= (f "Jeff" "Quashie") "Quashie Jeff")) +(constraint (= (f "Jeff" "Quashie") "Quashie Jeff")) +(constraint (= (f "Vena" "Babiarz") "Babiarz Vena")) +(constraint (= (f "Vena" "Babiarz") "Babiarz Vena")) +(constraint (= (f "Vena" "Babiarz") "Babiarz Vena")) +(constraint (= (f "Karrie" "Lain") "Lain Karrie")) +(constraint (= (f "Karrie" "Lain") "Lain Karrie")) +(constraint (= (f "Karrie" "Lain") "Lain Karrie")) +(constraint (= (f "Tobias" "Dermody") "Dermody Tobias")) +(constraint (= (f "Tobias" "Dermody") "Dermody Tobias")) +(constraint (= (f "Tobias" "Dermody") "Dermody Tobias")) +(constraint (= (f "Celsa" "Hopkins") "Hopkins Celsa")) +(constraint (= (f "Celsa" "Hopkins") "Hopkins Celsa")) +(constraint (= (f "Celsa" "Hopkins") "Hopkins Celsa")) +(constraint (= (f "Kimberley" "Halpern") "Halpern Kimberley")) +(constraint (= (f "Kimberley" "Halpern") "Halpern Kimberley")) +(constraint (= (f "Kimberley" "Halpern") "Halpern Kimberley")) +(constraint (= (f "Phillip" "Rowden") "Rowden Phillip")) +(constraint (= (f "Phillip" "Rowden") "Rowden Phillip")) +(constraint (= (f "Phillip" "Rowden") "Rowden Phillip")) +(constraint (= (f "Elias" "Neil") "Neil Elias")) +(constraint (= (f "Elias" "Neil") "Neil Elias")) +(constraint (= (f "Elias" "Neil") "Neil Elias")) +(constraint (= (f "Lashanda" "Cortes") "Cortes Lashanda")) +(constraint (= (f "Lashanda" "Cortes") "Cortes Lashanda")) +(constraint (= (f "Lashanda" "Cortes") "Cortes Lashanda")) +(constraint (= (f "Mackenzie" "Spell") "Spell Mackenzie")) +(constraint (= (f "Mackenzie" "Spell") "Spell Mackenzie")) +(constraint (= (f "Mackenzie" "Spell") "Spell Mackenzie")) +(constraint (= (f "Kathlyn" "Eccleston") "Eccleston Kathlyn")) +(constraint (= (f "Kathlyn" "Eccleston") "Eccleston Kathlyn")) +(constraint (= (f "Kathlyn" "Eccleston") "Eccleston Kathlyn")) +(constraint (= (f "Georgina" "Brescia") "Brescia Georgina")) +(constraint (= (f "Georgina" "Brescia") "Brescia Georgina")) +(constraint (= (f "Georgina" "Brescia") "Brescia Georgina")) +(constraint (= (f "Beata" "Miah") "Miah Beata")) +(constraint (= (f "Beata" "Miah") "Miah Beata")) +(constraint (= (f "Beata" "Miah") "Miah Beata")) +(constraint (= (f "Desiree" "Seamons") "Seamons Desiree")) +(constraint (= (f "Desiree" "Seamons") "Seamons Desiree")) +(constraint (= (f "Desiree" "Seamons") "Seamons Desiree")) +(constraint (= (f "Jeanice" "Soderstrom") "Soderstrom Jeanice")) +(constraint (= (f "Jeanice" "Soderstrom") "Soderstrom Jeanice")) +(constraint (= (f "Jeanice" "Soderstrom") "Soderstrom Jeanice")) +(constraint (= (f "Mariel" "Jurgens") "Jurgens Mariel")) +(constraint (= (f "Mariel" "Jurgens") "Jurgens Mariel")) +(constraint (= (f "Mariel" "Jurgens") "Jurgens Mariel")) +(constraint (= (f "Alida" "Bogle") "Bogle Alida")) +(constraint (= (f "Alida" "Bogle") "Bogle Alida")) +(constraint (= (f "Alida" "Bogle") "Bogle Alida")) +(constraint (= (f "Jacqualine" "Olague") "Olague Jacqualine")) +(constraint (= (f "Jacqualine" "Olague") "Olague Jacqualine")) +(constraint (= (f "Jacqualine" "Olague") "Olague Jacqualine")) +(constraint (= (f "Joaquin" "Clasen") "Clasen Joaquin")) +(constraint (= (f "Joaquin" "Clasen") "Clasen Joaquin")) +(constraint (= (f "Joaquin" "Clasen") "Clasen Joaquin")) +(constraint (= (f "Samuel" "Richert") "Richert Samuel")) +(constraint (= (f "Samuel" "Richert") "Richert Samuel")) +(constraint (= (f "Samuel" "Richert") "Richert Samuel")) +(constraint (= (f "Malissa" "Marcus") "Marcus Malissa")) +(constraint (= (f "Malissa" "Marcus") "Marcus Malissa")) +(constraint (= (f "Malissa" "Marcus") "Marcus Malissa")) +(constraint (= (f "Alaina" "Partida") "Partida Alaina")) +(constraint (= (f "Alaina" "Partida") "Partida Alaina")) +(constraint (= (f "Alaina" "Partida") "Partida Alaina")) +(constraint (= (f "Trinidad" "Mulloy") "Mulloy Trinidad")) +(constraint (= (f "Trinidad" "Mulloy") "Mulloy Trinidad")) +(constraint (= (f "Trinidad" "Mulloy") "Mulloy Trinidad")) +(constraint (= (f "Carlene" "Garrard") "Garrard Carlene")) +(constraint (= (f "Carlene" "Garrard") "Garrard Carlene")) +(constraint (= (f "Carlene" "Garrard") "Garrard Carlene")) +(constraint (= (f "Melodi" "Chism") "Chism Melodi")) +(constraint (= (f "Melodi" "Chism") "Chism Melodi")) +(constraint (= (f "Melodi" "Chism") "Chism Melodi")) +(constraint (= (f "Bess" "Chilcott") "Chilcott Bess")) +(constraint (= (f "Bess" "Chilcott") "Chilcott Bess")) +(constraint (= (f "Bess" "Chilcott") "Chilcott Bess")) +(constraint (= (f "Chong" "Aylward") "Aylward Chong")) +(constraint (= (f "Chong" "Aylward") "Aylward Chong")) +(constraint (= (f "Chong" "Aylward") "Aylward Chong")) +(constraint (= (f "Jani" "Ramthun") "Ramthun Jani")) +(constraint (= (f "Jani" "Ramthun") "Ramthun Jani")) +(constraint (= (f "Jani" "Ramthun") "Ramthun Jani")) +(constraint (= (f "Jacquiline" "Heintz") "Heintz Jacquiline")) +(constraint (= (f "Jacquiline" "Heintz") "Heintz Jacquiline")) +(constraint (= (f "Jacquiline" "Heintz") "Heintz Jacquiline")) +(constraint (= (f "Hayley" "Marquess") "Marquess Hayley")) +(constraint (= (f "Hayley" "Marquess") "Marquess Hayley")) +(constraint (= (f "Hayley" "Marquess") "Marquess Hayley")) +(constraint (= (f "Andria" "Spagnoli") "Spagnoli Andria")) +(constraint (= (f "Andria" "Spagnoli") "Spagnoli Andria")) +(constraint (= (f "Andria" "Spagnoli") "Spagnoli Andria")) +(constraint (= (f "Irwin" "Covelli") "Covelli Irwin")) +(constraint (= (f "Irwin" "Covelli") "Covelli Irwin")) +(constraint (= (f "Irwin" "Covelli") "Covelli Irwin")) +(constraint (= (f "Gertude" "Montiel") "Montiel Gertude")) +(constraint (= (f "Gertude" "Montiel") "Montiel Gertude")) +(constraint (= (f "Gertude" "Montiel") "Montiel Gertude")) +(constraint (= (f "Stefany" "Reily") "Reily Stefany")) +(constraint (= (f "Stefany" "Reily") "Reily Stefany")) +(constraint (= (f "Stefany" "Reily") "Reily Stefany")) +(constraint (= (f "Rae" "Mcgaughey") "Mcgaughey Rae")) +(constraint (= (f "Rae" "Mcgaughey") "Mcgaughey Rae")) +(constraint (= (f "Rae" "Mcgaughey") "Mcgaughey Rae")) +(constraint (= (f "Cruz" "Latimore") "Latimore Cruz")) +(constraint (= (f "Cruz" "Latimore") "Latimore Cruz")) +(constraint (= (f "Cruz" "Latimore") "Latimore Cruz")) +(constraint (= (f "Maryann" "Casler") "Casler Maryann")) +(constraint (= (f "Maryann" "Casler") "Casler Maryann")) +(constraint (= (f "Maryann" "Casler") "Casler Maryann")) +(constraint (= (f "Annalisa" "Gregori") "Gregori Annalisa")) +(constraint (= (f "Annalisa" "Gregori") "Gregori Annalisa")) +(constraint (= (f "Annalisa" "Gregori") "Gregori Annalisa")) +(constraint (= (f "Jenee" "Pannell") "Pannell Jenee")) +(constraint (= (f "Jenee" "Pannell") "Pannell Jenee")) +(constraint (= (f "Jenee" "Pannell") "Pannell Jenee")) +(constraint (= (f "Launa" "Withers") "Withers Launa")) +(constraint (= (f "Lakenya" "Edison") "Edison Lakenya")) +(constraint (= (f "Brendan" "Hage") "Hage Brendan")) +(constraint (= (f "Bradford" "Lango") "Lango Bradford")) +(constraint (= (f "Rudolf" "Akiyama") "Akiyama Rudolf")) +(constraint (= (f "Lara" "Constable") "Constable Lara")) +(constraint (= (f "Madelaine" "Ghoston") "Ghoston Madelaine")) +(constraint (= (f "Salley" "Hornak") "Hornak Salley")) +(constraint (= (f "Micha" "Junkin") "Junkin Micha")) +(constraint (= (f "Teddy" "Bobo") "Bobo Teddy")) +(constraint (= (f "Coralee" "Scalia") "Scalia Coralee")) +(constraint (= (f "Jeff" "Quashie") "Quashie Jeff")) +(constraint (= (f "Vena" "Babiarz") "Babiarz Vena")) +(constraint (= (f "Karrie" "Lain") "Lain Karrie")) +(constraint (= (f "Tobias" "Dermody") "Dermody Tobias")) +(constraint (= (f "Celsa" "Hopkins") "Hopkins Celsa")) +(constraint (= (f "Kimberley" "Halpern") "Halpern Kimberley")) +(constraint (= (f "Phillip" "Rowden") "Rowden Phillip")) +(constraint (= (f "Elias" "Neil") "Neil Elias")) +(constraint (= (f "Lashanda" "Cortes") "Cortes Lashanda")) +(constraint (= (f "Mackenzie" "Spell") "Spell Mackenzie")) +(constraint (= (f "Kathlyn" "Eccleston") "Eccleston Kathlyn")) +(constraint (= (f "Georgina" "Brescia") "Brescia Georgina")) +(constraint (= (f "Beata" "Miah") "Miah Beata")) +(constraint (= (f "Desiree" "Seamons") "Seamons Desiree")) +(constraint (= (f "Jeanice" "Soderstrom") "Soderstrom Jeanice")) +(constraint (= (f "Mariel" "Jurgens") "Jurgens Mariel")) +(constraint (= (f "Alida" "Bogle") "Bogle Alida")) +(constraint (= (f "Jacqualine" "Olague") "Olague Jacqualine")) +(constraint (= (f "Joaquin" "Clasen") "Clasen Joaquin")) +(constraint (= (f "Samuel" "Richert") "Richert Samuel")) +(constraint (= (f "Malissa" "Marcus") "Marcus Malissa")) +(constraint (= (f "Alaina" "Partida") "Partida Alaina")) +(constraint (= (f "Trinidad" "Mulloy") "Mulloy Trinidad")) +(constraint (= (f "Carlene" "Garrard") "Garrard Carlene")) +(constraint (= (f "Melodi" "Chism") "Chism Melodi")) +(constraint (= (f "Bess" "Chilcott") "Chilcott Bess")) +(constraint (= (f "Chong" "Aylward") "Aylward Chong")) +(constraint (= (f "Jani" "Ramthun") "Ramthun Jani")) +(constraint (= (f "Jacquiline" "Heintz") "Heintz Jacquiline")) +(constraint (= (f "Hayley" "Marquess") "Marquess Hayley")) +(constraint (= (f "Andria" "Spagnoli") "Spagnoli Andria")) +(constraint (= (f "Irwin" "Covelli") "Covelli Irwin")) +(constraint (= (f "Gertude" "Montiel") "Montiel Gertude")) +(constraint (= (f "Stefany" "Reily") "Reily Stefany")) +(constraint (= (f "Rae" "Mcgaughey") "Mcgaughey Rae")) +(constraint (= (f "Cruz" "Latimore") "Latimore Cruz")) +(constraint (= (f "Maryann" "Casler") "Casler Maryann")) +(constraint (= (f "Annalisa" "Gregori") "Gregori Annalisa")) +(constraint (= (f "Jenee" "Pannell") "Pannell Jenee")) + +(check-synth) diff --git a/data/sygus/reverse-name-long.sl b/data/sygus/reverse-name-long.sl new file mode 100644 index 0000000000000000000000000000000000000000..6c9885b00e83c2621519eb7012ccb356126c6e44 --- /dev/null +++ b/data/sygus/reverse-name-long.sl @@ -0,0 +1,77 @@ +(set-logic SLIA) + +(synth-fun f ((firstname String) (lastname String)) String + ((Start String (ntString)) + (ntString String (firstname lastname " " + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var firstname String) +(declare-var lastname String) + +(constraint (= (f "Launa" "Withers") "Withers Launa")) +(constraint (= (f "Lakenya" "Edison") "Edison Lakenya")) +(constraint (= (f "Brendan" "Hage") "Hage Brendan")) +(constraint (= (f "Bradford" "Lango") "Lango Bradford")) +(constraint (= (f "Rudolf" "Akiyama") "Akiyama Rudolf")) +(constraint (= (f "Lara" "Constable") "Constable Lara")) +(constraint (= (f "Madelaine" "Ghoston") "Ghoston Madelaine")) +(constraint (= (f "Salley" "Hornak") "Hornak Salley")) +(constraint (= (f "Micha" "Junkin") "Junkin Micha")) +(constraint (= (f "Teddy" "Bobo") "Bobo Teddy")) +(constraint (= (f "Coralee" "Scalia") "Scalia Coralee")) +(constraint (= (f "Jeff" "Quashie") "Quashie Jeff")) +(constraint (= (f "Vena" "Babiarz") "Babiarz Vena")) +(constraint (= (f "Karrie" "Lain") "Lain Karrie")) +(constraint (= (f "Tobias" "Dermody") "Dermody Tobias")) +(constraint (= (f "Celsa" "Hopkins") "Hopkins Celsa")) +(constraint (= (f "Kimberley" "Halpern") "Halpern Kimberley")) +(constraint (= (f "Phillip" "Rowden") "Rowden Phillip")) +(constraint (= (f "Elias" "Neil") "Neil Elias")) +(constraint (= (f "Lashanda" "Cortes") "Cortes Lashanda")) +(constraint (= (f "Mackenzie" "Spell") "Spell Mackenzie")) +(constraint (= (f "Kathlyn" "Eccleston") "Eccleston Kathlyn")) +(constraint (= (f "Georgina" "Brescia") "Brescia Georgina")) +(constraint (= (f "Beata" "Miah") "Miah Beata")) +(constraint (= (f "Desiree" "Seamons") "Seamons Desiree")) +(constraint (= (f "Jeanice" "Soderstrom") "Soderstrom Jeanice")) +(constraint (= (f "Mariel" "Jurgens") "Jurgens Mariel")) +(constraint (= (f "Alida" "Bogle") "Bogle Alida")) +(constraint (= (f "Jacqualine" "Olague") "Olague Jacqualine")) +(constraint (= (f "Joaquin" "Clasen") "Clasen Joaquin")) +(constraint (= (f "Samuel" "Richert") "Richert Samuel")) +(constraint (= (f "Malissa" "Marcus") "Marcus Malissa")) +(constraint (= (f "Alaina" "Partida") "Partida Alaina")) +(constraint (= (f "Trinidad" "Mulloy") "Mulloy Trinidad")) +(constraint (= (f "Carlene" "Garrard") "Garrard Carlene")) +(constraint (= (f "Melodi" "Chism") "Chism Melodi")) +(constraint (= (f "Bess" "Chilcott") "Chilcott Bess")) +(constraint (= (f "Chong" "Aylward") "Aylward Chong")) +(constraint (= (f "Jani" "Ramthun") "Ramthun Jani")) +(constraint (= (f "Jacquiline" "Heintz") "Heintz Jacquiline")) +(constraint (= (f "Hayley" "Marquess") "Marquess Hayley")) +(constraint (= (f "Andria" "Spagnoli") "Spagnoli Andria")) +(constraint (= (f "Irwin" "Covelli") "Covelli Irwin")) +(constraint (= (f "Gertude" "Montiel") "Montiel Gertude")) +(constraint (= (f "Stefany" "Reily") "Reily Stefany")) +(constraint (= (f "Rae" "Mcgaughey") "Mcgaughey Rae")) +(constraint (= (f "Cruz" "Latimore") "Latimore Cruz")) +(constraint (= (f "Maryann" "Casler") "Casler Maryann")) +(constraint (= (f "Annalisa" "Gregori") "Gregori Annalisa")) +(constraint (= (f "Jenee" "Pannell") "Pannell Jenee")) + +(check-synth) diff --git a/data/sygus/reverse-name.sl b/data/sygus/reverse-name.sl new file mode 100644 index 0000000000000000000000000000000000000000..015131e076e00c63e41ff4a89591375ca495c77e --- /dev/null +++ b/data/sygus/reverse-name.sl @@ -0,0 +1,33 @@ +(set-logic SLIA) + +(synth-fun f ((firstname String) (lastname String)) String + ((Start String (ntString)) + (ntString String (firstname lastname " " + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var firstname String) +(declare-var lastname String) + +(constraint (= (f "Launa" "Withers") "Withers Launa")) +(constraint (= (f "Lakenya" "Edison") "Edison Lakenya")) +(constraint (= (f "Brendan" "Hage") "Hage Brendan")) +(constraint (= (f "Bradford" "Lango") "Lango Bradford")) +(constraint (= (f "Rudolf" "Akiyama") "Akiyama Rudolf")) +(constraint (= (f "Lara" "Constable") "Constable Lara")) + +(check-synth) diff --git a/data/sygus/reverse-name_short.sl b/data/sygus/reverse-name_short.sl new file mode 100644 index 0000000000000000000000000000000000000000..1a6f157870799cd244172e3dedb824dd139aeb74 --- /dev/null +++ b/data/sygus/reverse-name_short.sl @@ -0,0 +1,32 @@ +(set-logic SLIA) + +(synth-fun f ((firstname String) (lastname String)) String + ((Start String (ntString)) + (ntString String (firstname lastname " " + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var firstname String) +(declare-var lastname String) + + +(constraint (= (f "Launa" "Withers") "Withers Launa")) +(constraint (= (f "Lakenya" "Edison") "Edison Lakenya")) +(constraint (= (f "Brendan" "Hage") "Hage Brendan")) +(constraint (= (f "Bradford" "Lango") "Lango Bradford")) +(constraint (= (f "Rudolf" "Akiyama") "Akiyama Rudolf")) +(constraint (= (f "Lara" "Constable") "Constable Lara")) + +(check-synth) diff --git a/data/sygus/univ_1-long-repeat.sl b/data/sygus/univ_1-long-repeat.sl new file mode 100644 index 0000000000000000000000000000000000000000..da777a02a84e08c00d2ad94cb5aa021e5abdc073 --- /dev/null +++ b/data/sygus/univ_1-long-repeat.sl @@ -0,0 +1,117 @@ +(set-logic SLIA) + +(synth-fun f ((col1 String) (col2 String)) String + ((Start String (ntString)) + (ntString String (col1 col2 " " "," + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var col1 String) +(declare-var col2 String) + +(constraint (= (f "UC Berkeley" "Berkeley, CA") + "UC Berkeley, Berkeley, CA")) + +(constraint (= (f "University of Pennsylvania" "Phialdelphia, PA, USA") + "University of Pennsylvania, Phialdelphia, PA, USA")) + +(constraint (= (f "UCLA" "Los Angeles, CA") + "UCLA, Los Angeles, CA")) + +(constraint (= (f "Cornell University" "Ithaca, New York, USA") + "Cornell University, Ithaca, New York, USA")) + +(constraint (= (f "Penn" "Philadelphia, PA, USA") + "Penn, Philadelphia, PA, USA")) + +(constraint (= (f "University of Michigan" "Ann Arbor, MI, USA") + "University of Michigan, Ann Arbor, MI, USA")) + +(constraint (= (f "UC Berkeley" "Berkeley, CA") + "UC Berkeley, Berkeley, CA")) + +(constraint (= (f "MIT" "Cambridge, MA") + "MIT, Cambridge, MA")) + +(constraint (= (f "University of Pennsylvania" "Phialdelphia, PA, USA") + "University of Pennsylvania, Phialdelphia, PA, USA")) + +(constraint (= (f "UCLA" "Los Angeles, CA") + "UCLA, Los Angeles, CA")) + +(constraint (= (f "University of Maryland College Park" "College Park, MD") + "University of Maryland College Park, College Park, MD")) + +(constraint (= (f "University of Michigan" "Ann Arbor, MI, USA") + "University of Michigan, Ann Arbor, MI, USA")) + +(constraint (= (f "UC Berkeley" "Berkeley, CA") + "UC Berkeley, Berkeley, CA")) + +(constraint (= (f "MIT" "Cambridge, MA") + "MIT, Cambridge, MA")) + +(constraint (= (f "Rice University" "Houston, TX") + "Rice University, Houston, TX")) + +(constraint (= (f "Yale University" "New Haven, CT, USA") + "Yale University, New Haven, CT, USA")) + +(constraint (= (f "Columbia University" "New York, NY, USA") + "Columbia University, New York, NY, USA")) + +(constraint (= (f "NYU" "New York, New York, USA") + "NYU, New York, New York, USA")) + +(constraint (= (f "Drexel University" "Philadelphia, PA") + "Drexel University, Philadelphia, PA")) + +(constraint (= (f "UC Berkeley" "Berkeley, CA") + "UC Berkeley, Berkeley, CA")) + +(constraint (= (f "UIUC" "Urbana, IL") + "UIUC, Urbana, IL")) + +(constraint (= (f "Temple University" "Philadelphia, PA") + "Temple University, Philadelphia, PA")) + +(constraint (= (f "Harvard University" "Cambridge, MA, USA") + "Harvard University, Cambridge, MA, USA")) + +(constraint (= (f "University of Connecticut" "Storrs, CT, USA") + "University of Connecticut, Storrs, CT, USA")) + +(constraint (= (f "Drexel University" "Philadelphia, PA") + "Drexel University, Philadelphia, PA")) + +(constraint (= (f "NYU" "New York, New York, USA") + "NYU, New York, New York, USA")) + +(constraint (= (f "UIUC" "Urbana, IL") + "UIUC, Urbana, IL")) + +(constraint (= (f "New Haven University" "New Haven, CT, USA") + "New Haven University, New Haven, CT, USA")) + +(constraint (= (f "University of California, Santa Barbara" "Santa Barbara, CA, USA") + "University of California, Santa Barbara, Santa Barbara, CA, USA")) + +(constraint (= (f "University of Connecticut" "Storrs, CT, USA") + "University of Connecticut, Storrs, CT, USA")) + + +(check-synth) diff --git a/data/sygus/univ_1-long.sl b/data/sygus/univ_1-long.sl new file mode 100644 index 0000000000000000000000000000000000000000..8a08df8001c1be04afaf96038e52a70d0e8dbd4e --- /dev/null +++ b/data/sygus/univ_1-long.sl @@ -0,0 +1,87 @@ +(set-logic SLIA) + +(synth-fun f ((col1 String) (col2 String)) String + ((Start String (ntString)) + (ntString String (col1 col2 " " "," + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var col1 String) +(declare-var col2 String) + +(constraint (= (f "University of Pennsylvania" "Phialdelphia, PA, USA") + "University of Pennsylvania, Phialdelphia, PA, USA")) + +(constraint (= (f "UCLA" "Los Angeles, CA") + "UCLA, Los Angeles, CA")) + +(constraint (= (f "Cornell University" "Ithaca, New York, USA") + "Cornell University, Ithaca, New York, USA")) + +(constraint (= (f "Penn" "Philadelphia, PA, USA") + "Penn, Philadelphia, PA, USA")) + +(constraint (= (f "University of Maryland College Park" "College Park, MD") + "University of Maryland College Park, College Park, MD")) + +(constraint (= (f "University of Michigan" "Ann Arbor, MI, USA") + "University of Michigan, Ann Arbor, MI, USA")) + +(constraint (= (f "UC Berkeley" "Berkeley, CA") + "UC Berkeley, Berkeley, CA")) + +(constraint (= (f "MIT" "Cambridge, MA") + "MIT, Cambridge, MA")) + +(constraint (= (f "Rice University" "Houston, TX") + "Rice University, Houston, TX")) + +(constraint (= (f "Yale University" "New Haven, CT, USA") + "Yale University, New Haven, CT, USA")) + +(constraint (= (f "Columbia University" "New York, NY, USA") + "Columbia University, New York, NY, USA")) + +(constraint (= (f "NYU" "New York, New York, USA") + "NYU, New York, New York, USA")) + +(constraint (= (f "UC Berkeley" "Berkeley, CA") + "UC Berkeley, Berkeley, CA")) + +(constraint (= (f "UIUC" "Urbana, IL") + "UIUC, Urbana, IL")) + +(constraint (= (f "Temple University" "Philadelphia, PA") + "Temple University, Philadelphia, PA")) + +(constraint (= (f "Harvard University" "Cambridge, MA, USA") + "Harvard University, Cambridge, MA, USA")) + +(constraint (= (f "University of Connecticut" "Storrs, CT, USA") + "University of Connecticut, Storrs, CT, USA")) + +(constraint (= (f "Drexel University" "Philadelphia, PA") + "Drexel University, Philadelphia, PA")) + +(constraint (= (f "New Haven University" "New Haven, CT, USA") + "New Haven University, New Haven, CT, USA")) + +(constraint (= (f "University of California, Santa Barbara" "Santa Barbara, CA, USA") + "University of California, Santa Barbara, Santa Barbara, CA, USA")) + + +(check-synth) diff --git a/data/sygus/univ_1.sl b/data/sygus/univ_1.sl new file mode 100644 index 0000000000000000000000000000000000000000..07c3e5abf1c8ff15ed41e723ee600dea295c5733 --- /dev/null +++ b/data/sygus/univ_1.sl @@ -0,0 +1,44 @@ +(set-logic SLIA) + +(synth-fun f ((col1 String) (col2 String)) String + ((Start String (ntString)) + (ntString String (col1 col2 " " "," + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var col1 String) +(declare-var col2 String) + +(constraint (= (f "University of Pennsylvania" "Phialdelphia, PA, USA") + "University of Pennsylvania, Phialdelphia, PA, USA")) + +(constraint (= (f "Cornell University" "Ithaca, New York, USA") + "Cornell University, Ithaca, New York, USA")) + +(constraint (= (f "University of Maryland College Park" "College Park, MD") + "University of Maryland College Park, College Park, MD")) + +(constraint (= (f "University of Michigan" "Ann Arbor, MI, USA") + "University of Michigan, Ann Arbor, MI, USA")) + +(constraint (= (f "Yale University" "New Haven, CT, USA") + "Yale University, New Haven, CT, USA")) + +(constraint (= (f "Columbia University" "New York, NY, USA") + "Columbia University, New York, NY, USA")) + +(check-synth) diff --git a/data/sygus/univ_1_short.sl b/data/sygus/univ_1_short.sl new file mode 100644 index 0000000000000000000000000000000000000000..87e2a30fac789b2751472c3e38916db7c1d451e1 --- /dev/null +++ b/data/sygus/univ_1_short.sl @@ -0,0 +1,41 @@ +(set-logic SLIA) + +(synth-fun f ((col1 String) (col2 String)) String + ((Start String (ntString)) + (ntString String (col1 col2 " " "," + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString))))) + + +(declare-var col1 String) +(declare-var col2 String) + +(constraint (= (f "University of Pennsylvania" "Phialdelphia, PA, USA") + "University of Pennsylvania, Phialdelphia, PA, USA")) + +(constraint (= (f "Cornell University" "Ithaca, New York, USA") + "Cornell University, Ithaca, New York, USA")) + +(constraint (= (f "University of Maryland College Park" "College Park, MD") + "University of Maryland College Park, College Park, MD")) + +(constraint (= (f "University of Michigan" "Ann Arbor, MI, USA") + "University of Michigan, Ann Arbor, MI, USA")) + +(constraint (= (f "Yale University" "New Haven, CT, USA") + "Yale University, New Haven, CT, USA")) + +(constraint (= (f "Columbia University" "New York, NY, USA") + "Columbia University, New York, NY, USA")) + +(check-synth) diff --git a/data/sygus/univ_2-long-repeat.sl b/data/sygus/univ_2-long-repeat.sl new file mode 100644 index 0000000000000000000000000000000000000000..4bec54aa7a9e7c4794538824ba59bb7352ecc381 --- /dev/null +++ b/data/sygus/univ_2-long-repeat.sl @@ -0,0 +1,118 @@ +(set-logic SLIA) + +(synth-fun f ((col1 String) (col2 String)) String + ((Start String (ntString)) + (ntString String (col1 col2 " " "," "USA" "PA" "CT" "CA" "MD" "NY" + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (ite ntBool ntString ntString) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var col1 String) +(declare-var col2 String) + +(constraint (= (f "UC Berkeley" "Berkeley, CA") + "UC Berkeley, Berkeley, CA, USA")) + +(constraint (= (f "University of Pennsylvania" "Phialdelphia, PA, USA") + "University of Pennsylvania, Phialdelphia, PA, USA")) + +(constraint (= (f "UCLA" "Los Angeles, CA") + "UCLA, Los Angeles, CA, USA")) + +(constraint (= (f "Cornell University" "Ithaca, New York, USA") + "Cornell University, Ithaca, New York, USA")) + +(constraint (= (f "Penn" "Philadelphia, PA, USA") + "Penn, Philadelphia, PA, USA")) + +(constraint (= (f "University of Michigan" "Ann Arbor, MI, USA") + "University of Michigan, Ann Arbor, MI, USA")) + +(constraint (= (f "UC Berkeley" "Berkeley, CA") + "UC Berkeley, Berkeley, CA, USA")) + +(constraint (= (f "MIT" "Cambridge, MA") + "MIT, Cambridge, MA, USA")) + +(constraint (= (f "University of Pennsylvania" "Phialdelphia, PA, USA") + "University of Pennsylvania, Phialdelphia, PA, USA")) + +(constraint (= (f "UCLA" "Los Angeles, CA") + "UCLA, Los Angeles, CA, USA")) + +(constraint (= (f "University of Maryland College Park" "College Park, MD") + "University of Maryland College Park, College Park, MD, USA")) + +(constraint (= (f "University of Michigan" "Ann Arbor, MI, USA") + "University of Michigan, Ann Arbor, MI, USA")) + +(constraint (= (f "UC Berkeley" "Berkeley, CA") + "UC Berkeley, Berkeley, CA, USA")) + +(constraint (= (f "MIT" "Cambridge, MA") + "MIT, Cambridge, MA, USA")) + +(constraint (= (f "Rice University" "Houston, TX") + "Rice University, Houston, TX, USA")) + +(constraint (= (f "Yale University" "New Haven, CT, USA") + "Yale University, New Haven, CT, USA")) + +(constraint (= (f "Columbia University" "New York, NY, USA") + "Columbia University, New York, NY, USA")) + +(constraint (= (f "NYU" "New York, New York, USA") + "NYU, New York, New York, USA")) + +(constraint (= (f "Drexel University" "Philadelphia, PA") + "Drexel University, Philadelphia, PA, USA")) + +(constraint (= (f "UC Berkeley" "Berkeley, CA") + "UC Berkeley, Berkeley, CA, USA")) + +(constraint (= (f "UIUC" "Urbana, IL") + "UIUC, Urbana, IL, USA")) + +(constraint (= (f "Temple University" "Philadelphia, PA") + "Temple University, Philadelphia, PA, USA")) + +(constraint (= (f "Harvard University" "Cambridge, MA, USA") + "Harvard University, Cambridge, MA, USA")) + +(constraint (= (f "University of Connecticut" "Storrs, CT, USA") + "University of Connecticut, Storrs, CT, USA")) + +(constraint (= (f "Drexel University" "Philadelphia, PA") + "Drexel University, Philadelphia, PA, USA")) + +(constraint (= (f "NYU" "New York, New York, USA") + "NYU, New York, New York, USA")) + +(constraint (= (f "UIUC" "Urbana, IL") + "UIUC, Urbana, IL, USA")) + +(constraint (= (f "New Haven University" "New Haven, CT, USA") + "New Haven University, New Haven, CT, USA")) + +(constraint (= (f "University of California, Santa Barbara" "Santa Barbara, CA, USA") + "University of California, Santa Barbara, Santa Barbara, CA, USA")) + +(constraint (= (f "University of Connecticut" "Storrs, CT, USA") + "University of Connecticut, Storrs, CT, USA")) + + +(check-synth) diff --git a/data/sygus/univ_2-long.sl b/data/sygus/univ_2-long.sl new file mode 100644 index 0000000000000000000000000000000000000000..f024322f411d04fa6a49cbf4298b17989f904c90 --- /dev/null +++ b/data/sygus/univ_2-long.sl @@ -0,0 +1,88 @@ +(set-logic SLIA) + +(synth-fun f ((col1 String) (col2 String)) String + ((Start String (ntString)) + (ntString String (col1 col2 " " "," "USA" "PA" "CT" "CA" "MD" "NY" + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (ite ntBool ntString ntString) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var col1 String) +(declare-var col2 String) + +(constraint (= (f "University of Pennsylvania" "Phialdelphia, PA, USA") + "University of Pennsylvania, Phialdelphia, PA, USA")) + +(constraint (= (f "UCLA" "Los Angeles, CA") + "UCLA, Los Angeles, CA, USA")) + +(constraint (= (f "Cornell University" "Ithaca, New York, USA") + "Cornell University, Ithaca, New York, USA")) + +(constraint (= (f "Penn" "Philadelphia, PA, USA") + "Penn, Philadelphia, PA, USA")) + +(constraint (= (f "University of Maryland College Park" "College Park, MD") + "University of Maryland College Park, College Park, MD, USA")) + +(constraint (= (f "University of Michigan" "Ann Arbor, MI, USA") + "University of Michigan, Ann Arbor, MI, USA")) + +(constraint (= (f "UC Berkeley" "Berkeley, CA") + "UC Berkeley, Berkeley, CA, USA")) + +(constraint (= (f "MIT" "Cambridge, MA") + "MIT, Cambridge, MA, USA")) + +(constraint (= (f "Rice University" "Houston, TX") + "Rice University, Houston, TX, USA")) + +(constraint (= (f "Yale University" "New Haven, CT, USA") + "Yale University, New Haven, CT, USA")) + +(constraint (= (f "Columbia University" "New York, NY, USA") + "Columbia University, New York, NY, USA")) + +(constraint (= (f "NYU" "New York, New York, USA") + "NYU, New York, New York, USA")) + +(constraint (= (f "UC Berkeley" "Berkeley, CA") + "UC Berkeley, Berkeley, CA, USA")) + +(constraint (= (f "UIUC" "Urbana, IL") + "UIUC, Urbana, IL, USA")) + +(constraint (= (f "Temple University" "Philadelphia, PA") + "Temple University, Philadelphia, PA, USA")) + +(constraint (= (f "Harvard University" "Cambridge, MA, USA") + "Harvard University, Cambridge, MA, USA")) + +(constraint (= (f "University of Connecticut" "Storrs, CT, USA") + "University of Connecticut, Storrs, CT, USA")) + +(constraint (= (f "Drexel University" "Philadelphia, PA") + "Drexel University, Philadelphia, PA, USA")) + +(constraint (= (f "New Haven University" "New Haven, CT, USA") + "New Haven University, New Haven, CT, USA")) + +(constraint (= (f "University of California, Santa Barbara" "Santa Barbara, CA, USA") + "University of California, Santa Barbara, Santa Barbara, CA, USA")) + + +(check-synth) diff --git a/data/sygus/univ_2.sl b/data/sygus/univ_2.sl new file mode 100644 index 0000000000000000000000000000000000000000..ef38a68e4e112b0890b5f437b09f614aa4e65196 --- /dev/null +++ b/data/sygus/univ_2.sl @@ -0,0 +1,47 @@ +(set-logic SLIA) + +(synth-fun f ((col1 String) (col2 String)) String + ((Start String (ntString)) + (ntString String (col1 col2 " " "," "USA" "PA" "CT" "CA" "MD" "NY" + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (ite ntBool ntString ntString) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var col1 String) +(declare-var col2 String) + +(constraint (= (f "University of Pennsylvania" "Phialdelphia, PA, USA") + "University of Pennsylvania, Phialdelphia, PA, USA")) + +(constraint (= (f "UCLA" "Los Angeles, CA") + "UCLA, Los Angeles, CA, USA")) + +(constraint (= (f "Cornell University" "Ithaca, New York, USA") + "Cornell University, Ithaca, New York, USA")) + +(constraint (= (f "Penn" "Philadelphia, PA, USA") + "Penn, Philadelphia, PA, USA")) + +(constraint (= (f "University of Maryland College Park" "College Park, MD") + "University of Maryland College Park, College Park, MD, USA")) + +(constraint (= (f "University of Michigan" "Ann Arbor, MI, USA") + "University of Michigan, Ann Arbor, MI, USA")) + + + +(check-synth) diff --git a/data/sygus/univ_2_short.sl b/data/sygus/univ_2_short.sl new file mode 100644 index 0000000000000000000000000000000000000000..4ed2268dbe805dbb78fc5a7be364bd39a8aa1b24 --- /dev/null +++ b/data/sygus/univ_2_short.sl @@ -0,0 +1,44 @@ +(set-logic SLIA) + +(synth-fun f ((col1 String) (col2 String)) String + ((Start String (ntString)) + (ntString String (col1 col2 " " "," "USA" "PA" "CT" "CA" "MD" "NY" + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (ite ntBool ntString ntString) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString))))) + + +(declare-var col1 String) +(declare-var col2 String) + +(constraint (= (f "University of Pennsylvania" "Phialdelphia, PA, USA") + "University of Pennsylvania, Phialdelphia, PA, USA")) + +(constraint (= (f "UCLA" "Los Angeles, CA") + "UCLA, Los Angeles, CA, USA")) + +(constraint (= (f "Cornell University" "Ithaca, New York, USA") + "Cornell University, Ithaca, New York, USA")) + +(constraint (= (f "Penn" "Philadelphia, PA, USA") + "Penn, Philadelphia, PA, USA")) + +(constraint (= (f "University of Maryland College Park" "College Park, MD") + "University of Maryland College Park, College Park, MD, USA")) + +(constraint (= (f "University of Michigan" "Ann Arbor, MI, USA") + "University of Michigan, Ann Arbor, MI, USA")) + + + +(check-synth) diff --git a/data/sygus/univ_3-long-repeat.sl b/data/sygus/univ_3-long-repeat.sl new file mode 100644 index 0000000000000000000000000000000000000000..128b00078cae210ae01aa85cac41a286ce582b12 --- /dev/null +++ b/data/sygus/univ_3-long-repeat.sl @@ -0,0 +1,118 @@ +(set-logic SLIA) + +(synth-fun f ((col1 String) (col2 String)) String + ((Start String (ntString)) + (ntString String (col1 col2 " " "," "USA" "PA" "CT" "CA" "MD" "NY" + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (ite ntBool ntString ntString) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var col1 String) +(declare-var col2 String) + +(constraint (= (f "UC Berkeley" "Berkeley, CA") + "Berkeley, CA, USA")) + +(constraint (= (f "University of Pennsylvania" "Phialdelphia, PA, USA") + "Phialdelphia, PA, USA")) + +(constraint (= (f "UCLA" "Los Angeles, CA") + "UCLA, Los Angeles, CA, USA")) + +(constraint (= (f "Cornell University" "Ithaca, New York, USA") + "Ithaca, New York, USA")) + +(constraint (= (f "Penn" "Philadelphia, PA, USA") + "Philadelphia, PA, USA")) + +(constraint (= (f "University of Michigan" "Ann Arbor, MI, USA") + "Ann Arbor, MI, USA")) + +(constraint (= (f "UC Berkeley" "Berkeley, CA") + "Berkeley, CA, USA")) + +(constraint (= (f "MIT" "Cambridge, MA") + "Cambridge, MA, USA")) + +(constraint (= (f "University of Pennsylvania" "Phialdelphia, PA, USA") + "Phialdelphia, PA, USA")) + +(constraint (= (f "UCLA" "Los Angeles, CA") + "Los Angeles, CA, USA")) + +(constraint (= (f "University of Maryland College Park" "College Park, MD") + "College Park, MD, USA")) + +(constraint (= (f "University of Michigan" "Ann Arbor, MI, USA") + "Ann Arbor, MI, USA")) + +(constraint (= (f "UC Berkeley" "Berkeley, CA") + "Berkeley, CA, USA")) + +(constraint (= (f "MIT" "Cambridge, MA") + "Cambridge, MA, USA")) + +(constraint (= (f "Rice University" "Houston, TX") + "Houston, TX, USA")) + +(constraint (= (f "Yale University" "New Haven, CT, USA") + "New Haven, CT, USA")) + +(constraint (= (f "Columbia University" "New York, NY, USA") + "New York, NY, USA")) + +(constraint (= (f "NYU" "New York, New York, USA") + "New York, New York, USA")) + +(constraint (= (f "Drexel University" "Philadelphia, PA") + "Philadelphia, PA, USA")) + +(constraint (= (f "UC Berkeley" "Berkeley, CA") + "Berkeley, CA, USA")) + +(constraint (= (f "UIUC" "Urbana, IL") + "Urbana, IL, USA")) + +(constraint (= (f "Temple University" "Philadelphia, PA") + "Philadelphia, PA, USA")) + +(constraint (= (f "Harvard University" "Cambridge, MA, USA") + "Cambridge, MA, USA")) + +(constraint (= (f "University of Connecticut" "Storrs, CT, USA") + "Storrs, CT, USA")) + +(constraint (= (f "Drexel University" "Philadelphia, PA") + "DPhiladelphia, PA, USA")) + +(constraint (= (f "NYU" "New York, New York, USA") + "New York, New York, USA")) + +(constraint (= (f "UIUC" "Urbana, IL") + "Urbana, IL, USA")) + +(constraint (= (f "New Haven University" "New Haven, CT, USA") + "New Haven, CT, USA")) + +(constraint (= (f "University of California, Santa Barbara" "Santa Barbara, CA, USA") + "Santa Barbara, CA, USA")) + +(constraint (= (f "University of Connecticut" "Storrs, CT, USA") + "Storrs, CT, USA")) + + +(check-synth) diff --git a/data/sygus/univ_3-long.sl b/data/sygus/univ_3-long.sl new file mode 100644 index 0000000000000000000000000000000000000000..30539d5e243d1577b0a531ee9516cf5710f6a31e --- /dev/null +++ b/data/sygus/univ_3-long.sl @@ -0,0 +1,88 @@ +(set-logic SLIA) + +(synth-fun f ((col1 String) (col2 String)) String + ((Start String (ntString)) + (ntString String (col1 col2 " " "," "USA" "PA" "CT" "CA" "MD" "NY" + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (ite ntBool ntString ntString) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var col1 String) +(declare-var col2 String) + +(constraint (= (f "University of Pennsylvania" "Phialdelphia, PA, USA") + "Phialdelphia, PA, USA")) + +(constraint (= (f "UCLA" "Los Angeles, CA") + "Los Angeles, CA, USA")) + +(constraint (= (f "Cornell University" "Ithaca, New York, USA") + "Ithaca, New York, USA")) + +(constraint (= (f "Penn" "Philadelphia, PA, USA") + "Philadelphia, PA, USA")) + +(constraint (= (f "University of Maryland College Park" "College Park, MD") + "College Park, MD, USA")) + +(constraint (= (f "University of Michigan" "Ann Arbor, MI, USA") + "Ann Arbor, MI, USA")) + +(constraint (= (f "UC Berkeley" "Berkeley, CA") + "Berkeley, CA, USA")) + +(constraint (= (f "MIT" "Cambridge, MA") + "Cambridge, MA, USA")) + +(constraint (= (f "Rice University" "Houston, TX") + "Houston, TX, USA")) + +(constraint (= (f "Yale University" "New Haven, CT, USA") + "New Haven, CT, USA")) + +(constraint (= (f "Columbia University" "New York, NY, USA") + "New York, NY, USA")) + +(constraint (= (f "NYU" "New York, New York, USA") + "New York, New York, USA")) + +(constraint (= (f "UC Berkeley" "Berkeley, CA") + "Berkeley, CA, USA")) + +(constraint (= (f "UIUC" "Urbana, IL") + "Urbana, IL, USA")) + +(constraint (= (f "Temple University" "Philadelphia, PA") + "Philadelphia, PA, USA")) + +(constraint (= (f "Harvard University" "Cambridge, MA, USA") + "Cambridge, MA, USA")) + +(constraint (= (f "University of Connecticut" "Storrs, CT, USA") + "Storrs, CT, USA")) + +(constraint (= (f "Drexel University" "Philadelphia, PA") + "Philadelphia, PA, USA")) + +(constraint (= (f "New Haven University" "New Haven, CT, USA") + "New Haven, CT, USA")) + +(constraint (= (f "University of California, Santa Barbara" "Santa Barbara, CA, USA") + "Santa Barbara, CA, USA")) + + +(check-synth) diff --git a/data/sygus/univ_3.sl b/data/sygus/univ_3.sl new file mode 100644 index 0000000000000000000000000000000000000000..e406e6d162d77d9f19e4db97609b7d0e4a6ef1b3 --- /dev/null +++ b/data/sygus/univ_3.sl @@ -0,0 +1,47 @@ +(set-logic SLIA) + +(synth-fun f ((col1 String) (col2 String)) String + ((Start String (ntString)) + (ntString String (col1 col2 " " "," "USA" "PA" "CT" "CA" "MD" "NY" + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (ite ntBool ntString ntString) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var col1 String) +(declare-var col2 String) + +(constraint (= (f "University of Pennsylvania" "Phialdelphia, PA, USA") + "Phialdelphia, PA, USA")) + +(constraint (= (f "UCLA" "Los Angeles, CA") + "Los Angeles, CA, USA")) + +(constraint (= (f "Cornell University" "Ithaca, New York, USA") + "Ithaca, New York, USA")) + +(constraint (= (f "Penn" "Philadelphia, PA, USA") + "Philadelphia, PA, USA")) + +(constraint (= (f "University of Maryland College Park" "College Park, MD") + "College Park, MD, USA")) + +(constraint (= (f "University of Michigan" "Ann Arbor, MI, USA") + "Ann Arbor, MI, USA")) + + + +(check-synth) diff --git a/data/sygus/univ_3_short.sl b/data/sygus/univ_3_short.sl new file mode 100644 index 0000000000000000000000000000000000000000..cc1795cf0117e52564442de5ce37bd69802dfe38 --- /dev/null +++ b/data/sygus/univ_3_short.sl @@ -0,0 +1,42 @@ +(set-logic SLIA) + +(synth-fun f ((col1 String) (col2 String)) String + ((Start String (ntString)) + (ntString String (col1 col2 " " "," "USA" "PA" "CT" "CA" "MD" "NY" + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (ite ntBool ntString ntString) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString))))) + + +(declare-var col1 String) +(declare-var col2 String) + +(constraint (= (f "University of Pennsylvania" "Phialdelphia, PA, USA") + "Phialdelphia, PA, USA")) + +(constraint (= (f "UCLA" "Los Angeles, CA") + "Los Angeles, CA, USA")) + +(constraint (= (f "Cornell University" "Ithaca, New York, USA") + "Ithaca, New York, USA")) + +(constraint (= (f "Penn" "Philadelphia, PA, USA") + "Philadelphia, PA, USA")) + +(constraint (= (f "University of Maryland College Park" "College Park, MD") + "College Park, MD, USA")) + +(constraint (= (f "University of Michigan" "Ann Arbor, MI, USA") + "Ann Arbor, MI, USA")) + +(check-synth) diff --git a/data/sygus/univ_4-long-repeat.sl b/data/sygus/univ_4-long-repeat.sl new file mode 100644 index 0000000000000000000000000000000000000000..31e45ccf6ab97562dedaf0331828725f2cd0546c --- /dev/null +++ b/data/sygus/univ_4-long-repeat.sl @@ -0,0 +1,118 @@ +(set-logic SLIA) + +(synth-fun f ((col1 String) (col2 String)) String + ((Start String (ntString)) + (ntString String (col1 col2 " " "," "New York" "USA" "PA" "CT" "CA" "MD" "NY" + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (ite ntBool ntString ntString) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var col1 String) +(declare-var col2 String) + +(constraint (= (f "UC Berkeley" "Berkeley, CA") + "Berkeley, CA, USA")) + +(constraint (= (f "University of Pennsylvania" "Phialdelphia, PA, USA") + "Phialdelphia, PA, USA")) + +(constraint (= (f "UCLA" "Los Angeles, CA") + "UCLA, Los Angeles, CA, USA")) + +(constraint (= (f "Cornell University" "Ithaca, New York, USA") + "Ithaca, NY, USA")) + +(constraint (= (f "Penn" "Philadelphia, PA, USA") + "Philadelphia, PA, USA")) + +(constraint (= (f "University of Michigan" "Ann Arbor, MI, USA") + "Ann Arbor, MI, USA")) + +(constraint (= (f "UC Berkeley" "Berkeley, CA") + "Berkeley, CA, USA")) + +(constraint (= (f "MIT" "Cambridge, MA") + "Cambridge, MA, USA")) + +(constraint (= (f "University of Pennsylvania" "Phialdelphia, PA, USA") + "Phialdelphia, PA, USA")) + +(constraint (= (f "UCLA" "Los Angeles, CA") + "Los Angeles, CA, USA")) + +(constraint (= (f "University of Maryland College Park" "College Park, MD") + "College Park, MD, USA")) + +(constraint (= (f "University of Michigan" "Ann Arbor, MI, USA") + "Ann Arbor, MI, USA")) + +(constraint (= (f "UC Berkeley" "Berkeley, CA") + "Berkeley, CA, USA")) + +(constraint (= (f "MIT" "Cambridge, MA") + "Cambridge, MA, USA")) + +(constraint (= (f "Rice University" "Houston, TX") + "Houston, TX, USA")) + +(constraint (= (f "Yale University" "New Haven, CT, USA") + "New Haven, CT, USA")) + +(constraint (= (f "Columbia University" "New York, NY, USA") + "New York, NY, USA")) + +(constraint (= (f "NYU" "New York, New York, USA") + "New York, NY, USA")) + +(constraint (= (f "Drexel University" "Philadelphia, PA") + "Philadelphia, PA, USA")) + +(constraint (= (f "UC Berkeley" "Berkeley, CA") + "Berkeley, CA, USA")) + +(constraint (= (f "UIUC" "Urbana, IL") + "Urbana, IL, USA")) + +(constraint (= (f "Temple University" "Philadelphia, PA") + "Philadelphia, PA, USA")) + +(constraint (= (f "Harvard University" "Cambridge, MA, USA") + "Cambridge, MA, USA")) + +(constraint (= (f "University of Connecticut" "Storrs, CT, USA") + "Storrs, CT, USA")) + +(constraint (= (f "Drexel University" "Philadelphia, PA") + "DPhiladelphia, PA, USA")) + +(constraint (= (f "NYU" "New York, New York, USA") + "New York, NY, USA")) + +(constraint (= (f "UIUC" "Urbana, IL") + "Urbana, IL, USA")) + +(constraint (= (f "New Haven University" "New Haven, CT, USA") + "New Haven, CT, USA")) + +(constraint (= (f "University of California, Santa Barbara" "Santa Barbara, CA, USA") + "Santa Barbara, CA, USA")) + +(constraint (= (f "University of Connecticut" "Storrs, CT, USA") + "Storrs, CT, USA")) + + +(check-synth) diff --git a/data/sygus/univ_4-long.sl b/data/sygus/univ_4-long.sl new file mode 100644 index 0000000000000000000000000000000000000000..1e1928e44a358fbe79e657acd8eaec133525b0cb --- /dev/null +++ b/data/sygus/univ_4-long.sl @@ -0,0 +1,88 @@ +(set-logic SLIA) + +(synth-fun f ((col1 String) (col2 String)) String + ((Start String (ntString)) + (ntString String (col1 col2 " " "," "New York" "USA" "PA" "CT" "CA" "MD" "NY" + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (ite ntBool ntString ntString) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var col1 String) +(declare-var col2 String) + +(constraint (= (f "University of Pennsylvania" "Phialdelphia, PA, USA") + "Phialdelphia, PA, USA")) + +(constraint (= (f "UCLA" "Los Angeles, CA") + "Los Angeles, CA, USA")) + +(constraint (= (f "Cornell University" "Ithaca, New York, USA") + "Ithaca, NY, USA")) + +(constraint (= (f "Penn" "Philadelphia, PA, USA") + "Philadelphia, PA, USA")) + +(constraint (= (f "University of Maryland College Park" "College Park, MD") + "College Park, MD, USA")) + +(constraint (= (f "University of Michigan" "Ann Arbor, MI, USA") + "Ann Arbor, MI, USA")) + +(constraint (= (f "UC Berkeley" "Berkeley, CA") + "Berkeley, CA, USA")) + +(constraint (= (f "MIT" "Cambridge, MA") + "Cambridge, MA, USA")) + +(constraint (= (f "Rice University" "Houston, TX") + "Houston, TX, USA")) + +(constraint (= (f "Yale University" "New Haven, CT, USA") + "New Haven, CT, USA")) + +(constraint (= (f "Columbia University" "New York, NY, USA") + "New York, NY, USA")) + +(constraint (= (f "NYU" "New York, New York, USA") + "New York, NY, USA")) + +(constraint (= (f "UC Berkeley" "Berkeley, CA") + "Berkeley, CA, USA")) + +(constraint (= (f "UIUC" "Urbana, IL") + "Urbana, IL, USA")) + +(constraint (= (f "Temple University" "Philadelphia, PA") + "Philadelphia, PA, USA")) + +(constraint (= (f "Harvard University" "Cambridge, MA, USA") + "Cambridge, MA, USA")) + +(constraint (= (f "University of Connecticut" "Storrs, CT, USA") + "Storrs, CT, USA")) + +(constraint (= (f "Drexel University" "Philadelphia, PA") + "Philadelphia, PA, USA")) + +(constraint (= (f "New Haven University" "New Haven, CT, USA") + "New Haven, CT, USA")) + +(constraint (= (f "University of California, Santa Barbara" "Santa Barbara, CA, USA") + "Santa Barbara, CA, USA")) + + +(check-synth) diff --git a/data/sygus/univ_4.sl b/data/sygus/univ_4.sl new file mode 100644 index 0000000000000000000000000000000000000000..2cf08e897b2f51f822aecd7ea9115504fe069482 --- /dev/null +++ b/data/sygus/univ_4.sl @@ -0,0 +1,51 @@ +(set-logic SLIA) + +(synth-fun f ((col1 String) (col2 String)) String + ((Start String (ntString)) + (ntString String (col1 col2 " " "," "New York" "USA" "PA" "CT" "CA" "MD" "NY" + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (ite ntBool ntString ntString) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var col1 String) +(declare-var col2 String) + +(constraint (= (f "University of Pennsylvania" "Phialdelphia, PA, USA") + "Phialdelphia, PA, USA")) + +(constraint (= (f "UCLA" "Los Angeles, CA") + "Los Angeles, CA, USA")) + +(constraint (= (f "Cornell University" "Ithaca, New York, USA") + "Ithaca, NY, USA")) + +(constraint (= (f "Penn" "Philadelphia, PA, USA") + "Philadelphia, PA, USA")) + +(constraint (= (f "University of Maryland College Park" "College Park, MD") + "College Park, MD, USA")) + +(constraint (= (f "University of Michigan" "Ann Arbor, MI, USA") + "Ann Arbor, MI, USA")) + +(constraint (= (f "Columbia University" "New York, NY, USA") + "New York, NY, USA")) + +(constraint (= (f "NYU" "New York, New York, USA") + "New York, NY, USA")) + +(check-synth) diff --git a/data/sygus/univ_4_short.sl b/data/sygus/univ_4_short.sl new file mode 100644 index 0000000000000000000000000000000000000000..f50b01922b0df06ed087467341eb9e73b7b8bb6a --- /dev/null +++ b/data/sygus/univ_4_short.sl @@ -0,0 +1,48 @@ +(set-logic SLIA) + +(synth-fun f ((col1 String) (col2 String)) String + ((Start String (ntString)) + (ntString String (col1 col2 " " "," "New York" "USA" "PA" "CT" "CA" "MD" "NY" + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (ite ntBool ntString ntString) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString))))) + + +(declare-var col1 String) +(declare-var col2 String) + +(constraint (= (f "University of Pennsylvania" "Phialdelphia, PA, USA") + "Phialdelphia, PA, USA")) + +(constraint (= (f "UCLA" "Los Angeles, CA") + "Los Angeles, CA, USA")) + +(constraint (= (f "Cornell University" "Ithaca, New York, USA") + "Ithaca, NY, USA")) + +(constraint (= (f "Penn" "Philadelphia, PA, USA") + "Philadelphia, PA, USA")) + +(constraint (= (f "University of Maryland College Park" "College Park, MD") + "College Park, MD, USA")) + +(constraint (= (f "University of Michigan" "Ann Arbor, MI, USA") + "Ann Arbor, MI, USA")) + +(constraint (= (f "Columbia University" "New York, NY, USA") + "New York, NY, USA")) + +(constraint (= (f "NYU" "New York, New York, USA") + "New York, NY, USA")) + +(check-synth) diff --git a/data/sygus/univ_5-long-repeat.sl b/data/sygus/univ_5-long-repeat.sl new file mode 100644 index 0000000000000000000000000000000000000000..6cce485b02421a37b15ea141d7be3268cf4f60f5 --- /dev/null +++ b/data/sygus/univ_5-long-repeat.sl @@ -0,0 +1,116 @@ +(set-logic SLIA) + +(synth-fun f ((col1 String) (col2 String)) String + ((Start String (ntString)) + (ntString String (col1 col2 "New York" " " "," "A" "B" "C" "D" "E" "F" "G" "H" + "I" "J" "K" "L" "M" "N" "O" "P" "Q" "R" "S" "T" "U" "V" "W" "X" "Y" "Z" + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (ite ntBool ntString ntString) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString))))) + + +(declare-var col1 String) +(declare-var col2 String) + +(constraint (= (f "UC Berkeley" "Berkeley, CA") + "Berkeley, CA, USA")) + +(constraint (= (f "University of Pennsylvania" "Phialdelphia, PA, USA") + "Phialdelphia, PA, USA")) + +(constraint (= (f "UCLA" "Los Angeles, CA") + "UCLA, Los Angeles, CA, USA")) + +(constraint (= (f "Cornell University" "Ithaca, New York, USA") + "Ithaca, NY, USA")) + +(constraint (= (f "Penn" "Philadelphia, PA, USA") + "Philadelphia, PA, USA")) + +(constraint (= (f "University of Michigan" "Ann Arbor, MI, USA") + "Ann Arbor, MI, USA")) + +(constraint (= (f "UC Berkeley" "Berkeley, CA") + "Berkeley, CA, USA")) + +(constraint (= (f "MIT" "Cambridge, MA") + "Cambridge, MA, USA")) + +(constraint (= (f "University of Pennsylvania" "Phialdelphia, PA, USA") + "Phialdelphia, PA, USA")) + +(constraint (= (f "UCLA" "Los Angeles, CA") + "Los Angeles, CA, USA")) + +(constraint (= (f "University of Maryland College Park" "College Park, MD") + "College Park, MD, USA")) + +(constraint (= (f "University of Michigan" "Ann Arbor, MI, USA") + "Ann Arbor, MI, USA")) + +(constraint (= (f "UC Berkeley" "Berkeley, CA") + "Berkeley, CA, USA")) + +(constraint (= (f "MIT" "Cambridge, MA") + "Cambridge, MA, USA")) + +(constraint (= (f "Rice University" "Houston, TX") + "Houston, TX, USA")) + +(constraint (= (f "Yale University" "New Haven, CT, USA") + "New Haven, CT, USA")) + +(constraint (= (f "Columbia University" "New York, NY, USA") + "New York, NY, USA")) + +(constraint (= (f "NYU" "New York, New York, USA") + "New York, NY, USA")) + +(constraint (= (f "Drexel University" "Philadelphia, PA") + "Philadelphia, PA, USA")) + +(constraint (= (f "UC Berkeley" "Berkeley, CA") + "Berkeley, CA, USA")) + +(constraint (= (f "UIUC" "Urbana, IL") + "Urbana, IL, USA")) + +(constraint (= (f "Temple University" "Philadelphia, PA") + "Philadelphia, PA, USA")) + +(constraint (= (f "Harvard University" "Cambridge, MA, USA") + "Cambridge, MA, USA")) + +(constraint (= (f "University of Connecticut" "Storrs, CT, USA") + "Storrs, CT, USA")) + +(constraint (= (f "Drexel University" "Philadelphia, PA") + "DPhiladelphia, PA, USA")) + +(constraint (= (f "NYU" "New York, New York, USA") + "New York, NY, USA")) + +(constraint (= (f "UIUC" "Urbana, IL") + "Urbana, IL, USA")) + +(constraint (= (f "New Haven University" "New Haven, CT, USA") + "New Haven, CT, USA")) + +(constraint (= (f "University of California, Santa Barbara" "Santa Barbara, CA, USA") + "Santa Barbara, CA, USA")) + +(constraint (= (f "University of Connecticut" "Storrs, CT, USA") + "Storrs, CT, USA")) + + +(check-synth) diff --git a/data/sygus/univ_5-long.sl b/data/sygus/univ_5-long.sl new file mode 100644 index 0000000000000000000000000000000000000000..b61aa7346832afde6b96becea921d2bb50cf54a2 --- /dev/null +++ b/data/sygus/univ_5-long.sl @@ -0,0 +1,89 @@ +(set-logic SLIA) + +(synth-fun f ((col1 String) (col2 String)) String + ((Start String (ntString)) + (ntString String (col1 col2 "New York" " " "," "A" "B" "C" "D" "E" "F" "G" "H" + "I" "J" "K" "L" "M" "N" "O" "P" "Q" "R" "S" "T" "U" "V" "W" "X" "Y" "Z" + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (ite ntBool ntString ntString) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var col1 String) +(declare-var col2 String) + +(constraint (= (f "University of Pennsylvania" "Phialdelphia, PA, USA") + "Phialdelphia, PA, USA")) + +(constraint (= (f "UCLA" "Los Angeles, CA") + "Los Angeles, CA, USA")) + +(constraint (= (f "Cornell University" "Ithaca, New York, USA") + "Ithaca, NY, USA")) + +(constraint (= (f "Penn" "Philadelphia, PA, USA") + "Philadelphia, PA, USA")) + +(constraint (= (f "University of Maryland College Park" "College Park, MD") + "College Park, MD, USA")) + +(constraint (= (f "University of Michigan" "Ann Arbor, MI, USA") + "Ann Arbor, MI, USA")) + +(constraint (= (f "UC Berkeley" "Berkeley, CA") + "Berkeley, CA, USA")) + +(constraint (= (f "MIT" "Cambridge, MA") + "Cambridge, MA, USA")) + +(constraint (= (f "Rice University" "Houston, TX") + "Houston, TX, USA")) + +(constraint (= (f "Yale University" "New Haven, CT, USA") + "New Haven, CT, USA")) + +(constraint (= (f "Columbia University" "New York, NY, USA") + "New York, NY, USA")) + +(constraint (= (f "NYU" "New York, New York, USA") + "New York, NY, USA")) + +(constraint (= (f "UC Berkeley" "Berkeley, CA") + "Berkeley, CA, USA")) + +(constraint (= (f "UIUC" "Urbana, IL") + "Urbana, IL, USA")) + +(constraint (= (f "Temple University" "Philadelphia, PA") + "Philadelphia, PA, USA")) + +(constraint (= (f "Harvard University" "Cambridge, MA, USA") + "Cambridge, MA, USA")) + +(constraint (= (f "University of Connecticut" "Storrs, CT, USA") + "Storrs, CT, USA")) + +(constraint (= (f "Drexel University" "Philadelphia, PA") + "Philadelphia, PA, USA")) + +(constraint (= (f "New Haven University" "New Haven, CT, USA") + "New Haven, CT, USA")) + +(constraint (= (f "University of California, Santa Barbara" "Santa Barbara, CA, USA") + "Santa Barbara, CA, USA")) + + +(check-synth) diff --git a/data/sygus/univ_5.sl b/data/sygus/univ_5.sl new file mode 100644 index 0000000000000000000000000000000000000000..e211c151031e41d1b2c6bc5d6f6a408fd1cb3568 --- /dev/null +++ b/data/sygus/univ_5.sl @@ -0,0 +1,52 @@ +(set-logic SLIA) + +(synth-fun f ((col1 String) (col2 String)) String + ((Start String (ntString)) + (ntString String (col1 col2 "New York" " " "," "A" "B" "C" "D" "E" "F" "G" "H" + "I" "J" "K" "L" "M" "N" "O" "P" "Q" "R" "S" "T" "U" "V" "W" "X" "Y" "Z" + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (ite ntBool ntString ntString) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var col1 String) +(declare-var col2 String) + +(constraint (= (f "University of Pennsylvania" "Phialdelphia, PA, USA") + "Phialdelphia, PA, USA")) + +(constraint (= (f "UCLA" "Los Angeles, CA") + "Los Angeles, CA, USA")) + +(constraint (= (f "Cornell University" "Ithaca, New York, USA") + "Ithaca, NY, USA")) + +(constraint (= (f "Penn" "Philadelphia, PA, USA") + "Philadelphia, PA, USA")) + +(constraint (= (f "University of Maryland College Park" "College Park, MD") + "College Park, MD, USA")) + +(constraint (= (f "University of Michigan" "Ann Arbor, MI, USA") + "Ann Arbor, MI, USA")) + +(constraint (= (f "Columbia University" "New York, NY, USA") + "New York, NY, USA")) + +(constraint (= (f "NYU" "New York, New York, USA") + "New York, NY, USA")) + +(check-synth) diff --git a/data/sygus/univ_5_short.sl b/data/sygus/univ_5_short.sl new file mode 100644 index 0000000000000000000000000000000000000000..05083daac5a1b93d3a604abc2d803d7eef8a15f6 --- /dev/null +++ b/data/sygus/univ_5_short.sl @@ -0,0 +1,49 @@ +(set-logic SLIA) + +(synth-fun f ((col1 String) (col2 String)) String + ((Start String (ntString)) + (ntString String (col1 col2 "New York" " " "," "A" "B" "C" "D" "E" "F" "G" "H" + "I" "J" "K" "L" "M" "N" "O" "P" "Q" "R" "S" "T" "U" "V" "W" "X" "Y" "Z" + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (ite ntBool ntString ntString) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString))))) + + +(declare-var col1 String) +(declare-var col2 String) + +(constraint (= (f "University of Pennsylvania" "Phialdelphia, PA, USA") + "Phialdelphia, PA, USA")) + +(constraint (= (f "UCLA" "Los Angeles, CA") + "Los Angeles, CA, USA")) + +(constraint (= (f "Cornell University" "Ithaca, New York, USA") + "Ithaca, NY, USA")) + +(constraint (= (f "Penn" "Philadelphia, PA, USA") + "Philadelphia, PA, USA")) + +(constraint (= (f "University of Maryland College Park" "College Park, MD") + "College Park, MD, USA")) + +(constraint (= (f "University of Michigan" "Ann Arbor, MI, USA") + "Ann Arbor, MI, USA")) + +(constraint (= (f "Columbia University" "New York, NY, USA") + "New York, NY, USA")) + +(constraint (= (f "NYU" "New York, New York, USA") + "New York, NY, USA")) + +(check-synth) diff --git a/data/sygus/univ_6-long-repeat.sl b/data/sygus/univ_6-long-repeat.sl new file mode 100644 index 0000000000000000000000000000000000000000..238b68025f6cb6335c8a7f4fbef011b66ca89a22 --- /dev/null +++ b/data/sygus/univ_6-long-repeat.sl @@ -0,0 +1,115 @@ +(set-logic SLIA) + +(synth-fun f ((col1 String) (col2 String)) String + ((Start String (ntString)) + (ntString String (col1 col2 "New York" " " "," "AK" "AZ" "AR" "CA" "CO" "CT" "DE" "FL" "GA" "HI" "ID" "IL" "IN" "IA" "KS" "KY" "LA" "ME" "MD" "MA" "MI" "MN" "MS" "MO" "MT" "NE" "NV" "NH" "NJ" "NM" "NY" "NC" "ND" "OH" "OK" "OR" "PA" "RI" "SC" "SD" "TN" "TX" "UT" "VT" "VA" "WA" "WV" "WI" "USA" + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (ite ntBool ntString ntString) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString))))) + + +(declare-var col1 String) +(declare-var col2 String) + +(constraint (= (f "UC Berkeley" "Berkeley, CA") + "Berkeley, CA, USA")) + +(constraint (= (f "University of Pennsylvania" "Phialdelphia, PA, USA") + "Phialdelphia, PA, USA")) + +(constraint (= (f "UCLA" "Los Angeles, CA") + "UCLA, Los Angeles, CA, USA")) + +(constraint (= (f "Cornell University" "Ithaca, New York, USA") + "Ithaca, NY, USA")) + +(constraint (= (f "Penn" "Philadelphia, PA, USA") + "Philadelphia, PA, USA")) + +(constraint (= (f "University of Michigan" "Ann Arbor, MI, USA") + "Ann Arbor, MI, USA")) + +(constraint (= (f "UC Berkeley" "Berkeley, CA") + "Berkeley, CA, USA")) + +(constraint (= (f "MIT" "Cambridge, MA") + "Cambridge, MA, USA")) + +(constraint (= (f "University of Pennsylvania" "Phialdelphia, PA, USA") + "Phialdelphia, PA, USA")) + +(constraint (= (f "UCLA" "Los Angeles, CA") + "Los Angeles, CA, USA")) + +(constraint (= (f "University of Maryland College Park" "College Park, MD") + "College Park, MD, USA")) + +(constraint (= (f "University of Michigan" "Ann Arbor, MI, USA") + "Ann Arbor, MI, USA")) + +(constraint (= (f "UC Berkeley" "Berkeley, CA") + "Berkeley, CA, USA")) + +(constraint (= (f "MIT" "Cambridge, MA") + "Cambridge, MA, USA")) + +(constraint (= (f "Rice University" "Houston, TX") + "Houston, TX, USA")) + +(constraint (= (f "Yale University" "New Haven, CT, USA") + "New Haven, CT, USA")) + +(constraint (= (f "Columbia University" "New York, NY, USA") + "New York, NY, USA")) + +(constraint (= (f "NYU" "New York, New York, USA") + "New York, NY, USA")) + +(constraint (= (f "Drexel University" "Philadelphia, PA") + "Philadelphia, PA, USA")) + +(constraint (= (f "UC Berkeley" "Berkeley, CA") + "Berkeley, CA, USA")) + +(constraint (= (f "UIUC" "Urbana, IL") + "Urbana, IL, USA")) + +(constraint (= (f "Temple University" "Philadelphia, PA") + "Philadelphia, PA, USA")) + +(constraint (= (f "Harvard University" "Cambridge, MA, USA") + "Cambridge, MA, USA")) + +(constraint (= (f "University of Connecticut" "Storrs, CT, USA") + "Storrs, CT, USA")) + +(constraint (= (f "Drexel University" "Philadelphia, PA") + "DPhiladelphia, PA, USA")) + +(constraint (= (f "NYU" "New York, New York, USA") + "New York, NY, USA")) + +(constraint (= (f "UIUC" "Urbana, IL") + "Urbana, IL, USA")) + +(constraint (= (f "New Haven University" "New Haven, CT, USA") + "New Haven, CT, USA")) + +(constraint (= (f "University of California, Santa Barbara" "Santa Barbara, CA, USA") + "Santa Barbara, CA, USA")) + +(constraint (= (f "University of Connecticut" "Storrs, CT, USA") + "Storrs, CT, USA")) + + +(check-synth) diff --git a/data/sygus/univ_6-long.sl b/data/sygus/univ_6-long.sl new file mode 100644 index 0000000000000000000000000000000000000000..10d2ddde838c3f55195f59dac12125c1c366ace9 --- /dev/null +++ b/data/sygus/univ_6-long.sl @@ -0,0 +1,88 @@ +(set-logic SLIA) + +(synth-fun f ((col1 String) (col2 String)) String + ((Start String (ntString)) + (ntString String (col1 col2 "New York" " " "," "AK" "AZ" "AR" "CA" "CO" "CT" "DE" "FL" "GA" "HI" "ID" "IL" "IN" "IA" "KS" "KY" "LA" "ME" "MD" "MA" "MI" "MN" "MS" "MO" "MT" "NE" "NV" "NH" "NJ" "NM" "NY" "NC" "ND" "OH" "OK" "OR" "PA" "RI" "SC" "SD" "TN" "TX" "UT" "VT" "VA" "WA" "WV" "WI" "USA" + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (ite ntBool ntString ntString) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var col1 String) +(declare-var col2 String) + +(constraint (= (f "University of Pennsylvania" "Phialdelphia, PA, USA") + "Phialdelphia, PA, USA")) + +(constraint (= (f "UCLA" "Los Angeles, CA") + "Los Angeles, CA, USA")) + +(constraint (= (f "Cornell University" "Ithaca, New York, USA") + "Ithaca, NY, USA")) + +(constraint (= (f "Penn" "Philadelphia, PA, USA") + "Philadelphia, PA, USA")) + +(constraint (= (f "University of Maryland College Park" "College Park, MD") + "College Park, MD, USA")) + +(constraint (= (f "University of Michigan" "Ann Arbor, MI, USA") + "Ann Arbor, MI, USA")) + +(constraint (= (f "UC Berkeley" "Berkeley, CA") + "Berkeley, CA, USA")) + +(constraint (= (f "MIT" "Cambridge, MA") + "Cambridge, MA, USA")) + +(constraint (= (f "Rice University" "Houston, TX") + "Houston, TX, USA")) + +(constraint (= (f "Yale University" "New Haven, CT, USA") + "New Haven, CT, USA")) + +(constraint (= (f "Columbia University" "New York, NY, USA") + "New York, NY, USA")) + +(constraint (= (f "NYU" "New York, New York, USA") + "New York, NY, USA")) + +(constraint (= (f "UC Berkeley" "Berkeley, CA") + "Berkeley, CA, USA")) + +(constraint (= (f "UIUC" "Urbana, IL") + "Urbana, IL, USA")) + +(constraint (= (f "Temple University" "Philadelphia, PA") + "Philadelphia, PA, USA")) + +(constraint (= (f "Harvard University" "Cambridge, MA, USA") + "Cambridge, MA, USA")) + +(constraint (= (f "University of Connecticut" "Storrs, CT, USA") + "Storrs, CT, USA")) + +(constraint (= (f "Drexel University" "Philadelphia, PA") + "Philadelphia, PA, USA")) + +(constraint (= (f "New Haven University" "New Haven, CT, USA") + "New Haven, CT, USA")) + +(constraint (= (f "University of California, Santa Barbara" "Santa Barbara, CA, USA") + "Santa Barbara, CA, USA")) + + +(check-synth) diff --git a/data/sygus/univ_6.sl b/data/sygus/univ_6.sl new file mode 100644 index 0000000000000000000000000000000000000000..b3ba273036c243092f6ccc56d80df125a1038675 --- /dev/null +++ b/data/sygus/univ_6.sl @@ -0,0 +1,51 @@ +(set-logic SLIA) + +(synth-fun f ((col1 String) (col2 String)) String + ((Start String (ntString)) + (ntString String (col1 col2 "New York" " " "," "USA" "AK" "AZ" "AR" "CA" "CO" "CT" "DE" "FL" "GA" "HI" "ID" "IL" "IN" "IA" "KS" "KY" "LA" "ME" "MD" "MA" "MI" "MN" "MS" "MO" "MT" "NE" "NV" "NH" "NJ" "NM" "NY" "NC" "ND" "OH" "OK" "OR" "PA" "RI" "SC" "SD" "TN" "TX" "UT" "VT" "VA" "WA" "WV" "WI" + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (int.to.str ntInt) + (ite ntBool ntString ntString) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.to.int ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString) + (str.contains ntString ntString))))) + + +(declare-var col1 String) +(declare-var col2 String) + +(constraint (= (f "University of Pennsylvania" "Phialdelphia, PA, USA") + "Phialdelphia, PA, USA")) + +(constraint (= (f "UCLA" "Los Angeles, CA") + "Los Angeles, CA, USA")) + +(constraint (= (f "Cornell University" "Ithaca, New York, USA") + "Ithaca, NY, USA")) + +(constraint (= (f "Penn" "Philadelphia, PA, USA") + "Philadelphia, PA, USA")) + +(constraint (= (f "University of Maryland College Park" "College Park, MD") + "College Park, MD, USA")) + +(constraint (= (f "University of Michigan" "Ann Arbor, MI, USA") + "Ann Arbor, MI, USA")) + +(constraint (= (f "Columbia University" "New York, NY, USA") + "New York, NY, USA")) + +(constraint (= (f "NYU" "New York, New York, USA") + "New York, NY, USA")) + +(check-synth) diff --git a/data/sygus/univ_6_short.sl b/data/sygus/univ_6_short.sl new file mode 100644 index 0000000000000000000000000000000000000000..b7769a26eb5a3c0c01fbbb7a520ea76fb0ec01de --- /dev/null +++ b/data/sygus/univ_6_short.sl @@ -0,0 +1,48 @@ +(set-logic SLIA) + +(synth-fun f ((col1 String) (col2 String)) String + ((Start String (ntString)) + (ntString String (col1 col2 "New York" " " "," "USA" "PA" "CT" "CA" "MD" "NY" + (str.++ ntString ntString) + (str.replace ntString ntString ntString) + (str.at ntString ntInt) + (ite ntBool ntString ntString) + (str.substr ntString ntInt ntInt))) + (ntInt Int (0 1 2 + (+ ntInt ntInt) + (- ntInt ntInt) + (str.len ntString) + (str.indexof ntString ntString ntInt))) + (ntBool Bool (true false + (str.prefixof ntString ntString) + (str.suffixof ntString ntString))))) + + +(declare-var col1 String) +(declare-var col2 String) + +(constraint (= (f "University of Pennsylvania" "Phialdelphia, PA, USA") + "Phialdelphia, PA, USA")) + +(constraint (= (f "UCLA" "Los Angeles, CA") + "Los Angeles, CA, USA")) + +(constraint (= (f "Cornell University" "Ithaca, New York, USA") + "Ithaca, NY, USA")) + +(constraint (= (f "Penn" "Philadelphia, PA, USA") + "Philadelphia, PA, USA")) + +(constraint (= (f "University of Maryland College Park" "College Park, MD") + "College Park, MD, USA")) + +(constraint (= (f "University of Michigan" "Ann Arbor, MI, USA") + "Ann Arbor, MI, USA")) + +(constraint (= (f "Columbia University" "New York, NY, USA") + "New York, NY, USA")) + +(constraint (= (f "NYU" "New York, New York, USA") + "New York, NY, USA")) + +(check-synth) diff --git a/dreamcoder/__init__.py b/dreamcoder/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..3cabcf400f76c3d5810c6a14cb4cea071e3a5d6f --- /dev/null +++ b/dreamcoder/__init__.py @@ -0,0 +1,107 @@ +""" +EC codebase Python library (AKA the "frontend") + +Module mapping details: + +TODO: remove module mapping code when backwards-compatibility is no longer required. + +The below module mapping is required for backwards-compatibility with old pickle files +generated from before the EC codebase refactor. New files added to the codebase do not +need to be added to the mapping, but if the existing modules are moved, then this the +mapping needs to be updated to reflect the move or rename. + +The mapping uses the following pattern: + + sys.modules[] = + +This is because the previous structure of the codebase was completely flat, and when refactoring +to a hierarchical files, loading previous pickle files no longer works properly. It is important +to retain the ability to read old pickle files generated from official experiments. As a workaround, +the old module paths are included below. A preferable alternative would be to export program state +into JSON files instead of pickle files to avoid issues where the underlying classes change, so that +could be a future improvement to this project. Until then, we use the module mapping workaround. + +For more info, see this StackOverflow answer: https://stackoverflow.com/a/2121918/2573242 +""" +import sys + +from dreamcoder import differentiation +from dreamcoder import dreamcoder +from dreamcoder import enumeration +from dreamcoder import fragmentGrammar +from dreamcoder import fragmentUtilities +from dreamcoder import frontier +from dreamcoder import grammar +from dreamcoder import likelihoodModel +from dreamcoder import program +from dreamcoder import primitiveGraph +try: + from dreamcoder import recognition +except: + print("Failure loading recognition - only acceptable if using pypy ",file=sys.stderr) +from dreamcoder import task +from dreamcoder import taskBatcher +from dreamcoder import type +from dreamcoder import utilities +from dreamcoder import vs +from dreamcoder.domains.misc import algolispPrimitives, deepcoderPrimitives +from dreamcoder.domains.misc import RobustFillPrimitives +from dreamcoder.domains.misc import napsPrimitives +from dreamcoder.domains.tower import makeTowerTasks +from dreamcoder.domains.tower import towerPrimitives +from dreamcoder.domains.tower import tower_common +from dreamcoder.domains.tower import main as tower_main +from dreamcoder.domains.regex import groundtruthRegexes +from dreamcoder.domains.regex import regexPrimitives +from dreamcoder.domains.regex import makeRegexTasks +#from dreamcoder.domains.regex import main as regex_main +from dreamcoder.domains.logo import logoPrimitives +from dreamcoder.domains.logo import makeLogoTasks +from dreamcoder.domains.logo import main as logo_main +from dreamcoder.domains.list import listPrimitives +from dreamcoder.domains.list import makeListTasks +from dreamcoder.domains.list import main as list_main +from dreamcoder.domains.arithmetic import arithmeticPrimitives +from dreamcoder.domains.text import textPrimitives +from dreamcoder.domains.text import makeTextTasks +from dreamcoder.domains.text import main as text_main + +sys.modules['differentiation'] = differentiation +sys.modules['ec'] = dreamcoder +sys.modules['enumeration'] = enumeration +sys.modules['fragmentGrammar'] = fragmentGrammar +sys.modules['fragmentUtilities'] = fragmentUtilities +sys.modules['frontier'] = frontier +sys.modules['grammar'] = grammar +sys.modules['likelihoodModel'] = likelihoodModel +sys.modules['program'] = program +try: sys.modules['recognition'] = recognition +except: pass +sys.modules['task'] = task +sys.modules['taskBatcher'] = taskBatcher +sys.modules['type'] = type +sys.modules['utilities'] = utilities +sys.modules['vs'] = vs +sys.modules['algolispPrimitives'] = algolispPrimitives +sys.modules['RobustFillPrimitives'] = RobustFillPrimitives +sys.modules['napsPrimitives'] = napsPrimitives +sys.modules['makeTowerTasks'] = makeTowerTasks +sys.modules['towerPrimitives'] = towerPrimitives +sys.modules['tower_common'] = tower_common +#sys.modules['tower'] = tower_main +sys.modules['groundtruthRegexes'] = groundtruthRegexes +sys.modules['regexPrimitives'] = regexPrimitives +sys.modules['makeRegexTasks'] = makeRegexTasks +#sys.modules['regexes'] = regex_main +sys.modules['deepcoderPrimitives'] = deepcoderPrimitives +sys.modules['logoPrimitives'] = logoPrimitives +sys.modules['makeLogoTasks'] = makeLogoTasks +#sys.modules['logo'] = logo_main +sys.modules['listPrimitives'] = listPrimitives +sys.modules['makeListTasks'] = makeListTasks +#sys.modules['list'] = list_main +sys.modules['arithmeticPrimitives'] = arithmeticPrimitives +sys.modules['textPrimitives'] = textPrimitives +sys.modules['makeTextTasks'] = makeTextTasks +#sys.modules['text'] = text_main +sys.modules['primitiveGraph'] = primitiveGraph diff --git a/dreamcoder/__pycache__/__init__.cpython-39.pyc b/dreamcoder/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a09c76c9be77c8ddd04dfcd1474bc4d9576bb61e Binary files /dev/null and b/dreamcoder/__pycache__/__init__.cpython-39.pyc differ diff --git a/dreamcoder/__pycache__/compression.cpython-39.pyc b/dreamcoder/__pycache__/compression.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9e3ce78ee84ab72af55cd8750e8dc1af9a783361 Binary files /dev/null and b/dreamcoder/__pycache__/compression.cpython-39.pyc differ diff --git a/dreamcoder/__pycache__/differentiation.cpython-39.pyc b/dreamcoder/__pycache__/differentiation.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c7c0625dc7113139c3339a76d3c8169fb489235b Binary files /dev/null and b/dreamcoder/__pycache__/differentiation.cpython-39.pyc differ diff --git a/dreamcoder/__pycache__/dreamcoder.cpython-39.pyc b/dreamcoder/__pycache__/dreamcoder.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b83eadf6150e55319d8e035062325efbaf912865 Binary files /dev/null and b/dreamcoder/__pycache__/dreamcoder.cpython-39.pyc differ diff --git a/dreamcoder/__pycache__/dreaming.cpython-39.pyc b/dreamcoder/__pycache__/dreaming.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7daf7a4806b7aa9277a853cc9eae56d0fcc4ffd6 Binary files /dev/null and b/dreamcoder/__pycache__/dreaming.cpython-39.pyc differ diff --git a/dreamcoder/__pycache__/enumeration.cpython-39.pyc b/dreamcoder/__pycache__/enumeration.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8799acf0f0cef4ffda66522908dfc49b3b4f65a9 Binary files /dev/null and b/dreamcoder/__pycache__/enumeration.cpython-39.pyc differ diff --git a/dreamcoder/__pycache__/fragmentGrammar.cpython-39.pyc b/dreamcoder/__pycache__/fragmentGrammar.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b73af2b537ee110f64afd365f13d088a7062f84b Binary files /dev/null and b/dreamcoder/__pycache__/fragmentGrammar.cpython-39.pyc differ diff --git a/dreamcoder/__pycache__/fragmentUtilities.cpython-39.pyc b/dreamcoder/__pycache__/fragmentUtilities.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c20aa0b9908c385a006e09c9964536e4a6462ab6 Binary files /dev/null and b/dreamcoder/__pycache__/fragmentUtilities.cpython-39.pyc differ diff --git a/dreamcoder/__pycache__/frontier.cpython-39.pyc b/dreamcoder/__pycache__/frontier.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..577dc7ff9626a462ec77b8fb7c0594602e9dc4f0 Binary files /dev/null and b/dreamcoder/__pycache__/frontier.cpython-39.pyc differ diff --git a/dreamcoder/__pycache__/grammar.cpython-39.pyc b/dreamcoder/__pycache__/grammar.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3f097de97359a2765cb52d93a7dfb653209fcc35 Binary files /dev/null and b/dreamcoder/__pycache__/grammar.cpython-39.pyc differ diff --git a/dreamcoder/__pycache__/likelihoodModel.cpython-39.pyc b/dreamcoder/__pycache__/likelihoodModel.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1ae4524a348282c5918fd146a409654d41acb144 Binary files /dev/null and b/dreamcoder/__pycache__/likelihoodModel.cpython-39.pyc differ diff --git a/dreamcoder/__pycache__/primitiveGraph.cpython-39.pyc b/dreamcoder/__pycache__/primitiveGraph.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0717abfd600dd231366189dd60c80c05f6a259f0 Binary files /dev/null and b/dreamcoder/__pycache__/primitiveGraph.cpython-39.pyc differ diff --git a/dreamcoder/__pycache__/program.cpython-39.pyc b/dreamcoder/__pycache__/program.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0455f3aec1a6fc9b7bd443b6ee84b1fdbd5f9cc4 Binary files /dev/null and b/dreamcoder/__pycache__/program.cpython-39.pyc differ diff --git a/dreamcoder/__pycache__/recognition.cpython-39.pyc b/dreamcoder/__pycache__/recognition.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6f01b2416836c1841f8af80e8a9589d9fb225ab2 Binary files /dev/null and b/dreamcoder/__pycache__/recognition.cpython-39.pyc differ diff --git a/dreamcoder/__pycache__/task.cpython-39.pyc b/dreamcoder/__pycache__/task.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a375201884b5716df5de4a04f674e47f461f7ece Binary files /dev/null and b/dreamcoder/__pycache__/task.cpython-39.pyc differ diff --git a/dreamcoder/__pycache__/taskBatcher.cpython-39.pyc b/dreamcoder/__pycache__/taskBatcher.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7be54071790c37663ea5bc627c36d6dc2942ea13 Binary files /dev/null and b/dreamcoder/__pycache__/taskBatcher.cpython-39.pyc differ diff --git a/dreamcoder/__pycache__/type.cpython-39.pyc b/dreamcoder/__pycache__/type.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..de04517836e42c784bf5770f9c91a689a9d8aa0d Binary files /dev/null and b/dreamcoder/__pycache__/type.cpython-39.pyc differ diff --git a/dreamcoder/__pycache__/utilities.cpython-39.pyc b/dreamcoder/__pycache__/utilities.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..595945fa19e7ce37a00343aac568ca3c02995048 Binary files /dev/null and b/dreamcoder/__pycache__/utilities.cpython-39.pyc differ diff --git a/dreamcoder/__pycache__/vs.cpython-39.pyc b/dreamcoder/__pycache__/vs.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8cbda3ce7b3106d74f0e551c74bb5f4cb4fc9cd0 Binary files /dev/null and b/dreamcoder/__pycache__/vs.cpython-39.pyc differ diff --git a/dreamcoder/compression.py b/dreamcoder/compression.py new file mode 100644 index 0000000000000000000000000000000000000000..c237e97064f349155117351c19232749a127acb1 --- /dev/null +++ b/dreamcoder/compression.py @@ -0,0 +1,282 @@ +import datetime +import json +import os +import pickle +import subprocess +import sys + +from dreamcoder.fragmentGrammar import FragmentGrammar +from dreamcoder.frontier import Frontier, FrontierEntry +from dreamcoder.grammar import Grammar +from dreamcoder.task import Task +from dreamcoder.program import Program, Invented +from dreamcoder.utilities import eprint, timing, callCompiled, get_root_dir +from dreamcoder.vs import induceGrammar_Beta + + +def induceGrammar(*args, **kwargs): + if sum(not f.empty for f in args[1]) == 0: + eprint("No nonempty frontiers, exiting grammar induction early.") + return args[0], args[1] + backend = kwargs.pop("backend", "pypy") + if 'pypy' in backend: + # pypy might not like some of the imports needed for the primitives + # but the primitive values are irrelevant for compression + # therefore strip them out and then replace them once we are done + # ditto for task data + g0,frontiers = args[0].strip_primitive_values(), \ + [front.strip_primitive_values() for front in args[1]] + original_tasks = {f.task.name: f.task for f in frontiers} + frontiers = [Frontier(f.entries, Task(f.task.name,f.task.request,[])) + for f in frontiers ] + args = [g0,frontiers] + + + with timing("Induced a grammar"): + if backend == "pypy": + g, newFrontiers = callCompiled(pypyInduce, *args, **kwargs) + elif backend == "rust": + g, newFrontiers = rustInduce(*args, **kwargs) + elif backend == "vs": + g, newFrontiers = rustInduce(*args, vs=True, **kwargs) + elif backend == "pypy_vs": + kwargs.pop('iteration') + kwargs.pop('topk_use_only_likelihood') + fn = '/tmp/vs.pickle' + with open(fn, 'wb') as handle: + pickle.dump((args, kwargs), handle) + eprint("For debugging purposes, the version space compression invocation has been saved to", fn) + g, newFrontiers = callCompiled(induceGrammar_Beta, *args, **kwargs) + elif backend == "ocaml": + kwargs.pop('iteration') + kwargs.pop('topk_use_only_likelihood') + kwargs['topI'] = 300 + kwargs['bs'] = 1000000 + g, newFrontiers = ocamlInduce(*args, **kwargs) + elif backend == "memorize": + g, newFrontiers = memorizeInduce(*args, **kwargs) + else: + assert False, "unknown compressor" + + if 'pypy' in backend: + g, newFrontiers = g.unstrip_primitive_values(), \ + [front.unstrip_primitive_values() for front in newFrontiers] + newFrontiers = [Frontier(f.entries, original_tasks[f.task.name]) + for f in newFrontiers] + + + return g, newFrontiers + +def memorizeInduce(g, frontiers, **kwargs): + existingInventions = {p.uncurry() + for p in g.primitives } + programs = {f.bestPosterior.program for f in frontiers if not f.empty} + newInventions = programs - existingInventions + newGrammar = Grammar.uniform([p for p in g.primitives] + \ + [Invented(ni) for ni in newInventions]) + + # rewrite in terms of new primitives + def substitute(p): + nonlocal newInventions + if p in newInventions: return Invented(p).uncurry() + return p + newFrontiers = [Frontier([FrontierEntry(program=np, + logPrior=newGrammar.logLikelihood(f.task.request, np), + logLikelihood=e.logLikelihood) + for e in f + for np in [substitute(e.program)] ], + task=f.task) + for f in frontiers ] + return newGrammar, newFrontiers + + + + + +def pypyInduce(*args, **kwargs): + kwargs.pop('iteration') + return FragmentGrammar.induceFromFrontiers(*args, **kwargs) + + +def ocamlInduce(g, frontiers, _=None, + topK=1, pseudoCounts=1.0, aic=1.0, + structurePenalty=0.001, a=0, CPUs=1, + bs=1000000, topI=300): + # This is a dirty hack! + # Memory consumption increases with the number of CPUs + # And early on we have a lot of stuff to compress + # If this is the first iteration, only use a fraction of the available CPUs + if all(not p.isInvented for p in g.primitives): + if a > 3: + CPUs = max(1, int(CPUs / 6)) + else: + CPUs = max(1, int(CPUs / 3)) + else: + CPUs = max(1, int(CPUs / 2)) + CPUs = 2 + + # X X X FIXME X X X + # for unknown reasons doing compression all in one go works correctly and doing it with Python and the outer loop causes problems + iterations = 99 # maximum number of components to add at once + + while True: + g0 = g + + originalFrontiers = frontiers + t2f = {f.task: f for f in frontiers} + frontiers = [f for f in frontiers if not f.empty] + message = {"arity": a, + "topK": topK, + "pseudoCounts": float(pseudoCounts), + "aic": aic, + "bs": bs, + "topI": topI, + "structurePenalty": float(structurePenalty), + "CPUs": CPUs, + "DSL": g.json(), + "iterations": iterations, + "frontiers": [f.json() + for f in frontiers]} + + message = json.dumps(message) + if True: + timestamp = datetime.datetime.now().isoformat() + os.system("mkdir -p compressionMessages") + fn = "compressionMessages/%s" % timestamp + with open(fn, "w") as f: + f.write(message) + eprint("Compression message saved to:", fn) + + try: + # Get relative path + compressor_file = os.path.join(get_root_dir(), 'compression') + process = subprocess.Popen(compressor_file, + stdin=subprocess.PIPE, + stdout=subprocess.PIPE) + response, error = process.communicate(bytes(message, encoding="utf-8")) + response = json.loads(response.decode("utf-8")) + except OSError as exc: + raise exc + + g = response["DSL"] + g = Grammar(g["logVariable"], + [(l, p.infer(), p) + for production in g["productions"] + for l in [production["logProbability"]] + for p in [Program.parse(production["expression"])]], + continuationType=g0.continuationType) + + frontiers = {original.task: + Frontier([FrontierEntry(p, + logLikelihood=e["logLikelihood"], + logPrior=g.logLikelihood(original.task.request, p)) + for e in new["programs"] + for p in [Program.parse(e["program"])]], + task=original.task) + for original, new in zip(frontiers, response["frontiers"])} + frontiers = [frontiers.get(f.task, t2f[f.task]) + for f in originalFrontiers] + if iterations == 1 and len(g) > len(g0): + eprint("Grammar changed - running another round of consolidation.") + continue + else: + eprint("Finished consolidation.") + return g, frontiers + + +def rustInduce(g0, frontiers, _=None, + topK=1, pseudoCounts=1.0, aic=1.0, + structurePenalty=0.001, a=0, CPUs=1, iteration=-1, + topk_use_only_likelihood=False, + vs=False): + def finite_logp(l): + return l if l != float("-inf") else -1000 + + message = { + "strategy": {"version-spaces": {"top_i": 50}} + if vs else + {"fragment-grammars": {}}, + "params": { + "structure_penalty": structurePenalty, + "pseudocounts": int(pseudoCounts + 0.5), + "topk": topK, + "topk_use_only_likelihood": topk_use_only_likelihood, + "aic": aic if aic != float("inf") else None, + "arity": a, + }, + "primitives": [{"name": p.name, "tp": str(t), "logp": finite_logp(l)} + for l, t, p in g0.productions if p.isPrimitive], + "inventions": [{"expression": str(p.body), + "logp": finite_logp(l)} # -inf=-100 + for l, t, p in g0.productions if p.isInvented], + "variable_logprob": finite_logp(g0.logVariable), + "frontiers": [{ + "task_tp": str(f.task.request), + "solutions": [{ + "expression": str(e.program), + "logprior": finite_logp(e.logPrior), + "loglikelihood": e.logLikelihood, + } for e in f], + } for f in frontiers], + } + + eprint("running rust compressor") + + messageJson = json.dumps(message) + + with open("jsonDebug", "w") as f: + f.write(messageJson) + + # check which version of python we are using + # if >=3.6 do: + if sys.version_info[1] >= 6: + p = subprocess.Popen( + ['./rust_compressor/rust_compressor'], + encoding='utf-8', + stdin=subprocess.PIPE, + stdout=subprocess.PIPE) + elif sys.version_info[1] == 5: + p = subprocess.Popen( + ['./rust_compressor/rust_compressor'], + stdin=subprocess.PIPE, + stdout=subprocess.PIPE) + + messageJson = bytearray(messageJson, encoding='utf-8') + # convert messageJson string to bytes + else: + eprint("must be python 3.5 or 3.6") + assert False + + p.stdin.write(messageJson) + p.stdin.flush() + p.stdin.close() + + if p.returncode is not None: + raise ValueError("rust compressor failed") + + if sys.version_info[1] >= 6: + resp = json.load(p.stdout) + elif sys.version_info[1] == 5: + import codecs + resp = json.load(codecs.getreader('utf-8')(p.stdout)) + + productions = [(x["logp"], p) for p, x in + zip((p for (_, _, p) in g0.productions if p.isPrimitive), resp["primitives"])] + \ + [(i["logp"], Invented(Program.parse(i["expression"]))) + for i in resp["inventions"]] + productions = [(l if l is not None else float("-inf"), p) + for l, p in productions] + g = Grammar.fromProductions(productions, resp["variable_logprob"], continuationType=g0.continuationType) + newFrontiers = [ + Frontier( + [ + FrontierEntry( + Program.parse( + s["expression"]), + logPrior=s["logprior"], + logLikelihood=s["loglikelihood"]) for s in r["solutions"]], + f.task) for f, + r in zip( + frontiers, + resp["frontiers"])] + return g, newFrontiers diff --git a/dreamcoder/deprecated/__init__.py b/dreamcoder/deprecated/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/dreamcoder/deprecated/network.py b/dreamcoder/deprecated/network.py new file mode 100644 index 0000000000000000000000000000000000000000..f17df5fd6210f3268305d4e3b8c1a8ae2237c745 --- /dev/null +++ b/dreamcoder/deprecated/network.py @@ -0,0 +1,479 @@ +""" +Deprecated network.py module. This file only exists to support backwards-compatibility +with old pickle files. See lib/__init__.py for more information. +""" + +from __future__ import print_function + +import torch +import torch.nn as nn +import torch.nn.functional as F +from torch.autograd import Variable +from torch.nn.parameter import Parameter + + +# UPGRADING TO INPUT -> OUTPUT -> TARGET +# Todo: +# [X] Output attending to input +# [X] Target attending to output +# [ ] check passing hidden state between encoders/decoder (+ pass c?) +# [ ] add v_output + + +def choose(matrix, idxs): + if isinstance(idxs, Variable): + idxs = idxs.data + assert(matrix.ndimension() == 2) + unrolled_idxs = idxs + \ + torch.arange(0, matrix.size(0)).type_as(idxs) * matrix.size(1) + return matrix.view(matrix.nelement())[unrolled_idxs] + + +class Network(nn.Module): + """ + Todo: + - Beam search + - check if this is right? attend during P->FC rather than during softmax->P? + - allow length 0 inputs/targets + - give n_examples as input to FC + - Initialise new weights randomly, rather than as zeroes + """ + + def __init__( + self, + input_vocabulary, + target_vocabulary, + hidden_size=512, + embedding_size=128, + cell_type="LSTM"): + """ + :param list input_vocabulary: list of possible inputs + :param list target_vocabulary: list of possible targets + """ + super(Network, self).__init__() + self.h_input_encoder_size = hidden_size + self.h_output_encoder_size = hidden_size + self.h_decoder_size = hidden_size + self.embedding_size = embedding_size + self.input_vocabulary = input_vocabulary + self.target_vocabulary = target_vocabulary + # Number of tokens in input vocabulary + self.v_input = len(input_vocabulary) + # Number of tokens in target vocabulary + self.v_target = len(target_vocabulary) + + self.cell_type = cell_type + if cell_type == 'GRU': + self.input_encoder_cell = nn.GRUCell( + input_size=self.v_input + 1, + hidden_size=self.h_input_encoder_size, + bias=True) + self.input_encoder_init = Parameter( + torch.rand(1, self.h_input_encoder_size)) + self.output_encoder_cell = nn.GRUCell( + input_size=self.v_input + + 1 + + self.h_input_encoder_size, + hidden_size=self.h_output_encoder_size, + bias=True) + self.decoder_cell = nn.GRUCell( + input_size=self.v_target + 1, + hidden_size=self.h_decoder_size, + bias=True) + if cell_type == 'LSTM': + self.input_encoder_cell = nn.LSTMCell( + input_size=self.v_input + 1, + hidden_size=self.h_input_encoder_size, + bias=True) + self.input_encoder_init = nn.ParameterList([Parameter(torch.rand( + 1, self.h_input_encoder_size)), Parameter(torch.rand(1, self.h_input_encoder_size))]) + self.output_encoder_cell = nn.LSTMCell( + input_size=self.v_input + + 1 + + self.h_input_encoder_size, + hidden_size=self.h_output_encoder_size, + bias=True) + self.output_encoder_init_c = Parameter( + torch.rand(1, self.h_output_encoder_size)) + self.decoder_cell = nn.LSTMCell( + input_size=self.v_target + 1, + hidden_size=self.h_decoder_size, + bias=True) + self.decoder_init_c = Parameter(torch.rand(1, self.h_decoder_size)) + + self.W = nn.Linear( + self.h_output_encoder_size + + self.h_decoder_size, + self.embedding_size) + self.V = nn.Linear(self.embedding_size, self.v_target + 1) + self.input_A = nn.Bilinear( + self.h_input_encoder_size, + self.h_output_encoder_size, + 1, + bias=False) + self.output_A = nn.Bilinear( + self.h_output_encoder_size, + self.h_decoder_size, + 1, + bias=False) + self.input_EOS = torch.zeros(1, self.v_input + 1) + self.input_EOS[:, -1] = 1 + self.input_EOS = Parameter(self.input_EOS) + self.output_EOS = torch.zeros(1, self.v_input + 1) + self.output_EOS[:, -1] = 1 + self.output_EOS = Parameter(self.output_EOS) + self.target_EOS = torch.zeros(1, self.v_target + 1) + self.target_EOS[:, -1] = 1 + self.target_EOS = Parameter(self.target_EOS) + + def __getstate__(self): + if hasattr(self, 'opt'): + return dict([(k, v) for k, v in self.__dict__.items( + ) if k is not 'opt'] + [('optstate', self.opt.state_dict())]) + # return {**{k:v for k,v in self.__dict__.items() if k is not 'opt'}, + # 'optstate': self.opt.state_dict()} + else: + return self.__dict__ + + def __setstate__(self, state): + self.__dict__.update(state) + # Legacy: + if isinstance(self.input_encoder_init, tuple): + self.input_encoder_init = nn.ParameterList( + list(self.input_encoder_init)) + + def clear_optimiser(self): + if hasattr(self, 'opt'): + del self.opt + if hasattr(self, 'optstate'): + del self.optstate + + def get_optimiser(self): + self.opt = torch.optim.Adam(self.parameters(), lr=0.001) + if hasattr(self, 'optstate'): + self.opt.load_state_dict(self.optstate) + + def optimiser_step(self, inputs, outputs, target): + if not hasattr(self, 'opt'): + self.get_optimiser() + score = self.score(inputs, outputs, target, autograd=True).mean() + (-score).backward() + self.opt.step() + self.opt.zero_grad() + return score.data[0] + + def set_target_vocabulary(self, target_vocabulary): + if target_vocabulary == self.target_vocabulary: + return + + V_weight = [] + V_bias = [] + decoder_ih = [] + + for i in range(len(target_vocabulary)): + if target_vocabulary[i] in self.target_vocabulary: + j = self.target_vocabulary.index(target_vocabulary[i]) + V_weight.append(self.V.weight.data[j:j + 1]) + V_bias.append(self.V.bias.data[j:j + 1]) + decoder_ih.append(self.decoder_cell.weight_ih.data[:, j:j + 1]) + else: + V_weight.append(torch.zeros(1, self.V.weight.size(1))) + V_bias.append(torch.ones(1) * -10) + decoder_ih.append( + torch.zeros( + self.decoder_cell.weight_ih.data.size(0), 1)) + + V_weight.append(self.V.weight.data[-1:]) + V_bias.append(self.V.bias.data[-1:]) + decoder_ih.append(self.decoder_cell.weight_ih.data[:, -1:]) + + self.target_vocabulary = target_vocabulary + self.v_target = len(target_vocabulary) + self.target_EOS.data = torch.zeros(1, self.v_target + 1) + self.target_EOS.data[:, -1] = 1 + + self.V.weight.data = torch.cat(V_weight, dim=0) + self.V.bias.data = torch.cat(V_bias, dim=0) + self.V.out_features = self.V.bias.data.size(0) + + self.decoder_cell.weight_ih.data = torch.cat(decoder_ih, dim=1) + self.decoder_cell.input_size = self.decoder_cell.weight_ih.data.size(1) + + self.clear_optimiser() + + def input_encoder_get_init(self, batch_size): + if self.cell_type == "GRU": + return self.input_encoder_init.repeat(batch_size, 1) + if self.cell_type == "LSTM": + return tuple(x.repeat(batch_size, 1) + for x in self.input_encoder_init) + + def output_encoder_get_init(self, input_encoder_h): + if self.cell_type == "GRU": + return input_encoder_h + if self.cell_type == "LSTM": + return ( + input_encoder_h, + self.output_encoder_init_c.repeat( + input_encoder_h.size(0), + 1)) + + def decoder_get_init(self, output_encoder_h): + if self.cell_type == "GRU": + return output_encoder_h + if self.cell_type == "LSTM": + return ( + output_encoder_h, + self.decoder_init_c.repeat( + output_encoder_h.size(0), + 1)) + + def cell_get_h(self, cell_state): + if self.cell_type == "GRU": + return cell_state + if self.cell_type == "LSTM": + return cell_state[0] + + def score(self, inputs, outputs, target, autograd=False): + inputs = self.inputsToTensors(inputs) + outputs = self.inputsToTensors(outputs) + target = self.targetToTensor(target) + target, score = self.run(inputs, outputs, target=target, mode="score") + # target = self.tensorToOutput(target) + if autograd: + return score + else: + return score.data + + def sample(self, inputs, outputs): + inputs = self.inputsToTensors(inputs) + outputs = self.inputsToTensors(outputs) + target, score = self.run(inputs, outputs, mode="sample") + target = self.tensorToOutput(target) + return target + + def sampleAndScore(self, inputs, outputs, nRepeats=None): + inputs = self.inputsToTensors(inputs) + outputs = self.inputsToTensors(outputs) + if nRepeats is None: + target, score = self.run(inputs, outputs, mode="sample") + target = self.tensorToOutput(target) + return target, score.data + else: + target = [] + score = [] + for i in range(nRepeats): + # print("repeat %d" % i) + t, s = self.run(inputs, outputs, mode="sample") + t = self.tensorToOutput(t) + target.extend(t) + score.extend(list(s.data)) + return target, score + + def run(self, inputs, outputs, target=None, mode="sample"): + """ + :param mode: "score" returns log p(target|input), "sample" returns target ~ p(-|input) + :param List[LongTensor] inputs: n_examples * (max_length_input * batch_size) + :param List[LongTensor] target: max_length_target * batch_size + """ + assert((mode == "score" and target is not None) or mode == "sample") + + n_examples = len(inputs) + max_length_input = [inputs[j].size(0) for j in range(n_examples)] + max_length_output = [outputs[j].size(0) for j in range(n_examples)] + max_length_target = target.size(0) if target is not None else 10 + batch_size = inputs[0].size(1) + + score = Variable(torch.zeros(batch_size)) + inputs_scatter = [Variable(torch.zeros(max_length_input[j], batch_size, self.v_input + 1).scatter_( + 2, inputs[j][:, :, None], 1)) for j in range(n_examples)] # n_examples * (max_length_input * batch_size * v_input+1) + outputs_scatter = [Variable(torch.zeros(max_length_output[j], batch_size, self.v_input + 1).scatter_( + 2, outputs[j][:, :, None], 1)) for j in range(n_examples)] # n_examples * (max_length_output * batch_size * v_input+1) + if target is not None: + target_scatter = Variable(torch.zeros(max_length_target, + batch_size, + self.v_target + 1).scatter_(2, + target[:, + :, + None], + 1)) # max_length_target * batch_size * v_target+1 + + # -------------- Input Encoder ------------- + + # n_examples * (max_length_input * batch_size * h_encoder_size) + input_H = [] + input_embeddings = [] # h for example at INPUT_EOS + # 0 until (and including) INPUT_EOS, then -inf + input_attention_mask = [] + for j in range(n_examples): + active = torch.Tensor(max_length_input[j], batch_size).byte() + active[0, :] = 1 + state = self.input_encoder_get_init(batch_size) + hs = [] + for i in range(max_length_input[j]): + state = self.input_encoder_cell( + inputs_scatter[j][i, :, :], state) + if i + 1 < max_length_input[j]: + active[i + 1, :] = active[i, :] * \ + (inputs[j][i, :] != self.v_input) + h = self.cell_get_h(state) + hs.append(h[None, :, :]) + input_H.append(torch.cat(hs, 0)) + embedding_idx = active.sum(0).long() - 1 + embedding = input_H[j].gather(0, Variable( + embedding_idx[None, :, None].repeat(1, 1, self.h_input_encoder_size)))[0] + input_embeddings.append(embedding) + input_attention_mask.append(Variable(active.float().log())) + + # -------------- Output Encoder ------------- + + def input_attend(j, h_out): + """ + 'general' attention from https://arxiv.org/pdf/1508.04025.pdf + :param j: Index of example + :param h_out: batch_size * h_output_encoder_size + """ + scores = self.input_A( + input_H[j].view( + max_length_input[j] * batch_size, + self.h_input_encoder_size), + h_out.view( + batch_size, + self.h_output_encoder_size).repeat( + max_length_input[j], + 1)).view( + max_length_input[j], + batch_size) + input_attention_mask[j] + c = (F.softmax(scores[:, :, None], dim=0) * input_H[j]).sum(0) + return c + + # n_examples * (max_length_input * batch_size * h_encoder_size) + output_H = [] + output_embeddings = [] # h for example at INPUT_EOS + # 0 until (and including) INPUT_EOS, then -inf + output_attention_mask = [] + for j in range(n_examples): + active = torch.Tensor(max_length_output[j], batch_size).byte() + active[0, :] = 1 + state = self.output_encoder_get_init(input_embeddings[j]) + hs = [] + h = self.cell_get_h(state) + for i in range(max_length_output[j]): + state = self.output_encoder_cell(torch.cat( + [outputs_scatter[j][i, :, :], input_attend(j, h)], 1), state) + if i + 1 < max_length_output[j]: + active[i + 1, :] = active[i, :] * \ + (outputs[j][i, :] != self.v_input) + h = self.cell_get_h(state) + hs.append(h[None, :, :]) + output_H.append(torch.cat(hs, 0)) + embedding_idx = active.sum(0).long() - 1 + embedding = output_H[j].gather(0, Variable( + embedding_idx[None, :, None].repeat(1, 1, self.h_output_encoder_size)))[0] + output_embeddings.append(embedding) + output_attention_mask.append(Variable(active.float().log())) + + # ------------------ Decoder ----------------- + + def output_attend(j, h_dec): + """ + 'general' attention from https://arxiv.org/pdf/1508.04025.pdf + :param j: Index of example + :param h_dec: batch_size * h_decoder_size + """ + scores = self.output_A( + output_H[j].view( + max_length_output[j] * batch_size, + self.h_output_encoder_size), + h_dec.view( + batch_size, + self.h_decoder_size).repeat( + max_length_output[j], + 1)).view( + max_length_output[j], + batch_size) + output_attention_mask[j] + c = (F.softmax(scores[:, :, None], dim=0) * output_H[j]).sum(0) + return c + + # Multi-example pooling: Figure 3, https://arxiv.org/pdf/1703.07469.pdf + target = target if mode == "score" else torch.zeros( + max_length_target, batch_size).long() + decoder_states = [ + self.decoder_get_init( + output_embeddings[j]) for j in range(n_examples)] # P + active = torch.ones(batch_size).byte() + for i in range(max_length_target): + FC = [] + for j in range(n_examples): + h = self.cell_get_h(decoder_states[j]) + p_aug = torch.cat([h, output_attend(j, h)], 1) + FC.append(F.tanh(self.W(p_aug)[None, :, :])) + # batch_size * embedding_size + m = torch.max(torch.cat(FC, 0), 0)[0] + logsoftmax = F.log_softmax(self.V(m), dim=1) + if mode == "sample": + target[i, :] = torch.multinomial( + logsoftmax.data.exp(), 1)[:, 0] + score = score + \ + choose(logsoftmax, target[i, :]) * Variable(active.float()) + active *= (target[i, :] != self.v_target) + for j in range(n_examples): + if mode == "score": + target_char_scatter = target_scatter[i, :, :] + elif mode == "sample": + target_char_scatter = Variable(torch.zeros( + batch_size, self.v_target + 1).scatter_(1, target[i, :, None], 1)) + decoder_states[j] = self.decoder_cell( + target_char_scatter, decoder_states[j]) + return target, score + + def inputsToTensors(self, inputss): + """ + :param inputss: size = nBatch * nExamples + """ + tensors = [] + for j in range(len(inputss[0])): + inputs = [x[j] for x in inputss] + maxlen = max(len(s) for s in inputs) + t = torch.ones( + 1 if maxlen == 0 else maxlen + 1, + len(inputs)).long() * self.v_input + for i in range(len(inputs)): + s = inputs[i] + if len(s) > 0: + t[:len(s), i] = torch.LongTensor( + [self.input_vocabulary.index(x) for x in s]) + tensors.append(t) + return tensors + + def targetToTensor(self, targets): + """ + :param targets: + """ + maxlen = max(len(s) for s in targets) + t = torch.ones( + 1 if maxlen == 0 else maxlen + 1, + len(targets)).long() * self.v_target + for i in range(len(targets)): + s = targets[i] + if len(s) > 0: + t[:len(s), i] = torch.LongTensor( + [self.target_vocabulary.index(x) for x in s]) + return t + + def tensorToOutput(self, tensor): + """ + :param tensor: max_length * batch_size + """ + out = [] + for i in range(tensor.size(1)): + l = tensor[:, i].tolist() + if l[0] == self.v_target: + out.append([]) + elif self.v_target in l: + final = tensor[:, i].tolist().index(self.v_target) + out.append([self.target_vocabulary[x] + for x in tensor[:final, i]]) + else: + out.append([self.target_vocabulary[x] for x in tensor[:, i]]) + return out diff --git a/dreamcoder/differentiation.py b/dreamcoder/differentiation.py new file mode 100644 index 0000000000000000000000000000000000000000..c2d662a5bcb8602c17253f91713231f38e82d666 --- /dev/null +++ b/dreamcoder/differentiation.py @@ -0,0 +1,393 @@ +import math +import random +from dreamcoder.utilities import * + + +class InvalidLoss(Exception): + pass + + +class DN(object): + '''differentiable node: parent object of every differentiable operation''' + + def __init__(self, arguments): + self.gradient = None + if arguments != []: + self.data = None + self.arguments = arguments + + # descendents: every variable that takes this variable as input + # descendents: [(DN,float)] + # the additional float parameter is d Descendent / d This + self.descendents = [] + + self.recalculate() + + def __str__(self): + if self.arguments == []: + return self.name + return "(%s %s)" % (self.name, " ".join(str(x) + for x in self.arguments)) + + def __repr__(self): + return "DN(op = %s, data = %s, grad = %s, #descendents = %d, args = %s)" % ( + self.name, self.data, self.gradient, len(self.descendents), self.arguments) + + @property + def derivative(self): return self.differentiate() + + def differentiate(self): + if self.gradient is None: + self.gradient = sum(partial * descendent.differentiate() + for descendent, partial in self.descendents) + return self.gradient + + def zeroEverything(self): + if self.gradient is None and self.descendents == [] and ( + self.data is None or self.arguments == []): + return + + self.gradient = None + self.descendents = [] + if self.arguments != []: + self.data = None + + for x in self.arguments: + x.zeroEverything() + + def lightweightRecalculate(self): + return self.forward(*[a.lightweightRecalculate() + for a in self.arguments]) + + def recalculate(self): + if self.data is None: + inputs = [a.recalculate() for a in self.arguments] + self.data = self.forward(*inputs) + # if invalid(self.data): + # eprint("I am invalid",repr(self)) + # eprint("Here are my inputs",inputs) + # self.zeroEverything() + # eprint("Here I am after being zeroed",repr(self)) + # raise Exception('invalid loss') + #assert valid(self.data) + partials = self.backward(*inputs) + for d, a in zip(partials, self.arguments): + # if invalid(d): + # eprint("I have an invalid derivative",self) + # eprint("Inputs",inputs) + # eprint("partials",partials) + # raise Exception('invalid derivative') + a.descendents.append((self, d)) + return self.data + + def backPropagation(self): + self.gradient = 1. + self.recursivelyDifferentiate() + + def recursivelyDifferentiate(self): + self.differentiate() + for x in self.arguments: + x.recursivelyDifferentiate() + + def updateNetwork(self): + self.zeroEverything() + l = self.recalculate() + self.backPropagation() + return l + + def log(self): return Logarithm(self) + + def square(self): return Square(self) + + def exp(self): return Exponentiation(self) + + def clamp(self, l, u): return Clamp(self, l, u) + + def __abs__(self): return AbsoluteValue(self) + + def __add__(self, o): return Addition(self, Placeholder.maybe(o)) + + def __radd__(self, o): return Addition(self, Placeholder.maybe(o)) + + def __sub__(self, o): return Subtraction(self, Placeholder.maybe(o)) + + def __rsub__(self, o): return Subtraction(Placeholder.maybe(o), self) + + def __mul__(self, o): return Multiplication(self, Placeholder.maybe(o)) + + def __rmul__(self, o): return Multiplication(self, Placeholder.maybe(o)) + + def __neg__(self): return Negation(self) + + def __truediv__(self, o): return Division(self, Placeholder.maybe(o)) + + def __rtruediv__(self, o): return Division(Placeholder.maybe(o), self) + + def numericallyVerifyGradients(self, parameters): + calculatedGradients = [p.derivative for p in parameters] + e = 0.00001 + for j, p in enumerate(parameters): + p.data -= e + y1 = self.lightweightRecalculate() + p.data += 2 * e + y2 = self.lightweightRecalculate() + p.data -= e + d = (y2 - y1) / (2 * e) + if abs(calculatedGradients[j] - d) > 0.1: + eprint( + "Bad gradient: expected %f, got %f" % + (d, calculatedGradients[j])) + + def gradientDescent( + self, + parameters, + _=None, + lr=0.001, + steps=10**3, + update=None): + for j in range(steps): + l = self.updateNetwork() + if update is not None and j % update == 0: + eprint("LOSS:", l) + for p in parameters: + eprint(p.data, '\t', p.derivative) + if invalid(l): + raise InvalidLoss() + + for p in parameters: + p.data -= lr * p.derivative + return self.data + + def restartingOptimize(self, parameters, _=None, attempts=1, + s=1., decay=0.5, grow=0.1, + lr=0.1, steps=10**3, update=None): + ls = [] + for _ in range(attempts): + for p in parameters: + p.data = random.random()*10 - 5 + ls.append( + self.resilientBackPropagation( + parameters, lr=lr, steps=steps, + decay=decay, grow=grow)) + return min(ls) + + def resilientBackPropagation( + self, + parameters, + _=None, + decay=0.5, + grow=1.2, + lr=0.1, + steps=10**3, + update=None): + previousSign = [None] * len(parameters) + lr = [lr] * len(parameters) + for j in range(steps): + l = self.updateNetwork() + + if update is not None and j % update == 0: + eprint("LOSS:", l) + eprint("\t".join(str(p.derivative) for p in parameters)) + if invalid(l): + raise InvalidLoss() + + newSigns = [p.derivative > 0 for p in parameters] + for i, p in enumerate(parameters): + if p.derivative > 0: + p.data -= lr[i] + elif p.derivative < 0: + p.data += lr[i] + if previousSign[i] is not None: + if previousSign[i] == newSigns[i]: + lr[i] *= grow + else: + lr[i] *= decay + previousSign = newSigns + + return self.data + + +class Placeholder(DN): + COUNTER = 0 + + def __init__(self, initialValue=0., name=None): + self.data = initialValue + super(Placeholder, self).__init__([]) + if name is None: + name = "p_" + str(Placeholder.COUNTER) + Placeholder.COUNTER += 1 + self.name = name + + @staticmethod + def named(namePrefix, initialValue=0.): + p = Placeholder(initialValue, namePrefix + str(Placeholder.COUNTER)) + Placeholder.COUNTER += 1 + return p + + def __str__(self): + return "Placeholder(%s = %s)" % (self.name, self.data) + + @staticmethod + def maybe(x): + if isinstance(x, DN): + return x + return Placeholder(float(x)) + + def forward(self): return self.data + + def backward(self): return [] + + +class Clamp(DN): + def __init__(self, x, l, u): + assert u > l + self.l = l + self.u = u + super(Clamp, self).__init__([x]) + self.name = "clamp" + + def forward(self, x): + if x > self.u: + return self.u + if x < self.l: + return self.l + return x + + def backward(self, x): + if x > self.u or x < self.l: + return [0.] + else: + return [1.] + + +class Addition(DN): + def __init__(self, x, y): + super(Addition, self).__init__([x, y]) + self.name = '+' + + def forward(self, x, y): return x + y + + def backward(self, x, y): return [1., 1.] + + +class Subtraction(DN): + def __init__(self, x, y): + super(Subtraction, self).__init__([x, y]) + self.name = '-' + + def forward(self, x, y): return x - y + + def backward(self, x, y): return [1., -1.] + + +class Negation(DN): + def __init__(self, x): + super(Negation, self).__init__([x]) + self.name = '-' + + def forward(self, x): return -x + + def backward(self, x): return [-1.] + + +class AbsoluteValue(DN): + def __init__(self, x): + super(AbsoluteValue, self).__init__([x]) + self.name = 'abs' + + def forward(self, x): return abs(x) + + def backward(self, x): + if x > 0: + return [1.] + return [-1.] + + +class Multiplication(DN): + def __init__(self, x, y): + super(Multiplication, self).__init__([x, y]) + self.name = '*' + + def forward(self, x, y): return x * y + + def backward(self, x, y): return [y, x] + + +class Division(DN): + def __init__(self, x, y): + super(Division, self).__init__([x, y]) + self.name = '/' + + def forward(self, x, y): return x / y + + def backward(self, x, y): return [1.0 / y, -x / (y * y)] + + +class Square(DN): + def __init__(self, x): + super(Square, self).__init__([x]) + self.name = 'sq' + + def forward(self, x): return x * x + + def backward(self, x): return [2 * x] + + +class Exponentiation(DN): + def __init__(self, x): + super(Exponentiation, self).__init__([x]) + self.name = 'exp' + + def forward(self, x): return math.exp(x) + + def backward(self, x): return [math.exp(x)] + + +class Logarithm(DN): + def __init__(self, x): + super(Logarithm, self).__init__([x]) + self.name = 'log' + + def forward(self, x): return math.log(x) + + def backward(self, x): return [1. / x] + + +class LSE(DN): + def __init__(self, xs): + super(LSE, self).__init__(xs) + self.name = 'LSE' + + def forward(self, *xs): + m = max(xs) + return m + math.log(sum(math.exp(y - m) for y in xs)) + + def backward(self, *xs): + m = max(xs) + zm = sum(math.exp(x - m) for x in xs) + return [math.exp(x - m) / zm for x in xs] + + +if __name__ == "__main__": + x = Placeholder(10., "x") + y = Placeholder(2., "y") + z = x - LSE([x, y]) + z.updateNetwork() + eprint("dL/dx = %f\tdL/dy = %f" % (x.derivative, y.derivative)) + + x.data = 2. + y.data = 10. + z.updateNetwork() + eprint("dL/dx = %f\tdL/dy = %f" % (x.differentiate(), y.differentiate())) + + x.data = 2. + y.data = 2. + z.updateNetwork() + eprint("z = ", z.data, z) + eprint("dL/dx = %f\tdL/dy = %f" % (x.differentiate(), y.differentiate())) + + loss = -z + eprint(loss) + + lr = 0.001 + loss.gradientDescent([x, y], steps=10000, update=1000) diff --git a/dreamcoder/domains/__init__.py b/dreamcoder/domains/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/dreamcoder/domains/__pycache__/__init__.cpython-39.pyc b/dreamcoder/domains/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d465b82c97d051cadc35d6f6bf5e74e081fa8bfd Binary files /dev/null and b/dreamcoder/domains/__pycache__/__init__.cpython-39.pyc differ diff --git a/dreamcoder/domains/arithmetic/__init__.py b/dreamcoder/domains/arithmetic/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/dreamcoder/domains/arithmetic/__pycache__/__init__.cpython-39.pyc b/dreamcoder/domains/arithmetic/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..31dcf58c8770ade26694787a8d4d53089c34bd26 Binary files /dev/null and b/dreamcoder/domains/arithmetic/__pycache__/__init__.cpython-39.pyc differ diff --git a/dreamcoder/domains/arithmetic/__pycache__/arithmeticPrimitives.cpython-39.pyc b/dreamcoder/domains/arithmetic/__pycache__/arithmeticPrimitives.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c1f2dd08ab80e796d831605d3fb4e5da3093c9e1 Binary files /dev/null and b/dreamcoder/domains/arithmetic/__pycache__/arithmeticPrimitives.cpython-39.pyc differ diff --git a/dreamcoder/domains/arithmetic/arithmeticPrimitives.py b/dreamcoder/domains/arithmetic/arithmeticPrimitives.py new file mode 100644 index 0000000000000000000000000000000000000000..ad0890fcd189146d8c6c6802492558535b34be49 --- /dev/null +++ b/dreamcoder/domains/arithmetic/arithmeticPrimitives.py @@ -0,0 +1,58 @@ +from dreamcoder.program import * +from dreamcoder.type import * + + +def _addition(x): return lambda y: x + y + + +def _subtraction(x): return lambda y: x - y + + +def _division(x): return lambda y: x / y + + +subtraction = Primitive("-", + arrow(tint, arrow(tint, tint)), + _subtraction) +real_subtraction = Primitive("-.", + arrow(treal, treal, treal), + _subtraction) +addition = Primitive("+", + arrow(tint, arrow(tint, tint)), + Curried(_addition)) +real_addition = Primitive("+.", + arrow(treal, treal, treal), + _addition) + + +def _multiplication(x): return lambda y: x * y + + +multiplication = Primitive("*", + arrow(tint, arrow(tint, tint)), + _multiplication) +real_multiplication = Primitive("*.", + arrow(treal, treal, treal), + _multiplication) +real_division = Primitive("/.", + arrow(treal, treal, treal), + _division) + + +def _power(a): return lambda b: a**b + + +real_power = Primitive("power", + arrow(treal, treal, treal), + _power) + +k1 = Primitive("1", tint, 1) +k_negative1 = Primitive("negative_1", tint, -1) +k0 = Primitive("0", tint, 0) +for n in range(2,10): + Primitive(str(n),tint,n) + +f1 = Primitive("1.", treal, 1.) +f0 = Primitive("0.", treal, 0) +real = Primitive("REAL", treal, None) +fpi = Primitive("pi", treal, 3.14) diff --git a/dreamcoder/domains/list/__init__.py b/dreamcoder/domains/list/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/dreamcoder/domains/list/__pycache__/__init__.cpython-39.pyc b/dreamcoder/domains/list/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4fe3acc4814e3b0d474577afadda9d0240d2249c Binary files /dev/null and b/dreamcoder/domains/list/__pycache__/__init__.cpython-39.pyc differ diff --git a/dreamcoder/domains/list/__pycache__/listPrimitives.cpython-39.pyc b/dreamcoder/domains/list/__pycache__/listPrimitives.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8bdaacf8ab2fda6a516b4475b22e30031e741c11 Binary files /dev/null and b/dreamcoder/domains/list/__pycache__/listPrimitives.cpython-39.pyc differ diff --git a/dreamcoder/domains/list/__pycache__/main.cpython-39.pyc b/dreamcoder/domains/list/__pycache__/main.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..984c92ef39daf47b321af37f38fcb4296df72957 Binary files /dev/null and b/dreamcoder/domains/list/__pycache__/main.cpython-39.pyc differ diff --git a/dreamcoder/domains/list/__pycache__/makeListTasks.cpython-39.pyc b/dreamcoder/domains/list/__pycache__/makeListTasks.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..648006cd5dbd473a9146ec90ffa168b3cf8bbede Binary files /dev/null and b/dreamcoder/domains/list/__pycache__/makeListTasks.cpython-39.pyc differ diff --git a/dreamcoder/domains/list/listPrimitives.py b/dreamcoder/domains/list/listPrimitives.py new file mode 100644 index 0000000000000000000000000000000000000000..0cd35e2248c1a6c4fb04a79a9bd7d983acc3d0a9 --- /dev/null +++ b/dreamcoder/domains/list/listPrimitives.py @@ -0,0 +1,546 @@ +from dreamcoder.program import Primitive, Program +from dreamcoder.grammar import Grammar +from dreamcoder.type import tlist, tint, tbool, arrow, t0, t1, t2 + +import math +from functools import reduce + + +def _flatten(l): return [x for xs in l for x in xs] + +def _range(n): + if n < 100: return list(range(n)) + raise ValueError() +def _if(c): return lambda t: lambda f: t if c else f + + +def _and(x): return lambda y: x and y + + +def _or(x): return lambda y: x or y + + +def _addition(x): return lambda y: x + y + + +def _subtraction(x): return lambda y: x - y + + +def _multiplication(x): return lambda y: x * y + + +def _negate(x): return -x + + +def _reverse(x): return list(reversed(x)) + + +def _append(x): return lambda y: x + y + + +def _cons(x): return lambda y: [x] + y + + +def _car(x): return x[0] + + +def _cdr(x): return x[1:] + + +def _isEmpty(x): return x == [] + + +def _single(x): return [x] + + +def _slice(x): return lambda y: lambda l: l[x:y] + + +def _map(f): return lambda l: list(map(f, l)) + + +def _zip(a): return lambda b: lambda f: list(map(lambda x,y: f(x)(y), a, b)) + + +def _mapi(f): return lambda l: list(map(lambda i_x: f(i_x[0])(i_x[1]), enumerate(l))) + + +def _reduce(f): return lambda x0: lambda l: reduce(lambda a, x: f(a)(x), l, x0) + + +def _reducei(f): return lambda x0: lambda l: reduce( + lambda a, t: f(t[0])(a)(t[1]), enumerate(l), x0) + + +def _fold(l): return lambda x0: lambda f: reduce( + lambda a, x: f(x)(a), l[::-1], x0) + + +def _eq(x): return lambda y: x == y + + +def _eq0(x): return x == 0 + + +def _a1(x): return x + 1 + + +def _d1(x): return x - 1 + + +def _mod(x): return lambda y: x % y + + +def _not(x): return not x + + +def _gt(x): return lambda y: x > y + + +def _index(j): return lambda l: l[j] + + +def _replace(f): return lambda lnew: lambda lin: _flatten( + lnew if f(i)(x) else [x] for i, x in enumerate(lin)) + + +def _isPrime(n): + return n in { + 2, + 3, + 5, + 7, + 11, + 13, + 17, + 19, + 23, + 29, + 31, + 37, + 41, + 43, + 47, + 53, + 59, + 61, + 67, + 71, + 73, + 79, + 83, + 89, + 97, + 101, + 103, + 107, + 109, + 113, + 127, + 131, + 137, + 139, + 149, + 151, + 157, + 163, + 167, + 173, + 179, + 181, + 191, + 193, + 197, + 199} + + +def _isSquare(n): + return int(math.sqrt(n)) ** 2 == n + + +def _appendmap(f): lambda xs: [y for x in xs for y in f(x)] + + +def _filter(f): return lambda l: list(filter(f, l)) + + +def _any(f): return lambda l: any(f(x) for x in l) + + +def _all(f): return lambda l: all(f(x) for x in l) + + +def _find(x): + def _inner(l): + try: + return l.index(x) + except ValueError: + return -1 + return _inner + + +def _unfold(x): return lambda p: lambda h: lambda n: __unfold(p, f, n, x) + + +def __unfold(p, f, n, x, recursion_limit=50): + if recursion_limit <= 0: + raise RecursionDepthExceeded() + if p(x): + return [] + return [f(x)] + __unfold(p, f, n, n(x), recursion_limit - 1) + + +class RecursionDepthExceeded(Exception): + pass + + +def _fix(argument): + def inner(body): + recursion_limit = [20] + + def fix(x): + def r(z): + recursion_limit[0] -= 1 + if recursion_limit[0] <= 0: + raise RecursionDepthExceeded() + else: + return fix(z) + + return body(r)(x) + return fix(argument) + + return inner + + +def curry(f): return lambda x: lambda y: f((x, y)) + + +def _fix2(a1): + return lambda a2: lambda body: \ + _fix((a1, a2))(lambda r: lambda n_l: body(curry(r))(n_l[0])(n_l[1])) + + +primitiveRecursion1 = Primitive("fix1", + arrow(t0, + arrow(arrow(t0, t1), t0, t1), + t1), + _fix) + +primitiveRecursion2 = Primitive("fix2", + arrow(t0, t1, + arrow(arrow(t0, t1, t2), t0, t1, t2), + t2), + _fix2) + + +def _match(l): + return lambda b: lambda f: b if l == [] else f(l[0])(l[1:]) + + +def primitives(): + return [Primitive(str(j), tint, j) for j in range(6)] + [ + Primitive("empty", tlist(t0), []), + Primitive("singleton", arrow(t0, tlist(t0)), _single), + Primitive("range", arrow(tint, tlist(tint)), _range), + Primitive("++", arrow(tlist(t0), tlist(t0), tlist(t0)), _append), + # Primitive("map", arrow(arrow(t0, t1), tlist(t0), tlist(t1)), _map), + Primitive( + "mapi", + arrow( + arrow( + tint, + t0, + t1), + tlist(t0), + tlist(t1)), + _mapi), + # Primitive("reduce", arrow(arrow(t1, t0, t1), t1, tlist(t0), t1), _reduce), + Primitive( + "reducei", + arrow( + arrow( + tint, + t1, + t0, + t1), + t1, + tlist(t0), + t1), + _reducei), + + Primitive("true", tbool, True), + Primitive("not", arrow(tbool, tbool), _not), + Primitive("and", arrow(tbool, tbool, tbool), _and), + Primitive("or", arrow(tbool, tbool, tbool), _or), + # Primitive("if", arrow(tbool, t0, t0, t0), _if), + + Primitive("sort", arrow(tlist(tint), tlist(tint)), sorted), + Primitive("+", arrow(tint, tint, tint), _addition), + Primitive("*", arrow(tint, tint, tint), _multiplication), + Primitive("negate", arrow(tint, tint), _negate), + Primitive("mod", arrow(tint, tint, tint), _mod), + Primitive("eq?", arrow(tint, tint, tbool), _eq), + Primitive("gt?", arrow(tint, tint, tbool), _gt), + Primitive("is-prime", arrow(tint, tbool), _isPrime), + Primitive("is-square", arrow(tint, tbool), _isSquare), + + # these are achievable with above primitives, but unlikely + #Primitive("flatten", arrow(tlist(tlist(t0)), tlist(t0)), _flatten), + # (lambda (reduce (lambda (lambda (++ $1 $0))) empty $0)) + Primitive("sum", arrow(tlist(tint), tint), sum), + # (lambda (lambda (reduce (lambda (lambda (+ $0 $1))) 0 $0))) + Primitive("reverse", arrow(tlist(t0), tlist(t0)), _reverse), + # (lambda (reduce (lambda (lambda (++ (singleton $0) $1))) empty $0)) + Primitive("all", arrow(arrow(t0, tbool), tlist(t0), tbool), _all), + # (lambda (lambda (reduce (lambda (lambda (and $0 $1))) true (map $1 $0)))) + Primitive("any", arrow(arrow(t0, tbool), tlist(t0), tbool), _any), + # (lambda (lambda (reduce (lambda (lambda (or $0 $1))) true (map $1 $0)))) + Primitive("index", arrow(tint, tlist(t0), t0), _index), + # (lambda (lambda (reducei (lambda (lambda (lambda (if (eq? $1 $4) $0 0)))) 0 $0))) + Primitive("filter", arrow(arrow(t0, tbool), tlist(t0), tlist(t0)), _filter), + # (lambda (lambda (reduce (lambda (lambda (++ $1 (if ($3 $0) (singleton $0) empty)))) empty $0))) + #Primitive("replace", arrow(arrow(tint, t0, tbool), tlist(t0), tlist(t0), tlist(t0)), _replace), + # (FLATTEN (lambda (lambda (lambda (mapi (lambda (lambda (if ($4 $1 $0) $3 (singleton $1)))) $0))))) + Primitive("slice", arrow(tint, tint, tlist(t0), tlist(t0)), _slice), + # (lambda (lambda (lambda (reducei (lambda (lambda (lambda (++ $2 (if (and (or (gt? $1 $5) (eq? $1 $5)) (not (or (gt? $4 $1) (eq? $1 $4)))) (singleton $0) empty))))) empty $0)))) + ] + + +def basePrimitives(): + return [Primitive(str(j), tint, j) for j in range(6)] + [ + Primitive("*", arrow(tint, tint, tint), _multiplication), + Primitive("gt?", arrow(tint, tint, tbool), _gt), + Primitive("is-prime", arrow(tint, tbool), _isPrime), + Primitive("is-square", arrow(tint, tbool), _isSquare), + # McCarthy + Primitive("empty", tlist(t0), []), + Primitive("cons", arrow(t0, tlist(t0), tlist(t0)), _cons), + Primitive("car", arrow(tlist(t0), t0), _car), + Primitive("cdr", arrow(tlist(t0), tlist(t0)), _cdr), + Primitive("empty?", arrow(tlist(t0), tbool), _isEmpty), + Primitive("if", arrow(tbool, t0, t0, t0), _if), + Primitive("eq?", arrow(tint, tint, tbool), _eq), + Primitive("+", arrow(tint, tint, tint), _addition), + Primitive("-", arrow(tint, tint, tint), _subtraction) + ] + +zip_primitive = Primitive("zip", arrow(tlist(t0), tlist(t1), arrow(t0, t1, t2), tlist(t2)), _zip) + +def bootstrapTarget(): + """These are the primitives that we hope to learn from the bootstrapping procedure""" + return [ + # learned primitives + Primitive("map", arrow(arrow(t0, t1), tlist(t0), tlist(t1)), _map), + Primitive("unfold", arrow(t0, arrow(t0,tbool), arrow(t0,t1), arrow(t0,t0), tlist(t1)), _unfold), + Primitive("range", arrow(tint, tlist(tint)), _range), + Primitive("index", arrow(tint, tlist(t0), t0), _index), + Primitive("fold", arrow(tlist(t0), t1, arrow(t0, t1, t1), t1), _fold), + Primitive("length", arrow(tlist(t0), tint), len), + + # built-ins + Primitive("if", arrow(tbool, t0, t0, t0), _if), + Primitive("+", arrow(tint, tint, tint), _addition), + Primitive("-", arrow(tint, tint, tint), _subtraction), + Primitive("empty", tlist(t0), []), + Primitive("cons", arrow(t0, tlist(t0), tlist(t0)), _cons), + Primitive("car", arrow(tlist(t0), t0), _car), + Primitive("cdr", arrow(tlist(t0), tlist(t0)), _cdr), + Primitive("empty?", arrow(tlist(t0), tbool), _isEmpty), + ] + [Primitive(str(j), tint, j) for j in range(2)] + + +def bootstrapTarget_extra(): + """This is the bootstrap target plus list domain specific stuff""" + return bootstrapTarget() + [ + Primitive("*", arrow(tint, tint, tint), _multiplication), + Primitive("mod", arrow(tint, tint, tint), _mod), + Primitive("gt?", arrow(tint, tint, tbool), _gt), + Primitive("eq?", arrow(tint, tint, tbool), _eq), + Primitive("is-prime", arrow(tint, tbool), _isPrime), + Primitive("is-square", arrow(tint, tbool), _isSquare), + ] + +def no_length(): + """this is the primitives without length because one of the reviewers wanted this""" + return [p for p in bootstrapTarget() if p.name != "length"] + [ + Primitive("*", arrow(tint, tint, tint), _multiplication), + Primitive("mod", arrow(tint, tint, tint), _mod), + Primitive("gt?", arrow(tint, tint, tbool), _gt), + Primitive("eq?", arrow(tint, tint, tbool), _eq), + Primitive("is-prime", arrow(tint, tbool), _isPrime), + Primitive("is-square", arrow(tint, tbool), _isSquare), + ] + + +def McCarthyPrimitives(): + "These are < primitives provided by 1959 lisp as introduced by McCarthy" + return [ + Primitive("empty", tlist(t0), []), + Primitive("cons", arrow(t0, tlist(t0), tlist(t0)), _cons), + Primitive("car", arrow(tlist(t0), t0), _car), + Primitive("cdr", arrow(tlist(t0), tlist(t0)), _cdr), + Primitive("empty?", arrow(tlist(t0), tbool), _isEmpty), + #Primitive("unfold", arrow(t0, arrow(t0,t1), arrow(t0,t0), arrow(t0,tbool), tlist(t1)), _isEmpty), + #Primitive("1+", arrow(tint,tint),None), + # Primitive("range", arrow(tint, tlist(tint)), range), + # Primitive("map", arrow(arrow(t0, t1), tlist(t0), tlist(t1)), _map), + # Primitive("index", arrow(tint,tlist(t0),t0),None), + # Primitive("length", arrow(tlist(t0),tint),None), + primitiveRecursion1, + #primitiveRecursion2, + Primitive("gt?", arrow(tint, tint, tbool), _gt), + Primitive("if", arrow(tbool, t0, t0, t0), _if), + Primitive("eq?", arrow(tint, tint, tbool), _eq), + Primitive("+", arrow(tint, tint, tint), _addition), + Primitive("-", arrow(tint, tint, tint), _subtraction), + ] + [Primitive(str(j), tint, j) for j in range(2)] + + +if __name__ == "__main__": + bootstrapTarget() + g = Grammar.uniform(McCarthyPrimitives()) + # with open("/home/ellisk/om/ec/experimentOutputs/list_aic=1.0_arity=3_ET=1800_expandFrontier=2.0_it=4_likelihoodModel=all-or-nothing_MF=5_baseline=False_pc=10.0_L=1.0_K=5_rec=False.pickle", "rb") as handle: + # b = pickle.load(handle).grammars[-1] + # print b + + p = Program.parse( + "(lambda (lambda (lambda (if (empty? $0) empty (cons (+ (car $1) (car $0)) ($2 (cdr $1) (cdr $0)))))))") + t = arrow(tlist(tint), tlist(tint), tlist(tint)) # ,tlist(tbool)) + print(g.logLikelihood(arrow(t, t), p)) + assert False + print(b.logLikelihood(arrow(t, t), p)) + + # p = Program.parse("""(lambda (lambda + # (unfold 0 + # (lambda (+ (index $0 $2) (index $0 $1))) + # (lambda (1+ $0)) + # (lambda (eq? $0 (length $1)))))) + # """) + p = Program.parse("""(lambda (lambda + (map (lambda (+ (index $0 $2) (index $0 $1))) (range (length $0)) )))""") + # .replace("unfold", "#(lambda (lambda (lambda (lambda (fix1 $0 (lambda (lambda (#(lambda (lambda (lambda (if $0 empty (cons $1 $2))))) ($1 ($3 $0)) ($4 $0) ($5 $0)))))))))").\ + # replace("length", "#(lambda (fix1 $0 (lambda (lambda (if (empty? $0) 0 (+ ($1 (cdr $0)) 1))))))").\ + # replace("forloop", "(#(lambda (lambda (lambda (lambda (fix1 $0 (lambda (lambda (#(lambda (lambda (lambda (if $0 empty (cons $1 $2))))) ($1 ($3 $0)) ($4 $0) ($5 $0))))))))) (lambda (#(eq? 0) $0)) $0 (lambda (#(lambda (- $0 1)) $0)))").\ + # replace("inc","#(lambda (+ $0 1))").\ + # replace("drop","#(lambda (lambda (fix2 $0 $1 (lambda (lambda (lambda (if + # (#(eq? 0) $1) $0 (cdr ($2 (- $1 1) $0)))))))))")) + print(p) + print(g.logLikelihood(t, p)) + assert False + + print("??") + p = Program.parse( + "#(lambda (#(lambda (lambda (lambda (fix1 $0 (lambda (lambda (if (empty? $0) $3 ($4 (car $0) ($1 (cdr $0)))))))))) (lambda $1) 1))") + for j in range(10): + l = list(range(j)) + print(l, p.evaluate([])(lambda x: x * 2)(l)) + print() + print() + + print("multiply") + p = Program.parse( + "(lambda (lambda (lambda (if (eq? $0 0) 0 (+ $1 ($2 $1 (- $0 1)))))))") + print(g.logLikelihood(arrow(arrow(tint, tint, tint), tint, tint, tint), p)) + print() + + print("take until 0") + p = Program.parse("(lambda (lambda (if (eq? $1 0) empty (cons $1 $0))))") + print(g.logLikelihood(arrow(tint, tlist(tint), tlist(tint)), p)) + print() + + print("countdown primitive") + p = Program.parse( + "(lambda (lambda (if (eq? $0 0) empty (cons (+ $0 1) ($1 (- $0 1))))))") + print( + g.logLikelihood( + arrow( + arrow( + tint, tlist(tint)), arrow( + tint, tlist(tint))), p)) + print(_fix(9)(p.evaluate([]))) + print("countdown w/ better primitives") + p = Program.parse( + "(lambda (lambda (if (eq0 $0) empty (cons (+1 $0) ($1 (-1 $0))))))") + print( + g.logLikelihood( + arrow( + arrow( + tint, tlist(tint)), arrow( + tint, tlist(tint))), p)) + + print() + + print("prepend zeros") + p = Program.parse( + "(lambda (lambda (lambda (if (eq? $1 0) $0 (cons 0 ($2 (- $1 1) $0))))))") + print( + g.logLikelihood( + arrow( + arrow( + tint, + tlist(tint), + tlist(tint)), + tint, + tlist(tint), + tlist(tint)), + p)) + print() + assert False + + p = Program.parse( + "(lambda (fix1 $0 (lambda (lambda (if (empty? $0) 0 (+ 1 ($1 (cdr $0))))))))") + print(p.evaluate([])(list(range(17)))) + print(g.logLikelihood(arrow(tlist(tbool), tint), p)) + + p = Program.parse( + "(lambda (lambda (if (empty? $0) 0 (+ 1 ($1 (cdr $0))))))") + print( + g.logLikelihood( + arrow( + arrow( + tlist(tbool), tint), arrow( + tlist(tbool), tint)), p)) + + p = Program.parse( + "(lambda (fix1 $0 (lambda (lambda (if (empty? $0) 0 (+ (car $0) ($1 (cdr $0))))))))") + + print(p.evaluate([])(list(range(4)))) + print(g.logLikelihood(arrow(tlist(tint), tint), p)) + + p = Program.parse( + "(lambda (lambda (if (empty? $0) 0 (+ (car $0) ($1 (cdr $0))))))") + print(p) + print( + g.logLikelihood( + arrow( + arrow( + tlist(tint), + tint), + tlist(tint), + tint), + p)) + + print("take") + p = Program.parse( + "(lambda (lambda (lambda (if (eq? $1 0) empty (cons (car $0) ($2 (- $1 1) (cdr $0)))))))") + print(p) + print( + g.logLikelihood( + arrow( + arrow( + tint, + tlist(tint), + tlist(tint)), + tint, + tlist(tint), + tlist(tint)), + p)) + assert False + + print(p.evaluate([])(list(range(4)))) + print(g.logLikelihood(arrow(tlist(tint), tlist(tint)), p)) + + p = Program.parse( + """(lambda (fix (lambda (lambda (match $0 0 (lambda (lambda (+ $1 ($3 $0))))))) $0))""") + print(p.evaluate([])(list(range(4)))) + print(g.logLikelihood(arrow(tlist(tint), tint), p)) diff --git a/dreamcoder/domains/list/main.py b/dreamcoder/domains/list/main.py new file mode 100644 index 0000000000000000000000000000000000000000..10245a562ca488c4d6ed0483880eda779fbf3e64 --- /dev/null +++ b/dreamcoder/domains/list/main.py @@ -0,0 +1,346 @@ +import random +from collections import defaultdict +import json +import math +import os +import datetime + +from dreamcoder.dreamcoder import explorationCompression +from dreamcoder.utilities import eprint, flatten, testTrainSplit +from dreamcoder.grammar import Grammar +from dreamcoder.task import Task +from dreamcoder.type import Context, arrow, tbool, tlist, tint, t0, UnificationFailure +from dreamcoder.domains.list.listPrimitives import basePrimitives, primitives, McCarthyPrimitives, bootstrapTarget_extra, no_length +from dreamcoder.domains.list.makeListTasks import make_list_bootstrap_tasks, sortBootstrap, EASYLISTTASKS + + +def retrieveJSONTasks(filename, features=False): + """ + For JSON of the form: + {"name": str, + "type": {"input" : bool|int|list-of-bool|list-of-int, + "output": bool|int|list-of-bool|list-of-int}, + "examples": [{"i": data, "o": data}]} + """ + with open(filename, "r") as f: + loaded = json.load(f) + TP = { + "bool": tbool, + "int": tint, + "list-of-bool": tlist(tbool), + "list-of-int": tlist(tint), + } + return [Task( + item["name"], + arrow(TP[item["type"]["input"]], TP[item["type"]["output"]]), + [((ex["i"],), ex["o"]) for ex in item["examples"]], + features=(None if not features else list_features( + [((ex["i"],), ex["o"]) for ex in item["examples"]])), + cache=False, + ) for item in loaded] + + +def list_features(examples): + if any(isinstance(i, int) for (i,), _ in examples): + # obtain features for number inputs as list of numbers + examples = [(([i],), o) for (i,), o in examples] + elif any(not isinstance(i, list) for (i,), _ in examples): + # can't handle non-lists + return [] + elif any(isinstance(x, list) for (xs,), _ in examples for x in xs): + # nested lists are hard to extract features for, so we'll + # obtain features as if flattened + examples = [(([x for xs in ys for x in xs],), o) + for (ys,), o in examples] + + # assume all tasks have the same number of examples + # and all inputs are lists + features = [] + ot = type(examples[0][1]) + + def mean(l): return 0 if not l else sum(l) / len(l) + imean = [mean(i) for (i,), o in examples] + ivar = [sum((v - imean[idx])**2 + for v in examples[idx][0][0]) + for idx in range(len(examples))] + + # DISABLED length of each input and output + # total difference between length of input and output + # DISABLED normalized count of numbers in input but not in output + # total normalized count of numbers in input but not in output + # total difference between means of input and output + # total difference between variances of input and output + # output type (-1=bool, 0=int, 1=list) + # DISABLED outputs if integers, else -1s + # DISABLED outputs if bools (-1/1), else 0s + if ot == list: # lists of ints or bools + omean = [mean(o) for (i,), o in examples] + ovar = [sum((v - omean[idx])**2 + for v in examples[idx][1]) + for idx in range(len(examples))] + + def cntr( + l, o): return 0 if not l else len( + set(l).difference( + set(o))) / len(l) + cnt_not_in_output = [cntr(i, o) for (i,), o in examples] + + #features += [len(i) for (i,), o in examples] + #features += [len(o) for (i,), o in examples] + features.append(sum(len(i) - len(o) for (i,), o in examples)) + #features += cnt_not_int_output + features.append(sum(cnt_not_in_output)) + features.append(sum(om - im for im, om in zip(imean, omean))) + features.append(sum(ov - iv for iv, ov in zip(ivar, ovar))) + features.append(1) + # features += [-1 for _ in examples] + # features += [0 for _ in examples] + elif ot == bool: + outs = [o for (i,), o in examples] + + #features += [len(i) for (i,), o in examples] + #features += [-1 for _ in examples] + features.append(sum(len(i) for (i,), o in examples)) + #features += [0 for _ in examples] + features.append(0) + features.append(sum(imean)) + features.append(sum(ivar)) + features.append(-1) + # features += [-1 for _ in examples] + # features += [1 if o else -1 for o in outs] + else: # int + def cntr( + l, o): return 0 if not l else len( + set(l).difference( + set(o))) / len(l) + cnt_not_in_output = [cntr(i, [o]) for (i,), o in examples] + outs = [o for (i,), o in examples] + + #features += [len(i) for (i,), o in examples] + #features += [1 for (i,), o in examples] + features.append(sum(len(i) for (i,), o in examples)) + #features += cnt_not_int_output + features.append(sum(cnt_not_in_output)) + features.append(sum(o - im for im, o in zip(imean, outs))) + features.append(sum(ivar)) + features.append(0) + # features += outs + # features += [0 for _ in examples] + + return features + + +def isListFunction(tp): + try: + Context().unify(tp, arrow(tlist(tint), t0)) + return True + except UnificationFailure: + return False + + +def isIntFunction(tp): + try: + Context().unify(tp, arrow(tint, t0)) + return True + except UnificationFailure: + return False + +try: + from dreamcoder.recognition import RecurrentFeatureExtractor + class LearnedFeatureExtractor(RecurrentFeatureExtractor): + H = 64 + + special = None + + def tokenize(self, examples): + def sanitize(l): return [z if z in self.lexicon else "?" + for z_ in l + for z in (z_ if isinstance(z_, list) else [z_])] + + tokenized = [] + for xs, y in examples: + if isinstance(y, list): + y = ["LIST_START"] + y + ["LIST_END"] + else: + y = [y] + y = sanitize(y) + if len(y) > self.maximumLength: + return None + + serializedInputs = [] + for xi, x in enumerate(xs): + if isinstance(x, list): + x = ["LIST_START"] + x + ["LIST_END"] + else: + x = [x] + x = sanitize(x) + if len(x) > self.maximumLength: + return None + serializedInputs.append(x) + + tokenized.append((tuple(serializedInputs), y)) + + return tokenized + + def __init__(self, tasks, testingTasks=[], cuda=False): + self.lexicon = set(flatten((t.examples for t in tasks + testingTasks), abort=lambda x: isinstance( + x, str))).union({"LIST_START", "LIST_END", "?"}) + + # Calculate the maximum length + self.maximumLength = float('inf') # Believe it or not this is actually important to have here + self.maximumLength = max(len(l) + for t in tasks + testingTasks + for xs, y in self.tokenize(t.examples) + for l in [y] + [x for x in xs]) + + self.recomputeTasks = True + + super( + LearnedFeatureExtractor, + self).__init__( + lexicon=list( + self.lexicon), + tasks=tasks, + cuda=cuda, + H=self.H, + bidirectional=True) +except: pass + +def train_necessary(t): + if t.name in {"head", "is-primes", "len", "pop", "repeat-many", "tail", "keep primes", "keep squares"}: + return True + if any(t.name.startswith(x) for x in { + "add-k", "append-k", "bool-identify-geq-k", "count-k", "drop-k", + "empty", "evens", "has-k", "index-k", "is-mod-k", "kth-largest", + "kth-smallest", "modulo-k", "mult-k", "remove-index-k", + "remove-mod-k", "repeat-k", "replace-all-with-index-k", "rotate-k", + "slice-k-n", "take-k", + }): + return "some" + return False + + +def list_options(parser): + parser.add_argument( + "--noMap", action="store_true", default=False, + help="Disable built-in map primitive") + parser.add_argument( + "--noUnfold", action="store_true", default=False, + help="Disable built-in unfold primitive") + parser.add_argument( + "--noLength", action="store_true", default=False, + help="Disable built-in length primitive") + parser.add_argument( + "--dataset", + type=str, + default="Lucas-old", + choices=[ + "bootstrap", + "sorting", + "Lucas-old", + "Lucas-depth1", + "Lucas-depth2", + "Lucas-depth3"]) + parser.add_argument("--maxTasks", type=int, + default=None, + help="truncate tasks to fit within this boundary") + parser.add_argument("--primitives", + default="common", + help="Which primitive set to use", + choices=["McCarthy", "base", "rich", "common", "noLength"]) + parser.add_argument("--extractor", type=str, + choices=["hand", "deep", "learned"], + default="learned") + parser.add_argument("--split", metavar="TRAIN_RATIO", + type=float, + help="split test/train") + parser.add_argument("-H", "--hidden", type=int, + default=64, + help="number of hidden units") + parser.add_argument("--random-seed", type=int, default=17) + + +def main(dataset='Lucas-old', maxTasks=10_000): + """ + Takes the return value of the `commandlineArguments()` function as input and + trains/tests the model on manipulating sequences of numbers. + """ + random.seed(9) + + tasks = { + "Lucas-old": lambda: retrieveJSONTasks("data/list_tasks.json") + sortBootstrap(), + "bootstrap": make_list_bootstrap_tasks, + "sorting": sortBootstrap, + # removed as file over 10MB + # "Lucas-depth1": lambda: retrieveJSONTasks("data/list_tasks2.json")[:105], + # "Lucas-depth2": lambda: retrieveJSONTasks("data/list_tasks2.json")[:4928], + # "Lucas-depth3": lambda: retrieveJSONTasks("data/list_tasks2.json"), + }[dataset]() + + if maxTasks and len(tasks) > maxTasks: + necessaryTasks = [] # maxTasks will not consider these + if dataset.startswith("Lucas2.0") and dataset != "Lucas2.0-depth1": + necessaryTasks = tasks[:105] + + eprint("Unwilling to handle {} tasks, truncating..".format(len(tasks))) + random.shuffle(tasks) + del tasks[maxTasks:] + tasks = necessaryTasks + tasks + + if dataset.startswith("Lucas"): + # extra tasks for filter + tasks.extend([ + Task("remove empty lists", + arrow(tlist(tlist(tbool)), tlist(tlist(tbool))), + [((ls,), list(filter(lambda l: len(l) > 0, ls))) + for _ in range(15) + for ls in [[[random.random() < 0.5 for _ in range(random.randint(0, 3))] + for _ in range(4)]]]), + Task("keep squares", + arrow(tlist(tint), tlist(tint)), + [((xs,), list(filter(lambda x: int(math.sqrt(x)) ** 2 == x, + xs))) + for _ in range(15) + for xs in [[random.choice([0, 1, 4, 9, 16, 25]) + if random.random() < 0.5 + else random.randint(0, 9) + for _ in range(7)]]]), + Task("keep primes", + arrow(tlist(tint), tlist(tint)), + [((xs,), list(filter(lambda x: x in {2, 3, 5, 7, 11, 13, 17, + 19, 23, 29, 31, 37}, xs))) + for _ in range(15) + for xs in [[random.choice([2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37]) + if random.random() < 0.5 + else random.randint(0, 9) + for _ in range(7)]]]), + ]) + for i in range(4): + tasks.extend([ + Task("keep eq %s" % i, + arrow(tlist(tint), tlist(tint)), + [((xs,), list(filter(lambda x: x == i, xs))) + for _ in range(15) + for xs in [[random.randint(0, 6) for _ in range(5)]]]), + Task("remove eq %s" % i, + arrow(tlist(tint), tlist(tint)), + [((xs,), list(filter(lambda x: x != i, xs))) + for _ in range(15) + for xs in [[random.randint(0, 6) for _ in range(5)]]]), + Task("keep gt %s" % i, + arrow(tlist(tint), tlist(tint)), + [((xs,), list(filter(lambda x: x > i, xs))) + for _ in range(15) + for xs in [[random.randint(0, 6) for _ in range(5)]]]), + Task("remove gt %s" % i, + arrow(tlist(tint), tlist(tint)), + [((xs,), list(filter(lambda x: not x > i, xs))) + for _ in range(15) + for xs in [[random.randint(0, 6) for _ in range(5)]]]) + ]) + + def isIdentityTask(t): + return all( len(xs) == 1 and xs[0] == y for xs, y in t.examples ) + eprint("Removed", sum(isIdentityTask(t) for t in tasks), "tasks that were just the identity function") + tasks = [t for t in tasks if not isIdentityTask(t) ] + return tasks diff --git a/dreamcoder/domains/list/makeListTasks.py b/dreamcoder/domains/list/makeListTasks.py new file mode 100644 index 0000000000000000000000000000000000000000..a490198624f6356d585002495c099904956162b6 --- /dev/null +++ b/dreamcoder/domains/list/makeListTasks.py @@ -0,0 +1,587 @@ + + +from dreamcoder.type import * +from dreamcoder.task import Task +from dreamcoder.utilities import eprint, hashable + +from random import randint, random, seed +from itertools import product + +# Excluded routines either impossible or astronomically improbable +# I'm cutting these off at ~20 nats in learned grammars. +EXCLUDES = { + "dedup", + "intersperse-k", + "pow-base-k", + "prime", + "replace-all-k-with-n", + "replace-index-k-with-n", + "uniq", +} + +# These are tasks that are easy (solved from base DSL) and also uninteresting +# We exclude these from the test set +EASYLISTTASKS = { + "add-k with k=2", + "bool-identify-geq-k with k=2", + "bool-identify-geq-k with k=3", + "bool-identify-is-mod-k with k=1", + "bool-identify-is-prime", + "bool-identify-k with k=0", + "bool-identify-k with k=1", + "bool-identify-k with k=2", + "caesar-cipher-k-modulo-n with k=3 and n=2", + "drop-k with k=1", + "drop-k with k=2", + "drop-k with k=4", + "index-head", + "index-k with k=2", + "index-k with k=4", + "is-mod-k with k=1", + "is-odds", + "is-squares", + "pow-k with k=2", + "pow-k with k=3", + "prepend-index-k with k=3", + "prepend-index-k with k=5", + "prepend-k with k=1", + "prepend-k with k=2", + "prepend-k with k=3", + "remove-index-k with k=1", + "replace-all-with-index-k with k=2", + "replace-all-with-index-k with k=3", + "slice-k-n with k=1 and n=2", + "slice-k-n with k=2 and n=1", + "slice-k-n with k=3 and n=1", +} + +def make_list_task(name, examples, **params): + input_type = guess_type([i for (i,), _ in examples]) + output_type = guess_type([o for _, o in examples]) + + # We can internally handle lists of bools. + # We explicitly create these by modifying existing routines. + if name.startswith("identify"): + boolexamples = [((i,), list(map(bool, o))) for (i,), o in examples] + yield from make_list_task("bool-" + name, boolexamples, **params) + # for now, we'll stick with the boolean-only tasks and not have a copy + # for integers. + return + + program_type = arrow(input_type, output_type) + cache = all(hashable(x) for x in examples) + + if params: + eq_params = ["{}={}".format(k, v) for k, v in params.items()] + if len(eq_params) == 1: + ext = eq_params[0] + elif len(eq_params) == 2: + ext = "{} and {}".format(*eq_params) + else: + ext = ", ".join(eq_params[:-1]) + ext = "{}, and {}".format(ext, eq_params[-1]) + name += " with " + ext + + yield Task(name, program_type, examples, cache=cache) + + +def make_list_tasks(n_examples=4): + import listroutines as lr + + for routine in lr.find(count=100): # all routines + if routine.id in EXCLUDES: + continue + if routine.is_parametric(): + keys = list(routine.example_params()[0].keys()) + for params in map(lambda values: dict(zip(keys, values)), + product(range(6), repeat=len(keys))): + try: + if routine.id == "rotate-k": + # rotate-k is hard if list is smaller than k + k = params["k"] + if k < 1: + continue + inps = [] + for _ in range(n_examples): + r = randint(abs(k) + 1, 17) + inp = routine.gen(len=r, **params)[0] + inps.append(inp) + else: + inps = routine.gen(count=n_examples, **params) + examples = [((inp,), routine.eval(inp, **params)) + for inp in inps] + yield from make_list_task(routine.id, examples, **params) + except lr.APIError: # invalid params + continue + else: + inps = routine.examples() + if len(inps) > n_examples: + inps = inps[:n_examples] + elif len(inps) < n_examples: + inps += routine.gen(count=(n_examples - len(inps))) + examples = [((inp,), routine.eval(inp)) for inp in inps] + yield from make_list_task(routine.id, examples) + + +def make_list_bootstrap_tasks(): + seed(42) + + def suffixes(l): + if l == []: + return [] + else: + return [l[1:]] + suffixes(l[1:]) + + def flip(): return random() > 0.5 + + def randomSuffix(): + return [randint(0, 9) for _ in range(randint(1, 4))] + + def randomList(minimum=0, minimumLength=4, maximumLength=6): + return [randint(minimum, 9) for _ in range(randint(minimumLength, maximumLength))] + + def randomListOfLists(): + return [randomSuffix() for _ in range(randint(2, 4))] + + def randomListOfLists_bool(l=None): + if l is None: + l = randint(4, 7) + return [randomBooleanList() for _ in range(l)] + + def randomBooleanList(): + return [flip() for _ in range(randint(4, 7))] + + # Reliably learned in under a minute; always triggers learning of length + # primitive + lengthBootstrap = [ + # Task("length bool", arrow(tlist(tbool), tint), + # [((l,), len(l)) + # for _ in range(10) + # for l in [[flip() for _ in range(randint(0, 10))]]]), + Task("length int", arrow(tlist(tint), tint), + [((l,), len(l)) + for _ in range(10) + for l in [randomList()]]), + Task("map length", arrow(tlist(tlist(tint)), tlist(tint)), + [((xss,), [len(xs) for xs in xss]) + for _ in range(10) + for xss in [randomListOfLists()] ]) + ] + + # Encourages learning of unfolding + unfoldBootstrap = [ + Task("countdown", arrow(tint, tlist(tint)), + [((n,), list(range(n + 1, 1, -1))) + for n in range(10)]), + Task("weird count", arrow(tint, tlist(tint)), + [((n,), list(range(-n,0,-1))) + for n in range(-10,0) ]), + Task("take every other", arrow(tlist(tint),tlist(tint)), + [((l,), [x for j,x in enumerate(l) if j%2 == 0]) + for _ in range(9) + for l in [ [randint(0, 9) for _ in range(randint(1,4)*2)] ] ] + [(([],),[])]), + # Task("stutter every other", arrow(tlist(tint),tlist(tint)), + # [((l,), [l[int(j/2)] for j in range(len(l)) ]) + # for _ in range(10) + # for l in [ [randint(0, 9) for _ in range(randint(1,4)*2)] ] ]), + # Task("take until 3 reached", arrow(tlist(tint),tlist(tint)), + # [((p + [3] + s,),p) + # for _ in range(10) + # for p in [ [z for z in randomList()[:5] if z != 3 ]] + # for s in [randomList()] ]), + Task("drop last element", arrow(tlist(tint),tlist(tint)), + [((l,), l[:-1]) + for _ in range(10) + for l in [ [randint(0, 9) for _ in range(randint(2,5))] ] ]), + # Task("suffixes", arrow(tlist(tint), tlist(tlist(tint))), + # [((l,), suffixes(l)) + # for _ in range(10) + # for l in [randomList()]]), + Task("range", arrow(tint, tlist(tint)), + [((n,), list(range(n))) + for n in range(10)]), + Task("range inclusive", arrow(tint, tlist(tint)), + [((n,), list(range(n + 1))) + for n in range(10)]), + # Task("range inclusive+1", arrow(tint, tlist(tint)), + # [((n,), list(range(n + 2))) + # for n in range(10)]), + # Task("range exclusive", arrow(tint, tlist(tint)), + # [((n,), list(range(n - 1))) + # for n in range(2, 11)]), + # Task("range length", arrow(tlist(tint),tlist(tint)), + # [((l,),list(range(len(l)))) + # for _ in range(10) + # for l in [randomList()] ]) + ] + + # Encourages learning how to treat a list as an array + arrayBootstrap = [ + Task("index int", arrow(tint, tlist(tint), tint), + [((n, l), l[n]) + for n in range(10) + for l in [[randint(0, 9) for _ in range(randint(n + 1, n + 5))]]]), + # Task("last n", arrow(tint, tlist(tint), tlist(tint)), + # [((n, l), l[-n:]) + # for n in range(10) + # for l in [[randint(0, 9) for _ in range(randint(n + 1, n + 5))]]]), + Task("1-index int", arrow(tint, tlist(tint), tint), + [((n, l), l[n - 1]) + for n in range(1,11) + for l in [[randint(0, 9) for _ in range(randint(n + 1, n + 4))]]]) + + # Task("index bool", arrow(tint, tlist(tbool), tbool), + # [((n, l), l[n]) + # for n in range(10) + # for l in [[flip() for _ in range(randint(n + 1, n + 5))]]]) + ] + + # Teaches how to slice lists, not sure if we really need this though + sliceBootstrap = [ + Task("take bool", arrow(tint, tlist(tbool), tlist(tbool)), + [((n, l), l[:n]) + for n in range(10) + for l in [[flip() for _ in range(randint(n, n + 5))]]]), + Task("drop bool", arrow(tint, tlist(tbool), tlist(tbool)), + [((n, l), l[n:]) + for n in range(10) + for l in [[flip() for _ in range(randint(n, n + 5))]]]), + + Task("take int", arrow(tint, tlist(tint), tlist(tint)), + [((n, l), l[:n]) + for n in range(10) + for l in [[randint(0, 9) for _ in range(randint(n, n + 5))]]]), + Task("drop int", arrow(tint, tlist(tint), tlist(tint)), + [((n, l), l[n:]) + for n in range(10) + for l in [[randint(0, 9) for _ in range(randint(n, n + 5))]]]), + + ] + + # learning to fold + foldBootstrap = [ + Task("stutter", arrow(tlist(tint),tlist(tint)), + [((l,), [z for x in l for z in [x,x] ]) + for _ in range(10) + for l in [randomList()] ]), + Task("sum", arrow(tlist(tint), tint), + [((l,), sum(l)) + for _ in range(10) + for l in [randomList()]]), + # Task("difference", arrow(tlist(tint), tint), + # [((l,), reduce(lambda x, y: y - x, reversed(l), 1)) + # for _ in range(10) + # for l in [randomList()[:4]]]), + # Task("append bool", arrow(tlist(tbool), tlist(tbool), tlist(tbool)), + # [((x, y), x + y) + # for _ in range(10) + # for [x, y] in [[randomBooleanList(), randomBooleanList()]]]), + Task("append constant 0", arrow(tlist(tint),tlist(tint)), + [((l,),l + [0]) + for _ in range(10) + for l in [randomList()] ]), + ] + + # learning to map + mapBootstrap = [ + Task("map double", arrow(tlist(tint), tlist(tint)), + [((l,), list(map(lambda n: n * 2, l))) + for _ in range(10) + for l in [randomList()]]), + Task("map increment", arrow(tlist(tint),tlist(tint)), + [((l,),list(map(lambda n: n+1, l))) + for _ in range(10) + for l in [randomList()] ]), + Task("map negation", arrow(tlist(tint),tlist(tint)), + [((l,),list(map(lambda n: 0-n, l))) + for _ in range(10) + for l in [randomList()] ]), + # Task("map car", arrow(tlist(tlist(tint)), tlist(tint)), + # [((l,), [n[0] for n in l]) + # for _ in4 range(10) + # for l in [randomListOfLists()]]), + # Task("map cdr", arrow(tlist(tlist(tbool)),tlist(tlist(tbool))), + # [((l,),map(lambda n: n[1:],l)) + # for _ in range(10) + # for l in [randomListOfLists_bool()]]), + # Task("map empty?", arrow(tlist(tlist(tint)), tlist(tboolean)), + # [((l,), [n == [] for n in l]) + # for _ in range(10) + # for l in [[[] if flip() else randomList() for _ in range(randint(1, 5))]]]), + + # Task("map eq 0?", arrow(tlist(tint),tlist(tboolean)), + # [((l,),map(lambda n: 0 == n,l)) + # for _ in range(10) + # for l in [[ randint(0,3) for _ in range(randint(4,7)) ]] ]) + + ] + difficultMaps = [ + Task("map quadruple", arrow(tlist(tint), tlist(tint)), + [((l,), list(map(lambda n: n * 4, l))) + for _ in range(10) + for l in [randomList()]]), + Task("map add 3", arrow(tlist(tint),tlist(tint)), + [((l,),list(map(lambda n: n+3, l))) + for _ in range(10) + for l in [randomList()] ]), + + ] + + # Learning to zip lists together + zipBootstrap = [ + Task("zip plus", arrow(tlist(tint),tlist(tint),tlist(tint)), + [((l1,l2),list(map(lambda x,y: x+y,l1,l2))) + for _ in range(10) + for l1 in [randomList(minimumLength=2, maximumLength=4)] + for l2 in [[ randint(0,9) for _ in range(len(l1)) ]]]), + Task("zip minus", arrow(tlist(tint),tlist(tint),tlist(tint)), + [((l1,l2),list(map(lambda x,y: x-y,l1,l2))) + for _ in range(10) + for l1 in [randomList(minimumLength=2, maximumLength=4)] + for l2 in [[ randint(0,9) for _ in range(len(l1)) ]]]), + # Task("zip eq?", arrow(tlist(tint), tlist(tint), tlist(tbool)), + # [((l1, l2), list(map(lambda x, y: x == y, l1, l2))) + # for _ in range(10) + # for l1 in [[randint(0, 3) for _ in range(randint(4, 7))]] + # for l2 in [[randint(0, 3) for _ in range(len(l1))]]]), + # Task("zip cons", arrow(tlist(tbool), tlist(tlist(tbool)), tlist(tlist(tbool))), + # [((l1, l2), list(map(lambda x, y: [x] + y, l1, l2))) + # for _ in range(10) + # for l1 in [randomBooleanList()] + # for l2 in [randomListOfLists_bool(l=len(l1))]]), + # Task("zip cons", arrow(tlist(tint),tlist(tlist(tint)),tlist(tlist(tint))), + # [((l1,l2),list(map(lambda x,y: [x]+y,l1,l2))) + # for _ in range(10) + # for l1 in [randomList()] + # for l2 in [[ randomList() for _ in range(len(l1)) ]]]), + ] + + # Learning to filter + filterBootstrap = [ + # Task("remove empty lists", + # arrow(tlist(tlist(tbool)), tlist(tlist(tbool))), + # [((ls,), [l for l in ls if len(l) > 0]) + # for _ in range(10) + # for ls in [[[flip() for _ in range(randint(0, 3))] + # for _ in range(4)]]]) + # Task("remove non 0s", + # arrow(tlist(tint), tlist(tint)), + # [((xs,), filter(lambda x: x == 0, xs)) + # for _ in range(10) + # for xs in [[ randint(0,3) for _ in range(5) ]] ]), + Task("remove 0s", + arrow(tlist(tint), tlist(tint)), + [((xs,), [x for x in xs if x != 0]) + for _ in range(10) + for xs in [[randint(0, 3) for _ in range(5)]]]), + Task("remove non-positives", + arrow(tlist(tint), tlist(tint)), + [((xs,), [x for x in xs if not (x > 1)]) + for _ in range(10) + for xs in [[randint(0, 3) for _ in range(5)]]]), + ] + + return lengthBootstrap + filterBootstrap + \ + unfoldBootstrap + arrayBootstrap + foldBootstrap + mapBootstrap + zipBootstrap + + +def bonusListProblems(): + # Taken from https://www.ijcai.org/Proceedings/75/Papers/037.pdf + # These problems might be a lot easier if we do not use numbers + def randomList(lb=None, ub=None): + if lb is None: + lb = 2 + if ub is None: + ub = 5 + return [randint(0, 5) for _ in range(randint(lb, ub))] + + bonus = [ + Task( + "pair reverse", arrow(tlist(tint), tlist(tint)), + [((x,), [x[j + (1 if j % 2 == 0 else -1)] + for j in range(len(x))]) + for _ in range(5) + for x in [randomList(10, 10)]] + ), + Task( + "duplicate each element", arrow(tlist(tint), tlist(tint)), + [((x,), [a for z in x for a in [z] * 2]) + for _ in range(5) + for x in [randomList(4, 6)]] + ), + Task( + "reverse duplicate each element", arrow(tlist(tint), tlist(tint)), + [((x,), [a for z in reversed(x) for a in [z] * 2])] + ), + ] + return bonus + +def sortBootstrap(): + # These tasks have as their goal the learning of (1) filter, and + # (2) sort, which uses filter. + def flip(): return random() > 0.5 + def randomList(lb=None, ub=None): + if lb is None: + lb = 2 + if ub is None: + ub = 5 + return [randint(0, 10) for _ in range(randint(lb, ub))] + def randomBooleanList(): + return [flip() for _ in range(randint(4, 7))] + def removeDuplicates(l): + if len(l) == 0: return l + return [l[0]] + removeDuplicates([ z for z in l if z != l[0] ]) + + filterBootstrap = [ + # Task("remove empty lists", + # arrow(tlist(tlist(tbool)), tlist(tlist(tbool))), + # [((ls,), [l for l in ls if len(l) > 0]) + # for _ in range(10) + # for ls in [[[flip() for _ in range(randint(0, 3))] + # for _ in range(4)]]]), + # Task("remove non 0s", + # arrow(tlist(tint), tlist(tint)), + # [((xs,), filter(lambda x: x == 0, xs)) + # for _ in range(10) + # for xs in [[ randint(0,3) for _ in range(5) ]] ]), + Task("remove 0s", + arrow(tlist(tint), tlist(tint)), + [((xs,), [x for x in xs if x != 0]) + for _ in range(10) + for xs in [[randint(0, 3) for _ in range(5)]]]), + # Task("remove primes", + # arrow(tlist(tint), tlist(tint)), + # [((xs,), [x for x in xs if not (x in {2,3,5,7,11,13,17,19,23})]) + # for _ in range(10) + # for xs in [[randint(0, 20) for _ in range(7)]]]), + Task("remove squares", + arrow(tlist(tint), tlist(tint)), + [((xs,), [x for x in xs if not (int(x**0.5)**2 == x)]) + for _ in range(10) + for xs in [[randint(0, 20) for _ in range(7)]]]), + Task("remove > 1", + arrow(tlist(tint), tlist(tint)), + [((xs,), [x for x in xs if not (x > 1)]) + for _ in range(10) + for xs in [[randint(0, 5) for _ in range(7)]]]), + ] + + # Needed for selection sort + minimumBootstrap = [ + Task("min2", arrow(tint,tint,tint), + [((x,y),min(x,y)) + for x in range(4) + for y in range(4) ]), + Task("minimum of list", arrow(tlist(tint),tint), + [((l,),min(l)) + for _ in range(15) + for l in [randomList()] ]) + ] + + appendBootstrap = [ + Task("append bool", arrow(tlist(tbool), tlist(tbool), tlist(tbool)), + [((x, y), x + y) + for _ in range(10) + for [x, y] in [[randomBooleanList(), randomBooleanList()]]]), + Task("append int", arrow(tlist(tint), tlist(tint), tlist(tint)), + [((x, y), x + y) + for _ in range(10) + for [x, y] in [[randomList(), randomList()]]]) + ] + + insertionBootstrap = [ + Task("filter greater than or equal", arrow(tint,tlist(tint),tlist(tint)), + [((x,l), [y for y in l if y >= x ]) + for _ in range(15) + for x in [randint(0,5)] + for l in [randomList()] ]), + Task("filter less than", arrow(tint,tlist(tint),tlist(tint)), + [((x,l), [y for y in l if y < x ]) + for _ in range(15) + for x in [randint(0,5)] + for l in [randomList()] ]), + Task("insert into sorted list (I)", arrow(tint,tlist(tint),tlist(tint)), + [((x,l), [y for y in l if y < x ] + [x] + [y for y in l if y >= x ]) + for _ in range(15) + for x in [randint(0,5)] + for _l in [randomList()] + for l in [sorted(_l)] ]), + Task("insert into sorted list (II)", arrow(tint,tlist(tint),tlist(tint)), + [((x,l), [y for y in l if y < x ] + [x] + [y for y in l if y >= x ]) + for _ in range(15) + for x in [randint(0,5)] + for l in [randomList()] ]) + ] + + + sortTask = [ + Task("sort-and-deduplicate", arrow(tlist(tint),tlist(tint)), + [((l,),list(sorted(l))) + for _ in range(15) + for l in [removeDuplicates(randomList())] + ])] + + slowSort = [ + Task("+1 maximum list", arrow(tlist(tint), tint), + [((l,),max(l) + 1) + for _ in range(15) + for l in [randomList()] ]), + Task("range +1 maximum list", arrow(tlist(tint), tlist(tint)), + [((l,),list(range(max(l) + 1))) + for _ in range(15) + for l in [randomList()] ]), + ] + + + tasks = sortTask + slowSort + for t in tasks: t.mustTrain = True + return tasks + + +def exportTasks(): + import sys + import pickle as pickle + + n_examples = 15 + if len(sys.argv) > 1: + n_examples = int(sys.argv[1]) + + eprint("Downloading and generating dataset") + tasks = sorted(make_list_tasks(n_examples), key=lambda t: t.name) + eprint("Got {} list tasks".format(len(tasks))) + + with open("data/list_tasks.pkl", "w") as f: + pickle.dump(tasks, f) + eprint("Wrote list tasks to data/list_tasks.pkl") + + +if __name__ == "__main__": + import json + def retrieveJSONTasks(filename, features=False): + """ + For JSON of the form: + {"name": str, + "type": {"input" : bool|int|list-of-bool|list-of-int, + "output": bool|int|list-of-bool|list-of-int}, + "examples": [{"i": data, "o": data}]} + """ + with open(filename, "r") as f: + loaded = json.load(f) + TP = { + "bool": tbool, + "int": tint, + "list-of-bool": tlist(tbool), + "list-of-int": tlist(tint), + } + return [Task( + item["name"], + arrow(TP[item["type"]["input"]], TP[item["type"]["output"]]), + [((ex["i"],), ex["o"]) for ex in item["examples"]], + features=(None if not features else list_features( + [((ex["i"],), ex["o"]) for ex in item["examples"]])), + cache=False, + ) for item in loaded] + for t in retrieveJSONTasks("data/list_tasks.json") + sortBootstrap() + make_list_bootstrap_tasks(): + print(t.describe()) + print() + # exportTasks() diff --git a/dreamcoder/domains/logo/__init__.py b/dreamcoder/domains/logo/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/dreamcoder/domains/logo/__pycache__/__init__.cpython-39.pyc b/dreamcoder/domains/logo/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8dec511e72a6bf0c1545ac84db1aefe56873e20d Binary files /dev/null and b/dreamcoder/domains/logo/__pycache__/__init__.cpython-39.pyc differ diff --git a/dreamcoder/domains/logo/__pycache__/logoPrimitives.cpython-39.pyc b/dreamcoder/domains/logo/__pycache__/logoPrimitives.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d5648b46a7ff17b7caa337ace6d45686885466f3 Binary files /dev/null and b/dreamcoder/domains/logo/__pycache__/logoPrimitives.cpython-39.pyc differ diff --git a/dreamcoder/domains/logo/__pycache__/main.cpython-39.pyc b/dreamcoder/domains/logo/__pycache__/main.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e5dde02de445e305801b53ee15f2df3cc40e9684 Binary files /dev/null and b/dreamcoder/domains/logo/__pycache__/main.cpython-39.pyc differ diff --git a/dreamcoder/domains/logo/__pycache__/makeLogoTasks.cpython-39.pyc b/dreamcoder/domains/logo/__pycache__/makeLogoTasks.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c651b880fbdec58ff7c706137cbd2ffb34eeb27d Binary files /dev/null and b/dreamcoder/domains/logo/__pycache__/makeLogoTasks.cpython-39.pyc differ diff --git a/dreamcoder/domains/logo/logoPrimitives.py b/dreamcoder/domains/logo/logoPrimitives.py new file mode 100644 index 0000000000000000000000000000000000000000..c11c4d195bb8b8b2c70a23047430e7fc0aa1d896 --- /dev/null +++ b/dreamcoder/domains/logo/logoPrimitives.py @@ -0,0 +1,41 @@ +from dreamcoder.program import Primitive, Program +from dreamcoder.type import arrow, baseType, tint + +turtle = baseType("turtle") +tstate = baseType("tstate") +tangle = baseType("tangle") +tlength = baseType("tlength") + +primitives = [ + Primitive("logo_UA", tangle, ""), + Primitive("logo_UL", tlength, ""), + + Primitive("logo_ZA", tangle, ""), + Primitive("logo_ZL", tlength, ""), + + Primitive("logo_DIVA", arrow(tangle,tint,tangle), ""), + Primitive("logo_MULA", arrow(tangle,tint,tangle), ""), + Primitive("logo_DIVL", arrow(tlength,tint,tlength), ""), + Primitive("logo_MULL", arrow(tlength,tint,tlength), ""), + + Primitive("logo_ADDA", arrow(tangle,tangle,tangle), ""), + Primitive("logo_SUBA", arrow(tangle,tangle,tangle), ""), + # Primitive("logo_ADDL", arrow(tlength,tlength,tlength), ""), + # Primitive("logo_SUBL", arrow(tlength,tlength,tlength), ""), + + # Primitive("logo_PU", arrow(turtle,turtle), ""), + # Primitive("logo_PD", arrow(turtle,turtle), ""), + Primitive("logo_PT", arrow(arrow(turtle,turtle),arrow(turtle,turtle)), None), + Primitive("logo_FWRT", arrow(tlength,tangle,turtle,turtle), ""), + Primitive("logo_GETSET", arrow(arrow(turtle,turtle),turtle,turtle), "") +] + [ + Primitive("logo_IFTY", tint, ""), + Primitive("logo_epsA", tangle, ""), + Primitive("logo_epsL", tlength, ""), + Primitive("logo_forLoop", arrow(tint, arrow(tint, turtle, turtle), turtle, turtle), "ERROR: python has no way of expressing this hence you shouldn't eval on this"), +] + [Primitive(str(j), tint, j) for j in range(10)] + +if __name__ == "__main__": + expr_s = "(lambda (logo_forLoop 3 (lambda (lambda (logo_GET (lambda (logo_FWRT (logo_S2L (logo_I2S 1)) (logo_S2A (logo_I2S 0)) (logo_SET $0 (logo_FWRT (logo_S2L eps) (logo_DIVA (logo_S2A (logo_I2S 2)) (logo_I2S 3)) ($1)))))))) ($0)))" + x = Program.parse(expr_s) + print(x) diff --git a/dreamcoder/domains/logo/main.py b/dreamcoder/domains/logo/main.py new file mode 100755 index 0000000000000000000000000000000000000000..c3e36c0e1844873a1f36e93638b1770d2b93c984 --- /dev/null +++ b/dreamcoder/domains/logo/main.py @@ -0,0 +1,450 @@ +from collections import OrderedDict +import datetime +import json +import os +import pickle +import random as random +import subprocess +import sys +import time + +try: + import numpy as np + import torch + import torch.nn as nn + import torch.nn.functional as F +except: + print("WARNING: Could not import torch. This is only okay when doing pypy compression.", + file=sys.stderr) + +from dreamcoder.domains.logo.makeLogoTasks import makeTasks, montageTasks, drawLogo +from dreamcoder.domains.logo.logoPrimitives import primitives, turtle, tangle, tlength +from dreamcoder.dreamcoder import ecIterator +from dreamcoder.grammar import Grammar +from dreamcoder.program import Program +try: + from dreamcoder.recognition import variable, maybe_cuda +except: + print("WARNING: Could not import recognition. This is only okay when doing pypy compression.", + file=sys.stderr) +from dreamcoder.task import Task +from dreamcoder.type import arrow +from dreamcoder.utilities import eprint, testTrainSplit, loadPickle + + +def animateSolutions(allFrontiers): + programs = [] + filenames = [] + for n,(t,f) in enumerate(allFrontiers.items()): + if f.empty: continue + + programs.append(f.bestPosterior.program) + filenames.append(f"/tmp/logo_animation_{n}") + + drawLogo(*programs, pretty=True, smoothPretty=True, resolution=128, animate=True, + filenames=filenames) + + + +def dreamFromGrammar(g, directory, N=100): + if isinstance(g,Grammar): + programs = [ p + for _ in range(N) + for p in [g.sample(arrow(turtle,turtle), + maximumDepth=20)] + if p is not None] + else: + programs = g + drawLogo(*programs, + pretty=False, smoothPretty=False, + resolution=512, + filenames=[f"{directory}/{n}.png" for n in range(len(programs)) ], + timeout=1) + drawLogo(*programs, + pretty=True, smoothPretty=False, + resolution=512, + filenames=[f"{directory}/{n}_pretty.png" for n in range(len(programs)) ], + timeout=1) + drawLogo(*programs, + pretty=False, smoothPretty=True, + resolution=512, + filenames=[f"{directory}/{n}_smooth_pretty.png" for n in range(len(programs)) ], + timeout=1) + for n,p in enumerate(programs): + with open(f"{directory}/{n}.dream","w") as handle: + handle.write(str(p)) + +try: + class Flatten(nn.Module): + def __init__(self): + super(Flatten, self).__init__() + + def forward(self, x): + return x.view(x.size(0), -1) + + + class LogoFeatureCNN(nn.Module): + special = "LOGO" + + def __init__(self, tasks, testingTasks=[], cuda=False, H=64): + super(LogoFeatureCNN, self).__init__() + + self.sub = prefix_dreams + str(int(time.time())) + + self.recomputeTasks = False + + def conv_block(in_channels, out_channels, p=True): + return nn.Sequential( + nn.Conv2d(in_channels, out_channels, 3, padding=1), + # nn.BatchNorm2d(out_channels), + nn.ReLU(), + # nn.Conv2d(out_channels, out_channels, 3, padding=1), + # nn.ReLU(), + nn.MaxPool2d(2)) + + self.inputImageDimension = 128 + self.resizedDimension = 128 + assert self.inputImageDimension % self.resizedDimension == 0 + + # channels for hidden + hid_dim = 64 + z_dim = 64 + + self.encoder = nn.Sequential( + conv_block(1, hid_dim), + conv_block(hid_dim, hid_dim), + conv_block(hid_dim, hid_dim), + conv_block(hid_dim, hid_dim), + conv_block(hid_dim, hid_dim), + conv_block(hid_dim, z_dim), + Flatten() + ) + + self.outputDimensionality = 256 + + + + + def forward(self, v): + assert len(v) == self.inputImageDimension*self.inputImageDimension + floatOnlyTask = list(map(float, v)) + reshaped = [floatOnlyTask[i:i + self.inputImageDimension] + for i in range(0, len(floatOnlyTask), self.inputImageDimension)] + v = variable(reshaped).float() + # insert channel and batch + v = torch.unsqueeze(v, 0) + v = torch.unsqueeze(v, 0) + v = maybe_cuda(v, next(self.parameters()).is_cuda)/256. + window = int(self.inputImageDimension/self.resizedDimension) + v = F.avg_pool2d(v, (window,window)) + v = self.encoder(v) + return v.view(-1) + + def featuresOfTask(self, t): # Take a task and returns [features] + return self(t.highresolution) + + def tasksOfPrograms(self, ps, types): + images = drawLogo(*ps, resolution=128) + if len(ps) == 1: images = [images] + tasks = [] + for i in images: + if isinstance(i, str): tasks.append(None) + else: + t = Task("Helm", arrow(turtle,turtle), []) + t.highresolution = i + tasks.append(t) + return tasks + + def taskOfProgram(self, p, t): + return self.tasksOfPrograms([p], None)[0] +except: + pass + +def list_options(parser): + parser.add_argument("--proto", + default=False, + action="store_true", + help="Should we use prototypical networks?") + parser.add_argument("--target", type=str, + default=[], + action='append', + help="Which tasks should this try to solve") + parser.add_argument("--reduce", type=str, + default=[], + action='append', + help="Which tasks should this try to solve") + parser.add_argument("--save", type=str, + default=None, + help="Filepath output the grammar if this is a child") + parser.add_argument("--prefix", type=str, + default="experimentOutputs/", + help="Filepath output the grammar if this is a child") + parser.add_argument("--dreamCheckpoint", type=str, + default=None, + help="File to load in order to get dreams") + parser.add_argument("--dreamDirectory", type=str, + default=None, + help="Directory in which to dream from --dreamCheckpoint") + parser.add_argument("--visualize", + default=None, type=str) + parser.add_argument("--cost", default=False, action='store_true', + help="Impose a smooth cost on using ink") + parser.add_argument("--split", + default=1., type=float) + parser.add_argument("--animate", + default=None, type=str) + + + +def outputDreams(checkpoint, directory): + from dreamcoder.utilities import loadPickle + result = loadPickle(checkpoint) + eprint(" [+] Loaded checkpoint",checkpoint) + g = result.grammars[-1] + if directory is None: + randomStr = ''.join(random.choice('0123456789') for _ in range(10)) + directory = "/tmp/" + randomStr + eprint(" Dreaming into",directory) + os.system("mkdir -p %s"%directory) + dreamFromGrammar(g, directory) + +def enumerateDreams(checkpoint, directory): + from dreamcoder.dreaming import backgroundHelmholtzEnumeration + from dreamcoder.utilities import loadPickle + result = loadPickle(checkpoint) + eprint(" [+] Loaded checkpoint",checkpoint) + g = result.grammars[-1] + if directory is None: assert False, "please specify a directory" + eprint(" Dreaming into",directory) + os.system("mkdir -p %s"%directory) + frontiers = backgroundHelmholtzEnumeration(makeTasks(None,None), g, 100, + evaluationTimeout=0.01, + special=LogoFeatureCNN.special)() + print(f"{len(frontiers)} total frontiers.") + MDL = 0 + def L(f): + return -list(f.entries)[0].logPrior + frontiers.sort(key=lambda f: -L(f)) + while len(frontiers) > 0: + # get frontiers whose MDL is between [MDL,MDL + 1) + fs = [] + while len(frontiers) > 0 and L(frontiers[-1]) < MDL + 1: + fs.append(frontiers.pop(len(frontiers) - 1)) + if fs: + random.shuffle(fs) + print(f"{len(fs)} programs with MDL between [{MDL}, {MDL + 1})") + + fs = fs[:500] + os.system(f"mkdir {directory}/{MDL}") + dreamFromGrammar([list(f.entries)[0].program for f in fs], + f"{directory}/{MDL}") + MDL += 1 + +def visualizePrimitives(primitives, export='/tmp/logo_primitives.png'): + from itertools import product + from dreamcoder.program import Index,Abstraction,Application + from dreamcoder.utilities import montageMatrix,makeNiceArray + from dreamcoder.type import tint + import scipy.misc + from dreamcoder.domains.logo.makeLogoTasks import parseLogo + + angles = [Program.parse(a) + for a in ["logo_ZA", + "logo_epsA", + "(logo_MULA logo_epsA 2)", + "(logo_DIVA logo_UA 4)", + "(logo_DIVA logo_UA 5)", + "(logo_DIVA logo_UA 7)", + "(logo_DIVA logo_UA 9)", + ] ] + specialAngles = {"#(lambda (lambda (logo_forLoop logo_IFTY (lambda (lambda (logo_FWRT (logo_MULL logo_UL 3) (logo_MULA $2 4) $0))) $1)))": + [Program.parse("(logo_MULA logo_epsA 4)")]+[Program.parse("(logo_DIVA logo_UA %d)"%n) for n in [7,9] ]} + numbers = [Program.parse(n) + for n in ["1","2","5","7","logo_IFTY"] ] + specialNumbers = {"#(lambda (#(lambda (lambda (lambda (lambda (logo_forLoop $2 (lambda (lambda (logo_FWRT $5 (logo_DIVA logo_UA $3) $0))) $0))))) (logo_MULL logo_UL $0) 4 4))": + [Program.parse(str(n)) for n in [1,2,3] ]} + distances = [Program.parse(l) + for l in ["logo_ZL", + "logo_epsL", + "(logo_MULL logo_epsL 2)", + "(logo_DIVL logo_UL 2)", + "logo_UL"] ] + subprograms = [parseLogo(sp) + for sp in ["(move 1d 0a)", + "(loop i infinity (move (*l epsilonLength 4) (*a epsilonAngle 2)))", + "(loop i infinity (move (*l epsilonLength 5) (/a epsilonAngle 2)))", + "(loop i 4 (move 1d (/a 1a 4)))"]] + + entireArguments = {"#(lambda (lambda (#(#(lambda (lambda (lambda (logo_forLoop $2 (lambda (lambda (logo_FWRT $2 $3 $0))))))) logo_IFTY) (logo_MULA (#(logo_DIVA logo_UA) $1) $0) (#(logo_MULL logo_UL) 3))))": + [[Program.parse(str(x)) for x in xs ] + for xs in [("3", "1", "$0"), + ("4", "1", "$0"), + ("5", "1", "$0"), + ("5", "3", "$0"), + ("7", "3", "$0")]]} + specialDistances = {"#(lambda (lambda (logo_forLoop 7 (lambda (lambda (#(lambda (lambda (lambda (#(lambda (lambda (lambda (logo_forLoop $2 (lambda (lambda (logo_FWRT $2 $3 $0))))))) 7 $1 $2 $0)))) $3 logo_epsA $0))) $0)))": + [Program.parse("(logo_MULL logo_epsL %d)"%n) for n in range(5)]} + + matrix = [] + for p in primitives: + if not p.isInvented: continue + t = p.tp + eprint(p,":",p.tp) + if t.returns() != turtle: + eprint("\t(does not return a turtle)") + continue + + def argumentChoices(t): + if t == turtle: + return [Index(0)] + elif t == arrow(turtle,turtle): + return subprograms + elif t == tint: + return specialNumbers.get(str(p),numbers) + elif t == tangle: + return specialAngles.get(str(p),angles) + elif t == tlength: + return specialDistances.get(str(p),distances) + else: return [] + + ts = [] + for arguments in entireArguments.get(str(p),product(*[argumentChoices(t) for t in t.functionArguments() ])): + eprint(arguments) + pp = p + for a in arguments: pp = Application(pp,a) + pp = Abstraction(pp) + i = np.reshape(np.array(drawLogo(pp, resolution=128)), (128,128)) + if i is not None: + ts.append(i) + + + if ts == []: continue + + matrix.append(ts) + if len(ts) < 6: ts = [ts] + else: ts = makeNiceArray(ts) + r = montageMatrix(ts) + fn = "/tmp/logo_primitive_%d.png"%len(matrix) + eprint("\tExported to",fn) + scipy.misc.imsave(fn, r) + + matrix = montageMatrix(matrix) + scipy.misc.imsave(export, matrix) + + +def main(args): + """ + Takes the return value of the `commandlineArguments()` function as input and + trains/tests the model on LOGO tasks. + """ + + # The below legacy global statement is required since prefix_dreams is used by LogoFeatureCNN. + # TODO(lcary): use argument passing instead of global variables. + global prefix_dreams + + # The below global statement is required since primitives is modified within main(). + # TODO(lcary): use a function call to retrieve and declare primitives instead. + global primitives + + visualizeCheckpoint = args.pop("visualize") + if visualizeCheckpoint is not None: + with open(visualizeCheckpoint,'rb') as handle: + primitives = pickle.load(handle).grammars[-1].primitives + visualizePrimitives(primitives) + sys.exit(0) + + dreamCheckpoint = args.pop("dreamCheckpoint") + dreamDirectory = args.pop("dreamDirectory") + + proto = args.pop("proto") + + if dreamCheckpoint is not None: + #outputDreams(dreamCheckpoint, dreamDirectory) + enumerateDreams(dreamCheckpoint, dreamDirectory) + sys.exit(0) + + animateCheckpoint = args.pop("animate") + if animateCheckpoint is not None: + animateSolutions(loadPickle(animateCheckpoint).allFrontiers) + sys.exit(0) + + target = args.pop("target") + red = args.pop("reduce") + save = args.pop("save") + prefix = args.pop("prefix") + prefix_dreams = prefix + "/dreams/" + ('_'.join(target)) + "/" + prefix_pickles = prefix + "/logo." + ('.'.join(target)) + if not os.path.exists(prefix_dreams): + os.makedirs(prefix_dreams) + tasks = makeTasks(target, proto) + eprint("Generated", len(tasks), "tasks") + + costMatters = args.pop("cost") + for t in tasks: + t.specialTask[1]["costMatters"] = costMatters + # disgusting hack - include whether cost matters in the dummy input + if costMatters: t.examples = [(([1]), t.examples[0][1])] + + os.chdir("prototypical-networks") + subprocess.Popen(["python","./protonet_server.py"]) + time.sleep(3) + os.chdir("..") + + + test, train = testTrainSplit(tasks, args.pop("split")) + eprint("Split tasks into %d/%d test/train" % (len(test), len(train))) + try: + if test: montageTasks(test,"test_") + montageTasks(train,"train_") + except: + eprint("WARNING: couldn't generate montage. Do you have an old version of scipy?") + + if red is not []: + for reducing in red: + try: + with open(reducing, 'r') as f: + prods = json.load(f) + for e in prods: + e = Program.parse(e) + if e.isInvented: + primitives.append(e) + except EOFError: + eprint("Couldn't grab frontier from " + reducing) + except IOError: + eprint("Couldn't grab frontier from " + reducing) + except json.decoder.JSONDecodeError: + eprint("Couldn't grab frontier from " + reducing) + + primitives = list(OrderedDict((x, True) for x in primitives).keys()) + baseGrammar = Grammar.uniform(primitives, continuationType=turtle) + + eprint(baseGrammar) + + timestamp = datetime.datetime.now().isoformat() + outputDirectory = "experimentOutputs/logo/%s"%timestamp + os.system("mkdir -p %s"%outputDirectory) + + + generator = ecIterator(baseGrammar, train, + testingTasks=test, + outputPrefix="%s/logo"%outputDirectory, + evaluationTimeout=0.01, + **args) + + r = None + for result in generator: + iteration = len(result.learningCurve) + dreamDirectory = "%s/dreams_%d"%(outputDirectory, iteration) + os.system("mkdir -p %s"%dreamDirectory) + eprint("Dreaming into directory",dreamDirectory) + dreamFromGrammar(result.grammars[-1], + dreamDirectory) + r = result + + needsExport = [str(z) + for _, _, z + in r.grammars[-1].productions + if z.isInvented] + if save is not None: + with open(save, 'w') as f: + json.dump(needsExport, f) diff --git a/dreamcoder/domains/logo/makeLogoTasks.py b/dreamcoder/domains/logo/makeLogoTasks.py new file mode 100644 index 0000000000000000000000000000000000000000..011a0cc3d94117d109f8d8c42faca84771565c60 --- /dev/null +++ b/dreamcoder/domains/logo/makeLogoTasks.py @@ -0,0 +1,777 @@ +# coding: utf8 + +import os +import random +import sys + +from dreamcoder.domains.logo.logoPrimitives import primitives, turtle +from dreamcoder.task import Task +from dreamcoder.program import Abstraction, Application, Index, Program +from dreamcoder.type import arrow +from dreamcoder.utilities import eprint, jsonBinaryInvoke, random_seed, montage +from dreamcoder.grammar import Grammar + + +def drawLogo(*programs, + timeout=None, + resolution=None, + pretty=False, smoothPretty=False, + filenames=[], + animate=False, + cost=False): + message = {} + if pretty: message["pretty"] = pretty + if smoothPretty: message["smoothPretty"] = smoothPretty + if timeout: message["timeout"] = timeout + assert resolution is not None, "resolution not provided in drawLogo" + if isinstance(resolution, list): + assert len(resolution) == len(programs), "must provide a resolution for each program" + elif isinstance(resolution, int): + resolution = [resolution]*len(programs) + else: assert False + jobs = [] + for p, size in zip(programs, resolution): + entry = {"program": str(p), + "size": size} + if animate: entry["animate"] = True + if len(filenames) > 0: + entry["export"] = filenames[0] + filenames = filenames[1:] + jobs.append(entry) + message["jobs"] = jobs + response = jsonBinaryInvoke("./logoDrawString", message) + if cost: + # include the cost and return tuples of (pixels, cost) + response = [programResponse if isinstance(programResponse,str) else (programResponse["pixels"], programResponse["cost"]) + for programResponse in response ] + else: + response = [programResponse if isinstance(programResponse,str) else programResponse["pixels"] + for programResponse in response ] + if len(programs) == 1: + return response[0] + return response + +def makeTasks(subfolders, proto): + return manualLogoTasks() + +def parseLogo(s): + + _ua = Program.parse("logo_UA") + _ul = Program.parse("logo_UL") + + _za = Program.parse("logo_ZA") + _zl = Program.parse("logo_ZL") + + _da = Program.parse("logo_DIVA") + _ma = Program.parse("logo_MULA") + _dl = Program.parse("logo_DIVL") + _ml = Program.parse("logo_MULL") + + _aa = Program.parse("logo_ADDA") + _sa = Program.parse("logo_SUBA") + _al = None#Program.parse("logo_ADDL") + _sl = None#Program.parse("logo_SUBL") + + _pu = None#Program.parse("logo_PU") + _pd = None#Program.parse("logo_PD") + _p = Program.parse("logo_PT") + _move = Program.parse("logo_FWRT") + _embed = Program.parse("logo_GETSET") + + _addition = Program.parse("+") + _infinity = Program.parse("logo_IFTY") + _ea = Program.parse("logo_epsA") + _el = Program.parse("logo_epsL") + _loop = Program.parse("logo_forLoop") + + from sexpdata import loads, Symbol + s = loads(s) + def command(k, environment, continuation): + assert isinstance(k,list) + if k[0] == Symbol("move"): + return Application(Application(Application(_move, + expression(k[1],environment)), + expression(k[2],environment)), + continuation) + if k[0] == Symbol("for") or k[0] == Symbol("loop"): + v = k[1] + b = expression(k[2], environment) + newEnvironment = [None, v] + environment + body = block(k[3:], newEnvironment, Index(0)) + return Application(Application(Application(_loop,b), + Abstraction(Abstraction(body))), + continuation) + if k[0] == Symbol("embed"): + body = block(k[1:], [None] + environment, Index(0)) + return Application(Application(_embed,Abstraction(body)),continuation) + if k[0] == Symbol("p"): + body = block(k[1:], [None] + environment, Index(0)) + return Application(Application(_p,Abstraction(body)),continuation) + + assert False + def expression(e, environment): + for n, v in enumerate(environment): + if e == v: return Index(n) + + if isinstance(e,int): return Program.parse(str(e)) + + mapping = {"1a": _ua, + "1d": _ul, "1l": _ul, + "0a": _za, + "0d": _zl, "0l": _zl, + "/a": _da, + "/l": _dl, "/d": _dl, + "*a": _ma, + "*l": _ml, "*d": _ml, + "+a": _aa, + "+d": _al, "+l": _al, + "-a": _sa, + "-d": _sl, "-l": _sl, + "+": _addition, + "infinity": _infinity, + "epsilonAngle": _ea, + "epsilonDistance": _el, + "epsilonLength": _el} + if e == float('inf'): return _infinity + for name, value in mapping.items(): + if e == Symbol(name): return value + + assert isinstance(e,list), "not a list %s"%e + for name, value in mapping.items(): + if e[0] == Symbol(name): + f = value + for argument in e[1:]: + f = Application(f, expression(argument, environment)) + return f + assert False + + def block(b, environment, continuation): + if len(b) == 0: return continuation + return command(b[0], environment, block(b[1:], environment, continuation)) + + try: return Abstraction(command(s, [], Index(0))) + except: return Abstraction(block(s, [], Index(0))) + + +def manualLogoTask(name, expression, proto=False, needToTrain=False, + supervise=False, lambdaCalculus=False): + p = Program.parse(expression) if lambdaCalculus else parseLogo(expression) + from dreamcoder.domains.logo.logoPrimitives import primitives + from dreamcoder.grammar import Grammar + g = Grammar.uniform(primitives, continuationType=turtle) + gp = Grammar.uniform(primitives) + try: + l = g.logLikelihood(arrow(turtle,turtle),p) + lp = gp.logLikelihood(arrow(turtle,turtle),p) + assert l >= lp + eprint(name,-l,"nats") + + except: eprint("WARNING: could not calculate likelihood of manual logo",p) + + attempts = 0 + while True: + [output, highresolution] = drawLogo(p, p, resolution=[28,128], cost=True) + if output == "timeout" or highresolution == "timeout": + attempts += 1 + else: + break + if attempts > 0: + eprint(f"WARNING: Took {attempts} attempts to render task {name} within timeout") + + cost = output[1] + output = output[0] + assert highresolution[1] == cost + highresolution = highresolution[0] + + shape = list(map(int, output)) + highresolution = list(map(float, highresolution)) + t = Task(name, arrow(turtle,turtle), + [(([0]), shape)]) + t.mustTrain = needToTrain + t.proto = proto + t.specialTask = ("LOGO", {"proto": proto}) + t.specialTask[1]["cost"] = cost*1.05 + + t.highresolution = highresolution + + if supervise: + t.supervisedSolution = p + + return t + +def dSLDemo(): + n = 0 + demos = [] + def T(source): + demos.append(manualLogoTask(str(len(demos)), source, + lambdaCalculus="lambda" in source)) + # this looks like polygons - verify and include + T("(#(lambda (lambda (#(lambda (lambda (#(lambda (lambda (lambda (logo_forLoop $0 (lambda (lambda (logo_FWRT $4 $3 $0))))))) $1 $0 logo_IFTY))) $1 (logo_DIVA logo_UA $0)))) (logo_MULL logo_UL 4) 3)") + T("(#(lambda (lambda (#(lambda (lambda (#(lambda (lambda (lambda (logo_forLoop $0 (lambda (lambda (logo_FWRT $4 $3 $0))))))) $1 $0 logo_IFTY))) $1 (logo_DIVA logo_UA $0)))) (logo_MULL logo_UL 6) 4)") + T("(#(lambda (lambda (#(lambda (lambda (#(lambda (lambda (lambda (logo_forLoop $0 (lambda (lambda (logo_FWRT $4 $3 $0))))))) $1 $0 logo_IFTY))) $1 (logo_DIVA logo_UA $0)))) (logo_MULL logo_UL 5) 5)") + T("(#(lambda (lambda (#(lambda (lambda (#(lambda (lambda (lambda (logo_forLoop $0 (lambda (lambda (logo_FWRT $4 $3 $0))))))) $1 $0 logo_IFTY))) $1 (logo_DIVA logo_UA $0)))) (logo_MULL logo_UL 3) 6)") + T("(#(lambda (lambda (#(lambda (lambda (#(lambda (lambda (lambda (logo_forLoop $0 (lambda (lambda (logo_FWRT $4 $3 $0))))))) $1 $0 logo_IFTY))) $1 (logo_DIVA logo_UA $0)))) (logo_MULL logo_UL 2) 7)") + + # Spirals! + for spiralSize in [1,2,3,4,5]: + T(f"((lambda (logo_forLoop logo_IFTY (lambda (lambda (logo_FWRT (logo_MULL logo_epsL $1) (logo_MULA logo_epsA $2) $0))))) {spiralSize})") + for spiralSize in [5,6,7,8,9]: + #T(f"(lambda (#(lambda (logo_forLoop $0 (lambda (lambda (#(lambda (logo_FWRT (logo_MULL logo_UL $0) (logo_DIVA logo_UA 4))) $1 $0))))) {spiralSize} $0))") + T("(loop i " + str(spiralSize) + " (move (*d 1l i) (/a 1a 4)))")# (#(lambda (logo_forLoop $0 (lambda (lambda (#(lambda (logo_FWRT (logo_MULL logo_UL $0) (logo_DIVA logo_UA 4))) $1 $0))))) {spiralSize} $0))") + + # CIRCLES + #(lambda (#(lambda (logo_forLoop 6 (lambda (lambda (#(lambda (lambda (logo_forLoop logo_IFTY (lambda (lambda (logo_FWRT $2 $3 $0)))))) logo_epsA (logo_MULL logo_epsL $2) $0))))) 6 $0)) + for circleSize in [1,3,5,7,9]: + T(f"(lambda (#(lambda (logo_forLoop 6 (lambda (lambda (#(lambda (lambda (logo_forLoop logo_IFTY (lambda (lambda (logo_FWRT $2 $3 $0)))))) logo_epsA (logo_MULL logo_epsL $2) $0))))) {circleSize} $0))") + + T("(loop i 3 (move (*d 1l 3) (/a 1a 4)))") + T("(loop i 5 (move (*d 1l 5) (/a 1a 5)))") + T("(loop i infinity (move (*d epsilonDistance 5) (/a epsilonAngle 3)))") + T("(loop i infinity (move (*d epsilonDistance 9) (/a epsilonAngle 2)))") + T("(loop i infinity (move (*d epsilonLength i) (*a epsilonAngle 3)))") + T("(loop i 9 (move (*d 1l i) (/a 1a 4)))") + T("(move 1d 0a)") + T("(loop i infinity (move (*d epsilonLength 6) epsilonAngle))") + T("(loop i infinity (move (*d epsilonLength 8) epsilonAngle))") + T("(loop k 2 (loop i infinity (move (*d epsilonLength 4) epsilonAngle)))") + T("(loop k 2 (loop i infinity (move (*d epsilonLength 8) epsilonAngle)))") + T("(loop s 4 (move (*d 1d 3) (/a 1a 4)))") + T("(loop s 4 (move (*d 1d 6) (/a 1a 4)))") + T(""" + (loop j 5 + (move 0d (/a 1a 5)) + (embed (loop i infinity + (move (*d epsilonLength 6) epsilonAngle)) + (loop i infinity + (move (*d epsilonLength 6) epsilonAngle))))""") + T(""" + (loop j 5 + (embed (loop s 4 (move (*d 1d 3) (/a 1a 4)))) + (move 0d (/a 1a 5)))""") + return demos + +def rotationalSymmetryDemo(): + demos = [] + def T(source): + demos.append(manualLogoTask(str(len(demos)), source)) + + body = {"dashed": "(p (move 1d 0a)) (move 1d 0a) (p (move 1d 0a)) (move 1d 0a)", + "lonely circle": "(p (move (*d 1d 2) 0a)) (loop k 2 (loop i infinity (move (*d epsilonLength 2) epsilonAngle)))", + "square dashed": "(p (move 1d 0a)) (loop s 4 (move 1d (/a 1a 4)))", + "square": "(loop s 4 (move (*d 1d 2) (/a 1a 4)))", + "semicircle": "(loop i infinity (move (*d epsilonLength 4) epsilonAngle))"} + for name in body: + for n in [3,4,5,6,7]: + T(""" + (loop j %d + (embed %s) + (move 0d (/a 1a %d)))"""%(n,body[name],n)) + return demos + + +def manualLogoTasks(): + tasks = [] + def T(name, source, needToTrain=False, supervise=False): + tasks.append(manualLogoTask(name, source, supervise=supervise, + needToTrain=needToTrain)) + if False: + for d,a,s in [('1l','0a','(loop i infinity (move epsilonLength epsilonAngle))'), + ('epsilonLength','0a','(loop i infinity (move epsilonLength epsilonAngle))'), + ('(*d 1l 3)','0a','(move 1l 0a)'), + ('epsilonLength','0a','(move (*d 1l 2) 0a)'), + ('(*d epsilonLength 9)','0a','(move epsilonLength 0a)'), + ('(/d 1l 2)','0a','(move 1l 0a)')]: + # 'epsilonLength']: + # for a in ['epsilonAngle','0a']: + # for s in ['(move 1l 0a)', + # '(move epsilonLength 0a)', + # '(loop i infinity (move epsilonLength epsilonAngle))']: + # if d == 'epsilonLength' and s == '(move epsilonLength 0a)': continue + T("pu: %s/%s/%s"%(d,a,s), + """ + (pu (move %s %s) pd %s) + """%(d,a,s)) + return tasks + + def slant(n): + return f"(move 0d (/a 1a {n}))" + + for n,l,s in [(3,"1l",8), + (4,"(*d 1d 3)",None), + (5,"1l",None), + (6,"(*d 1d 2)",5), + (7,"1l",None), + (8,"(/d 1d 2)",None)]: + T(f"{n}-gon {l}{'' if s is None else ' slanted '+str(s)}", + f""" + ({'' if s is None else slant(s)} + (loop i {n} + (move {l} (/a 1a {n})))) + """, + needToTrain=True) + for n,l,s in [(3,"(*d 1l 2)",None), + (4,"(*d 1d 4)",None), + (5,"(*d 1d 2)",None), + (6,"1l",None), + (7,"(*d 1d 3)",None), + (8,"1l",3)]: + T(f"{n}-gon {l}{'' if s is None else ' slanted '+str(s)}", + f""" + ({'' if s is None else slant(s)} + (loop i {n} + (move {l} (/a 1a {n})))) + """, + needToTrain=False) + + + + T("upwards", "((move 0d (/a 1a 4)) (move 1d 0a))", + needToTrain=True) + T("right angle", "((move (*d 1d 2) (/a 1a 4)) (move 1d 0a))", + needToTrain=True) + T("right angle epsilon", "((move epsilonLength (/a 1a 4)) (move epsilonLength 0a))", + needToTrain=True) + + T("line segment", "(move 1d 0a)", + needToTrain=True) + + T("square slanted by 2pi/3", + """((move 0d (/a 1a 3)) + (loop k 4 (move 1d (/a 1a 4))))""", + needToTrain=True) + T("semicircle slanted by 2pi/5", + """((move 0d (/a 1a 5)) + (loop i infinity + (move (*d epsilonLength 4) epsilonAngle)))""", + needToTrain=True) + T("Greek spiral slanted by 2pi/6", + """((move 0d (/a 1a 6)) + (loop i 7 (move (*l 1l i) (/a 1a 4))))""", + needToTrain=True) + T("Hook slanted by 2pi/7", + """((move 0d (/a 1a 7)) + (move 1d 0a) + (loop i infinity + (move (*d epsilonLength 4) epsilonAngle)))""", + needToTrain=True) + T("""slanted line""", + """((move 0d (/a 1a 8)) + (move (*d 1l 3) 0a))""", + needToTrain=True) + + + for i in [6,7,8,9]: + T("Greek spiral %d"%i, + """ + (loop i %d + (move (*l 1l i) (/a 1a 4))) + """%i, + needToTrain=i in [7,8]) + for i in [2,3,4,5]: + T("smooth spiral %d"%i, + """ + (loop i infinity + (move (*d epsilonLength i) (*a epsilonAngle %d))) + """%i, + needToTrain=i in [3,5]) + + T("smooth spiral 4 slanted by 2pi/2", + """ + ((move 0d (/a 1a 2)) + (loop i infinity + (move (*d epsilonLength i) (*a epsilonAngle 4)))) + """, + needToTrain=True) + + for i in [3,5,7,9]: + T("star %d"%i, + """ + (loop i %d (move (*d 1d 4) (-a (/a 1a 2) (/a (/a 1a 2) %s)))) + """%(i,i), + needToTrain=i in [5,9]) + + T("leaf iteration 1.1", + """ + (loop i infinity (move epsilonDistance (/a epsilonAngle 2))) + """, + needToTrain=True) + T("leaf iteration 1.2", + """ + ((move 0d (/a 1a 2)) + (loop i infinity (move epsilonDistance (/a epsilonAngle 2)))) + """, + needToTrain=True) + T("leaf iteration 2.1", + """ + (loop n 2 + (loop i infinity (move epsilonDistance (/a epsilonAngle 2))) + (move 0d (/a 1a 4))) + """, + needToTrain=True) + T("leaf iteration 2.2", + """ + ((move 0d (/a 1a 2)) + (loop n 2 + (loop i infinity (move epsilonDistance (/a epsilonAngle 2))) + (move 0d (/a 1a 4)))) + """, + needToTrain=True) + for n in range(3,8): + T("flower %d"%n, + """ + (loop j %d + (loop n 2 + (loop i infinity (move epsilonDistance (/a epsilonAngle 2))) + (move 0d (/a 1a 4))) + (move 0d (/a 1a %d))) + """%(n,n), + needToTrain=n in range(3,5)) + + for n in [5,6]: + T("staircase %d"%n, + """ + (loop i %d + (move 1d (/a 1a 4)) + (move 1d (/a 1a 4)) + (move 0d (/a 1a 2))) + """%n, + needToTrain=n in [5]) + + for n in range(1,6): + T("blocks zigzag %d"%n, + """ + (loop i %d + (move 1d (/a 1a 4)) (move 1d (/a 1a 4)) + (move 1d (+a (/a 1a 2) (/a 1a 4))) (move 1d (+a (/a 1a 2) (/a 1a 4)))) + """%n, + needToTrain=n in [1,2,3]) + for n in [3,4]:#range(1,5): + T("diagonal zigzag %d"%n, + """ + ((move 0d (/a 1a 8)) + (loop i %d + (move 1d (/a 1a 4)) + (move 1d (+a (/a 1a 2) (/a 1a 4))))) + """%n, + needToTrain=n == 4) + + + + for n in [1,2,3,4,5,6]: + T("right semicircle of size %d"%n, + """ + (loop i infinity + (move (*d epsilonLength %d) (-a 0a epsilonAngle))) + """%n, + needToTrain=n%2 == 0) + T("left semicircle of size %d"%n, + f""" + ({'' if n != 1 else slant(8)} + (loop i infinity + (move (*d epsilonLength {n}) epsilonAngle))) + """, + needToTrain=n%2 == 1) + T("circle of size %d"%n, + """ + ((loop i infinity + (move (*d epsilonLength %d) epsilonAngle)) + (loop i infinity + (move (*d epsilonLength %d) epsilonAngle))) + """%(n,n), + needToTrain=n in [1,4,3,5,6]) + + for n in [5,6]: + T("%d enclosed circles"%n, + """ + (loop j %d + (loop i infinity + (move (*d epsilonLength j) epsilonAngle)) + (loop i infinity + (move (*d epsilonLength j) epsilonAngle)))"""%n, + needToTrain=n == 5) + + for n,l in [(4,2), + (5,3), + (6,4), + (3,1)]: + T("%d-circle flower l=%d"%(n,l), + """ + (loop j %d + (move 0d (/a 1a %d)) + (embed (loop i infinity + (move (*d epsilonLength %d) epsilonAngle)) + (loop i infinity + (move (*d epsilonLength %d) epsilonAngle))))"""%(n,n,l,l), + needToTrain=(n,l) in [(6,4),(3,1)]) + + for n,l in [(3,1),(2,2),(1,3), + (2,1),(1,2),(1,1)]: + T("%d-semicircle sequence L=%d"%(n,l), + """ + (loop j %d + (loop i infinity + (move (*d epsilonLength %d) epsilonAngle)) + (loop i infinity + (move (*d epsilonLength %d) (-a 0a epsilonAngle)))) + """%(n,l,l), + needToTrain=(n,l) in [(3,1),(2,2),(1,3)]) + + for n,l in [(2,"1d"), + (3,"1d")]: + T("row of %d circles"%n, + """ + (loop j %d + (embed (loop k 2 (loop i infinity (move epsilonLength epsilonAngle)))) + (p (move %s 0a)))"""%(n,l), + needToTrain=n == 2) + for n,l in [(2,"1d"), + (3,"1d")]: + T("row of %d lines"%n, + """ + (loop j %d + (move 1d 0a) + (p (move %s 0a)))"""%(n,l), + needToTrain=n == 2) + T("line next to semicircle", + """ + ((move 1d 0a) (p (move 1d 0a)) (loop i infinity (move epsilonLength epsilonAngle))) + """, + needToTrain=True) + for n,l in [(3,"(/d 1d 2)"), + (4,"(/d 1d 3)")]: + T("%d dashed lines of size %s"%(n,l), + """(loop i %d (p (move 1d 0a)) (move %s 0a))"""%(n,l), + needToTrain=n == 3) + T("broken circle", + """ + ((loop i infinity (move epsilonLength epsilonAngle)) (p (move 1d 0a)) (loop i infinity (move epsilonLength epsilonAngle))) + """, + needToTrain=True) + T("circle next to semicircle", + """ + ((loop i infinity (move epsilonLength epsilonAngle)) + (loop i infinity (move epsilonLength epsilonAngle)) + (p (move 1d 0a)) + (loop i infinity (move epsilonLength epsilonAngle))) + """, + needToTrain=True) + T("semicircle next to square", + """ + ((loop i infinity (move epsilonLength epsilonAngle)) + (p (move 1d 0a)) + (loop i infinity (move 1d (/a 1a 4)))) + """, + needToTrain=False) + T("circle next to square", + """ + ((loop i infinity (move epsilonLength epsilonAngle)) + (loop i infinity (move epsilonLength epsilonAngle)) + (p (move 1d 0a)) + (loop i infinity (move 1d (/a 1a 4)))) + """, + needToTrain=False) + T("circle next to line", + """ + ((loop i infinity (move epsilonLength epsilonAngle)) + (loop i infinity (move epsilonLength epsilonAngle)) + (p (move 1d 0a)) + (move 1d 0a)) + """, + needToTrain=True) + T("line next to circle", + """ + ((move 1d 0a) + (p (move 1d 0a)) + (loop i infinity (move epsilonLength epsilonAngle)) + (loop i infinity (move epsilonLength epsilonAngle)) + (move 1d 0a)) + """, + needToTrain=True) + for n,l in [(4,"1d"), + (5,"1d")]: + T("row of %d dashes"%n, + """ + (loop j %d + (embed (move 0d (/a 1a 4)) (move 1d 0a)) + (p (move %s 0a)))"""%(n,l), + needToTrain=n == 4) + for n,l in [(5,"1d"),(6,"1d")]: + T("row of %d semicircles"%n, + """ + (loop j %d + (embed (loop i infinity (move epsilonLength epsilonAngle))) + (p (move %s 0a)))"""%(n,l), + needToTrain=n == 5) + + with random_seed(42): # carefully selected for maximum entropy + for n in [3,4,5,6,7]: + body = {"empty": "(move 1d 0a)", + "spiral": "(loop i infinity (move (*d epsilonLength i) (*a epsilonAngle 2)))", + "dashed": "(p (move 1d 0a)) (move 1d 0a)", + "circle": "(move 1d 0a) (loop k 2 (loop i infinity (move epsilonLength epsilonAngle)))", + "lonely circle": "(p (move 1d 0a)) (loop k 2 (loop i infinity (move epsilonLength epsilonAngle)))", + "square dashed": "(p (move 1d 0a)) (loop s 4 (move 1d (/a 1a 4)))", + "square": "(move 1d 0a) (loop s 4 (move 1d (/a 1a 4)))", + "close large semicircle": "(loop i infinity (move (*d epsilonLength 2) epsilonAngle))", + "close semicircle": "(loop i infinity (move epsilonLength epsilonAngle))", + "semicircle": "(move 1d 0a) (loop i infinity (move epsilonLength epsilonAngle))", + "double dashed": "(p (move 1d 0a)) (move 1d 0a) (p (move 1d 0a)) (move 1d 0a)", + "Greek": "(loop i 3 (move (*l 1l i) (/a 1a 4)))"} + for name in body: + if name == "spiral" and n not in [3,5]: continue + if name == "square" and n not in [5,3,6,7]: continue + if name == "semicircle" and n not in [5,3,4,6]: continue + if name == "Greek" and n not in [3,5]: continue + if name == "double dashed" and n not in [6,4,3]: continue + + mustTrain = False + + mustTrain = mustTrain or (n == 3 and name == "Greek") + mustTrain = mustTrain or (n == 7 and name == "empty") + mustTrain = mustTrain or (n == 5 and name == "dashed") + mustTrain = mustTrain or (n == 7 and name == "circle") + mustTrain = mustTrain or (n == 6 and name == "circle") + mustTrain = mustTrain or (n == 6 and name == "lonely circle") + mustTrain = mustTrain or (n == 5 and name == "square") + mustTrain = mustTrain or (n == 7 and name == "square") + mustTrain = mustTrain or (n == 5 and name == "semicircle") + mustTrain = mustTrain or (n == 3 and name == "square dashed") + mustTrain = mustTrain or (n == 6 and name == "close semicircle") + mustTrain = mustTrain or (n == 5 and name == "close large semicircle") + mustTrain = mustTrain or (n == 3 and name == "spiral") + mustTrain = mustTrain or (n == 6 and name == "double dashed") + mustTrain = mustTrain or (n == 3 and name == "double dashed") + #mustTrain = mustTrain or (n == 6 and name == "empty") + + #mustTrain = mustTrain or (random.random() < 0.07) # calibrated to give 70 training tasks + + + # # cap number of super easy snowflakes + # if name == "empty" and n not in [7]: mustTrain = False + # if name == "dashed" and n not in [4]: mustTrain = False + + + T("%d-%s snowflake"%(n,name), + """ + (loop j %d + (embed %s) + (move 0d (/a 1a %d)))"""%(n,body[name],n), + needToTrain=mustTrain) + + for n in [3,4]:#2,3,4]: + T("%d-row of squares"%n, + """ + (loop i %d + (embed (loop k 4 (move 1d (/a 1a 4)))) + (move 1d 0a)) + """%n, + needToTrain=n == 4) + T("2x2 grid", + """ + (for x 2 (embed (for y 2 + (embed (loop k 4 (move 1d (/a 1a 4)))) + (move 1d 0a))) + (move 0d (/a 1a 4)) (move 1d (-a 0a (/a 1a 4)))) + """) + T("slanted squares", + """ + ((embed (loop k 4 (move 1d (/a 1a 4)))) + (move 0d (/a 1a 8)) + (loop k 4 (move 1d (/a 1a 4)))) + """) + for l in range(1,6): + T("square of size %d"%l, + """ + (for i 4 + (move (*d 1d %d) (/a 1a 4))) + """%l, + needToTrain=l in range(4)) + for n in [5,7]: + T("%d-concentric squares"%n, + """ + (for i %d + (embed (loop j 4 (move (*d 1d i) (/a 1a 4))))) + """%n, + needToTrain=n == 5) + return tasks + +def montageTasks(tasks, prefix="", columns=None, testTrain=False): + import numpy as np + + w = 128 + arrays = [t.highresolution for t in tasks] + for a in arrays: + assert len(a) == w*w + + if testTrain: + arrays = [a for a,t in zip(arrays, tasks) if t.mustTrain ] + [a for a,t in zip(arrays, tasks) if not t.mustTrain ] + + arrays = [np.array([a[i:i + w] + for i in range(0, len(a), w) ]) + for a in arrays] + i = montage(arrays, columns=columns) + + import scipy.misc + scipy.misc.imsave('/tmp/%smontage.png'%prefix, i) + if testTrain: + trainingTasks = arrays[:sum(t.mustTrain for t in tasks)] + testingTasks = arrays[sum(t.mustTrain for t in tasks):] + random.shuffle(trainingTasks) + random.shuffle(testingTasks) + arrays = trainingTasks + testingTasks + else: + random.shuffle(arrays) + scipy.misc.imsave('/tmp/%srandomMontage.png'%prefix, montage(arrays, columns=columns)) + +def demoLogoTasks(): + import scipy.misc + import numpy as np + + g0 = Grammar.uniform(primitives, continuationType=turtle) + eprint("dreaming into /tmp/dreams_0...") + N = 1000 + programs = [ p + for _ in range(N) + for p in [g0.sample(arrow(turtle,turtle), + maximumDepth=20)] + if p is not None] + os.system("mkdir -p /tmp/dreams_0") + for n,p in enumerate(programs): + with open(f"/tmp/dreams_0/{n}.dream","w") as handle: + handle.write(str(p)) + drawLogo(*programs, pretty=True, smoothPretty=False, + resolution=512, + filenames=[f"/tmp/dreams_0/{n}_pretty.png" + for n in range(len(programs)) ], + timeout=1) + + if len(sys.argv) > 1: + tasks = makeTasks(sys.argv[1:],proto=False) + else: + tasks = makeTasks(['all'],proto=False) + montageTasks(tasks,columns=16,testTrain=True) + for n,t in enumerate(tasks): + a = t.highresolution + w = int(len(a)**0.5) + scipy.misc.imsave('/tmp/logo%d.png'%n, np.array([a[i:i+w] + for i in range(0,len(a),w) ])) + logo_safe_name = t.name.replace("=","_").replace(' ','_').replace('/','_').replace("-","_") + ".png" + #os.system(f"convert /tmp/logo{n}.png -morphology Dilate Octagon /tmp/{logo_safe_name}") + os.system(f"convert /tmp/logo{n}.png -channel RGB -negate /tmp/{logo_safe_name}") + eprint(len(tasks),"tasks") + eprint(sum(t.mustTrain for t in tasks),"need to be trained on") + + for t in dSLDemo(): + a = t.highresolution + w = int(len(a)**0.5) + scipy.misc.imsave('/tmp/logoDemo%s.png'%t.name, np.array([a[i:i+w] + for i in range(0,len(a),w) ])) + os.system(f"convert /tmp/logoDemo{t.name}.png -morphology Dilate Octagon /tmp/logoDemo{t.name}_dilated.png") + + tasks = [t for t in tasks if t.mustTrain ] + random.shuffle(tasks) + montageTasks(tasks[:16*3],"subset",columns=16) + + montageTasks(rotationalSymmetryDemo(),"rotational") + + diff --git a/dreamcoder/domains/misc/RobustFillPrimitives.py b/dreamcoder/domains/misc/RobustFillPrimitives.py new file mode 100644 index 0000000000000000000000000000000000000000..49544ca2c9ca91d8be3bc3685abc2c471c64eb3e --- /dev/null +++ b/dreamcoder/domains/misc/RobustFillPrimitives.py @@ -0,0 +1,308 @@ +#RobustFillPrimitives + +from dreamcoder.program import Primitive, prettyProgram +from dreamcoder.grammar import Grammar +from dreamcoder.type import tint, arrow, baseType #, t0, t1, t2 + +from string import printable +import re +from collections import defaultdict + +#from functools import reduce + + +disallowed = [ + ("#", "hash"), + ("!", "bang"), + ("\"", "double_quote"), + ("$", "dollar"), + ("%", "percent"), + ("&", "ampersand"), + ("'", "single_quote"), + (")", "left_paren"), + ("(", "right_paren"), + ("*", "astrisk"), + ("+", "plus"), + (",", "comma"), + ("-", "dash"), + (".", "period"), + ("/", "slash"), + (":", "colon"), + (";", "semicolon"), + ("<", "less_than"), + ("=", "equal"), + (">", "greater_than"), + ("?", "question_mark"), + ("@", "at"), + ("[", "left_bracket"), + ("\\", "backslash"), + ("]", "right_bracket"), + ("^", "carrot"), + ("_", "underscore"), + ("`", "backtick"), + ("|", "bar"), + ("}", "right_brace"), + ("{", "left_brace"), + ("~", "tilde"), + (" ", "space"), + ("\t", "tab") +] +disallowed = dict(disallowed) +delimiters = "&,.?!@()[]%{/}:;$#\"'" + +delim_dict = {disallowed[c]:c for c in delimiters} + +types = {} +types["Number"] = r'\d+' +types["Word"] = r'\w+' +types["Alphanum"] = r'\w' +types["PropCase"] = r'[A-Z][a-z]+' +types["AllCaps"] = r'[A-Z]' +types["Lower"] = r'[a-z]' +types["Digit"] = r'\d' +types["Char"] = r'.' + +regexes = {name: re.escape(val) for name, val in delim_dict.items()} +regexes = {**regexes, **types} + +tposition = baseType("position") +tindex = baseType("index") +tcharacter = baseType("character") +tboundary = baseType("boundary") +tregex = baseType("regex") +tsubstr = baseType("substr") +texpression = baseType("expression") +tprogram = baseType("program") +tnesting = baseType("nesting") +ttype = baseType("type") +tdelimiter = baseType("delimiter") + +def _substr(k1): return lambda k2: lambda string: string[k1:k2] #i think this is fine +def _getspan(r1): + return lambda i1: lambda b1: lambda r2: lambda i2: lambda b2: lambda string: \ + string[ + [m.end() for m in re.finditer(r1, string)][i1] if b1 == "End" else [m.start() for m in re.finditer(r1, string)][i1]:[m.end() for m in re.finditer(r2, string)][i2] if b2 == "End" else [m.start() for m in re.finditer(r2, string)][i2] + ] + #TODO format correctly +def _getspan_const(r1): return lambda i1: lambda b1: lambda r2: lambda i2: lambda b2: (defaultdict(int, {r1:i1+1 if i1>=0 else abs(i1), r2:i2+1 if i2>=0 else abs(i2)}), max(i1+1 if i1>=0 else abs(i1), i2+1 if i2>=0 else abs(i2))) + + +def _trim(string): + assert False + return string + +def _replace(d1, d2): return lambda string: string.replace(d1,d2) + +def _getall(tp): return lambda string: ''.join(re.findall(tp, string)) +def _getfirst(tp, i): return lambda string: ''.join(re.findall(tp, string)[:i]) +def _gettoken(tp, i): return lambda string: re.findall(tp, string)[i] +def _gettoken_const(tp, i): return defaultdict(int, {tp: i+1 if i>=0 else abs(i)}), i+1 if i>=0 else abs(i) + +def _getupto(reg): return lambda string: string[:[m.end() for m in re.finditer(reg, string)][0]] +def _getfrom(reg): return lambda string: string[[m.end() for m in re.finditer(reg, string)][-1]:] + +def _concat2(expr1): return lambda expr2: lambda string: expr1(string) + expr2(string) #More concats plz +def _concat1(expr): return lambda string: expr(string) +def _concat_list(expr): return lambda program: lambda string: expr(string) + program(string) +#i've decided that all of the things which are expressions should take tstring as last input and output a tstring. Thus, all requests are arrow(tstring, tstring) and we limit size with recursive depth +""" +todo: +- _trim +- incorporate tcharacter +- constraints +- format _getspan +- figure out how to represent on top_level + +- flatten for nn +- parse + +- robustfill_util +- train dc model for robustfill +- main_supervised_robustfill +- evaluate_robustfill +- sample_data + + +- deal with escapes ... + +constraints: +elements, and number necessary, and lengths +""" + +def robustFillPrimitives(max_len=100, max_index=5): + return [ + #CPrimitive("concat2", arrow(texpression, texpression, tprogram), _concat2), + CPrimitive("concat1", arrow(texpression, tprogram), _concat1), + CPrimitive("concat_list", arrow(texpression, tprogram, tprogram), _concat_list), + #expressions + CPrimitive("Constant", arrow(tcharacter, texpression), lambda x: lambda y: x), # add a constraint + CPrimitive("apply", arrow(tnesting, tsubstr, texpression), lambda n: lambda sub: lambda string: n(sub(string))), + CPrimitive("apply_n", arrow(tnesting, tnesting, texpression), lambda n1: lambda n2: lambda string: n1(n2(string))), + CPrimitive("expr_n", arrow(tnesting, texpression), lambda x: x), + CPrimitive("expr_f", arrow(tsubstr, texpression), lambda x: x) + ] + [ + #substrings + CPrimitive("SubStr", arrow(tposition, tposition, tsubstr), _substr), # handled + CPrimitive("GetSpan", arrow(tregex, tindex, tboundary, tregex, tindex, tboundary, tsubstr), _getspan, _getspan_const) #TODO constraint + ] + [ + #nestings + CPrimitive("GetToken"+name+str(i), tnesting, _gettoken(tp,i), _gettoken_const(tp, i)) for name, tp in types.items() for i in range(-max_index, max_index) + ] + [ + CPrimitive("ToCase_ProperCase", tnesting, lambda x: x.title(), (defaultdict(int, {r'[A-Z][a-z]+':1}), 1)), + CPrimitive("ToCase_AllCapsCase", tnesting, lambda x: x.upper(), (defaultdict(int, {r'[A-Z]':1}) ,1)), + CPrimitive("ToCase_LowerCase", tnesting, lambda x: x.lower(), (defaultdict(int, {r'[a-z]':1}), 1) ) + ] + [ + CPrimitive("Replace_"+name1+name2, tnesting, _replace(char1, char2), (defaultdict(int, {char1:1}), 1)) for name1, char1 in delim_dict.items() for name2, char2 in delim_dict.items() if char1 is not char2 + ] + [ + #CPrimitive("Trim", tnesting, _trim), #TODO + ] + [ + CPrimitive("GetUpTo"+name, tnesting, _getupto(reg), (defaultdict(int, {reg:1} ),1)) for name, reg in regexes.items() + ] + [ + CPrimitive("GetFrom"+name, tnesting, _getfrom(reg), (defaultdict(int, {reg:1} ),1)) for name, reg in regexes.items() + ] + [ + CPrimitive("GetFirst_"+name+str(i), tnesting, _getfirst(tp, i), (defaultdict(int, {tp:i} ), i+1 if i>=0 else abs(i))) for name, tp in types.items() for i in list(range(-max_index,0))+ list(range(1,max_index+1)) + ] + [ + CPrimitive("GetAll_"+name, tnesting, _getall(reg),(defaultdict(int, {reg:1} ),1) ) for name, reg in types.items() + ] + [ + #regexes + CPrimitive("type_to_regex", arrow(ttype, tregex), lambda x: x), #TODO also make disappear + CPrimitive("delimiter_to_regex", arrow(tdelimiter, tregex), lambda x: re.escape(x)) #TODO also make disappear + ] + [ + #types + CPrimitive("Number", ttype, r'\d+', r'\d+'), #TODO + CPrimitive("Word", ttype, r'\w+', r'\w+'), #TODO + CPrimitive("Alphanum", ttype, r'\w', r'\w'), #TODO + CPrimitive("PropCase", ttype, r'[A-Z][a-z]+', r'[A-Z][a-z]+'), #TODO + CPrimitive("AllCaps", ttype, r'[A-Z]', r'[A-Z]'), #TODO + CPrimitive("Lower", ttype, r'[a-z]', r'[a-z]'), #TODO + CPrimitive("Digit", ttype, r'\d', r'\d'), #TODO + CPrimitive("Char", ttype, r'.', r'.') #TODO + ] + [ + #Cases + # CPrimitive("ProperCase", tcase, .title()), #TODO + # CPrimitive("AllCapsCase", tcase, .upper()), #TODO + # CPrimitive("LowerCase", tcase, .lower()) #TODO + ] + [ + #positions + CPrimitive("position"+str(i), tposition, i, (defaultdict(int), i+1 if i>=0 else abs(i)) ) for i in range(-max_len,max_len+1) #deal with indicies + ] + [ + #indices + CPrimitive("index"+str(i), tindex, i, i) for i in range(-max_index,max_index+1) #deal with indicies + ] + [ + #characters + CPrimitive(i, tcharacter, i, (defaultdict(int, {i:1}),1) ) for i in printable[:-5] if i not in disallowed + ] + [ + CPrimitive(name, tcharacter, char, (defaultdict(int, {char:1}), 1)) for char, name in disallowed.items() # NB: disallowed is reversed + ] + [ + #delimiters + CPrimitive("delim_"+name, tdelimiter, char, char) for name, char in delim_dict.items() + ] + [ + #boundaries + CPrimitive("End", tboundary, "End"), + CPrimitive("Start", tboundary, "Start") + ] + + + +def RobustFillProductions(max_len=100, max_index=5): + return [(0.0, prim) for prim in robustFillPrimitives(max_len=max_len, max_index=max_index)] + + +def flatten_program(p): + string = p.show(False) + string = string.replace('(', '') + string = string.replace(')', '') + #remove '_fn' (optional) + string = string.split(' ') + string = list(filter(lambda x: x is not '', string)) + return string + + + + +def add_constraints(c1, c2=None): + if c2 is None: + return c1 + d1, m1 = c1 + d2, m2 = c2 + min_size = max(m1, m2) + d = defaultdict(int) + for item in set(d1.keys()) | set(d2.keys()): + d[item] = max(d1[item], d2[item]) + return d, min_size + +# class Constraint_prop: +# def application(self, p, environment): +# self.f.visit(self, environment)(self.x.visit(self, environment)) +# def primitive(self, p, environment): +# return self.value + +class Constraint_prop: + def __init__(self): + pass + + def application(self, p): + return p.f.visit(self)(p.x.visit(self)) + + def primitive(self, p): + return p.constraint + + def execute(self, p): + return p.visit(self) + + +class CPrimitive(Primitive): + def __init__(self, name, ty, value, constraint=None): + #I have no idea why this works but it does ..... + if constraint is None: + if len(ty.functionArguments())==0: + self.constraint = (defaultdict(int), 0) + elif len(ty.functionArguments())==1: + self.constraint = lambda x: x + elif len(ty.functionArguments())==2: + self.constraint = lambda x: lambda y: add_constraints(x,y) + else: + self.constraint = lambda x: x + for _ in range(len(ty.functionArguments()) - 1): + self.constraint = lambda x: lambda y: add_constraints(x, self.constraint(y)) + else: self.constraint = constraint + super(CPrimitive, self).__init__(name, ty, value) + + #def __getinitargs__(self): + # return (self.name, self.tp, self.value, None) + + def __getstate__(self): + #print("self.name", self.name) + return self.name + + def __setstate__(self, state): + #for backwards compatibility: + if type(state) == dict: + pass #do nothing, i don't need to load them if they are old... + else: + p = Primitive.GLOBALS[state] + self.__init__(p.name, p.tp, p.value, p.constraint) + + + +if __name__=='__main__': + import time + CPrimitive("testCPrim", tint, lambda x: x, 17) + g = Grammar.fromProductions(RobustFillProductions()) + print(len(g)) + request = tprogram + p = g.sample(request) + print("request:", request) + print("program:") + print(prettyProgram(p)) + s = 'abcdefg' + e = p.evaluate([]) + #print("prog applied to", s) + #print(e(s)) + print("flattened_program:") + flat = flatten_program(p) + print(flat) + t = time.time() + constraints = Constraint_prop().execute(p) + print(time.time() - t) + print(constraints) diff --git a/dreamcoder/domains/misc/__init__.py b/dreamcoder/domains/misc/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/dreamcoder/domains/misc/__pycache__/RobustFillPrimitives.cpython-39.pyc b/dreamcoder/domains/misc/__pycache__/RobustFillPrimitives.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5bd81968905e1f96e83975bc9949fb9a304795c8 Binary files /dev/null and b/dreamcoder/domains/misc/__pycache__/RobustFillPrimitives.cpython-39.pyc differ diff --git a/dreamcoder/domains/misc/__pycache__/__init__.cpython-39.pyc b/dreamcoder/domains/misc/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..496b72075311e5e82ffd09382ea1967a54d233fb Binary files /dev/null and b/dreamcoder/domains/misc/__pycache__/__init__.cpython-39.pyc differ diff --git a/dreamcoder/domains/misc/__pycache__/algolispPrimitives.cpython-39.pyc b/dreamcoder/domains/misc/__pycache__/algolispPrimitives.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d50bfcf788427a21690c52f8077987c6374027cd Binary files /dev/null and b/dreamcoder/domains/misc/__pycache__/algolispPrimitives.cpython-39.pyc differ diff --git a/dreamcoder/domains/misc/__pycache__/deepcoderPrimitives.cpython-39.pyc b/dreamcoder/domains/misc/__pycache__/deepcoderPrimitives.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7646c724c9adbbff9707dd0c8484928e780b6e75 Binary files /dev/null and b/dreamcoder/domains/misc/__pycache__/deepcoderPrimitives.cpython-39.pyc differ diff --git a/dreamcoder/domains/misc/__pycache__/napsPrimitives.cpython-39.pyc b/dreamcoder/domains/misc/__pycache__/napsPrimitives.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..561fddc0ae2f9e6ef1d568b2e07ad7255de2c283 Binary files /dev/null and b/dreamcoder/domains/misc/__pycache__/napsPrimitives.cpython-39.pyc differ diff --git a/dreamcoder/domains/misc/algolispPrimitives.py b/dreamcoder/domains/misc/algolispPrimitives.py new file mode 100644 index 0000000000000000000000000000000000000000..f1be2ed876c1133b312c7c5ee0c6c1aab6a4b9aa --- /dev/null +++ b/dreamcoder/domains/misc/algolispPrimitives.py @@ -0,0 +1,508 @@ +#napsPrimitives.py +from dreamcoder.program import Primitive, Program +from dreamcoder.grammar import Grammar +from dreamcoder.type import tlist, arrow, baseType #, t0, t1, t2 + +#from functools import reduce + + +#Internal TYPES: +# NUMBER +# BOOLEAN +# NOTFUNCTYPE +# Type +# ANYTYPE + +#types +tsymbol = baseType("symbol") +#PROGRAM = SYMBOL = constant | argument | function_call | function | lambda +tconstant = baseType("constant") +tfunction = baseType("function") + +f = dict([("|||","triple_or"), +("reduce","reduce"), +("+","+"), +("len","len"), +("map","map"), +("filter","filter"), +("-","-"), +("*","*"), +("partial0","partial0"), +("if","if"), +("lambda1","lambda1"), +("==","eq"), +("range","range"), +("digits","digits"), +("slice","slice"), +("reverse","reverse"), +("lambda2","lambda2"), +("deref","deref"), +("partial1","partial1"), +("/","div"), +("<","less_than"), +(">","greater_than"), +("min","min"), +("combine","combine"), +("head","head"), +("is_prime","is_prime"), +("false","false"), +("||","or"), +("10","10"), +("self","self"), +("max","max"), +("sort","sort"), +("%","mod"), +("invoke1","invoke1"), +("!","bang"), +("square","square"), +("str_concat","str_concat"), +("strlen","strlen"), +("<=","leq"), +("int-deref","int-deref"), +("str_split","str_split"), +("str_index","str_index"), +("floor","floor"), +("sqrt","sqrt"), +("str_min","str_min"), +("&&","AND"), +("is_sorted","is_sorted"), +("str_max","str_max"), +(">=","geq")]) + +fn_lookup = { +**f +} + +c = dict( +[("0","0"), +("a","a"), +("arg1","arg1"), +("1","1"), +("b","b"), +("2","2"), +("c","c"), +("arg2","arg2"), +("d","d"), +("false","false"), +("10","10"), +("self","self"), +("1000000000","1000000000"), +("\"\"", "empty_str"), +("e","e"), +("40","40"), +("f","f"), +("\" \"", "space"), +("g","g"), +("\"z\"","z"), +("true","true"), +("h","h"), +("i","i"), +("j","j"), +("k","k"), +("l","l")] + ) + +const_lookup = { + **c + } + +primitive_lookup = {**const_lookup, **fn_lookup} +#Do i need arguments?? + +def _fn_call(f): + #print("f", f) + def inner(sx): + #print("sx", sx) + if not type(sx) == list: + sx = [sx] + return [f] + sx + return lambda sx: inner(sx) + +def algolispPrimitives(): + return [ + Primitive("fn_call", arrow(tfunction, tlist(tsymbol), tsymbol), _fn_call), + + Primitive("lambda1_call", arrow(tfunction, tlist(tsymbol), tsymbol), lambda f: lambda sx: ["lambda1", [f] + sx] if type(sx)==list else ["lambda1", [f] + [sx]] ), + Primitive("lambda2_call", arrow(tfunction, tlist(tsymbol), tsymbol), lambda f: lambda sx: ["lambda2", [f] + sx] if type(sx)==list else ["lambda2", [f] + [sx]] ), + #symbol converters: + # SYMBOL = constant | argument | function_call | function | lambda + Primitive("symbol_constant", arrow(tconstant, tsymbol), lambda x: x), + Primitive("symbol_function", arrow(tfunction, tsymbol), lambda x: x), + #list converters + Primitive('list_init_symbol', arrow(tsymbol, tlist(tsymbol)), lambda symbol: [symbol] ), + Primitive('list_add_symbol', arrow(tsymbol, tlist(tsymbol), tlist(tsymbol)), lambda symbol: lambda symbols: symbols + [symbol] if type(symbols) == list else [symbols] + [symbol]) + ] + [ + #functions: + Primitive(ec_name, tfunction, algo_name) for algo_name, ec_name in fn_lookup.items() + ] + [ + #Constants + Primitive(ec_name, tconstant, algo_name) for algo_name, ec_name in const_lookup.items() + ] + + +#for first pass, can just hard code vars and maps n stuff + + +def algolispProductions(): + return [(0.0, prim) for prim in algolispPrimitives()] + + +algolisp_input_vocab = [ +"", +"", +"", +"|||", +"(", +")", +"a", +"b", +"of", +"the", +"0", +",", +"arg1", +"c", +"and", +"1", +"reduce", +"+", +"int[]", +"in", +"given", +"numbers", +"int", +"is", +"len", +"map", +"digits", +"d", +"number", +"array", +"-", +"filter", +"to", +"range", +"are", +"*", +"partial0", +"2", +"if", +"reverse", +"that", +"elements", +"lambda1", +"==", +"an", +"arg2", +"values", +"slice", +"element", +"lambda2", +"deref", +"you", +"partial1", +"e", +"find", +"your", +"task", +"compute", +"among", +"from", +"consider", +"first", +"than", +"value", +"/", +"what", +"arrays", +"with", +"<", +"length", +">", +"be", +"min", +"end", +"sum", +"one", +"head", +"f", +"by", +"combine", +"segment", +"coordinates", +"not", +"string", +"is_prime", +"false", +"||", +"at", +"10", +"half", +"position", +"self", +"subsequence", +"after", +"such", +"max", +"prime", +"sort", +"let", +"%", +"longest", +"inclusive", +"which", +"invoke1", +"1000000000", +"all", +"positions", +"!", +"square", +"its", +"has", +"reversed", +"another", +"less", +"each", +"\"\"", +"order", +"largest", +"maximum", +"g", +"last", +"smallest", +"times", +"strictly", +"40", +"smaller", +"indexes", +"str_concat", +"strlen", +"two", +"starting", +"<=", +"on", +"greater", +"how", +"many", +"int-deref", +"prefix", +"bigger", +"only", +"str_split", +"\" \"", +"str_index", +"can", +"plus", +"squared", +"product", +"strings", +"floor", +"sqrt", +"before", +"it", +"concatenation", +"index", +"as", +"define", +"multiplied", +"biggest", +"rounded", +"down", +"string[]", +"equal", +"integer", +"also", +"based", +"sorting", +"replace", +"becomes", +"single", +"digit", +"characters", +"keeping", +"including", +"h", +"larger", +"written", +"divisible", +"previous", +"subarray", +"mininum", +"second", +"middle", +"same", +"th", +"median", +"till", +"integers", +"sequence", +"for", +"indices", +"between", +"when", +"doubled", +"ending", +"even", +"multiply", +"squares", +"fibonacci", +"exclusive", +"odd", +"keep", +"whether", +"minimum", +"except", +"letters", +"appearing", +"letter", +"consecutive", +"character", +"factorial", +"chosen", +"start", +"begin", +"themselves", +"\"z\"", +"str_min", +"remove", +"present", +"exist", +"appear", +"starts", +"i", +"located", +"true", +"&&", +"found", +"discarding", +"is_sorted", +"removing", +"do", +"increasing", +"exceed", +"ascending", +"difference", +"decremented", +"existing", +"alphabetically", +"words", +"added", +"incremented", +"backwards", +"individual", +"lexicographically", +"separate", +"abbreviation", +"str_max", +"increment", +"consisting", +"equals", +"having", +"discard", +"descending", +"decreasing", +"sorted", +"being", +"where", +"right", +"there", +"ordinal", +"have", +"s", +"going", +"'", +"add", +"space", +"decrement", +"those", +"whitespaces", +"spaces", +"subtract", +"remaining", +"following", +"or", +"out", +"ordered", +"minimal", +"itself", +"symmetric", +"read", +"increases", +"word", +"immidiately", +"excluding", +"j", +"omitting", +"reads", +"maximal", +">=", +"compare", +"form", +"absent", +"missing", +"cannot", +"whose", +"count", +"lowest", +"both", +"ends", +"beginning", +"left", +"mean", +"average", +"obtained", +"writing", +"result", +"joining", +"together", +"increase", +"highest", +"comparing", +"forms", +"avg", +"outside", +"positive", +"summed", +"belonging", +"lexicographical", +"rest", +"belong", +"inclucing", +"lexical", +"alphabetical", +"dictionary", +"k", +"negative", +"lexicographic", +"represents", +"delete", +"non", +"l", +"erase", +"m", +"comes", +"up", +"comparison", +"during", +"'s value is the largest inclusive, which is strictly less than maximum element in numbers from 1 to the element in `a` which'", +"'s value is the biggest (inclusive), which is strictly less than maximum element of range from 1 to the element in `a` which'", +"'s value is the highest, which is strictly less than maximum element among sequence of digits of the element in `a` which'"] + + +if __name__ == "__main__": + #g = Grammar.uniform(deepcoderPrimitives()) + + g = Grammar.fromProductions(algolispProductions(), logVariable=.9) + + #p=Program.parse("(lambda (fn_call filter (list_add_symbol (lambda1_call == (list_add_symbol 1 (list_init_symbol (fn_call mod ( list_add_symbol 2 (list_init_symbol arg1)) ))) ) (list_init_symbol $0)) )") + p=Program.parse("(lambda (fn_call filter (list_add_symbol (lambda1_call eq (list_add_symbol (symbol_constant 1) (list_init_symbol (fn_call mod ( list_add_symbol (symbol_constant 2) (list_init_symbol (symbol_constant arg1))) ))) ) (list_init_symbol (symbol_constant $0)))))") + + print(p) + + #tree = p.evaluate(["a"]) + tree = p.evaluate([]) + print(tree("a")) + +# + + diff --git a/dreamcoder/domains/misc/deepcoderPrimitives.py b/dreamcoder/domains/misc/deepcoderPrimitives.py new file mode 100644 index 0000000000000000000000000000000000000000..d62e1e7ed02f51d1af8902377b2617fdcf86bcd8 --- /dev/null +++ b/dreamcoder/domains/misc/deepcoderPrimitives.py @@ -0,0 +1,352 @@ +from dreamcoder.program import Primitive, prettyProgram +from dreamcoder.grammar import Grammar +from dreamcoder.type import tlist, tint, arrow, baseType #, t0, t1, t2 + +#from functools import reduce + + +#todo +int_to_int = baseType("int_to_int") +int_to_bool = baseType("int_to_bool") +int_to_int_to_int = baseType("int_to_int_to_int") + + +#deepcoderPrimitives +Null = 300 #or perhaps something else, like "an integer outside the working range"? + +def _head(xs): return xs[0] if len(xs)>0 else Null +def _tail(xs): return xs[-1] if len(xs)>0 else Null +def _take(n): return lambda xs: xs[:n] +def _drop(n): return lambda xs: xs[n:] +def _access(n): return lambda xs: xs[n] if n>=0 and len(xs)>n else Null +def _minimum(xs): return min(xs) if len(xs)>0 else Null +def _maximum(xs): return max(xs) if len(xs)>0 else Null +def _reverse(xs): return list(reversed(xs)) +def _sort(xs): return sorted(xs) +def _sum(xs): return sum(xs) + +#higher order: +def _map(f): return lambda l: list(map(f, l)) +def _filter(f): return lambda l: list(filter(f, l)) +def _count(f): return lambda l: len([x for x in l if f(x)]) +def _zipwith(f): return lambda xs: lambda ys: [f(x)(y) for (x, y) in zip(xs, ys)] +def _scanl1(f): + def _inner(xs): + ys = [] + if len(xs) > 0: + ys.append(xs[0]) + for i in range(1, len(xs)): + ys.append( f(ys[i-1])(xs[i])) + return ys + return _inner + +#int to int: +def _succ(x): return x+1 +def _pred(x): return x-1 +def _double(x): return x*2 +def _half(x): return int(x/2) +def _negate(x): return -x +def _square(x): return x**2 +def _triple(x): return x*3 +def _third(x): return int(x/3) +def _quad(x): return x*4 +def _quarter(x): return int(x/4) + +#int to bool: +def _pos(x): return x>0 +def _neg(x): return x<0 +def _even(x): return x%2==0 +def _odd(x): return x%2==1 + +#int to int to int: +def _add(x): return lambda y: x + y +def _sub(x): return lambda y: x - y +def _mult(x): return lambda y: x * y +def _min(x): return lambda y: _minimum([x,y]) +def _max(x): return lambda y: _maximum([x,y]) + +def deepcoderPrimitives(): + return [ + Primitive("HEAD", arrow(tlist(tint), tint), _head), + Primitive("LAST", arrow(tlist(tint), tint), _tail), + Primitive("TAKE", arrow(tint, tlist(tint), tlist(tint)), _take), + Primitive("DROP", arrow(tint, tlist(tint), tlist(tint)), _drop), + Primitive("ACCESS", arrow(tint, tlist(tint), tint), _access), + Primitive("MINIMUM", arrow(tlist(tint), tint), _minimum), + Primitive("MAXIMUM", arrow(tlist(tint), tint), _maximum), + Primitive("REVERSE", arrow(tlist(tint), tlist(tint)), _reverse), + Primitive("SORT", arrow(tlist(tint), tlist(tint)), _sort), + Primitive("SUM", arrow(tlist(tint), tint), _sum) + ] + [ + Primitive("MAP", arrow(int_to_int, tlist(tint), tlist(tint)), _map), #is this okay??? + Primitive("FILTER", arrow(int_to_bool, tlist(tint), tlist(tint)), _filter), #is this okay??? + Primitive("COUNT", arrow(int_to_bool, tlist(tint), tint), _count), #is this okay??? + Primitive("ZIPWITH", arrow(int_to_int_to_int, tlist(tint), tlist(tint), tlist(tint)), _zipwith), #is this okay??? + Primitive("SCANL1", arrow(int_to_int_to_int, tlist(tint), tlist(tint)), _scanl1), #is this okay??? + ] + [ + Primitive("INC", int_to_int, _succ), + Primitive("DEC", int_to_int, _pred), + Primitive("SHL", int_to_int, _double), + Primitive("SHR", int_to_int, _half), + Primitive("doNEG", int_to_int, _negate), + Primitive("SQR", int_to_int, _square), + Primitive("MUL3", int_to_int, _triple), + Primitive("DIV3", int_to_int, _third), + Primitive("MUL4", int_to_int, _quad), + Primitive("DIV4", int_to_int, _quarter), + ] + [ + Primitive("isPOS", int_to_bool, _pos), + Primitive("isNEG", int_to_bool, _neg), + Primitive("isEVEN", int_to_bool, _even), + Primitive("isODD", int_to_bool, _odd), + ] + [ + Primitive("+", int_to_int_to_int, _add), + Primitive("-", int_to_int_to_int, _sub), + Primitive("*", int_to_int_to_int, _mult), + Primitive("MIN", int_to_int_to_int, _min), + Primitive("MAX", int_to_int_to_int, _max) + ] + +def OldDeepcoderPrimitives(): + return [ + Primitive("head", arrow(tlist(tint), tint), _head), + Primitive("tail", arrow(tlist(tint), tint), _tail), + Primitive("take", arrow(tint, tlist(tint), tlist(tint)), _take), + Primitive("drop", arrow(tint, tlist(tint), tlist(tint)), _drop), + Primitive("access", arrow(tint, tlist(tint), tint), _access), + Primitive("minimum", arrow(tlist(tint), tint), _minimum), + Primitive("maximum", arrow(tlist(tint), tint), _maximum), + Primitive("reverse", arrow(tlist(tint), tlist(tint)), _reverse), + Primitive("sort", arrow(tlist(tint), tlist(tint)), _sort), + Primitive("sum", arrow(tlist(tint), tint), _sum) + ] + [ + Primitive("map", arrow(int_to_int, tlist(tint), tlist(tint)), _map), #is this okay??? + Primitive("filter_int", arrow(int_to_bool, tlist(tint), tlist(tint)), _filter), #is this okay??? + Primitive("count", arrow(int_to_bool, tlist(tint), tint), _count), #is this okay??? + Primitive("zipwith", arrow(int_to_int_to_int, tlist(tint), tlist(tint), tlist(tint)), _zipwith), #is this okay??? + Primitive("scanl1", arrow(int_to_int_to_int, tlist(tint), tlist(tint)), _scanl1), #is this okay??? + # ] + [ + # Primitive("succ", arrow(tint, tint), _succ), + # Primitive("pred", arrow(tint, tint), _pred), + # Primitive("double", arrow(tint, tint), _double), + # Primitive("half", arrow(tint, tint), _half), + # Primitive("neg", arrow(tint, tint), _neg), + # Primitive("square", arrow(tint, tint), _square), + # Primitive("triple", arrow(tint, tint), _triple), + # Primitive("third", arrow(tint, tint), _third), + # Primitive("quad", arrow(tint, tint), _quad), + # Primitive("quarter", arrow(tint, tint), _quarter), + # ] + [ + # Primitive("pos", arrow(tint, tbool), _pos), + # Primitive("neg", arrow(tint, tbool), _neg), + # Primitive("even", arrow(tint, tbool), _even), + # Primitive("odd", arrow(tint, tbool), _odd), + # ] + [ + # Primitive("add", arrow(tint, tint, tint), _add), + # Primitive("sub", arrow(tint, tint, tint), _sub), + # Primitive("mult", arrow(tint, tint, tint), _mult), + # Primitive("min", arrow(tint, tint, tint), _min), + # Primitive("max", arrow(tint, tint, tint), _max) + ] + [ + Primitive("succ_fn", int_to_int, _succ), + Primitive("pred_fn", int_to_int, _pred), + Primitive("double_fn", int_to_int, _double), + Primitive("half_fn", int_to_int, _half), + Primitive("negate_fn", int_to_int, _negate), + Primitive("square_fn", int_to_int, _square), + Primitive("triple_fn", int_to_int, _triple), + Primitive("third_fn", int_to_int, _third), + Primitive("quad_fn", int_to_int, _quad), + Primitive("quarter_fn", int_to_int, _quarter), + ] + [ + Primitive("pos_fn", int_to_bool, _pos), + Primitive("neg_fn", int_to_bool, _neg), + Primitive("even_fn", int_to_bool, _even), + Primitive("odd_fn", int_to_bool, _odd), + ] + [ + Primitive("add_fn", int_to_int_to_int, _add), + Primitive("sub_fn", int_to_int_to_int, _sub), + Primitive("mult_fn", int_to_int_to_int, _mult), + Primitive("min_fn", int_to_int_to_int, _min), + Primitive("max_fn", int_to_int_to_int, _max) + ] + +def deepcoderProductions(): + return [(0.0, prim) for prim in deepcoderPrimitives()] + +def flatten_program(p): + string = p.show(False) + num_inputs = string.count('lambda') + string = string.replace('lambda', '') + string = string.replace('(', '') + string = string.replace(')', '') + #remove '_fn' (optional) + for i in range(num_inputs): + string = string.replace('$' + str(num_inputs-i-1),'input_' + str(i)) + string = string.split(' ') + string = list(filter(lambda x: x is not '', string)) + return string + +if __name__ == "__main__": + #g = Grammar.uniform(deepcoderPrimitives()) + g = Grammar.fromProductions(deepcoderProductions(), logVariable=.9) + request = arrow(tlist(tint), tint, tint) + p = g.sample(request) + print("request:", request) + print("program:") + print(prettyProgram(p)) + print("flattened_program:") + flat = flatten_program(p) + print(flat) + + #robustfill output = names from productions + input_0-2 or 3 + + + + + + # # with open("/home/ellisk/om/ec/experimentOutputs/list_aic=1.0_arity=3_ET=1800_expandFrontier=2.0_it=4_likelihoodModel=all-or-nothing_MF=5_baseline=False_pc=10.0_L=1.0_K=5_rec=False.pickle", "rb") as handle: + # # b = pickle.load(handle).grammars[-1] + # # print b + + # p = Program.parse( + # "(lambda (lambda (lambda (if (empty? $0) empty (cons (+ (car $1) (car $0)) ($2 (cdr $1) (cdr $0)))))))") + # t = arrow(tlist(tint), tlist(tint), tlist(tint)) # ,tlist(tbool)) + # print(g.logLikelihood(arrow(t, t), p)) + # assert False + # print(b.logLikelihood(arrow(t, t), p)) + + # # p = Program.parse("""(lambda (lambda + # # (unfold 0 + # # (lambda (+ (index $0 $2) (index $0 $1))) + # # (lambda (1+ $0)) + # # (lambda (eq? $0 (length $1)))))) + # # """) + # p = Program.parse("""(lambda (lambda + # (map (lambda (+ (index $0 $2) (index $0 $1))) (range (length $0)) )))""") + # # .replace("unfold", "#(lambda (lambda (lambda (lambda (fix1 $0 (lambda (lambda (#(lambda (lambda (lambda (if $0 empty (cons $1 $2))))) ($1 ($3 $0)) ($4 $0) ($5 $0)))))))))").\ + # # replace("length", "#(lambda (fix1 $0 (lambda (lambda (if (empty? $0) 0 (+ ($1 (cdr $0)) 1))))))").\ + # # replace("forloop", "(#(lambda (lambda (lambda (lambda (fix1 $0 (lambda (lambda (#(lambda (lambda (lambda (if $0 empty (cons $1 $2))))) ($1 ($3 $0)) ($4 $0) ($5 $0))))))))) (lambda (#(eq? 0) $0)) $0 (lambda (#(lambda (- $0 1)) $0)))").\ + # # replace("inc","#(lambda (+ $0 1))").\ + # # replace("drop","#(lambda (lambda (fix2 $0 $1 (lambda (lambda (lambda (if + # # (#(eq? 0) $1) $0 (cdr ($2 (- $1 1) $0)))))))))")) + # print(p) + # print(g.logLikelihood(t, p)) + # assert False + + # print("??") + # p = Program.parse( + # "#(lambda (#(lambda (lambda (lambda (fix1 $0 (lambda (lambda (if (empty? $0) $3 ($4 (car $0) ($1 (cdr $0)))))))))) (lambda $1) 1))") + # for j in range(10): + # l = list(range(j)) + # print(l, p.evaluate([])(lambda x: x * 2)(l)) + # print() + # print() + + # print("multiply") + # p = Program.parse( + # "(lambda (lambda (lambda (if (eq? $0 0) 0 (+ $1 ($2 $1 (- $0 1)))))))") + # print(g.logLikelihood(arrow(arrow(tint, tint, tint), tint, tint, tint), p)) + # print() + + # print("take until 0") + # p = Program.parse("(lambda (lambda (if (eq? $1 0) empty (cons $1 $0))))") + # print(g.logLikelihood(arrow(tint, tlist(tint), tlist(tint)), p)) + # print() + + # print("countdown primitive") + # p = Program.parse( + # "(lambda (lambda (if (eq? $0 0) empty (cons (+ $0 1) ($1 (- $0 1))))))") + # print( + # g.logLikelihood( + # arrow( + # arrow( + # tint, tlist(tint)), arrow( + # tint, tlist(tint))), p)) + # print(_fix(9)(p.evaluate([]))) + # print("countdown w/ better primitives") + # p = Program.parse( + # "(lambda (lambda (if (eq0 $0) empty (cons (+1 $0) ($1 (-1 $0))))))") + # print( + # g.logLikelihood( + # arrow( + # arrow( + # tint, tlist(tint)), arrow( + # tint, tlist(tint))), p)) + + # print() + + # print("prepend zeros") + # p = Program.parse( + # "(lambda (lambda (lambda (if (eq? $1 0) $0 (cons 0 ($2 (- $1 1) $0))))))") + # print( + # g.logLikelihood( + # arrow( + # arrow( + # tint, + # tlist(tint), + # tlist(tint)), + # tint, + # tlist(tint), + # tlist(tint)), + # p)) + # print() + # assert False + + # p = Program.parse( + # "(lambda (fix1 $0 (lambda (lambda (if (empty? $0) 0 (+ 1 ($1 (cdr $0))))))))") + # print(p.evaluate([])(list(range(17)))) + # print(g.logLikelihood(arrow(tlist(tbool), tint), p)) + + # p = Program.parse( + # "(lambda (lambda (if (empty? $0) 0 (+ 1 ($1 (cdr $0))))))") + # print( + # g.logLikelihood( + # arrow( + # arrow( + # tlist(tbool), tint), arrow( + # tlist(tbool), tint)), p)) + + # p = Program.parse( + # "(lambda (fix1 $0 (lambda (lambda (if (empty? $0) 0 (+ (car $0) ($1 (cdr $0))))))))") + + # print(p.evaluate([])(list(range(4)))) + # print(g.logLikelihood(arrow(tlist(tint), tint), p)) + + # p = Program.parse( + # "(lambda (lambda (if (empty? $0) 0 (+ (car $0) ($1 (cdr $0))))))") + # print(p) + # print( + # g.logLikelihood( + # arrow( + # arrow( + # tlist(tint), + # tint), + # tlist(tint), + # tint), + # p)) + + # print("take") + # p = Program.parse( + # "(lambda (lambda (lambda (if (eq? $1 0) empty (cons (car $0) ($2 (- $1 1) (cdr $0)))))))") + # print(p) + # print( + # g.logLikelihood( + # arrow( + # arrow( + # tint, + # tlist(tint), + # tlist(tint)), + # tint, + # tlist(tint), + # tlist(tint)), + # p)) + # assert False + + # print(p.evaluate([])(list(range(4)))) + # print(g.logLikelihood(arrow(tlist(tint), tlist(tint)), p)) + + # p = Program.parse( + # """(lambda (fix (lambda (lambda (match $0 0 (lambda (lambda (+ $1 ($3 $0))))))) $0))""") + # print(p.evaluate([])(list(range(4)))) + # print(g.logLikelihood(arrow(tlist(tint), tint), p)) diff --git a/dreamcoder/domains/misc/napsPrimitives.py b/dreamcoder/domains/misc/napsPrimitives.py new file mode 100644 index 0000000000000000000000000000000000000000..0cb3264116ccfa5c2dc88cfb459c7d63d9c04469 --- /dev/null +++ b/dreamcoder/domains/misc/napsPrimitives.py @@ -0,0 +1,198 @@ +#napsPrimitives.py +from dreamcoder.program import Primitive, prettyProgram +from dreamcoder.grammar import Grammar +from dreamcoder.type import tlist, tint, arrow, baseType #, t0, t1, t2 + +#from functools import reduce + + +#types +PROGRAM = baseType("PROGRAM") + +RECORD = baseType("RECORD") +FUNC = baseType("FUNC") + +VAR = baseType("VAR") +STMT = baseType("STMT") +EXPR = baseType("EXPR") +ASSIGN = baseType("ASSIGN") +LHS = baseType("LHS") +IF = baseType("IF") +FOREACH = baseType("FOREACH") +WHILE = baseType("WHILE") +BREAK = baseType("BREAK") +CONTINUE = baseType("CONTINUE") +RETURN = baseType("RETURN") +NOOP = baseType("NOOP") +FIELD = baseType("FIELD") +CONSTANT = baseType("CONSTANT") +INVOKE = baseType("INVOKE") +TERNARY = baseType("TERNARY") +CAST = baseType("CAST") +TYPE = baseType("TYPE") + +#other types +function_name = baseType("function_name") +field_name = baseType("field_name") +name = baseType("name") # for records and functions +value = baseType("value") + +# definitions: + +def _program(records): return lambda funcs: {'types': records, 'funcs': funcs} +# record +def _func(string): return lambda tp: lambda name: lambda vars1: lambda vars2: lambda stmts: [string, tp, name, vars1, vars2, stmts] +def _var(tp): return lambda name: ['var', tp, name] +# stmt +# expr +def _assign(tp): return lambda lhs: lambda expr: ['assign', tp, lhs, expr] +# lhs +def _if(tp): return lambda expr: lambda stmts1: lambda stmts2: ['if', tp, expr, stmts1, stmts2] # TODO +def _foreach(tp): return lambda var: lambda expr: lambda stmts: ['foreach', tp, expr, stmts] # TODO +def _while(tp): return lambda expr: lambda stmts1: lambda stmts1: ['while', tp, expr, stmts1, stmts2] # or: ['while', tp, expr, [stmts1], [stmts2]] #TODO +# break +# continue +def _return(tp): return lambda expr: ['return', tp, expr] +# noop +def _field(tp): return lambda expr: lambda field_name: ['field', tp, expr, field_name] +def _constant(tp): return lambda value: ['val', tp, value] #TODO deal with value +def _invoke(tp): return lambda function_name: lambda exprs: ['invoke', tp, function_name, exprs] # TODO, deal with fn_name and lists +def _ternary(tp): return lambda expr1: lambda expr2: lambda expr3: ['?:', tp, expr1, expr2, expr3] +def _cast(tp): return lambda expr: ['cast', tp, expr] + +# types: + +# TODO: deal with lists - x +# TODO: deal with names +# TODO: deal with values - x + +# TODO: deal with the program/record __main__ and __globals__ stuff + + + +def napsPrimitives(): + return [ + Primitive("program", arrow(tlist(RECORD), tlist(FUNC), PROGRAM), _program), # TODO + # RECORD + Primitive("func", arrow(TYPE, name, tlist(VAR), tlist(VAR), tlist(VAR), tlist(STMT)), _func('func')), # TODO + Primitive("ctor", arrow(TYPE, name, tlist(VAR), tlist(VAR), tlist(VAR), tlist(STMT)), _func('ctor')), + Primitive("var", arrow(TYPE, name, VAR), _var) + ] + [ + # STMT ::= EXPR | IF | FOREACH | WHILE | BREAK | CONTINUE | RETURN | NOOP + Primitive("stmt_expr", arrow(EXPR, STMT), lambda x: x), + Primitive("stmt_if", arrow(IF, STMT), lambda x: x), + Primitive("stmt_foreach", arrow(FOREACH, STMT), lambda x: x), + Primitive("stmt_while", arrow(WHILE, STMT), lambda x: x), + Primitive("stmt_break", arrow(BREAK, STMT), lambda x: x), + Primitive("stmt_continue", arrow(CONTINUE, STMT), lambda x: x), + Primitive("stmt_return", arrow(RETURN, STMT), lambda x: x), + Primitive("stmt_noop", arrow(NOOP, STMT), lambda x: x) + ] + [ + # EXPR ::= ASSIGN | VAR | FIELD | CONSTANT | INVOKE | TERNARY | CAST + Primitive("expr_assign", arrow(ASSIGN, EXPR), lambda x: x), + Primitive("expr_var", arrow(VAR, EXPR), lambda x: x), + Primitive("expr_field", arrow(FIELD, EXPR), lambda x: x), + Primitive("expr_constant", arrow(CONSTANT, EXPR), lambda x: x), + Primitive("expr_invoke", arrow(INVOKE, EXPR), lambda x: x), + Primitive("expr_ternary", arrow(TERNARY, EXPR), lambda x: x), + Primitive("expr_cast", arrow(CAST, EXPR), lambda x: x) + ] + [ + Primitive("assign", arrow(TYPE, LHS, EXPR, ASSIGN), _assign) + ] + [ + # LHS ::= VAR | FIELD | INVOKE + Primitive("lhs_var", arrow(VAR, LHS), lambda x: x), + Primitive("lhs_field", arrow(FIELD, LHS), lambda x: x), + Primitive("lhs_invoke", arrow(INVOKE, LHS), lambda x: x) + ] + [ + Primitive("if", arrow(TYPE, EXPR, tlist(STMT), tlist(STMT), IF), _if), + Primitive("foreach", arrow(TYPE, VAR, EXPR, tlist(STMT), FOREACH), _foreach), + Primitive("while", arrow(TYPE, EXPR, tlist(STMT), tlist(STMT), WHILE), _while), + Primitive("break", arrow(TYPE, BREAK), lambda tp: ['break', tp]), + Primitive("continue", arrow(TYPE, CONTINUE), lambda tp: ['continue', tp]), + Primitive("return", arrow(TYPE, EXPR, RETURN), _return), + Primitive("noop", NOOP, ['noop']), + Primitive("field", arrow(TYPE, EXPR, field_name, FIELD), _field), # TODO + Primitive("constant", arrow(TYPE, value, CONSTANT), _constant), + Primitive("invoke", arrow(TYPE, function_name, tlist(EXPR), INVOKE), _invoke), # TODO + Primitive("ternary", arrow(TYPE, EXPR, EXPR, EXPR, TERNARY), _ternary), + Primitive("cast", arrow(TYPE, EXPR, CAST), _cast) + ] + [ + # below are TYPE: + Primitive("bool", TYPE, 'bool'), + Primitive("char", TYPE, 'char'), + Primitive("char*", TYPE, 'char*'), + Primitive("int", TYPE, 'int'), + Primitive("real", TYPE, 'real'), + Primitive("array", arrow(TYPE, TYPE), lambda tp: tp + '*'), + Primitive("set", arrow(TYPE, TYPE), lambda tp: tp + '%'), + Primitive("map", arrow(TYPE, TYPE, TYPE), lambda tp1: lambda tp2: '<'+tp1+'|'+tp2+'>'), + Primitive("record_name", TYPE, 'record_name#') # TODO + ] + [ + #stuff about lists: + # STMTs, EXPRs, VARs, maybe Funcs and records + Primitive('list_init_stmt', arrow(STMT, tlist(STMT)), lambda stmt: [stmt]), + Primitive('list_add_stmt', arrow(STMT, tlist(STMT), tlist(STMT)), lambda stmt: lambda stmts: stmts + [stmt]), + Primitive('list_init_expr', arrow(EXPR, tlist(EXPR)), lambda expr: [expr]), + Primitive('list_add_expr', arrow(EXPR, tlist(EXPR), tlist(EXPR)), lambda expr: lambda exprs: exprs + [expr]), + Primitive('list_init_var', arrow(VAR, tlist(VAR)), lambda var: [var]), + Primitive('list_add_var', arrow(VAR, tlist(VAR), tlist(VAR)), lambda var: lambda _vars: _vars + [var]) + ] + [ + # value + Primitive('0', value, 0), + Primitive("1", value, "1"), + Primitive("-1", value, "-1") + # ... + ] + [ + # function_name: + Primitive('+', function_name, '+'), + Primitive('&&', function_name, "&&"), + Primitive("!", function_name, "!"), + Primitive("!=", function_name, "!="), + Primitive("string_find", function_name,"string_find") + # ... + ] + [ + # field_name: + Primitive('', field_name, '') + # ... + ] + [ + # + Primitive(f'var{str(i)}', name, f'var{str(i)}') for i in range(12) + ] + + +#for first pass, can just hard code vars and maps n stuff + +def ec_prog_to_uast(prog): # TODO + # ideally, just evaluate and then parse + uast = prog.evaluate([]) + return uast + +def deepcoderProductions(): + return [(0.0, prim) for prim in deepcoderPrimitives()] + +# def flatten_program(p): +# string = p.show(False) +# num_inputs = string.count('lambda') +# string = string.replace('lambda', '') +# string = string.replace('(', '') +# string = string.replace(')', '') +# #remove '_fn' (optional) +# for i in range(num_inputs): +# string = string.replace('$' + str(num_inputs-i-1),'input_' + str(i)) +# string = string.split(' ') +# string = list(filter(lambda x: x is not '', string)) +# return string + +if __name__ == "__main__": + #g = Grammar.uniform(deepcoderPrimitives()) + g = Grammar.fromProductions(deepcoderProductions(), logVariable=.9) + request = arrow(tlist(tint), tint, tint) + p = g.sample(request) + print("request:", request) + print("program:") + print(prettyProgram(p)) + print("flattened_program:") + flat = flatten_program(p) + print(flat) + + diff --git a/dreamcoder/domains/regex/__init__.py b/dreamcoder/domains/regex/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/dreamcoder/domains/regex/__pycache__/__init__.cpython-39.pyc b/dreamcoder/domains/regex/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ab811f510438651217e0f4caaf6adeb9aab191a5 Binary files /dev/null and b/dreamcoder/domains/regex/__pycache__/__init__.cpython-39.pyc differ diff --git a/dreamcoder/domains/regex/__pycache__/groundtruthRegexes.cpython-39.pyc b/dreamcoder/domains/regex/__pycache__/groundtruthRegexes.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bfa20fcb745facb26d222daa4ca711ca409dda03 Binary files /dev/null and b/dreamcoder/domains/regex/__pycache__/groundtruthRegexes.cpython-39.pyc differ diff --git a/dreamcoder/domains/regex/__pycache__/makeRegexTasks.cpython-39.pyc b/dreamcoder/domains/regex/__pycache__/makeRegexTasks.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..39f9de101481eb1b75faa2a01b9d0bd715d72ddc Binary files /dev/null and b/dreamcoder/domains/regex/__pycache__/makeRegexTasks.cpython-39.pyc differ diff --git a/dreamcoder/domains/regex/__pycache__/regexPrimitives.cpython-39.pyc b/dreamcoder/domains/regex/__pycache__/regexPrimitives.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..86e5e29a388bcc9581cc35115639839e7730f00c Binary files /dev/null and b/dreamcoder/domains/regex/__pycache__/regexPrimitives.cpython-39.pyc differ diff --git a/dreamcoder/domains/regex/groundtruthRegexes.py b/dreamcoder/domains/regex/groundtruthRegexes.py new file mode 100644 index 0000000000000000000000000000000000000000..c8d1e9dff2d4f693f0f6554c826eaebd22ed870d --- /dev/null +++ b/dreamcoder/domains/regex/groundtruthRegexes.py @@ -0,0 +1,172 @@ + +#dict of gt regexes + +""" + pre.create(".+"), + pre.create("\d+"), + pre.create("\w+"), + pre.create("\s+"), + pre.create("\\u+"), + pre.create("\l+") +""" +gt_dict = { + 776: "JPC\\u\\u\\d+\\.png", + 922: "WHS\\d_\\d+", + 354: "\\u+", + 523: "(\\u)+|\\.", + 184: "\\.\\d+", + 501: "u\\d\\d", + 760: "\\u\\u", + 49: "(\\u)+\\u\\d?", + 732: "\\uR5\\d\\d", + 450: "-\\d(\\.(\\d)+)?", + 350: "\\u\\u", + 467: "hu\\d(\\d|\\u)+", + 622: "A(\\d|\\u)**", + 476: "\\u+", + 554: "\\u\\u", + 940: "\\u\\u?", + 496: "\\u\\u", + 369: "\\u\\u\\u", + 596: "\\u+", + 720: "\\(\\d\\d\\d\\) \\d\\d\\d-\\d\\d\\d\\d", + 53: "rec-\\d\\d\\d?-(org)|(dup-0)", + 150: "N\\d\\d", + 741: "#\\d\\d\\d", + 18: "A|C-\\d+-\\d+", + 589: "A(\\u|\\d)++", + 666: "\\(\\d\\d\\d\\) \\d\\d\\d-\\d\\d\\d\\d", + 581: "us13\\u\\d\\d", + 299: "E07000\\d\\d\\d", + 638: "\\l+\\d+\\l+\\d+", + 364: "\\u\\u", + 334: "-00:\\d\\d:\\d\\d.\\d", + 38: "SRX89\\d+", + 247: "'\\d\\d:\\d\\d:00'", + 506: "(S|H)\\d+", + 891: "(r|v)\\d?", + 911: "KW-\\d+", + 792: "\\d*\\u*", + 508: "N000\\d+", + 842: "-?\\d?\\d\\.\\d\\d%", + 200: "\\u\\u", + 694: "\\(\\d+\\)", + 210: "(\\d(\\.\\d)?)|(--)", + 298: "DS_25(\\u|\\d)+", + 668: "\\u+", + 939: "ms0\\d+", + 944: "\\u+\\d?", + 731: "ManH.0\\d\\d", + 229: "\\u+(-\\u+)?", + 28: "Y201\\d/\\d\\d\\d\\d", + 374: "q000\\d(_000\\d)?", + 819: "\\d*\\l*\\d*", + 516: "-122.3\\d+", + 417: "\\u\\uT\\uB", + 660: "ENGL?\\d\\d\\d", + 585: "M?\\u+", + 325: "BUS M \\d\\d\\d.*", + 823: "\\u\\u\\u", + 515: "L|\\u - (\\?\\?)|(\\d?\\d\\.\\d lbs\\.)", + 864: "\\u+", + 359: "MAM\\.OSBS\\.201\\d\\.\\d\\d", + 594: "(\\u|\\d)+( (\\u|\\d)+)*", + 788: "-\\d(,\\d+)?", + 188: "cat\\. \\d\\d", + 355: ".+", + 799: "\\u\\d\\d", + 902: "\\u\\d\\d", + 920: "A\\.\\d\\d", + 330: "Resp\\d\\d", + 396: "\\u+(( |/)\\u+)?", + 393: "US $ \\d\\.\\d\\d", + 680: "Z:-?0\\.\\d\\d", + 744: "t1_cv(\\l|\\d)+", + 461: "(\\u|\\l)+\\d+", + 631: "$\\d+\\.\\d+", + 195: "(OLE)?\\d+", + 693: "\\u", + 577: "EFO_000\\d+", + 392: "$\\d+(,\\d\\d\\d)*\\.00", + 688: "\\u+( \\u+)*", + 816: "\\u\\u\\u", + 489: "UK\\u\\d", + 251: "\\l\\l\\l", + 653: "C\\d+", + 769: "(\\u|\\l|\\d|-)+\\d+", + 991: "Q\\d-201\\d", + 342: "\\u\\u\\d\\d\\d\\d", + 308: "\\u\\u\\u\\u", + 136: "IMPC_\\u\\u\\u_\\d\\d\\d_\\d\\d\\d", + 327: "#\\d+((/|-)\\d+)*", + 981: "\\u\\u\\u", + 892: "(.|\\l)*", + 375: "P\\u\\.\\d\\d\\d\\d\\.\\d\\d\\d", + 499: "A000\\d+", + 474: "\\u+", + 50: "V06\\d+", + 381: "F?\\d+", + 883: "-79.\\d+", + 173: "(\\u|\\l)+\\d+", + 147: "\\u\\u\\u-\\u\\u\\u", + 419: "\\u\\u", + 961: "-?\\d\\.\\d*", + 148: "Q\\d\\d", + 975: "(\\d|\\u)+", + 79: "\\d+(,\\d\\d\\d)+", + 775: "\\u\\l\\l \\d+ \\d\\d\\d\\d", + 774: "FOS\\d\\d+", + 561: ".+", + 509: "S000\\d+", + 494: "S1900\\d+", + 119: "$\\d\\d(,\\d\\d\\d)+", + 29: "(\\u|\\l|\\d)+", + 121: "(\\d|\\u|\\.|/|\\(|\\))+", + 61: "R \\d\\d\\d.\\d\\d", + 871: "-0.7\\d+", + 639: "\\u+?\\d+", + 729: "COMISARIA \\d\\d", + 193: "\\u\\d\\d", + 752: "(.*|\\u\\.?)+", + 17: "$\\d.\\d\\d", + 914: "R\\d\\d\\d\\d", + 510: "P\\d000\\d\\d\\d\\d", + 443: "(W|L) \\d-\\d+", + 20: "MDEL\\d\\d?\\.\\d\\l", + 64: "c04p0100(\\l|\\d)", + 301: "(\\u|\\d)+(-(\\u|\\d)+)*", + 664: "N\\d", + 493: "[0\\.0\\d+]", + 765: "-?\\d\\.\\d+( \\(0\\.\\d+\\))?" + + +} +badRegexTasks = { + "Data column no. 922", + "Data column no. 184", + "Data column no. 467", + "Data column no. 476", + "Data column no. 150", + "Data column no. 299", + "Data column no. 334", + "Data column no. 493", + "Data column no. 891", + "Data column no. 792", + "Data column no. 765", + "Data column no. 944", + "Data column no. 374", + "Data column no. 660", + "Data column no. 188", + "Data column no. 920", + "Data column no. 330", + "Data column no. 396", + "Data column no. 680", + "Data column no. 769", + "Data column no. 308", + "Data column no. 375", + "Data column no. 474", + "Data column no. 79", + "Data column no. 871", + "Data column no. 729", + "Data column no. 664", +} diff --git a/dreamcoder/domains/regex/main.py b/dreamcoder/domains/regex/main.py new file mode 100644 index 0000000000000000000000000000000000000000..4c23a3ac6b05be27dac65bbaddfcce9afbc5920d --- /dev/null +++ b/dreamcoder/domains/regex/main.py @@ -0,0 +1,384 @@ +# analog of list.py for regex tasks. Responsible for actually running the task. + +from dreamcoder.domains.regex.makeRegexTasks import makeOldTasks, makeLongTasks, makeShortTasks, makeWordTasks, makeNumberTasks, makeHandPickedTasks, makeNewTasks, makeNewNumberTasks +from dreamcoder.domains.regex.regexPrimitives import basePrimitives, altPrimitives, easyWordsPrimitives, alt2Primitives, concatPrimitives, reducedConcatPrimitives, strConstConcatPrimitives, PRC +from dreamcoder.dreamcoder import explorationCompression, Task +from dreamcoder.grammar import Grammar +from dreamcoder.likelihoodModel import add_cutoff_values, add_string_constants +from dreamcoder.program import Abstraction, Application +from dreamcoder.type import tpregex +from dreamcoder.utilities import eprint, flatten, testTrainSplit, POSITIVEINFINITY + +import random +import math +import pregex as pre +import os + +try: + from dreamcoder.recognition import RecurrentFeatureExtractor, JSONFeatureExtractor + class LearnedFeatureExtractor(RecurrentFeatureExtractor): + H = 64 + special = 'regex' + + def tokenize(self, examples): + def sanitize(l): return [z if z in self.lexicon else "?" + for z_ in l + for z in (z_ if isinstance(z_, list) else [z_])] + + tokenized = [] + for xs, y in examples: + if isinstance(y, list): + y = ["LIST_START"] + y + ["LIST_END"] + else: + y = [y] + y = sanitize(y) + if len(y) > self.maximumLength: + return None + + serializedInputs = [] + for xi, x in enumerate(xs): + if isinstance(x, list): + x = ["LIST_START"] + x + ["LIST_END"] + else: + x = [x] + x = sanitize(x) + if len(x) > self.maximumLength: + return None + serializedInputs.append(x) + + tokenized.append((tuple(serializedInputs), y)) + + return tokenized + + def __init__(self, tasks, testingTasks=[], cuda=False): + self.lexicon = set(flatten((t.examples for t in tasks + testingTasks), abort=lambda x: isinstance( + x, str))).union({"LIST_START", "LIST_END", "?"}) + + self.num_examples_list = [len(t.examples) for t in tasks] + + # Calculate the maximum length + self.maximumLength = POSITIVEINFINITY + self.maximumLength = max(len(l) + for t in tasks + testingTasks + for xs, y in self.tokenize(t.examples) + for l in [y] + [x for x in xs]) + + super( + LearnedFeatureExtractor, + self).__init__( + lexicon=list( + self.lexicon), + tasks=tasks, + cuda=cuda, + H=self.H, + bidirectional=True) + self.parallelTaskOfProgram = False + + + def taskOfProgram(self, p, t): + #raise NotImplementedError + num_examples = random.choice(self.num_examples_list) + + p = p.visit(ConstantInstantiateVisitor.SINGLE) + + preg = p.evaluate([])(pre.String("")) + t = Task("Helm", t, [((), list(preg.sample())) for _ in range(num_examples) ]) + return t +except: pass + #in init: loop over tasks, save lengths, + + +class ConstantInstantiateVisitor(object): + def __init__(self): + self.regexes = [ + pre.create(".+"), + pre.create("\d+"), + pre.create("\w+"), + pre.create("\s+"), + pre.create("\\u+"), + pre.create("\l+")] + + def primitive(self, e): + if e.name == "r_const": + #return Primitive("STRING", e.tp, random.choice(self.words)) + s = random.choice(self.regexes).sample() #random string const + s = pre.String(s) + e.value = PRC(s,arity=0) + return e + + def invented(self, e): return e.body.visit(self) + + def index(self, e): return e + + def application(self, e): + return Application(e.f.visit(self), e.x.visit(self)) + + def abstraction(self, e): + return Abstraction(e.body.visit(self)) +#TODO fix + + + + +class MyJSONFeatureExtractor(JSONFeatureExtractor): + N_EXAMPLES = 5 + + def _featuresOfProgram(self, program, tp): + try: + preg = program.evaluate([]) + # if 'left_paren' in program.show(False): + #eprint("string_pregex:", string_pregex) + #eprint("string_pregex:", string_pregex) + + except IndexError: + # free variable + return None + except Exception as e: + eprint("Exception during evaluation:", e) + if "Attempt to evaluate fragment variable" in e: + eprint("program (bc fragment error)", program) + return None + + examples = [] + + for _ in range(self.N_EXAMPLES * 5): # oh this is arbitrary ig + + try: + y = preg.sample() # TODO + + #this line should keep inputs short, so that helmholtzbatch can be large + #allows it to try other samples + #(Could also return None off the bat... idk which is better) + #if len(y) > 20: + # continue + #eprint(tp, program, x, y) + examples.append(y) + except BaseException: + continues + if len(examples) >= self.N_EXAMPLES: + break + else: + return None + return examples # changed to list_features(examples) from examples + + +def regex_options(parser): + parser.add_argument("--maxTasks", type=int, + default=500, + help="truncate tasks to fit within this boundary") + parser.add_argument( + "--maxExamples", + type=int, + default=10, + help="truncate number of examples per task to fit within this boundary") + parser.add_argument("--tasks", + default="long", + help="which tasks to use", + choices=["old", "short", "long", "words", "number", "handpicked", "new", "newNumber"]) + parser.add_argument("--primitives", + default="concat", + help="Which primitive set to use", + choices=["base", "alt1", "easyWords", "alt2", "concat", "reduced", "strConst"]) + parser.add_argument("--extractor", type=str, + choices=["hand", "deep", "learned", "json"], + default="learned") # if i switch to json it breaks + parser.add_argument("--split", metavar="TRAIN_RATIO", + type=float, + default=0.8, + help="split test/train") + parser.add_argument("-H", "--hidden", type=int, + default=256, + help="number of hidden units") + parser.add_argument("--likelihoodModel", + default="probabilistic", + help="likelihood Model", + choices=["probabilistic", "all-or-nothing"]) + parser.add_argument("--topk_use_map", + dest="topk_use_only_likelihood", + action="store_false") + parser.add_argument("--debug", + dest="debug", + action="store_true") + parser.add_argument("--ll_cutoff", + dest="use_ll_cutoff", + nargs='*', + default=False, + help="use ll cutoff for training tasks (for probabilistic likelihood model only). default is False,") + parser.add_argument("--use_str_const", + action="store_true", + help="use string constants") + + """parser.add_argument("--stardecay", + type=float, + dest="stardecay", + default=0.5, + help="p value for kleenestar and plus")""" + +# Lucas recommends putting a struct with the definitions of the primitives here. +# TODO: +# Build likelihood funciton +# modify NN +# make primitives +# make tasks + + +def main(args): + """ + Takes the return value of the `commandlineArguments()` function as input and + trains/tests the model on regular expressions. + """ + #for dreaming + + #parse use_ll_cutoff + use_ll_cutoff = args.pop('use_ll_cutoff') + if not use_ll_cutoff is False: + + #if use_ll_cutoff is a list of strings, then train_ll_cutoff and train_ll_cutoff + #will be tuples of that string followed by the actual model + + if len(use_ll_cutoff) == 1: + train_ll_cutoff = use_ll_cutoff[0] # make_cutoff_model(use_ll_cutoff[0], tasks)) + test_ll_cutoff = use_ll_cutoff[0] # make_cutoff_model(use_ll_cutoff[0], tasks)) + else: + assert len(use_ll_cutoff) == 2 + train_ll_cutoff = use_ll_cutoff[0] #make_cutoff_model(use_ll_cutoff[0], tasks)) + test_ll_cutoff = use_ll_cutoff[1] #make_cutoff_model(use_ll_cutoff[1], tasks)) + else: + train_ll_cutoff = None + test_ll_cutoff = None + + + regexTasks = {"old": makeOldTasks, + "short": makeShortTasks, + "long": makeLongTasks, + "words": makeWordTasks, + "number": makeNumberTasks, + "handpicked": makeHandPickedTasks, + "new": makeNewTasks, + "newNumber": makeNewNumberTasks + }[args.pop("tasks")] + + tasks = regexTasks() # TODO + eprint("Generated", len(tasks), "tasks") + + maxTasks = args.pop("maxTasks") + if len(tasks) > maxTasks: + eprint("Unwilling to handle {} tasks, truncating..".format(len(tasks))) + seed = 42 # previously this was hardcoded and never changed + random.seed(seed) + random.shuffle(tasks) + del tasks[maxTasks:] + + maxExamples = args.pop("maxExamples") + + + split = args.pop("split") + test, train = testTrainSplit(tasks, split) + eprint("Split tasks into %d/%d test/train" % (len(test), len(train))) + + + test = add_cutoff_values(test, test_ll_cutoff) + train = add_cutoff_values(train, train_ll_cutoff) + eprint("added cutoff values to tasks, train: ", train_ll_cutoff, ", test:", test_ll_cutoff ) + + + if args.pop("use_str_const"): + assert args["primitives"] == "strConst" or args["primitives"] == "reduced" + ConstantInstantiateVisitor.SINGLE = \ + ConstantInstantiateVisitor() + test = add_string_constants(test) + train = add_string_constants(train) + eprint("added string constants to test and train") + + for task in test + train: + if len(task.examples) > maxExamples: + task.examples = task.examples[:maxExamples] + + task.specialTask = ("regex", {"cutoff": task.ll_cutoff, "str_const": task.str_const}) + task.examples = [(xs, [y for y in ys ]) + for xs,ys in task.examples ] + task.maxParameters = 1 + + # from list stuff + primtype = args.pop("primitives") + prims = {"base": basePrimitives, + "alt1": altPrimitives, + "alt2": alt2Primitives, + "easyWords": easyWordsPrimitives, + "concat": concatPrimitives, + "reduced": reducedConcatPrimitives, + "strConst": strConstConcatPrimitives + }[primtype] + + extractor = { + "learned": LearnedFeatureExtractor, + "json": MyJSONFeatureExtractor + }[args.pop("extractor")] + + extractor.H = args.pop("hidden") + + #stardecay = args.stardecay + #stardecay = args.pop('stardecay') + #decaystr = 'd' + str(stardecay) + import datetime + + timestamp = datetime.datetime.now().isoformat() + outputDirectory = "experimentOutputs/regex/%s"%timestamp + os.system("mkdir -p %s"%outputDirectory) + + args.update({ + "featureExtractor": extractor, + "outputPrefix": "%s/regex"%(outputDirectory), + "evaluationTimeout": 0.005, + "topk_use_only_likelihood": True, + "maximumFrontier": 10, + "compressor": args.get("compressor","ocaml") + }) + #### + + + # use the + #prim_list = prims(stardecay) + prim_list = prims() + specials = ["r_kleene", "r_plus", "r_maybe", "r_alt", "r_concat"] + n_base_prim = len(prim_list) - len(specials) + + productions = [ + (math.log(0.5 / float(n_base_prim)), + prim) if prim.name not in specials else ( + math.log(0.10), + prim) for prim in prim_list] + + + baseGrammar = Grammar.fromProductions(productions, continuationType=tpregex) + #baseGrammar = Grammar.uniform(prims()) + + #for i in range(100): + # eprint(baseGrammar.sample(tpregex)) + + #eprint(baseGrammar) + #explore + test_stuff = args.pop("debug") + if test_stuff: + eprint(baseGrammar) + eprint("sampled programs from prior:") + for i in range(100): #100 + eprint(baseGrammar.sample(test[0].request,maximumDepth=1000)) + eprint("""half the probability mass is on higher-order primitives. +Therefore half of enumerated programs should have more than one node. +However, we do not observe this. +Instead we see a very small fraction of programs have more than one node. +So something seems to be wrong with grammar.sample. + +Furthermore: observe the large print statement above. +This prints the candidates for sampleDistribution in grammar.sample. +the first element of each tuple is the probability passed into sampleDistribution. +Half of the probability mass should be on the functions, but instead they are equally +weighted with the constants. If you look at the grammar above, this is an error!!!! +""") + assert False + + del args["likelihoodModel"] + explorationCompression(baseGrammar, train, + testingTasks = test, + **args) diff --git a/dreamcoder/domains/regex/makeRegexTasks.py b/dreamcoder/domains/regex/makeRegexTasks.py new file mode 100644 index 0000000000000000000000000000000000000000..f8749e6e36c7f429ac7f730c511706da9a9979cf --- /dev/null +++ b/dreamcoder/domains/regex/makeRegexTasks.py @@ -0,0 +1,347 @@ +import dill +import os +import json +from string import printable + +import sys +try: + from pregex import pregex +except: + print("Failure to load pregex. This is only acceptable if using pypy",file=sys.stderr) + +from dreamcoder.task import Task +from dreamcoder.type import tpregex, arrow +from dreamcoder.utilities import get_data_dir + + +def makeOldTasks(): + # a series of tasks + + taskfile = os.path.join(get_data_dir(), 'data_filtered.json') + #task_list = pickle.load(open(taskfile, 'rb')) + + with open(taskfile) as f: + file_contents = f.read() + task_list = json.loads(file_contents) + + + # if I were to just dump all of them: + regextasks = [ + Task("Luke data column no." + str(i), + arrow(tpregex, tpregex), + [((), example) for example in task_list[i]] + ) for i in range(len(task_list))] + + + """ regextasks = [ + Task("length bool", arrow(none,tstr), + [((l,), len(l)) + for _ in range(10) + for l in [[flip() for _ in range(randint(0,10)) ]] ]), + Task("length int", arrow(none,tstr), + [((l,), len(l)) + for _ in range(10) + for l in [randomList()] ]), + ] + """ + return regextasks # some list of tasks + + + + +def makeShortTasks(): + + #load new data: + + taskfile = os.path.join(get_data_dir(), "regex_data_csv_900.p") + + with open(taskfile, 'rb') as handle: + data = dill.load(handle) + + tasklist = data[0][:100] #a list of indices + + regextasks = [ + Task("Data column no. " + str(i), + arrow(tpregex, tpregex), + [((), example) for example in task] + ) for i, task in enumerate(tasklist)] + + + + return regextasks + +def makeLongTasks(): + + #load new data: + + taskfile = os.path.join(get_data_dir(), "regex_data_csv_900.p") + + with open(taskfile, 'rb') as handle: + data = dill.load(handle) + + tasklist = data[0] #a list of indices + + regextasks = [ + Task("Data column no. " + str(i), + arrow(tpregex, tpregex), + [((), example) for example in task] + ) for i, task in enumerate(tasklist)] + + + + return regextasks + +def makeWordTasks(): + + #load new data: + + taskfile = os.path.join(get_data_dir(), "regex_data_csv_900.p") + + with open(taskfile, 'rb') as handle: + data = dill.load(handle) + + tasklist = data[0] #a list of indices + + + + + all_upper = [0, 2, 8, 9, 10, 11, 12, 17, 18, 19, 20, 22] + all_lower = [1] + + # match_col(data[0],'\\u(\l+)') + one_capital_lower_plus = [144, 200, 241, 242, 247, 296, 390, 392, 444, 445, 481, 483, 485, 489, 493, 542, 549, 550, 581] + + #match_col(data[0],'(\l ?)+') + lower_with_maybe_spaces = [1, 42, 47, 99, 100, 102, 201, 246, 248, 293, 294, 345, 437, 545, 590] + + #match_col(data[0],'(\\u\l+ ?)+') + capital_then_lower_maybe_spaces = [144, 200, 241, 242, 247, 296, 390, 392, 395, 438, 444, 445, 481, 483, 484, 485, 487, 489, 493, 494, 542, 546, 549, 550, 578, 581, 582, 588, 591, 624, 629] + + #match_col(data[0],'(\\u+ ?)+') + all_caps_spaces = [0, 2, 8, 9, 10, 11, 12, 17, 18, 19, 20, 22, 25, 26, 35, 36, 43, 45, 46, 49, 50, 52, 56, 59, 87, 89, 95, 101, 140, 147, 148, 149, 199, 332, 336, 397, 491, 492, 495, 580, 610] + + #one_capital_and_lower = [566, 550, 549, 542, 505, 493, 494, 489, 488, 485, 483, 481, 445, 444, 438, 296, 241, 242, 200, ] + #all_lower_with_a_space = [545] + #all_lower_maybe_space = [534] + #one_capital_lower_maybe_spaces = [259, 262, 263, 264] + + + #full_list = test_list + train_list + train_list = [] + full_list = all_upper + all_lower + one_capital_lower_plus + lower_with_maybe_spaces + capital_then_lower_maybe_spaces + all_caps_spaces + + regextasks = [ + Task("Data column no. " + str(i), + arrow(tpregex, tpregex), + [((), example) for example in task] + ) for i, task in enumerate(tasklist) if i in full_list ] + + for i in train_list: + regextasks[i].mustTrain = True + + + return regextasks + +def makeNumberTasks(): + + #load new data: + + taskfile = os.path.join(get_data_dir(), "regex_data_csv_900.p") + + with open(taskfile, 'rb') as handle: + data = dill.load(handle) + + tasklist = data[0] #a list of indices + + + + #match_col(data[0],'\d*\.\d*') + raw_decimals = [121, 122, 163, 164, 165, 170, 172, 173, 175, 178, 218, 228, 230, 231, 252, 253, + 254, 258, 259, 305, 320, 330, 334, 340, 348, 350, 351, 352, 353, 355, 357, 358, 361, 363, 364, + 371, 380, 382, 409, 410, 411, 447, 448, 449, 450, 458, 469, 471, 533, 562, 564] + + + decimals_pos_neg_dollar = [3, 4, 5, 6, 7, 13, 16, 24, 27, 28, 29, 30, 31, 32, 33, 34, 37, 38, 39, 40, + 53, 54, 55, 57, 58, 60, 61, 63, 64, 65, 66, 68, 69, 70, 71, 73, 74, 77, 78, 80, 81, 103, 104, 105, + 106, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 121, 122, 123, 124, 125, 126, 128, + 129, 131, 132, 134, 135, 139, 146, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, + 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 180, 181, 182, 183, 184, 185, 186, + 193, 194, 195, 204, 205, 207, 209, 210, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 223, 224, + 225, 226, 227, 228, 229, 230, 231, 232, 249, 250, 251, 252, 253, 254, 255, 256, 258, 259, 260, 261, + 263, 266, 267, 270, 271, 272, 277, 299, 301, 302, 305, 306, 307, 309, 312, 313, 315, 319, 320, 324, + 326, 327, 330, 334, 340, 348, 350, 351, 352, 353, 354, 355, 356, 357, 358, 361, 362, 363, 364, 368, + 371, 373, 377, 380, 382, 400, 401, 402, 403, 405, 406, 409, 410, 411, 413, 435, 439, 446, 447, 448, + 449, 450, 451, 452, 453, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 469, 470, 471, 477, + 498, 500, 502, 503, 507, 512, 518, 519, 520, 532, 533, 553, 554, 555, 556, 557, 558, 559, 560, 561, + 562, 564, 565, 572, 577] + + #match_col(data[0],'(\d*,?\d*)+') + commas = [] + #match_col(data[0],'(\d*,?\d*)+') + commas_and_all = [] + + #full_list = test_list + train_list + train_list = [] + full_list = decimals_pos_neg_dollar + + regextasks = [ + Task("Data column no. " + str(i), + arrow(tpregex, tpregex), + [((), example) for example in task] + ) for i, task in enumerate(tasklist) if i in full_list ] + + for i in train_list: + regextasks[i].mustTrain = True + + + return regextasks + + +def makeHandPickedTasks(): + + #load new data: + + taskfile = os.path.join(get_data_dir(), "regex_data_csv_900.p") + + with open(taskfile, 'rb') as handle: + data = dill.load(handle) + + tasklist = data[0] #a list of indices + + + full_list = list(range(199)) + \ + [209,218,222,223,224,225,226] + \ + list(range(222,233)) + \ + [235,237,238,239,243,244,245,252,253,254,255,257,258,259,260,261,264,265,269,272,274] + \ + list(range(275,291)) + \ + [295,297,300,303,304,305,306,310,311,312,314,315,316,320,321,323,327,329,330,333,334,335,337,338,339,340,341,342,343,344] + \ + list(range(348,359)) + \ + [361,369,373,379,380,382,387,403,405,407,408] + \ + list(range(409,417)) + \ + list(range(418,437)) + \ + list(range(440,444)) + \ + list(range(446,452)) + \ + list(range(456,460)) + \ + list(range(466,472)) + \ + [503,504] + + + regextasks = [ + Task("Data column no. " + str(i), + arrow(tpregex, tpregex), + [((), example) for example in task] + ) for i, task in enumerate(tasklist) if i in full_list ] + + #for i in train_list: + # regextasks[i].mustTrain = True + + + return regextasks + +def makeNewTasks(include_only=None): + + #load new data: + + taskfile = os.path.join(get_data_dir(), "csv_filtered_all_background_novel.p") + + with open(taskfile, 'rb') as handle: + data = dill.load(handle) + + tasklist = data['background'] #a list of indices + + if include_only: + regextasks = [ + Task("Data column no. " + str(i), + arrow(tpregex, tpregex), + [((), example) for example in task['train']] + ) for i, task in enumerate(tasklist) if i in include_only] + else: + regextasks = [ + Task("Data column no. " + str(i), + arrow(tpregex, tpregex), + [((), example) for example in task['train']] + ) for i, task in enumerate(tasklist)] + + #for i in train_list: + # regextasks[i].mustTrain = True + + return regextasks +REGEXTASKS = None +def regexHeldOutExamples(task, include_only=None): + + #load new data: + global REGEXTASKS + if REGEXTASKS is None: + taskfile = os.path.join(get_data_dir(), "csv_filtered_all_background_novel.p") + + with open(taskfile, 'rb') as handle: + data = dill.load(handle) + + tasklist = data['background'] #a list of indices + + if include_only: + regextasks = [ + Task("Data column no. " + str(i), + arrow(tpregex, tpregex), + [((), example) for example in _task['test']] + ) for i, _task in enumerate(tasklist) if i in include_only] + else: + regextasks = [ + Task("Data column no. " + str(i), + arrow(tpregex, tpregex), + [((), example) for example in _task['test']] + ) for i, _task in enumerate(tasklist)] + + #for i in train_list: + # regextasks[i].mustTrain = True + + REGEXTASKS = {t.name: t.examples for t in regextasks} + fullTask = REGEXTASKS[task.name] + return fullTask + + + +def makeNewNumberTasks(): + + tasks = makeNewTasks() + numberTasks = [t for t in tasks if not any(p in ex for p in printable[10:62] for _, ex in t.examples)] + return numberTasks + + +# a helper function which takes a list of lists and sees which match a specific regex. +def match_col(dataset, rstring): + r = pregex.create(rstring) + matches = [] + for i, col in enumerate(dataset): + score = sum([r.match(example) for example in col]) + if score != float('-inf'): + matches.append(i) + return matches + +if __name__ == "__main__": + import argparse + parser = argparse.ArgumentParser() + parser.add_argument("--include_only", + default=None, + nargs="+", + type=int) + args = parser.parse_args() + + + def show_tasks(dataset): + task_list = [] + for task in dataset: + print(task.name) + print([example[1] for example in task.examples[:20]]) + task_list.append([example[1] for example in task.examples]) + return task_list + + task = {"number": makeNumberTasks, + "words": makeWordTasks, + "all": makeLongTasks, + "new": makeNewTasks}['new'] + + + x = show_tasks(task(args.include_only)) + + diff --git a/dreamcoder/domains/regex/regexPrimitives.py b/dreamcoder/domains/regex/regexPrimitives.py new file mode 100644 index 0000000000000000000000000000000000000000..6c8761b8806f82d3f7a05b3f1dde25968313d842 --- /dev/null +++ b/dreamcoder/domains/regex/regexPrimitives.py @@ -0,0 +1,367 @@ +import sys +from dreamcoder.program import Primitive +from dreamcoder.grammar import Grammar +from dreamcoder.type import arrow, tpregex +from string import printable + +try: + from pregex import pregex +except: + print("Failure to load pregex. This is only acceptable if using pypy",file=sys.stderr) + + +# evaluation to regular regex form. then I can unflatten using Luke's stuff. + + +def _kleene(x): return pregex.KleeneStar(x, p=0.25) + + +def _plus(x): return pregex.Plus(x, p=0.25) + + +def _maybe(x): return pregex.Maybe(x) + + +# maybe should be reversed#"(" + x + "|" + y + ")" +def _alt(x): return lambda y: pregex.Alt([x, y]) + + +def _concat(x): return lambda y: pregex.Concat([x, y]) # "(" + x + y + ")" + + +#For sketch: +def _kleene_5(x): return pregex.KleeneStar(x) + +def _plus_5(x): return pregex.Plus(x) + + +disallowed = [ + ("#", "hash"), + ("!", "bang"), + ("\"", "double_quote"), + ("$", "dollar"), + ("%", "percent"), + ("&", "ampersand"), + ("'", "single_quote"), + (")", "left_paren"), + ("(", "right_paren"), + ("*", "astrisk"), + ("+", "plus"), + (",", "comma"), + ("-", "dash"), + (".", "period"), + ("/", "slash"), + (":", "colon"), + (";", "semicolon"), + ("<", "less_than"), + ("=", "equal"), + (">", "greater_than"), + ("?", "question_mark"), + ("@", "at"), + ("[", "left_bracket"), + ("\\", "backslash"), + ("]", "right_bracket"), + ("^", "carrot"), + ("_", "underscore"), + ("`", "backtick"), + ("|", "bar"), + ("}", "right_brace"), + ("{", "left_brace"), + ("~", "tilde"), + (" ", "space"), + ("\t", "tab") +] + +disallowed_list = [char for char, _ in disallowed] + +class PRC(): #PregexContinuation + def __init__(self, f, arity=0, args=[]): + self.f = f + self.arity = arity + self.args = args + + def __call__(self, pre): + + if self.arity == len(self.args): + if self.arity == 0: return pregex.Concat([self.f, pre]) + elif self.arity == 1: return pregex.Concat([self.f(*self.args), pre]) + else: return pregex.Concat([self.f(self.args), pre]) #this line is bad, need brackets around input to f if f is Alt + else: return PRC(self.f, self.arity, args=self.args+[pre(pregex.String(""))]) + + +def concatPrimitives(): + return [Primitive("string_" + i, arrow(tpregex, tpregex), PRC(pregex.String(i))) for i in printable[:-4] if i not in disallowed_list + ] + [ + Primitive("string_" + name, arrow(tpregex, tpregex), PRC(pregex.String(char))) for char, name in disallowed + ] + [ + Primitive("r_dot", arrow(tpregex, tpregex), PRC(pregex.dot)), + Primitive("r_d", arrow(tpregex, tpregex), PRC(pregex.d)), + Primitive("r_s", arrow(tpregex, tpregex), PRC(pregex.s)), + Primitive("r_w", arrow(tpregex, tpregex), PRC(pregex.w)), + Primitive("r_l", arrow(tpregex, tpregex), PRC(pregex.l)), + Primitive("r_u", arrow(tpregex, tpregex), PRC(pregex.u)), + #todo + Primitive("r_kleene", arrow(arrow(tpregex, tpregex), arrow(tpregex,tpregex)), PRC(pregex.KleeneStar,1)), + Primitive("r_plus", arrow(arrow(tpregex, tpregex), arrow(tpregex,tpregex)), PRC(pregex.Plus,1)), + Primitive("r_maybe", arrow(arrow(tpregex, tpregex), arrow(tpregex,tpregex)), PRC(pregex.Maybe,1)), + Primitive("r_alt", arrow(arrow(tpregex, tpregex) , arrow(tpregex, tpregex), arrow(tpregex,tpregex)), PRC(pregex.Alt, 2)), + ] + +def strConstConcatPrimitives(): + return [Primitive("string_" + i, arrow(tpregex, tpregex), PRC(pregex.String(i))) for i in printable[:-4] if i not in disallowed_list + ] + [ + Primitive("string_" + name, arrow(tpregex, tpregex), PRC(pregex.String(char))) for char, name in disallowed + ] + [ + Primitive("r_dot", arrow(tpregex, tpregex), PRC(pregex.dot)), + Primitive("r_d", arrow(tpregex, tpregex), PRC(pregex.d)), + Primitive("r_s", arrow(tpregex, tpregex), PRC(pregex.s)), + Primitive("r_w", arrow(tpregex, tpregex), PRC(pregex.w)), + Primitive("r_l", arrow(tpregex, tpregex), PRC(pregex.l)), + Primitive("r_u", arrow(tpregex, tpregex), PRC(pregex.u)), + #todo + Primitive("r_kleene", arrow(arrow(tpregex, tpregex), arrow(tpregex,tpregex)), PRC(pregex.KleeneStar,1)), + Primitive("r_plus", arrow(arrow(tpregex, tpregex), arrow(tpregex,tpregex)), PRC(pregex.Plus,1)), + Primitive("r_maybe", arrow(arrow(tpregex, tpregex), arrow(tpregex,tpregex)), PRC(pregex.Maybe,1)), + Primitive("r_alt", arrow(arrow(tpregex, tpregex) , arrow(tpregex, tpregex), arrow(tpregex,tpregex)), PRC(pregex.Alt, 2)), + ] + [ + Primitive("r_const", arrow(tpregex, tpregex), None) + ] + + +def reducedConcatPrimitives(): + #uses strConcat!! + #[Primitive("empty_string", arrow(tpregex, tpregex), PRC(pregex.String(""))) + #] + [ + return [Primitive("string_" + i, arrow(tpregex, tpregex), PRC(pregex.String(i))) for i in printable[:-4] if i not in disallowed_list + ] + [ + Primitive("string_" + name, arrow(tpregex, tpregex), PRC(pregex.String(char))) for char, name in disallowed + ] + [ + Primitive("r_dot", arrow(tpregex, tpregex), PRC(pregex.dot)), + Primitive("r_d", arrow(tpregex, tpregex), PRC(pregex.d)), + Primitive("r_s", arrow(tpregex, tpregex), PRC(pregex.s)), + #Primitive("r_w", arrow(tpregex, tpregex), PRC(pregex.w)), + Primitive("r_l", arrow(tpregex, tpregex), PRC(pregex.l)), + Primitive("r_u", arrow(tpregex, tpregex), PRC(pregex.u)), + #todo + Primitive("r_kleene", arrow(arrow(tpregex, tpregex), arrow(tpregex,tpregex)), PRC(pregex.KleeneStar,1)), + #Primitive("r_plus", arrow(arrow(tpregex, tpregex), arrow(tpregex,tpregex)), PRC(pregex.Plus,1)), + Primitive("r_maybe", arrow(arrow(tpregex, tpregex), arrow(tpregex,tpregex)), PRC(pregex.Maybe,1)), + Primitive("r_alt", arrow(arrow(tpregex, tpregex) , arrow(tpregex, tpregex), arrow(tpregex,tpregex)), PRC(pregex.Alt, 2)), + ] + [ + Primitive("r_const", arrow(tpregex, tpregex), None) + ] + + +def sketchPrimitives(): + return [Primitive("string_" + i, tpregex, pregex.String(i)) for i in printable[:-4] if i not in disallowed_list + ] + [ + Primitive("string_" + name, tpregex, pregex.String(char)) for char, name in disallowed + ] + [ + Primitive("r_dot", tpregex, pregex.dot), + Primitive("r_d", tpregex, pregex.d), + Primitive("r_s", tpregex, pregex.s), + Primitive("r_w", tpregex, pregex.w), + Primitive("r_l", tpregex, pregex.l), + Primitive("r_u", tpregex, pregex.u), + Primitive("r_kleene", arrow(tpregex, tpregex), _kleene_5), + Primitive("r_plus", arrow(tpregex, tpregex), _plus_5), + Primitive("r_maybe", arrow(tpregex, tpregex), _maybe), + Primitive("r_alt", arrow(tpregex, tpregex, tpregex), _alt), + Primitive("r_concat", arrow(tpregex, tpregex, tpregex), _concat), + ] + +def basePrimitives(): + return [Primitive("string_" + i, tpregex, pregex.String(i)) for i in printable[:-4] if i not in disallowed_list + ] + [ + Primitive("string_" + name, tpregex, pregex.String(char)) for char, name in disallowed + ] + [ + Primitive("r_dot", tpregex, pregex.dot), + Primitive("r_d", tpregex, pregex.d), + Primitive("r_s", tpregex, pregex.s), + Primitive("r_w", tpregex, pregex.w), + Primitive("r_l", tpregex, pregex.l), + Primitive("r_u", tpregex, pregex.u), + Primitive("r_kleene", arrow(tpregex, tpregex), _kleene), + Primitive("r_plus", arrow(tpregex, tpregex), _plus), + Primitive("r_maybe", arrow(tpregex, tpregex), _maybe), + Primitive("r_alt", arrow(tpregex, tpregex, tpregex), _alt), + Primitive("r_concat", arrow(tpregex, tpregex, tpregex), _concat), + ] + + + +def altPrimitives(): + return [ + Primitive("empty_string", tpregex, pregex.String("")) + ] + [ + Primitive("string_" + i, tpregex, pregex.String(i)) for i in printable[:-4] if i not in disallowed_list + ] + [ + Primitive("string_" + name, tpregex, pregex.String(char)) for char, name in disallowed + ] + [ + Primitive("r_dot", tpregex, pregex.dot), + Primitive("r_d", tpregex, pregex.d), + Primitive("r_s", tpregex, pregex.s), + Primitive("r_w", tpregex, pregex.w), + Primitive("r_l", tpregex, pregex.l), + Primitive("r_u", tpregex, pregex.u), + Primitive("r_kleene", arrow(tpregex, tpregex), _kleene), + #Primitive("r_plus", arrow(tpregex, tpregex), _plus), + Primitive("r_maybe", arrow(tpregex, tpregex), _maybe), + Primitive("r_alt", arrow(tpregex, tpregex, tpregex), _alt), + Primitive("r_concat", arrow(tpregex, tpregex, tpregex), _concat), + ] + +def alt2Primitives(): + return [ + Primitive("empty_string", tpregex, pregex.String("")) + ] + [ + Primitive("string_" + i, tpregex, pregex.String(i)) for i in printable[:-4] if i not in disallowed_list + ] + [ + Primitive("string_" + name, tpregex, pregex.String(char)) for char, name in disallowed + ] + [ + Primitive("r_dot", tpregex, pregex.dot), + Primitive("r_d", tpregex, pregex.d), + Primitive("r_s", tpregex, pregex.s), + Primitive("r_w", tpregex, pregex.w), + Primitive("r_l", tpregex, pregex.l), + Primitive("r_u", tpregex, pregex.u), + Primitive("r_kleene", arrow(tpregex, tpregex), _kleene), + #Primitive("r_plus", arrow(tpregex, tpregex), _plus), + #Primitive("r_maybe", arrow(tpregex, tpregex), _maybe), + Primitive("r_alt", arrow(tpregex, tpregex, tpregex), _alt), + Primitive("r_concat", arrow(tpregex, tpregex, tpregex), _concat), + ] + +def easyWordsPrimitives(): + return [ + Primitive("string_" + i, tpregex, pregex.String(i)) for i in printable[10:62] if i not in disallowed_list + ] + [ + Primitive("r_d", tpregex, pregex.d), + Primitive("r_s", tpregex, pregex.s), + #Primitive("r_w", tpregex, pregex.w), + Primitive("r_l", tpregex, pregex.l), + Primitive("r_u", tpregex, pregex.u), + Primitive("r_kleene", arrow(tpregex, tpregex), _kleene), + Primitive("r_plus", arrow(tpregex, tpregex), _plus), + Primitive("r_maybe", arrow(tpregex, tpregex), _maybe), + Primitive("r_alt", arrow(tpregex, tpregex, tpregex), _alt), + Primitive("r_concat", arrow(tpregex, tpregex, tpregex), _concat), + ] + + +#def _wrapper(x): return lambda y: y + +#specials = [".","*","+","?","|"] +""" +>>> import pregex as pre +>>> abc = pre.CharacterClass("abc", [0.1, 0.1, 0.8], name="MyConcept") +>>> abc.sample() +'b' +>>> abc.sample() +'c' +>>> abc.sample() +'c' +>>> abc.match("c") +-0.2231435513142097 +>>> abc.match("a") +-2.3025850929940455 +>>> abc +MyConcept +>>> x = pre.KleeneStar(abc) +>>> x.match("aabbac") +-16.58809928020405 +>>> x.sample() +'' +>>> x.sample() +'' +>>> x.sample() +'cbcacc' +>>> x +(KleeneStar 0.5 MyConcept) +>>> str(x) +'MyConcept*' +""" + + +def emp_dot(corpus): return pregex.CharacterClass(printable[:-4], emp_distro_from_corpus(corpus, printable[:-4]), name=".") + +def emp_d(corpus): return pregex.CharacterClass(printable[:10], emp_distro_from_corpus(corpus, printable[:10]), name="\\d") + +#emp_s = pre.CharacterClass(slist, [], name="emp\\s") #may want to forgo this one. + +def emp_dot_no_letter(corpus): return pregex.CharacterClass(printable[:10]+printable[62:], emp_distro_from_corpus(corpus, printable[:10]+printable[62:]), name=".") + +def emp_w(corpus): return pregex.CharacterClass(printable[:62], emp_distro_from_corpus(corpus, printable[:62]), name="\\w") + +def emp_l(corpus): return pregex.CharacterClass(printable[10:36], emp_distro_from_corpus(corpus, printable[10:36]), name="\\l") + +def emp_u(corpus): return pregex.CharacterClass(printable[36:62], emp_distro_from_corpus(corpus, printable[36:62]), name="\\u") + + +def emp_distro_from_corpus(corpus, char_list): + from collections import Counter + c = Counter(char for task in corpus for example in task.examples for string in example[1] for char in string) + n = sum(c[char] for char in char_list) + return [c[char]/n for char in char_list] + + + +def matchEmpericalPrimitives(corpus): + return lambda: [ + Primitive("empty_string", tpregex, pregex.String("")) + ] + [ + Primitive("string_" + i, tpregex, pregex.String(i)) for i in printable[:-4] if i not in disallowed_list + ] + [ + Primitive("string_" + name, tpregex, pregex.String(char)) for char, name in disallowed + ] + [ + Primitive("r_dot", tpregex, emp_dot(corpus) ), + Primitive("r_d", tpregex, emp_d(corpus) ), + Primitive("r_s", tpregex, pregex.s), + Primitive("r_w", tpregex, emp_w(corpus) ), + Primitive("r_l", tpregex, emp_l(corpus) ), + Primitive("r_u", tpregex, emp_u(corpus) ), + Primitive("r_kleene", arrow(tpregex, tpregex), _kleene), + #Primitive("r_plus", arrow(tpregex, tpregex), _plus), + Primitive("r_maybe", arrow(tpregex, tpregex), _maybe), + Primitive("r_alt", arrow(tpregex, tpregex, tpregex), _alt), + Primitive("r_concat", arrow(tpregex, tpregex, tpregex), _concat), + ] + +def matchEmpericalNoLetterPrimitives(corpus): + return lambda: [ + Primitive("empty_string", tpregex, pregex.String("")) + ] + [ + Primitive("string_" + i, tpregex, pregex.String(i)) for i in printable[:-4] if i not in disallowed_list + list(printable[10:62]) + ] + [ + Primitive("string_" + name, tpregex, pregex.String(char)) for char, name in disallowed + ] + [ + Primitive("r_dot", tpregex, emp_dot_no_letter(corpus) ), + Primitive("r_d", tpregex, emp_d(corpus) ), + Primitive("r_s", tpregex, pregex.s), + Primitive("r_kleene", arrow(tpregex, tpregex), _kleene), + #Primitive("r_plus", arrow(tpregex, tpregex), _plus), + #Primitive("r_maybe", arrow(tpregex, tpregex), _maybe), + Primitive("r_alt", arrow(tpregex, tpregex, tpregex), _alt), + Primitive("r_concat", arrow(tpregex, tpregex, tpregex), _concat), + ] + + +if __name__=='__main__': + concatPrimitives() + from dreamcoder.program import Program + + p=Program.parse("(lambda (r_kleene (lambda (r_maybe (lambda (string_x $0)) $0)) $0))") + print(p) + print(p.runWithArguments([pregex.String("")])) + + prims = concatPrimitives() + g = Grammar.uniform(prims) + + for i in range(100): + prog = g.sample(arrow(tpregex,tpregex)) + preg = prog.runWithArguments([pregex.String("")]) + print("preg:", preg.__repr__()) + print("sample:", preg.sample()) + + + diff --git a/dreamcoder/domains/text/__init__.py b/dreamcoder/domains/text/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/dreamcoder/domains/text/__pycache__/__init__.cpython-39.pyc b/dreamcoder/domains/text/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5190f95e7bd95966d0eec345c05b9bee33629d13 Binary files /dev/null and b/dreamcoder/domains/text/__pycache__/__init__.cpython-39.pyc differ diff --git a/dreamcoder/domains/text/__pycache__/main.cpython-39.pyc b/dreamcoder/domains/text/__pycache__/main.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4ffe751288a10d974d61d766ef65ad674428eca2 Binary files /dev/null and b/dreamcoder/domains/text/__pycache__/main.cpython-39.pyc differ diff --git a/dreamcoder/domains/text/__pycache__/makeTextTasks.cpython-39.pyc b/dreamcoder/domains/text/__pycache__/makeTextTasks.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8f486b1d765a2dc9a692670f17042949c8fbd692 Binary files /dev/null and b/dreamcoder/domains/text/__pycache__/makeTextTasks.cpython-39.pyc differ diff --git a/dreamcoder/domains/text/__pycache__/textPrimitives.cpython-39.pyc b/dreamcoder/domains/text/__pycache__/textPrimitives.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2a3a842ca18fbd8a3bb27b841f1c301e1e48c1bb Binary files /dev/null and b/dreamcoder/domains/text/__pycache__/textPrimitives.cpython-39.pyc differ diff --git a/dreamcoder/domains/text/main.py b/dreamcoder/domains/text/main.py new file mode 100644 index 0000000000000000000000000000000000000000..45cb4b7879fbc41bb65280e2210961e52bf44f20 --- /dev/null +++ b/dreamcoder/domains/text/main.py @@ -0,0 +1,270 @@ +from dreamcoder.dreamcoder import ecIterator +from dreamcoder.domains.text.makeTextTasks import makeTasks, loadPBETasks +from dreamcoder.domains.text.textPrimitives import primitives +from dreamcoder.domains.list.listPrimitives import bootstrapTarget +from dreamcoder.enumeration import * + +import os +import datetime +import random +from functools import reduce +import dill + + +class ConstantInstantiateVisitor(object): + def __init__(self, words): + self.words = words + + def primitive(self, e): + if e.name == "STRING": + return Primitive("STRING", e.tp, random.choice(self.words)) + return e + + def invented(self, e): return e.body.visit(self) + + def index(self, e): return e + + def application(self, e): + return Application(e.f.visit(self), e.x.visit(self)) + + def abstraction(self, e): + return Abstraction(e.body.visit(self)) + + +try: + from dreamcoder.recognition import * + class LearnedFeatureExtractor(RecurrentFeatureExtractor): + special = 'string' + + def tokenize(self, examples): + def tokenize_example(xs,y): + if not isinstance(y, list): y = [y] + return xs,y + return [tokenize_example(*e) for e in examples] + + def __init__(self, tasks, testingTasks=[], cuda=False): + lexicon = {c + for t in tasks + testingTasks + for xs, y in self.tokenize(t.examples) + for c in reduce(lambda u, v: u + v, list(xs) + [y])} + self.recomputeTasks = True + + super(LearnedFeatureExtractor, self).__init__(lexicon=list(lexicon), + H=64, + tasks=tasks, + bidirectional=True, + cuda=cuda) + self.MAXINPUTS = 8 + + def taskOfProgram(self, p, tp): + # Instantiate STRING w/ random words + p = p.visit(ConstantInstantiateVisitor.SINGLE) + return super(LearnedFeatureExtractor, self).taskOfProgram(p, tp) +except: + pass + +### COMPETITION CODE + +def competeOnOneTask(checkpoint, task, + CPUs=8, timeout=3600, evaluationTimeout=0.0005): + if checkpoint.recognitionModel is not None: + recognizer = checkpoint.recognitionModel + challengeFrontiers, times, bestSearchTime = \ + recognizer.enumerateFrontiers([task], + CPUs=CPUs, + maximumFrontier=1, + enumerationTimeout=timeout, + evaluationTimeout=evaluationTimeout) + else: + challengeFrontiers, times, bestSearchTimes = \ + multicoreEnumeration(checkpoint.grammars[-1], [task], + CPUs=CPUs, + maximumFrontier=1, + enumerationTimeout=timeout, + evaluationTimeout=evaluationTimeout) + if len(times) == 0: return None, task + assert len(times) == 1 + return times[0], task + + + +def sygusCompetition(checkpoints, tasks): + from pathos.multiprocessing import Pool + import datetime + + # map from task to list of search times, one for each checkpoint. + # search time will be None if it is not solved + searchTimes = {t: [] for t in tasks} + + CPUs = int(8/len(checkpoints)) + maxWorkers = int(numberOfCPUs()/CPUs) + workers = Pool(maxWorkers) + eprint(f"You gave me {len(checkpoints)} checkpoints to ensemble. Each checkpoint will get {CPUs} CPUs. Creating a pool of {maxWorkers} worker processes.") + timeout = 3600 + + + promises = [] + for t in tasks: + for checkpoint in checkpoints: + promise = workers.apply_async(competeOnOneTask, + (checkpoint,t), + {"CPUs": CPUs, + "timeout": timeout}) + promises.append(promise) + eprint(f"Queued {len(promises)} jobs.") + for promise in promises: + dt, task = promise.get() + if dt is not None: + searchTimes[task].append(dt) + + searchTimes = {t: min(ts) if len(ts) > 0 else None + for t,ts in searchTimes.items()} + + fn = "experimentOutputs/text_competition_%s.p"%(datetime.datetime.now().isoformat()) + with open(fn,"wb") as handle: + pickle.dump(searchTimes, handle) + eprint() + + hits = sum( t is not None for t in searchTimes.values() ) + total = len(searchTimes) + percentage = 100*hits/total + eprint("Hits %d/%d = %f\n"%(hits, total, percentage)) + eprint() + eprint("Exported competition results to",fn) + + + +def text_options(parser): + parser.add_argument( + "--showTasks", + action="store_true", + default=False, + help="show the training test and challenge tasks and then exit") + parser.add_argument( + "--trainChallenge", + action="store_true", + default=False, + help="Incorporate a random 50% of the challenge problems into the training set") + parser.add_argument( + "--onlyChallenge", + action="store_true", + default=False, + help="Only train on challenge problems and have testing problems.") + parser.add_argument( + "--latest", + action="store_true", + default=False, + help="evaluate on latest sygus problems rather than problems used in ec2 paper") + parser.add_argument( + "--noMap", action="store_true", default=False, + help="Disable built-in map primitive") + parser.add_argument( + "--noLength", action="store_true", default=False, + help="Disable built-in length primitive") + parser.add_argument( + "--noUnfold", action="store_true", default=False, + help="Disable built-in unfold primitive") + parser.add_argument( + "--compete", + nargs='+', + default=None, + type=str, + help="Do a simulated sygus competition (1hr+8cpus/problem) on the sygus tasks, restoring from provided checkpoint(s). If multiple checkpoints are provided, then we ensemble the models.") + + +def main(arguments): + """ + Takes the return value of the `commandlineArguments()` function as input and + trains/tests the model on manipulating sequences of text. + """ + + tasks = makeTasks() + eprint("Generated", len(tasks), "tasks") + + for t in tasks: + t.mustTrain = False + + test, train = testTrainSplit(tasks, 1.) + eprint("Split tasks into %d/%d test/train" % (len(test), len(train))) + + latest = arguments.pop("latest") + challenge, challengeCheating = loadPBETasks("data/sygus" if latest else "PBE_Strings_Track") + eprint("Got %d challenge PBE tasks" % len(challenge)) + + if arguments.pop('trainChallenge'): + challengeTest, challengeTrain = testTrainSplit(challenge, 0.5) + challenge = challengeTest + train += challengeTrain + eprint( + "Incorporating %d (50%%) challenge problems into the training set." % + (len(challengeTrain)), + "We will evaluate on the held out challenge problems.", + "This makes a total of %d training problems." % + len(train)) + + if arguments.pop('onlyChallenge'): + train = challenge + test = [] + challenge = [] + eprint("Training only on sygus problems.") + + + ConstantInstantiateVisitor.SINGLE = \ + ConstantInstantiateVisitor(list(map(list, list({tuple([c for c in s]) + for t in test + train + challenge + for s in t.stringConstants})))) + + haveLength = not arguments.pop("noLength") + haveMap = not arguments.pop("noMap") + haveUnfold = not arguments.pop("noUnfold") + eprint(f"Including map as a primitive? {haveMap}") + eprint(f"Including length as a primitive? {haveLength}") + eprint(f"Including unfold as a primitive? {haveUnfold}") + baseGrammar = Grammar.uniform(primitives + [p + for p in bootstrapTarget() + if (p.name != "map" or haveMap) and \ + (p.name != "unfold" or haveUnfold) and \ + (p.name != "length" or haveLength)]) + challengeGrammar = baseGrammar # Grammar.uniform(targetTextPrimitives) + + evaluationTimeout = 0.0005 + # We will spend 10 minutes on each challenge problem + challengeTimeout = 10 * 60 + + for t in train + test + challenge: + t.maxParameters = 2 + + if arguments.pop("showTasks"): + for source, ts in [("train",tasks),("test",test),("challenge",challenge)]: + print(source,"tasks:") + for t in ts: + print(t.name) + for xs, y in t.examples: + xs = ['"' + "".join(x) + '"' for x in xs] + y = "".join(y) if isinstance(y,list) else y + print('f(%s) = "%s"' % (", ".join(xs), y)) + print("\t{%s}" % (t.stringConstants)) + print() + sys.exit(0) + + + competitionCheckpoints = arguments.pop("compete") + if competitionCheckpoints: + checkpoints = [] + for competitionCheckpoint in competitionCheckpoints: + with open(competitionCheckpoint, 'rb') as handle: + checkpoints.append(dill.load(handle)) + sygusCompetition(checkpoints, challenge) + sys.exit(0) + + timestamp = datetime.datetime.now().isoformat() + outputDirectory = "experimentOutputs/text/%s"%timestamp + os.system("mkdir -p %s"%outputDirectory) + + generator = ecIterator(baseGrammar, train, + testingTasks=test + challenge, + outputPrefix="%s/text"%outputDirectory, + evaluationTimeout=evaluationTimeout, + **arguments) + for result in generator: + pass diff --git a/dreamcoder/domains/text/makeTextTasks.py b/dreamcoder/domains/text/makeTextTasks.py new file mode 100644 index 0000000000000000000000000000000000000000..60b5733be4e6143489495c86e86240d67ef11678 --- /dev/null +++ b/dreamcoder/domains/text/makeTextTasks.py @@ -0,0 +1,422 @@ +from dreamcoder.task import * +from dreamcoder.type import * +from dreamcoder.utilities import * + +import random + + +def lcs(u, v): + # t[(n,m)] = length of longest common string ending at first + # n elements of u & first m elements of v + t = {} + + for n in range(len(u) + 1): + for m in range(len(v) + 1): + if m == 0 or n == 0: + t[(n, m)] = 0 + continue + + if u[n - 1] == v[m - 1]: + t[(n, m)] = 1 + t[(n - 1, m - 1)] + else: + t[(n, m)] = 0 + l, n, m = max((l, n, m) for (n, m), l in t.items()) + return u[n - l:n] + + +delimiters = ['.', ',', ' ', '(', ')', '-'] +characters = [chr(ord('a') + j) + for j in range(26)] + \ + [chr(ord('A') + j) + for j in range(26)] + \ + [str(j) for j in range(10)] + \ + ['+'] + +WORDS = None + + +def randomDelimiter(): + return random.choice(delimiters) + + +def randomCharacter(): + return random.choice(characters) + + +def randomWord(minimum=1, predicate=None): + global WORDS + if WORDS is None: + tasks, cheating = loadPBETasks() + observations = {''.join(z) + for t in tasks + for xs, y in t.examples + for z in list(xs) + [y]} + + def splitMany(s, ds): + if len(ds) == 0: + return [s] + d = ds[0] + ds = ds[1:] + s = [w + for z in s.split(d) + for w in splitMany(z, ds) + if len(w) > 0] + return s + + WORDS = {w + for o in observations + for w in splitMany(o, delimiters)} + WORDS = list(sorted(list(WORDS))) + + # a disproportionately large fraction of the words have length three + # the purpose of this is to decrease the number of 3-length words we have + while True: + if random.random() > 0.7: + candidate = random.choice([w for w in WORDS if len(w) >= minimum]) + else: + candidate = random.choice( + [w for w in WORDS if len(w) >= minimum and len(w) != 3]) + if predicate is None or predicate(candidate): + return candidate + + +def randomWords(ds, minimum=1, lb=2, ub=4): + words = [randomWord(minimum=minimum) + for _ in range(random.choice(range(lb, ub+1)))] + s = "" + for j,w in enumerate(words): + if j > 0: + s += random.choice(ds) + s += w + return s + + +def makeTasks(n_examples = 4): + import random + random.seed(9) + + problems = [] + + def toList(s): return [c for c in s] + # Converts strings into a list of characters depending on the type + + def preprocess(x): + if isinstance(x, tuple): + return tuple(preprocess(z) for z in x) + if isinstance(x, list): + return [preprocess(z) for z in x] + if isinstance(x, str): + return x + if isinstance(x, bool): + return x + assert False + + def problem(n, examples, needToTrain=False): + task = Task(n, guess_arrow_type(examples), + [(preprocess(x), + preprocess(y)) + for x, y in examples]) + task.mustTrain = True + problems.append(task) + + for d1, d2 in randomPermutation(crossProduct(delimiters, delimiters))[ + :len(delimiters) * 2]: + if d1 != d2: + problem("Replace '%s' w/ '%s'" % (d1, d2), + [((x,), x.replace(d1, d2)) + for _ in range(n_examples) + for x in [randomWords(d1)]], + needToTrain=False) + for d in delimiters: + problem("drop first word delimited by '%s'" % d, + [((x,), d.join(x.split(d)[1:])) + for _ in range(n_examples) + for x in [randomWords(d)]], + needToTrain=True) + for n in [0, 1, -1]: + problem("nth (n=%d) word delimited by '%s'" % (n, d), + [((x,), x.split(d)[n]) + for _ in range(n_examples) + for x in [randomWords(d)]], + needToTrain=True) + for d1 in delimiters: + problem("Append two words delimited by '%s'" % (d1), + [((x, y), x + d1 + y) + for _ in range(n_examples) + for x in [randomWord()] + for y in [randomWord()]], + needToTrain=True) + for d1, d2 in randomPermutation( + crossProduct( + delimiters, delimiters))[ + :len(delimiters)]: + problem("Append two words delimited by '%s%s'" % (d1, d2), + [((x, y), x + d1 + d2 + y) + for _ in range(n_examples) + for x in [randomWord()] + for y in [randomWord()]], + needToTrain=True) + for n in range(1, 6): + problem("Drop last %d characters" % n, + [((x,), x[:-n]) + for _ in range(n_examples) + for x in [randomWord(minimum=n)]], + needToTrain=True) + if n > 1: + problem("Take first %d characters" % n, + [((x,), x[:n]) + for _ in range(n_examples) + for x in [randomWord(minimum=n)]], + needToTrain=True) + for d1, d2 in randomPermutation( + crossProduct( + delimiters, delimiters))[ + :len(delimiters)]: + problem("Extract word delimited by '%s' - '%s'" % (d1, d2), + [((a + d1 + b + d2 + c + d + e,), b) + for _ in range(int(n_examples / 2)) + for d in [d1, d2] + for a in [randomWord()] + for b in [randomWord()] + for c in [randomWord()] + for e in [randomWord()]], + needToTrain=True) + + for n in range(len(delimiters)): + problem("First letters of words (%s)" % ("I" * (1 + n)), + [((x,), "".join(map(lambda z: z[0], x.split(' ')))) + for _ in range(n_examples) + for x in [randomWords(' ')] + ], + needToTrain=True) + + for d in delimiters: + problem("Take first character and append '%s'" % d, + [((x,), x[0] + d) + for _ in range(n_examples) + for x in [randomWord()]], + needToTrain=True) + + for n in range(len(delimiters)): + problem("Abbreviate separate words (%s)" % ("I" * (n + 1)), + [((x, y), "%s.%s." % (x[0], y[0])) + for _ in range(n_examples) + for y in [randomWord()] + for x in [randomWord()]]) + d = delimiters[n] + problem("Abbreviate words separated by '%s'" % d, + [((x + d + y,), "%s.%s." % (x[0], y[0])) + for _ in range(n_examples) + for y in [randomWord()] + for x in [randomWord()]]) + + for n in range(len(delimiters)): + problem("Append 2 strings (%s)" % ('I' * (n + 1)), + [((x, y), x + y) + for _ in range(n_examples) + for y in [randomWord()] + for x in [randomWord()]], + needToTrain=True) + + for n in range(len(delimiters)): + w = randomWord(minimum=3) + problem("Prepend '%s'" % w, + [((x,), w + x) + for _ in range(n_examples) + for x in [randomWord()]]) + w = randomWord(minimum=3) + problem("Append '%s'" % w, + [((x,), x + w) + for _ in range(n_examples) + for x in [randomWord()]]) + w = randomWord(minimum=3) + problem("Prepend '%s' to first word" % w, + [((x + ' ' + y,), w + x) + for _ in range(n_examples) + for x in [randomWord()] + for y in [randomWord()]]) + + for n in range(1,6): + problem("parentheses around a single word (%s)"%('I'*n), + [((w,),"(%s)"%w) + for _ in range(n_examples) + for w in [randomWord()] ]) + problem("parentheses around first word", + [((w + " " + s,),"(%s)"%w) + for _ in range(n_examples) + for w in [randomWord()] + for s in [randomWords(" ")] ]) + problem("parentheses around second word", + [((s,), "(%s)"%(s.split(" ")[1])) + for _ in range(n_examples) + for s in [randomWords(" ")] ]) + + allowed = [d for d in delimiters if d not in "()"] + for d1,d2 in randomPermutation(crossProduct(allowed, allowed))[:len(delimiters)]: + problem("parentheses around word delimited by '%s' & '%s'"%(d1,d2), + [((prefix + d1 + word + d2 + suffix,), + prefix + d1 + '(' + word + ')' + d2 + suffix) + for _ in range(n_examples) + for prefix in [randomWords("", lb=0, ub=1)] + for suffix in [randomWords(allowed, ub=2, lb=1)] + for word in [randomWord()] ]) + + for n in range(7): + w = randomWord(minimum=3) + problem("ensure suffix `%s`"%w, + [ ((s + (w if f else ""),), s + w) + for _ in range(n_examples) + for s in [randomWords(" ")] + for f in [random.choice([True,False])] ]) + + + for p in problems: + guessConstantStrings(p) + + return problems + + +def loadPBETasks(directory="PBE_Strings_Track"): + """ + Processes sygus benchmarks into task objects + For these benchmarks, all of the constant strings are given to us. + In a sense this is cheating + Returns (tasksWithoutCheating, tasksWithCheating). + NB: Results in paper are done without "cheating" + """ + import os + from sexpdata import loads, Symbol + + def findStrings(s): + if isinstance(s, list): + return [y + for x in s + for y in findStrings(x)] + if isinstance(s, str): + return [s] + return [] + + def explode(s): + return [c for c in s] + + tasks = [] + cheatingTasks = [] + for f in os.listdir(directory): + if not f.endswith('.sl'): + continue + with open(directory + "/" + f, "r") as handle: + message = "(%s)" % (handle.read()) + + expression = loads(message) + + constants = [] + name = f + examples = [] + declarative = False + for e in expression: + if len(e) == 0: + continue + if e[0] == Symbol('constraint'): + e = e[1] + assert e[0] == Symbol('=') + inputs = e[1] + assert inputs[0] == Symbol('f') + inputs = inputs[1:] + output = e[2] + examples.append((inputs, output)) + elif e[0] == Symbol('synth-fun'): + if e[1] == Symbol('f'): + constants += findStrings(e) + else: + declarative = True + break + if declarative: continue + + examples = list({(tuple(xs), y) for xs, y in examples}) + + task = Task(name, arrow(*[tstr] * (len(examples[0][0]) + 1)), + [(tuple(map(explode, xs)), explode(y)) + for xs, y in examples]) + cheat = task + + tasks.append(task) + cheatingTasks.append(cheat) + + for p in tasks: + guessConstantStrings(p) + return tasks, cheatingTasks + + +def guessConstantStrings(task): + if task.request.returns() == tlist(tcharacter): + examples = task.examples + guesses = {} + N = 10 + T = 2 + for n in range(min(N, len(examples))): + for m in range(n + 1, min(N, len(examples))): + y1 = examples[n][1] + y2 = examples[m][1] + l = ''.join(lcs(y1, y2)) + if len(l) > 2: + guesses[l] = guesses.get(l, 0) + 1 + + task.stringConstants = [g for g, f in guesses.items() + if f >= T] + else: + task.stringConstants = [] + + + task.BIC = 1. + task.maxParameters = 1 + + task.specialTask = ("stringConstant", + {"maxParameters": task.maxParameters, + "stringConstants": task.stringConstants}) + + +if __name__ == "__main__": + challenge, _ = loadPBETasks("data/sygus") + + tasks = makeTasks() + print(len(tasks), "synthetic tasks") + tasks = [] + for t in tasks + challenge: + print(t.name) + for xs, y in t.examples: + xs = ['"' + "".join(x) + '"' for x in xs] + y = "".join(y) + print('f(%s) = "%s"' % (", ".join(xs), y)) + print("\t{%s}" % (t.stringConstants)) + print() + assert False + # def maximumLength(x): + # if isinstance(x,list): + # return max([len(x)] + map(maximumLength,x)) + # return 1 + + # print max(maximumLength(z) for t in tasks + # for (x,),y in t.examples + # for z in [x,y] ) + + if len(sys.argv) > 1 and "json" in sys.argv[1]: + import json + tasks = makeTasks() + obj = [t.as_json_dict() for t in tasks] + json.dump(obj, sys.stdout) + else: + as_tex = len(sys.argv) > 1 and "tex" in sys.argv[1] + for t in tasks: + print(t.name) + print(t.request) + if as_tex: + print("""\\begin{tabular}{ll} + \\toprule Input&Output\\\\\\midrule + %s + \\\\\\bottomrule + \\end{tabular}""" % (" \\\\\n ".join(x[0] + " & " + y for x, y in t.examples))) + else: + for x, y in t.examples: + print(x[0], '\t', y) + print() + print(len(tasks), "tasks") diff --git a/dreamcoder/domains/text/textPrimitives.py b/dreamcoder/domains/text/textPrimitives.py new file mode 100644 index 0000000000000000000000000000000000000000..e6cc49d8370e23c4ace17bafe75afc3ec18c6733 --- /dev/null +++ b/dreamcoder/domains/text/textPrimitives.py @@ -0,0 +1,87 @@ +from dreamcoder.program import * +from dreamcoder.domains.text.makeTextTasks import delimiters + +def _isUpper(x): return x.isupper() + +def _increment(x): return x + 1 + + +def _decrement(x): return x - 1 + + +def _lower(x): return x.lower() + + +def _upper(x): return x.upper() + + +def _capitalize(x): return x.capitalize() + + +def _append(x): return lambda y: x + y + + +def _slice(x): return lambda y: lambda s: s[x:y] + + +def _index(n): return lambda x: x[n] + + +def _map(f): return lambda x: list(map(f, x)) + + +def _find(pattern): return lambda s: s.index(pattern) + + +def _replace(original): return lambda replacement: lambda target: target.replace( + original, replacement) + + +def _split(delimiter): return lambda s: s.split(delimiter) + + +def _join(delimiter): return lambda ss: delimiter.join(ss) + + +def _identity(x): return x +#def _reverse(x): return x[::-1] + + +def _strip(x): return x.strip() + + +def _eq(x): return lambda y: x == y + + +specialCharacters = {' ': 'SPACE', + ')': 'RPAREN', + '(': 'LPAREN'} + +primitives = [ + Primitive("char-eq?", arrow(tcharacter, tcharacter, tboolean), _eq), + Primitive("STRING", tstr, None) +] + [Primitive("'%s'" % d, tcharacter, d) for d in delimiters if d not in specialCharacters] + \ + [Primitive(name, tcharacter, value) for value, name in specialCharacters.items()] + + +def _cons(x): return lambda y: [x] + y + + +def _car(x): return x[0] + + +def _cdr(x): return x[1:] + + +targetTextPrimitives = [ + Primitive("take-word", arrow(tcharacter, tstr, tstr), None), + Primitive("drop-word", arrow(tcharacter, tstr, tstr), None), + Primitive("append", arrow(tlist(t0), tlist(t0), tlist(t0)), None), + Primitive("abbreviate", arrow(tstr, tstr), None), + Primitive("last-word", arrow(tcharacter, tstr, tstr), None), + Primitive("replace-character", arrow(tcharacter, tcharacter, tstr, tstr), None), +] + primitives + [ + Primitive("empty", tlist(t0), []), + Primitive("cons", arrow(t0, tlist(t0), tlist(t0)), _cons), + Primitive("car", arrow(tlist(t0), t0), _car), + Primitive("cdr", arrow(tlist(t0), tlist(t0)), _cdr)] diff --git a/dreamcoder/domains/tower/__init__.py b/dreamcoder/domains/tower/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/dreamcoder/domains/tower/__pycache__/__init__.cpython-39.pyc b/dreamcoder/domains/tower/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6f750204e00dea8e4cdce1f6c4b938ccc4a7fb2a Binary files /dev/null and b/dreamcoder/domains/tower/__pycache__/__init__.cpython-39.pyc differ diff --git a/dreamcoder/domains/tower/__pycache__/main.cpython-39.pyc b/dreamcoder/domains/tower/__pycache__/main.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5ecae0222c93b9e8f104bdfff7af1b7a6babd2cd Binary files /dev/null and b/dreamcoder/domains/tower/__pycache__/main.cpython-39.pyc differ diff --git a/dreamcoder/domains/tower/__pycache__/makeTowerTasks.cpython-39.pyc b/dreamcoder/domains/tower/__pycache__/makeTowerTasks.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8e445e936e471c128d782668291841a0168c2840 Binary files /dev/null and b/dreamcoder/domains/tower/__pycache__/makeTowerTasks.cpython-39.pyc differ diff --git a/dreamcoder/domains/tower/__pycache__/towerPrimitives.cpython-39.pyc b/dreamcoder/domains/tower/__pycache__/towerPrimitives.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5e99bf163e02f200e59498a6b36dde6724e13097 Binary files /dev/null and b/dreamcoder/domains/tower/__pycache__/towerPrimitives.cpython-39.pyc differ diff --git a/dreamcoder/domains/tower/__pycache__/tower_common.cpython-39.pyc b/dreamcoder/domains/tower/__pycache__/tower_common.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ab09af6486d9a3bd028442056f0b83953cf713af Binary files /dev/null and b/dreamcoder/domains/tower/__pycache__/tower_common.cpython-39.pyc differ diff --git a/dreamcoder/domains/tower/main.py b/dreamcoder/domains/tower/main.py new file mode 100644 index 0000000000000000000000000000000000000000..451988586f8c4a1fdf9a94943fdd9141c0b28f69 --- /dev/null +++ b/dreamcoder/domains/tower/main.py @@ -0,0 +1,359 @@ +from dreamcoder.dreamcoder import * + +from dreamcoder.domains.tower.towerPrimitives import primitives, new_primitives, animateTower +from dreamcoder.domains.tower.makeTowerTasks import * +from dreamcoder.domains.tower.tower_common import renderPlan, towerLength, centerTower +from dreamcoder.utilities import * + +import os +import datetime + +try: #pypy will fail + from dreamcoder.recognition import variable + import torch.nn as nn + import torch.nn.functional as F + + class Flatten(nn.Module): + def __init__(self): + super(Flatten, self).__init__() + + def forward(self, x): + return x.view(x.size(0), -1) + + + class TowerCNN(nn.Module): + special = 'tower' + + def __init__(self, tasks, testingTasks=[], cuda=False, H=64): + super(TowerCNN, self).__init__() + self.CUDA = cuda + self.recomputeTasks = True + + self.outputDimensionality = H + def conv_block(in_channels, out_channels): + return nn.Sequential( + nn.Conv2d(in_channels, out_channels, 3, padding=1), + # nn.BatchNorm2d(out_channels), + nn.ReLU(), + nn.MaxPool2d(2) + ) + + self.inputImageDimension = 256 + self.resizedDimension = 64 + assert self.inputImageDimension % self.resizedDimension == 0 + + # channels for hidden + hid_dim = 64 + z_dim = 64 + + self.encoder = nn.Sequential( + conv_block(6, hid_dim), + conv_block(hid_dim, hid_dim), + conv_block(hid_dim, hid_dim), + conv_block(hid_dim, z_dim), + Flatten() + ) + + self.outputDimensionality = 1024 + + if cuda: + self.CUDA=True + self.cuda() # I think this should work? + + def forward(self, v, v2=None): + """v: tower to build. v2: image of tower we have built so far""" + # insert batch if it is not already there + if len(v.shape) == 3: + v = np.expand_dims(v, 0) + inserted_batch = True + if v2 is not None: + assert len(v2.shape) == 3 + v2 = np.expand_dims(v2, 0) + elif len(v.shape) == 4: + inserted_batch = False + pass + else: + assert False, "v has the shape %s"%(str(v.shape)) + + if v2 is None: v2 = np.zeros(v.shape) + + v = np.concatenate((v,v2), axis=3) + v = np.transpose(v,(0,3,1,2)) + assert v.shape == (v.shape[0], 6,self.inputImageDimension,self.inputImageDimension) + v = variable(v, cuda=self.CUDA).float() + window = int(self.inputImageDimension/self.resizedDimension) + v = F.avg_pool2d(v, (window,window)) + #showArrayAsImage(np.transpose(v.data.numpy()[0,:3,:,:],[1,2,0])) + v = self.encoder(v) + if inserted_batch: + return v.view(-1) + else: + return v + + def featuresOfTask(self, t, t2=None): # Take a task and returns [features] + return self(t.getImage(), + None if t2 is None else t2.getImage(drawHand=True)) + + def featuresOfTasks(self, ts, t2=None): # Take a task and returns [features] + """Takes the goal first; optionally also takes the current state second""" + if t2 is None: + pass + elif isinstance(t2, Task): + assert False + #t2 = np.array([t2.getImage(drawHand=True)]*len(ts)) + elif isinstance(t2, list): + t2 = np.array([t.getImage(drawHand=True) if t else np.zeros((self.inputImageDimension, + self.inputImageDimension, + 3)) + for t in t2]) + else: + assert False + + return self(np.array([t.getImage() for t in ts]), + t2) + + def taskOfProgram(self, p, t, + lenient=False): + try: + pl = executeTower(p,0.05) + if pl is None or (not lenient and len(pl) == 0): return None + if len(pl) > 100 or towerLength(pl) > 360: return None + + t = SupervisedTower("tower dream", p) + return t + except Exception as e: + return None +except: pass + + + +def tower_options(parser): + parser.add_argument("--tasks", + choices=["old","new"], + default="old") + parser.add_argument("--visualize", + default=None, type=str) + parser.add_argument("--solutions", + default=None, type=str) + parser.add_argument("--split", + default=1., type=float) + parser.add_argument("--dream", + default=None, type=str) + parser.add_argument("--primitives", + default="old", type=str, + choices=["new", "old"]) + + +def dreamOfTowers(grammar, prefix, N=250, make_montage=True): + request = arrow(ttower,ttower) + randomTowers = [tuple(centerTower(t)) + for _ in range(N) + for program in [grammar.sample(request, + maximumDepth=12, + maxAttempts=100)] + if program is not None + for t in [executeTower(program, timeout=0.5) or []] + if len(t) >= 1 and len(t) < 100 and towerLength(t) <= 360.] + matrix = [renderPlan(p,Lego=True,pretty=True) + for p in randomTowers] + + # Only visualize if it has something to visualize. + if len(matrix) > 0: + import scipy.misc + if make_montage: + matrix = montage(matrix) + scipy.misc.imsave('%s.png'%prefix, matrix) + else: + for n,i in enumerate(matrix): + scipy.misc.imsave(f'{prefix}/{n}.png', i) + else: + eprint("Tried to visualize dreams, but none to visualize.") + + +def visualizePrimitives(primitives, fn=None): + from itertools import product + #from pylab import imshow,show + + from dreamcoder.domains.tower.towerPrimitives import _left,_right,_loop,_embed,_empty_tower,TowerState + _13 = Program.parse("1x3").value + _31 = Program.parse("3x1").value + + r = lambda n,k: _right(2*n)(k) + l = lambda n,k: _left(2*n)(k) + _e = _embed + _lp = lambda n,b,k: _loop(n)(b)(k) + _arch = lambda k: l(1,_13(r(2,_13(l(1,_31(k)))))) + _tallArch = lambda h,z,k: _lp(h, lambda _: _13(r(2,_13(l(2,z)))), + r(1,_31(k))) + + matrix = [] + for p in primitives: + if not p.isInvented: continue + eprint(p,":",p.tp) + t = p.tp + if t.returns() != ttower: continue + + def argumentChoices(t): + if t == ttower: + return [_empty_tower] + elif t == tint: + return list(range(5)) + elif t == arrow(ttower,ttower): + return [_arch,_13,_31] + else: + return [] + + ts = [] + for arguments in product(*[argumentChoices(t) for t in t.functionArguments() ]): + t = p.evaluate([]) + for a in arguments: t = t(a) + t = t(TowerState())[1] + ts.append(t) + + if ts == []: continue + + matrix.append([renderPlan(p,pretty=True) + for p in ts]) + + # Only visualize if it has something to visualize. + if len(matrix) > 0: + matrix = montageMatrix(matrix) + # imshow(matrix) + + import scipy.misc + scipy.misc.imsave(fn, matrix) + # show() + else: + eprint("Tried to visualize primitives, but none to visualize.") + +def animateSolutions(checkpoint): + with open(checkpoint,"rb") as handle: result = dill.load(handle) + for n,f in enumerate(result.taskSolutions.values()): + animateTower(f"/tmp/tower_animation_{n}",f.bestPosterior.program) + +def visualizeSolutions(solutions, export, tasks=None): + + if tasks is None: + tasks = list(solutions.keys()) + tasks.sort(key=lambda t: len(t.plan)) + + matrix = [] + for t in tasks: + i = renderPlan(centerTower(t.plan),pretty=True,Lego=True) + if solutions[t].empty: i = i/3. + matrix.append(i) + + # Only visualize if it has something to visualize. + if len(matrix) > 0: + matrix = montage(matrix) + import scipy.misc + scipy.misc.imsave(export, matrix) + else: + eprint("Tried to visualize solutions, but none to visualize.") + + +def main(arguments): + """ + Takes the return value of the `commandlineArguments()` function as input and + trains/tests the model on a set of tower-building tasks. + """ + + # The below global statement is required since primitives is modified within main(). + # TODO(lcary): use a function call to retrieve and declare primitives instead. + global primitives + + import scipy.misc + + g0 = Grammar.uniform({"new": new_primitives, + "old": primitives}[arguments.pop("primitives")], + continuationType=ttower) + + checkpoint = arguments.pop("visualize") + if checkpoint is not None: + with open(checkpoint,'rb') as handle: + primitives = pickle.load(handle).grammars[-1].primitives + visualizePrimitives(primitives) + sys.exit(0) + checkpoint = arguments.pop("solutions") + if checkpoint is not None: + with open(checkpoint,'rb') as handle: + solutions = pickle.load(handle).taskSolutions + visualizeSolutions(solutions, + checkpoint + ".solutions.png") + animateSolutions(checkpoint) + sys.exit(0) + checkpoint = arguments.pop("dream") + if checkpoint is not None: + with open(checkpoint,'rb') as handle: + g = pickle.load(handle).grammars[-1] + os.system("mkdir -p data/tower_dreams") + dreamOfTowers(g, "data/tower_dreams", make_montage=False) + sys.exit(0) + + + tasks = arguments.pop("tasks") + if tasks == "new": + tasks = makeSupervisedTasks() + elif tasks == "old": + tasks = makeOldSupervisedTasks() + else: assert False + + test, train = testTrainSplit(tasks, arguments.pop("split")) + eprint("Split %d/%d test/train" % (len(test), len(train))) + + # Make a montage for the paper + shuffledTrain = list(train) + shuffledTest = list(test) + random.shuffle(shuffledTrain) + shuffledTrain = shuffledTrain + [None]*(60 - len(shuffledTrain)) + random.shuffle(shuffledTest) + shuffledTest = shuffledTest + [None]*(60 - len(shuffledTest)) + try: + SupervisedTower.exportMany("/tmp/every_tower.png",shuffledTrain + shuffledTest, shuffle=False, columns=10) + for j,task in enumerate(tasks): + task.exportImage(f"/tmp/tower_task_{j}.png") + for k,v in dSLDemo().items(): + scipy.misc.imsave(f"/tmp/tower_dsl_{k}.png", v) + os.system(f"convert /tmp/tower_dsl_{k}.png -channel RGB -negate /tmp/tower_dsl_{k}.png") + except: + eprint("WARNING: can't export images. scipy needs to be an older version") + + + timestamp = datetime.datetime.now().isoformat() + outputDirectory = "experimentOutputs/towers/%s"%timestamp + os.system("mkdir -p %s"%outputDirectory) + + os.system("mkdir -p data/tower_dreams_initial") + try: + dreamOfTowers(g0, "data/tower_dreams_initial", make_montage=False) + dreamOfTowers(g0, "%s/random_0"%outputDirectory) + except: + eprint("WARNING: can't export images. scipy needs to be an older version") + + evaluationTimeout = 0.005 + generator = ecIterator(g0, train, + testingTasks=test, + outputPrefix="%s/tower"%outputDirectory, + evaluationTimeout=evaluationTimeout, + **arguments) + + + + for result in generator: + continue + iteration = len(result.learningCurve) + newTowers = [tuple(centerTower(executeTower(frontier.sample().program))) + for frontier in result.taskSolutions.values() if not frontier.empty] + try: + fn = '%s/solutions_%d.png'%(outputDirectory,iteration) + visualizeSolutions(result.taskSolutions, fn, + train) + eprint("Exported solutions to %s\n"%fn) + dreamOfTowers(result.grammars[-1], + '%s/random_%d'%(outputDirectory,iteration)) + except ImportError: + eprint("Could not import required libraries for exporting towers.") + primitiveFilename = '%s/primitives_%d.png'%(outputDirectory, iteration) + visualizePrimitives(result.grammars[-1].primitives, + primitiveFilename) + eprint("Exported primitives to",primitiveFilename) diff --git a/dreamcoder/domains/tower/makeTowerTasks.py b/dreamcoder/domains/tower/makeTowerTasks.py new file mode 100644 index 0000000000000000000000000000000000000000..992d4fab40783ffc71ccea983e211c304c0a5583 --- /dev/null +++ b/dreamcoder/domains/tower/makeTowerTasks.py @@ -0,0 +1,556 @@ +from dreamcoder.domains.tower.towerPrimitives import ttower, executeTower, _empty_tower, TowerState +from dreamcoder.domains.tower.tower_common import renderPlan +from dreamcoder.task import * + + +class SupervisedTower(Task): + def __init__(self, name, program, mustTrain=False): + if isinstance(program,str): + try: + program = parseTower(program) + except: + eprint("Parse failure:") + eprint(program) + assert False + self.original = program + plan = executeTower(program) + elif isinstance(program,Program): + self.original = program + plan = executeTower(program) + else: + plan = program + self.original = program + state, self.plan = program.evaluate([])(_empty_tower)(TowerState()) + self.hand = state.hand + super(SupervisedTower, self).__init__(name, arrow(ttower,ttower), [], + features=[]) + self.specialTask = ("supervisedTower", + {"plan": self.plan}) + self.image = None + self.handImage = None + self.mustTrain = mustTrain + + def getImage(self, drawHand=False, pretty=False): + if not drawHand: + if not pretty: + if self.image is not None: return self.image + self.image = renderPlan(self.plan, pretty=pretty) + return self.image + else: + return renderPlan(self.plan, pretty=True) + else: + if self.handImage is not None: return self.handImage + self.handImage = renderPlan(self.plan, + drawHand=self.hand, + pretty=pretty) + return self.handImage + + + + # do not pickle the image + def __getstate__(self): + return self.specialTask, self.plan, self.request, self.cache, self.name, self.examples + def __setstate__(self, state): + self.specialTask, self.plan, self.request, self.cache, self.name, self.examples = state + self.image = None + + + def animate(self): + from pylab import imshow,show + a = renderPlan(self.plan) + imshow(a) + show() + + @staticmethod + def showMany(ts): + from pylab import imshow,show + a = montage([renderPlan(t.plan, pretty=True, Lego=True, resolution=256, + drawHand=False) + for t in ts]) + imshow(a) + show() + + @staticmethod + def exportMany(f, ts, shuffle=True, columns=None): + import numpy as np + + ts = list(ts) + if shuffle: + assert all( t is not None for t in ts ) + random.shuffle(ts) + a = montage([renderPlan(t.plan, pretty=True, Lego=True, resolution=256) if t is not None \ + else np.zeros((256,256,3)) + for t in ts], + columns=columns) + import scipy.misc + scipy.misc.imsave(f, a) + + + def exportImage(self, f, pretty=True, Lego=True, drawHand=False): + a = renderPlan(self.plan, + pretty=pretty, Lego=Lego, + drawHand=t.hand if drawHand else None) + import scipy.misc + scipy.misc.imsave(f, a) + + def logLikelihood(self, e, timeout=None): + from dreamcoder.domains.tower.tower_common import centerTower + yh = executeTower(e, timeout) + if yh is not None and centerTower(yh) == centerTower(self.plan): return 0. + return NEGATIVEINFINITY + + + +def parseTower(s): + _13 = Program.parse("1x3") + _31 = Program.parse("3x1") + _r = Program.parse("right") + _l = Program.parse("left") + _addition = Program.parse("+") + _subtraction = Program.parse("-") + _lp = Program.parse("tower_loopM") + _e = Program.parse("tower_embed") + + from sexpdata import loads, Symbol + s = loads(s) + def command(k, environment, continuation): + if k == Symbol("1x3") or k == Symbol("v"): return Application(_13, continuation) + if k == Symbol("3x1") or k == Symbol("h"): return Application(_31, continuation) + assert isinstance(k,list) + if k[0] == Symbol("r"): return Application(Application(_r, expression(k[1],environment)),continuation) + if k[0] == Symbol("l"): return Application(Application(_l, expression(k[1],environment)),continuation) + if k[0] == Symbol("for"): + v = k[1] + b = expression(k[2], environment) + newEnvironment = [None, v] + environment + body = block(k[3:], newEnvironment, Index(0)) + return Application(Application(Application(_lp,b), + Abstraction(Abstraction(body))), + continuation) + if k[0] == Symbol("embed"): + body = block(k[1:], [None] + environment, Index(0)) + return Application(Application(_e,Abstraction(body)),continuation) + + assert False + def expression(e, environment): + for n, v in enumerate(environment): + if e == v: return Index(n) + + if isinstance(e,int): return Program.parse(str(e)) + + assert isinstance(e,list) + if e[0] == Symbol('+'): return Application(Application(_addition, expression(e[1], environment)), + expression(e[2], environment)) + if e[0] == Symbol('-'): return Application(Application(_subtraction, expression(e[1], environment)), + expression(e[2], environment)) + assert False + + def block(b, environment, continuation): + if len(b) == 0: return continuation + return command(b[0], environment, block(b[1:], environment, continuation)) + + try: return Abstraction(command(s, [], Index(0))) + except: return Abstraction(block(s, [], Index(0))) + + +def makeSupervisedTasks(): + arches = [SupervisedTower("arch leg %d"%n, + "((for i %d v) (r 4) (for i %d v) (l 2) h)"%(n,n)) + for n in range(1,9) + ] + archesStacks = [SupervisedTower("arch stack %d"%n, + """ + (for i %d + v (r 4) v (l 2) h (l 2)) + """%n) + for n in range(3,7) ] + Bridges = [SupervisedTower("bridge (%d) of arch %d"%(n,l), + """ + (for j %d + (for i %d + v (r 4) v (l 4)) (r 2) h + (r 4)) + """%(n,l)) + for n in range(2,8) + for l in range(1,6)] + offsetArches = [SupervisedTower("bridge (%d) of arch, spaced %d"%(n,l), + """ + (for j %d + (embed v (r 4) v (l 2) h ) + (r %d)) + """%(n,l), + mustTrain=n == 3) + for n,l in [(3,7),(4,8)]] + Josh = [SupervisedTower("Josh (%d)"%n, + """(for i %d + h (l 2) v (r 2) v (r 2) v (l 2) h (r 6))"""%n) + for n in range(1,7) ] + + staircase1 = [SupervisedTower("R staircase %d"%n, +""" +(for i %d (for j i +(embed v (r 4) v (l 2) h)) (r 6)) +"""%(n)) + for n in range(3,8) ] + staircase2 = [SupervisedTower("L staircase %d"%n, +""" +(for i %d (for j i +(embed v (r 4) v (l 2) h)) (l 6)) +"""%(n)) + for n in range(3,8) ] + simpleLoops = [SupervisedTower("%s row %d, spacing %d"%(o,n,s), + """(for j %d %s (r %s))"""%(n,o,s), + mustTrain=True) + for o,n,s in [('h',4,7), ('v',5,3)] ] + + pyramids = [] + pyramids += [SupervisedTower("arch pyramid %d"%n, + """((for i %d (for j i (embed v (r 4) v (l 2) h)) (r 6)) + (for i %d (for j (- %d i) (embed v (r 4) v (l 2) h)) (r 6)))"""%(n,n,n)) + for n in range(2,6) ] + pyramids += [SupervisedTower("H pyramid %d"%n, + """((for i %d (for j i h) (r 6)) + (for i %d (for j (- %d i) h) (r 6)))"""%(n,n,n)) + for n in range(4,6) ] +# pyramids += [SupervisedTower("V pyramid %d"%n, +# """ +# ((for i %d (for j i v) (r 2)) +# (for i %d (for j (- %d i) v) (r 2))) +# """%(n,n,n)) +# for n in range(4,8) ] +# pyramids += [SupervisedTower("V3 pyramid %d"%n, +# """ +# ((for i %d (for j i v) (r 6)) +# (for i %d (for j (- %d i) v) (r 6))) +# """%(n,n,n)) +# for n in range(4,8) ] + pyramids += [SupervisedTower("H 1/2 pyramid %d"%n, + """ +(for i %d + (r 6) + (embed + (for j i h (l 3)))) + """%n) + for n in range(4,8) ] + pyramids += [SupervisedTower("arch 1/2 pyramid %d"%n, +""" +(for i %d + (r 6) + (embed + (for j i (embed v (r 4) v (l 2) h) (l 3)))) +"""%n) + for n in range(2,8) ] + if False: + pyramids += [SupervisedTower("V 1/2 pyramid %d"%n, + """ + (for i %d + (r 2) + (embed + (for j i v (l 1))))"""%(n)) + for n in range(4,8) ] + bricks = [SupervisedTower("brickwall, %dx%d"%(w,h), + """(for j %d + (embed (for i %d h (r 6))) + (embed (r 3) (for i %d h (r 6))))"""%(h,w,w)) + for w in range(3,7) + for h in range(1,6) ] + aqueducts = [SupervisedTower("aqueduct: %dx%d"%(w,h), + """(for j %d + %s (r 4) %s (l 2) h (l 2) v (r 4) v (l 2) h (r 4))"""% + (w, "v "*h, "v "*h)) + for w in range(4,8) + for h in range(3,6) + ] + + compositions = [SupervisedTower("%dx%d-bridge on top of %dx%d bricks"%(b1,b2,w1,w2), + """ + ((for j %d + (embed (for i %d h (r 6))) + (embed (r 3) (for i %d h (r 6)))) + (r 1) + (for j %d + (for i %d + v (r 4) v (l 4)) (r 2) h + (r 4))) + """%(w1,w2,w2,b1,b2)) + for b1,b2,w1,w2 in [(5,2,4,5)] + ] + [ + SupervisedTower("%d pyramid on top of %dx%d bricks"%(p,w1,w2), + """ + ((for j %d + (embed (for i %d h (r 6))) + (embed (r 3) (for i %d h (r 6)))) + (r 1) + (for i %d (for j i (embed v (r 4) v (l 2) h)) (r 6)) + (for i %d (for j (- %d i) (embed v (r 4) v (l 2) h)) (r 6))) + """%(w1,w2,w2,p,p,p)) + for w1,w2,p in [(2,5,2)] + ] + \ + [ + SupervisedTower("%d tower on top of %dx%d bricks"%(t,w1,w2), + """ + ((for j %d + (embed (for i %d h (r 6))) + (embed (r 3) (for i %d h (r 6)))) + (r 6) + %s (r 4) %s (l 2) h) + """%(w1,w2,w2, + "v "*t, "v "*t)) + for t,w1,w2 in [(4,1,3)] ] + + + + everything = arches + simpleLoops + Bridges + archesStacks + aqueducts + offsetArches + pyramids + bricks + staircase2 + staircase1 + compositions + if False: + for t in everything: + delattr(t,'original') + return everything + +def makeOldSupervisedTasks(): + arches = [SupervisedTower("arch leg %d"%n, + "((for i %d v) (r 4) (for i %d v) (l 2) h)"%(n,n)) + for n in range(1,9) + ] + archesStacks = [SupervisedTower("arch stack %d"%n, + """ + (for i %d + v (r 4) v (l 2) h (l 2)) + """%n) + for n in range(3,7) ] + Bridges = [SupervisedTower("bridge (%d) of arch %d"%(n,l), + """ + (for j %d + (for i %d + v (r 4) v (l 4)) (r 2) h + (r 4)) + """%(n,l)) + for n in range(2,8) + for l in range(1,6)] + offsetArches = [SupervisedTower("bridge (%d) of arch, spaced %d"%(n,l), + """ + (for j %d + v (r 4) v (l 2) h + (r %d)) + """%(n,l)) + for n,l in [(3,7),(4,6)]] + Josh = [SupervisedTower("Josh (%d)"%n, + """(for i %d + h (l 2) v (r 2) v (r 2) v (l 2) h (r 6))"""%n) + for n in range(1,7) ] + + staircase1 = [SupervisedTower("R staircase %d"%n, +""" +(for i %d (for j i +(embed v (r 4) v (l 2) h)) (r 6)) +"""%(n)) + for n in range(3,8) ] + staircase2 = [SupervisedTower("L staircase %d"%n, +""" +(for i %d (for j i +(embed v (r 4) v (l 2) h)) (l 6)) +"""%(n)) + for n in range(3,8) ] + simpleLoops = [SupervisedTower("horizontal row %d, spacing %d"%(n,s), + """(for j %d h (r %s))"""%(n,s)) + for n,s in [(4,6),(5,7)] ]+\ + [SupervisedTower("horizontal stack %d"%n, + """(for j %d h)"""%n) + for n in range(5,8) ]+\ + [SupervisedTower("vertical stack %d"%n, + """(for j %d v)"""%n) + for n in [5,7] ] + pyramids = [] + pyramids += [SupervisedTower("arch pyramid %d"%n, + """((for i %d (for j i (embed v (r 4) v (l 2) h)) (r 6)) + (for i %d (for j (- %d i) (embed v (r 4) v (l 2) h)) (r 6)))"""%(n,n,n)) + for n in range(2,6) ] + pyramids += [SupervisedTower("H pyramid %d"%n, + """((for i %d (for j i h) (r 6)) + (for i %d (for j (- %d i) h) (r 6)))"""%(n,n,n)) + for n in range(4,6) ] +# pyramids += [SupervisedTower("V pyramid %d"%n, +# """ +# ((for i %d (for j i v) (r 2)) +# (for i %d (for j (- %d i) v) (r 2))) +# """%(n,n,n)) +# for n in range(4,8) ] +# pyramids += [SupervisedTower("V3 pyramid %d"%n, +# """ +# ((for i %d (for j i v) (r 6)) +# (for i %d (for j (- %d i) v) (r 6))) +# """%(n,n,n)) +# for n in range(4,8) ] + pyramids += [SupervisedTower("H 1/2 pyramid %d"%n, + """ +(for i %d + (r 6) + (embed + (for j i h (l 3)))) + """%n) + for n in range(4,8) ] + pyramids += [SupervisedTower("arch 1/2 pyramid %d"%n, +""" +(for i %d + (r 6) + (embed + (for j i (embed v (r 4) v (l 2) h) (l 3)))) +"""%n) + for n in range(2,8) ] + if False: + pyramids += [SupervisedTower("V 1/2 pyramid %d"%n, + """ + (for i %d + (r 2) + (embed + (for j i v (l 1))))"""%(n)) + for n in range(4,8) ] + bricks = [SupervisedTower("brickwall, %dx%d"%(w,h), + """(for j %d + (embed (for i %d h (r 6))) + (embed (r 3) (for i %d h (r 6))))"""%(h,w,w)) + for w in range(3,7) + for h in range(1,6) ] + aqueducts = [SupervisedTower("aqueduct: %dx%d"%(w,h), + """(for j %d + %s (r 4) %s (l 2) h (l 2) v (r 4) v (l 2) h (r 4))"""% + (w, "v "*h, "v "*h)) + for w in range(4,8) + for h in range(3,6) + ] + + compositions = [SupervisedTower("%dx%d-bridge on top of %dx%d bricks"%(b1,b2,w1,w2), + """ + ((for j %d + (embed (for i %d h (r 6))) + (embed (r 3) (for i %d h (r 6)))) + (r 1) + (for j %d + (for i %d + v (r 4) v (l 4)) (r 2) h + (r 4))) + """%(w1,w2,w2,b1,b2)) + for b1,b2,w1,w2 in [(5,2,4,5)] + ] + [ + SupervisedTower("%d pyramid on top of %dx%d bricks"%(p,w1,w2), + """ + ((for j %d + (embed (for i %d h (r 6))) + (embed (r 3) (for i %d h (r 6)))) + (r 1) + (for i %d (for j i (embed v (r 4) v (l 2) h)) (r 6)) + (for i %d (for j (- %d i) (embed v (r 4) v (l 2) h)) (r 6))) + """%(w1,w2,w2,p,p,p)) + for w1,w2,p in [(2,5,2)] + ] + \ + [ + SupervisedTower("%d tower on top of %dx%d bricks"%(t,w1,w2), + """ + ((for j %d + (embed (for i %d h (r 6))) + (embed (r 3) (for i %d h (r 6)))) + (r 6) + %s (r 4) %s (l 2) h) + """%(w1,w2,w2, + "v "*t, "v "*t)) + for t,w1,w2 in [(4,1,3)] ] + + + + everything = arches + simpleLoops + Bridges + archesStacks + aqueducts + offsetArches + pyramids + bricks + staircase2 + staircase1 + compositions + if False: + for t in everything: + delattr(t,'original') + return everything + +def dSLDemo(): + DSL = {} + bricks = Program.parse("(lambda (lambda (tower_loopM $0 (lambda (lambda (moveHand 3 (reverseHand (tower_loopM $3 (lambda (lambda (moveHand 6 (3x1 $0)))) $0))))))))") + DSL["bricks"] = [ [bricks.runWithArguments([x,y + 4,_empty_tower,TowerState()])[1] + for y in range(6, 6 + 3*4, 3) ] + for x in [3,8] ] + dimensionality = {} + dimensionality["bricks"] = 2 + + bridge = Program.parse("(lambda (lambda (tower_loopM $0 (lambda (lambda (#(lambda (#(lambda (lambda (lambda (tower_loopM $0 (lambda (lambda (1x3 (moveHand 4 ($3 $0))))) (moveHand 2 (3x1 $2)))))) $0 (lambda (reverseHand $0)))) (moveHand 4 $0) $3))))))") + DSL["bridge"] = [ [bridge.runWithArguments([x,y,_empty_tower,TowerState()])[1] + for x in range(4,4 + 2*4,2) ] + for y in [4,9] ] + dimensionality["bridge"] = 2 + + staircase = Program.parse("(lambda (tower_loopM $0 (lambda (lambda (#(lambda (lambda (tower_loopM $1 (lambda (lambda (tower_embed (lambda (#(lambda (1x3 (moveHand 4 (1x3 (reverseHand (moveHand 2 (3x1 $0))))))) $0)) $0))) $0))) $1 (moveHand 6 $0))))))") + DSL["staircase"] = [ staircase.runWithArguments([n,_empty_tower,TowerState()])[1] + for n in range(4,5 + 3) ] + + pyramid = Program.parse("(lambda (tower_loopM $0 (lambda (lambda (moveHand 6 (tower_embed (lambda (reverseHand ((lambda (lambda (tower_loopM $1 (lambda (lambda (moveHand $2 (1x3 (moveHand 2 (tower_embed (lambda (moveHand 2 (1x3 $0))) (3x1 $0)))))))))) $2 1 $0))) $0))))))") + DSL["pyramid"] = [ pyramid.runWithArguments([n,_empty_tower,TowerState()])[1] + for n in range(4,5 + 3) ] + + towerArch = Program.parse("(lambda (lambda ((lambda ((lambda (lambda (lambda (tower_loopM $0 (lambda (lambda (1x3 (moveHand 4 ($3 $0))))) (moveHand 2 (3x1 $2)))))) $0 (lambda (reverseHand (1x3 $0))))) $0 $1)))") + DSL["towerArch"] = [ towerArch.runWithArguments([n,_empty_tower,TowerState()])[1] + for n in range(4,5 + 3) ] + + images = {} + for k,v in DSL.items(): + d = dimensionality.get(k,1) + if d == 1: + i = montageMatrix([[renderPlan(p, pretty=True, Lego=True) for p in v]]) + elif d == 2: + i = montageMatrix([[renderPlan(p, pretty=True, Lego=True) for p in ps] for ps in v] ) + else: assert False + + images[k] = i + + return images + +if __name__ == "__main__": + from pylab import imshow,show + from dreamcoder.domains.tower.tower_common import * + + ts = makeSupervisedTasks() + print(len(ts),"total tasks") + print("maximum plan length",max(len(f.plan) for f in ts )) + print("maximum tower length",max(towerLength(f.plan) for f in ts )) + print("maximum tower height",max(towerHeight(simulateWithoutPhysics(f.plan)) for f in ts )) + SupervisedTower.exportMany("/tmp/every_tower.png",ts,shuffle=False) + + for j,t in enumerate(ts): + t.exportImage("/tmp/tower_%d.png"%j, + drawHand=False) + + for k,v in dSLDemo().items(): + import scipy.misc + scipy.misc.imsave(f"/tmp/tower_dsl_{k}.png", v) + + exampleTowers = [103,104,105,93,73, + 50,67,35,43,106] + SupervisedTower.exportMany("/tmp/tower_montage.png", + [ts[n] for n in exampleTowers ], + columns=5, + shuffle=False) + assert False + + + keywords = ["pyramid", + "on top of", + "arch 1/2 pyramid", + "brickwall", + "staircase", + "bridge", + "aqueduct", + "spaced", + "spaced", + "arch stack"] + for n in range(100): + examples = [] + for kw in keywords: + if kw == "on top of": + examples = examples + list(filter(lambda t: kw in str(t), ts)) + else: + examples.append(random.choice(list(filter(lambda t: kw in str(t), ts)))) + + random.shuffle(examples) + SupervisedTower.exportMany("/tmp/tower10_%d.png"%n,examples, + columns=int(len(examples)/2)) + + + diff --git a/dreamcoder/domains/tower/towerPrimitives.py b/dreamcoder/domains/tower/towerPrimitives.py new file mode 100644 index 0000000000000000000000000000000000000000..31ea99fbd8885b54c6c0c7e50fcf41d170e49eda --- /dev/null +++ b/dreamcoder/domains/tower/towerPrimitives.py @@ -0,0 +1,152 @@ +from dreamcoder.program import * + + +class TowerState: + def __init__(self, hand=0, orientation=1, history=None): + # List of (State|Block) + self.history = history + self.hand = hand + self.orientation = orientation + def __str__(self): return f"S(h={self.hand},o={self.orientation})" + def __repr__(self): return str(self) + def left(self, n): + return TowerState(hand=self.hand - n, orientation=self.orientation, + history=self.history if self.history is None \ + else self.history + [self]) + def right(self, n): return TowerState(hand=self.hand + n, orientation=self.orientation, + history=self.history if self.history is None \ + else self.history + [self]) + def reverse(self): return TowerState(hand=self.hand, orientation=-1*self.orientation, + history=self.history if self.history is None \ + else self.history + [self]) + def move(self, n): return TowerState(hand=self.hand + n*self.orientation, orientation=self.orientation, + history=self.history if self.history is None \ + else self.history + [self]) + + def recordBlock(self, b): + if self.history is None: return self + return TowerState(hand=self.hand, + orientation=self.orientation, + history=self.history + [b]) + + +def _empty_tower(h): return (h,[]) +def _left(d): + return lambda k: lambda s: k(s.left(d)) +def _right(d): + return lambda k: lambda s: k(s.right(d)) +def _loop(n): + def f(start, stop, body, state): + if start >= stop: return state,[] + state, thisIteration = body(start)(state) + state, laterIterations = f(start + 1, stop, body, state) + return state, thisIteration + laterIterations + def sequence(b,k,h): + h,bodyBlocks = f(0,n,b,h) + h,laterBlocks = k(h) + return h,bodyBlocks+laterBlocks + return lambda b: lambda k: lambda h: sequence(b,k,h) +def _simpleLoop(n): + def f(start, body, k): + if start >= n: return k + return body(start)(f(start + 1, body, k)) + return lambda b: lambda k: f(0,b,k) +def _embed(body): + def f(k): + def g(hand): + bodyHand, bodyActions = body(_empty_tower)(hand) + # Record history if we are doing that + if hand.history is not None: + hand = TowerState(hand=hand.hand, + orientation=hand.orientation, + history=bodyHand.history) + hand, laterActions = k(hand) + return hand, bodyActions + laterActions + return g + return f +def _moveHand(n): + return lambda k: lambda s: k(s.move(n)) +def _reverseHand(k): + return lambda s: k(s.reverse()) + +class TowerContinuation(object): + def __init__(self, x, w, h): + self.x = x + self.w = w*2 + self.h = h*2 + def __call__(self, k): + def f(hand): + thisAction = [(self.x + hand.hand,self.w,self.h)] + hand = hand.recordBlock(thisAction[0]) + hand, rest = k(hand) + return hand, thisAction + rest + return f + +# name, dimensions +blocks = { + # "1x1": (1.,1.), + # "2x1": (2.,1.), + # "1x2": (1.,2.), + "3x1": (3, 1), + "1x3": (1, 3), + # "4x1": (4.,1.), + # "1x4": (1.,4.) +} + + +ttower = baseType("tower") +common_primitives = [ + Primitive("tower_loopM", arrow(tint, arrow(tint, ttower, ttower), ttower, ttower), _simpleLoop), + Primitive("tower_embed", arrow(arrow(ttower,ttower), ttower, ttower), _embed), +] + [Primitive(name, arrow(ttower,ttower), TowerContinuation(0, w, h)) + for name, (w, h) in blocks.items()] + \ + [Primitive(str(j), tint, j) for j in range(1,9) ] +primitives = common_primitives + [ + Primitive("left", arrow(tint, ttower, ttower), _left), + Primitive("right", arrow(tint, ttower, ttower), _right) + ] + +new_primitives = common_primitives + [ + Primitive("moveHand", arrow(tint, ttower, ttower), _moveHand), + Primitive("reverseHand", arrow(ttower, ttower), _reverseHand) + ] + +def executeTower(p, timeout=None): + try: + return runWithTimeout(lambda : p.evaluate([])(_empty_tower)(TowerState())[1], + timeout=timeout) + except RunWithTimeout: return None + except: return None + +def animateTower(exportPrefix, p): + print(exportPrefix, p) + from dreamcoder.domains.tower.tower_common import renderPlan + state,actions = p.evaluate([])(_empty_tower)(TowerState(history=[])) + print(actions) + trajectory = state.history + [state] + print(trajectory) + print() + + assert tuple(z for z in trajectory if not isinstance(z, TowerState) ) == tuple(actions) + + def hd(n): + h = 0 + for state in trajectory[:n]: + if isinstance(state, TowerState): + h = state.hand + return h + animation = [renderPlan([b for b in trajectory[:n] if not isinstance(b, TowerState)], + pretty=True, Lego=True, + drawHand=hd(n), + masterPlan=actions, + randomSeed=hash(exportPrefix)) + for n in range(0,len(trajectory) + 1)] + import scipy.misc + import random + r = random.random() + paths = [] + for n in range(len(animation)): + paths.append(f"{exportPrefix}_{n}.png") + scipy.misc.imsave(paths[-1], animation[n]) + os.system(f"convert -delay 10 -loop 0 {' '.join(paths)} {exportPrefix}.gif") +# os.system(f"rm {' '.join(paths)}") diff --git a/dreamcoder/domains/tower/tower_common.py b/dreamcoder/domains/tower/tower_common.py new file mode 100644 index 0000000000000000000000000000000000000000..81c5dd41ff09a22b87caad0c5bae7732e9165a02 --- /dev/null +++ b/dreamcoder/domains/tower/tower_common.py @@ -0,0 +1,173 @@ +import random +import math +from dreamcoder.utilities import * + +def simulateWithoutPhysics(plan,ordered=True): + def overlap(b1, + b2): + (x,w,h) = b1 + (x_,y_,w_,h_) = b2 + x1 = x - w/2 + x2 = x + w/2 + x1_ = x_ - w_/2 + x2_ = x_ + w_/2 + if x1_ >= x2 or x1 >= x2_: return None + assert h%2 == 0 and h_%2 == 0 + return y_ + h_//2 + h//2 + def lowestPossibleHeight(b): + h = b[2] + assert h%2 == 0 + return int(h/2) + def placeAtHeight(b,y): + (x,w,h) = b + return (x,y,w,h) + def placeBlock(world, block): + lowest = max([lowestPossibleHeight(block)] + \ + [overlap(block,other) + for other in world + if overlap(block,other) is not None]) + world.append(placeAtHeight(block, lowest)) + + w = [] + for p in plan: placeBlock(w,p) + if ordered: w = list(sorted(w)) + return w + +def centerTower(t,hand=None, masterPlan=None): + + if len(t) == 0: + if hand is None: + return t + else: + return t, hand + def getCenter(t): + x1 = max(x for x, _, _ in t) + x0 = min(x for x, _, _ in t) + c = int((x1 - x0) / 2.0) + x0 + return c + c = getCenter(masterPlan or t) + t = [(x - c, w, h) for x, w, h in t] + if hand is None: + return t + else: + return t, hand - c + +def towerLength(t): + if len(t) == 0: return 0 + x1 = max(x for x, _, _ in t) + x0 = min(x for x, _, _ in t) + return x1 - x0 + +def towerHeight(t): + y1 = max(y + h/2 for _, y, _, h in t ) + y0 = min(y - h/2 for _, y, _, h in t ) + return y1 - y0 + + + +def renderPlan(plan, resolution=256, window=64, floorHeight=2, borderSize=1, bodyColor=(0.,1.,1.), + borderColor=(1.,0.,0.), + truncate=None, randomSeed=None, + masterPlan=None, + pretty=False, Lego=False, + drawHand=None): + import numpy as np + + if Lego: assert pretty + + if drawHand is not None and drawHand is not False: + plan, drawHand = centerTower(plan, drawHand, + masterPlan=masterPlan) + else: + plan = centerTower(plan,masterPlan=masterPlan) + + world = simulateWithoutPhysics(plan, + ordered=randomSeed is None) + if truncate is not None: world = world[:truncate] + a = np.zeros((resolution, resolution, 3)) + + def transform(x,y): + y = resolution - y*resolution/float(window) + x = resolution/2 + x*resolution/float(window) + return int(x + 0.5),int(y + 0.5) + def clip(p): + if p < 0: return 0 + if p >= resolution: return resolution - 1 + return int(p + 0.5) + def clear(x,y): + for xp,yp,wp,hp in world: + if x < xp + wp/2. and \ + x > xp - wp/2. and \ + y < yp + hp/2. and \ + y > yp - hp/2.: + return False + return True + def bump(x,y,c): + size = 0.5*resolution/window + x,y = transform(x,y) + y -= floorHeight + y1 = y + y2 = y - size + x1 = x - size/2 + x2 = x + size/2 + a[clip(y2) : clip(y1), + clip(x1) : clip(x2), + :] = c + + + if randomSeed is not None: + randomNumbers = random.Random(randomSeed) + def _color(): + if randomSeed is None: + return random.random()*0.7 + 0.3 + else: + return randomNumbers.random()*0.7 + 0.3 + def color(): + return (_color(),_color(),_color()) + + def rectangle(x1,x2,y1,y2,c,cp=None): + x1,y1 = transform(x1,y1) + x2,y2 = transform(x2,y2) + y1 -= floorHeight + y2 -= floorHeight + a[clip(y2) : clip(y1), + clip(x1) : clip(x2), + :] = c + if cp is not None: + a[clip(y2 + borderSize) : clip(y1 - borderSize), + clip(x1 + borderSize) : clip(x2 - borderSize), + :] = cp + + for x,y,w,h in world: + x1,y1 = x - w/2., y - h/2. + x2,y2 = x + w/2., y + h/2. + if pretty: + thisColor = color() + rectangle(x1,x2,y1,y2, + thisColor) + if Lego: + bumps = w + for nb in range(bumps): + nx = x - w/2. + 0.5 + nb + ny = y + h/2. + 0.00001 + if clear(nx,ny): + bump(nx,ny,thisColor) + else: + rectangle(x1,x2,y1,y2, + borderColor, bodyColor) + + a[resolution - floorHeight:,:,:] = 1. + if drawHand is not None: + if not Lego: + dh = 0.25 + rectangle(drawHand - dh, + drawHand + dh, + -99999, 99999, + (0,1,0)) + else: + rectangle(drawHand - 1,drawHand + 1, + 43,45,(1,1,1)) + + return a + + diff --git a/dreamcoder/dreamcoder.py b/dreamcoder/dreamcoder.py new file mode 100644 index 0000000000000000000000000000000000000000..d314b6ed63483956c40f641b43c487b1796a8a9c --- /dev/null +++ b/dreamcoder/dreamcoder.py @@ -0,0 +1,1074 @@ +import datetime + +import dill + +from dreamcoder.compression import induceGrammar +from dreamcoder.utilities import * +try: + from dreamcoder.recognition import * +except: + eprint("Failure loading recognition - only acceptable if using pypy ") +from dreamcoder.enumeration import * +from dreamcoder.fragmentGrammar import * +from dreamcoder.taskBatcher import * +from dreamcoder.primitiveGraph import graphPrimitives +from dreamcoder.dreaming import backgroundHelmholtzEnumeration + + +class ECResult(): + def __init__(self, _=None, + frontiersOverTime=None, + testingSearchTime=None, + learningCurve=None, + grammars=None, + taskSolutions=None, + averageDescriptionLength=None, + parameters=None, + recognitionModel=None, + searchTimes=None, + recognitionTaskMetrics=None, + numTestingTasks=None, + sumMaxll=None, + testingSumMaxll=None, + hitsAtEachWake=None, + timesAtEachWake=None, + allFrontiers=None): + self.frontiersOverTime = {} # Map from task to [frontier at iteration 1, frontier at iteration 2, ...] + self.hitsAtEachWake = hitsAtEachWake or [] + self.timesAtEachWake = timesAtEachWake or [] + self.testingSearchTime = testingSearchTime or [] + self.searchTimes = searchTimes or [] + self.trainSearchTime = {} # map from task to search time + self.testSearchTime = {} # map from task to search time + self.recognitionTaskMetrics = recognitionTaskMetrics or {} + self.recognitionModel = recognitionModel + self.averageDescriptionLength = averageDescriptionLength or [] + self.parameters = parameters + self.learningCurve = learningCurve or [] + self.grammars = grammars or [] + self.taskSolutions = taskSolutions or {} + self.numTestingTasks = numTestingTasks + self.sumMaxll = sumMaxll or [] #TODO name change + self.testingSumMaxll = testingSumMaxll or [] #TODO name change + self.allFrontiers = allFrontiers or {} + + def __repr__(self): + attrs = ["{}={}".format(k, v) for k, v in self.__dict__.items()] + return "ECResult({})".format(", ".join(attrs)) + + def getTestingTasks(self): + testing = [] + training = self.taskSolutions.keys() + for t in self.recognitionTaskMetrics: + if isinstance(t, Task) and t not in training: testing.append(t) + return testing + + + def recordFrontier(self, frontier): + t = frontier.task + if t not in self.frontiersOverTime: self.frontiersOverTime[t] = [] + self.frontiersOverTime[t].append(frontier) + + # Linux does not like files that have more than 256 characters + # So when exporting the results we abbreviate the parameters + abbreviations = {"frontierSize": "fs", + "useDSL": "DSL", + "taskReranker": "TRR", + "matrixRank": "MR", + "reuseRecognition": "RR", + "ensembleSize": "ES", + "recognitionTimeout": "RT", + "recognitionSteps": "RS", + "iterations": "it", + "maximumFrontier": "MF", + "pseudoCounts": "pc", + "auxiliaryLoss": "aux", + "structurePenalty": "L", + "helmholtzRatio": "HR", + "biasOptimal": "BO", + "contextual": "CO", + "topK": "K", + "enumerationTimeout": "ET", + "useRecognitionModel": "rec", + "use_ll_cutoff": "llcut", + "topk_use_only_likelihood": "topkNotMAP", + "activation": "act", + "storeTaskMetrics": 'STM', + "topkNotMAP": "tknm", + "rewriteTaskMetrics": "RW", + 'taskBatchSize': 'batch'} + + @staticmethod + def abbreviate(parameter): return ECResult.abbreviations.get(parameter, parameter) + + @staticmethod + def parameterOfAbbreviation(abbreviation): + return ECResult.abbreviationToParameter.get(abbreviation, abbreviation) + + @staticmethod + def clearRecognitionModel(path): + SUFFIX = '.pickle' + assert path.endswith(SUFFIX) + + with open(path,'rb') as handle: + result = dill.load(handle) + + result.recognitionModel = None + + clearedPath = path[:-len(SUFFIX)] + "_graph=True" + SUFFIX + with open(clearedPath,'wb') as handle: + result = dill.dump(result, handle) + eprint(" [+] Cleared recognition model from:") + eprint(" %s"%path) + eprint(" and exported to:") + eprint(" %s"%clearedPath) + eprint(" Use this one for graphing.") + + +ECResult.abbreviationToParameter = { + v: k for k, v in ECResult.abbreviations.items()} + + +def explorationCompression(*arguments, **keywords): + for r in ecIterator(*arguments, **keywords): + pass + return r + + +def ecIterator(grammar, tasks, + _=None, + useDSL=True, + noConsolidation=False, + mask=False, + seed=0, + addFullTaskMetrics=False, + matrixRank=None, + solver='ocaml', + compressor="rust", + biasOptimal=False, + contextual=False, + testingTasks=[], + iterations=None, + resume=None, + enumerationTimeout=None, + testingTimeout=None, + testEvery=1, + reuseRecognition=False, + ensembleSize=1, + useRecognitionModel=True, + recognitionTimeout=None, + recognitionSteps=None, + helmholtzRatio=0., + featureExtractor=None, + activation='relu', + topK=1, + topk_use_only_likelihood=False, + use_map_search_times=True, + maximumFrontier=None, + pseudoCounts=1.0, aic=1.0, + structurePenalty=0.001, arity=0, + evaluationTimeout=1.0, # seconds + taskBatchSize=None, + taskReranker='default', + CPUs=1, + cuda=False, + message="", + outputPrefix=None, + storeTaskMetrics=False, + rewriteTaskMetrics=True, + auxiliaryLoss=False, + custom_wake_generative=None): + if enumerationTimeout is None: + eprint( + "Please specify an enumeration timeout:", + "explorationCompression(..., enumerationTimeout = ..., ...)") + assert False + if iterations is None: + eprint( + "Please specify a iteration count: explorationCompression(..., iterations = ...)") + assert False + if useRecognitionModel and featureExtractor is None: + eprint("Warning: Recognition model needs feature extractor.", + "Ignoring recognition model.") + useRecognitionModel = False + if ensembleSize > 1 and not useRecognitionModel: + eprint("Warning: ensemble size requires using the recognition model, aborting.") + assert False + if biasOptimal and not useRecognitionModel: + eprint("Bias optimality only applies to recognition models, aborting.") + assert False + if contextual and not useRecognitionModel: + eprint("Contextual only applies to recognition models, aborting") + assert False + if reuseRecognition and not useRecognitionModel: + eprint("Reuse of recognition model weights at successive iteration only applies to recognition models, aborting") + assert False + if matrixRank is not None and not contextual: + eprint("Matrix rank only applies to contextual recognition models, aborting") + assert False + assert useDSL or useRecognitionModel, "You specified that you didn't want to use the DSL AND you don't want to use the recognition model. Figure out what you want to use." + if testingTimeout > 0 and len(testingTasks) == 0: + eprint("You specified a testingTimeout, but did not provide any held out testing tasks, aborting.") + assert False + + # We save the parameters that were passed into EC + # This is for the purpose of exporting the results of the experiment + parameters = { + k: v for k, + v in locals().items() if k not in { + "tasks", + "use_map_search_times", + "seed", + "activation", + "grammar", + "cuda", + "_", + "testingTimeout", + "testEvery", + "message", + "CPUs", + "outputPrefix", + "resume", + "resumeFrontierSize", + "addFullTaskMetrics", + "featureExtractor", + "evaluationTimeout", + "testingTasks", + "compressor", + "custom_wake_generative"} and v is not None} + if not useRecognitionModel: + for k in {"helmholtzRatio", "recognitionTimeout", "biasOptimal", "mask", + "contextual", "matrixRank", "reuseRecognition", "auxiliaryLoss", "ensembleSize"}: + if k in parameters: del parameters[k] + else: del parameters["useRecognitionModel"]; + if useRecognitionModel and not contextual: + if "matrixRank" in parameters: + del parameters["matrixRank"] + if "mask" in parameters: + del parameters["mask"] + if not mask and 'mask' in parameters: del parameters["mask"] + if not auxiliaryLoss and 'auxiliaryLoss' in parameters: del parameters['auxiliaryLoss'] + if not useDSL: + for k in {"structurePenalty", "pseudoCounts", "aic"}: + del parameters[k] + else: del parameters["useDSL"] + + # Uses `parameters` to construct the checkpoint path + def checkpointPath(iteration, extra=""): + parameters["iterations"] = iteration + kvs = [ + "{}={}".format( + ECResult.abbreviate(k), + parameters[k]) for k in sorted( + parameters.keys())] + return "{}_{}{}.pickle".format(outputPrefix, "_".join(kvs), extra) + + if message: + message = " (" + message + ")" + eprint("Running EC%s on %s @ %s with %d CPUs and parameters:" % + (message, os.uname()[1], datetime.datetime.now(), CPUs)) + for k, v in parameters.items(): + eprint("\t", k, " = ", v) + eprint("\t", "evaluationTimeout", " = ", evaluationTimeout) + eprint("\t", "cuda", " = ", cuda) + eprint() + + if addFullTaskMetrics: + assert resume is not None, "--addFullTaskMetrics requires --resume" + + def reportMemory(): + eprint(f"Currently using this much memory: {getThisMemoryUsage()}") + + # Restore checkpoint + if resume is not None: + try: + resume = int(resume) + path = checkpointPath(resume) + except ValueError: + path = resume + with open(path, "rb") as handle: + result = dill.load(handle) + resume = len(result.grammars) - 1 + eprint("Loaded checkpoint from", path) + grammar = result.grammars[-1] if result.grammars else grammar + else: # Start from scratch + #for graphing of testing tasks + numTestingTasks = len(testingTasks) if len(testingTasks) != 0 else None + + result = ECResult(parameters=parameters, + grammars=[grammar], + taskSolutions={ + t: Frontier([], + task=t) for t in tasks}, + recognitionModel=None, numTestingTasks=numTestingTasks, + allFrontiers={ + t: Frontier([], + task=t) for t in tasks}) + + + # Set up the task batcher. + if taskReranker == 'default': + taskBatcher = DefaultTaskBatcher() + elif taskReranker == 'random': + taskBatcher = RandomTaskBatcher() + elif taskReranker == 'randomShuffle': + taskBatcher = RandomShuffleTaskBatcher(seed) + elif taskReranker == 'unsolved': + taskBatcher = UnsolvedTaskBatcher() + elif taskReranker == 'unsolvedEntropy': + taskBatcher = UnsolvedEntropyTaskBatcher() + elif taskReranker == 'unsolvedRandomEntropy': + taskBatcher = UnsolvedRandomEntropyTaskBatcher() + elif taskReranker == 'randomkNN': + taskBatcher = RandomkNNTaskBatcher() + elif taskReranker == 'randomLowEntropykNN': + taskBatcher = RandomLowEntropykNNTaskBatcher() + else: + eprint("Invalid task reranker: " + taskReranker + ", aborting.") + assert False + + # Check if we are just updating the full task metrics + if addFullTaskMetrics: + if testingTimeout is not None and testingTimeout > enumerationTimeout: + enumerationTimeout = testingTimeout + if result.recognitionModel is not None: + _enumerator = lambda *args, **kw: result.recognitionModel.enumerateFrontiers(*args, **kw) + else: _enumerator = lambda *args, **kw: multicoreEnumeration(result.grammars[-1], *args, **kw) + enumerator = lambda *args, **kw: _enumerator(*args, + maximumFrontier=maximumFrontier, + CPUs=CPUs, evaluationTimeout=evaluationTimeout, + solver=solver, + **kw) + trainFrontiers, _, trainingTimes = enumerator(tasks, enumerationTimeout=enumerationTimeout) + testFrontiers, _, testingTimes = enumerator(testingTasks, enumerationTimeout=testingTimeout, testing=True) + + recognizer = result.recognitionModel + updateTaskSummaryMetrics(result.recognitionTaskMetrics, trainingTimes, 'recognitionBestTimes') + updateTaskSummaryMetrics(result.recognitionTaskMetrics, recognizer.taskGrammarLogProductions(tasks), 'taskLogProductions') + updateTaskSummaryMetrics(result.recognitionTaskMetrics, recognizer.taskGrammarEntropies(tasks), 'taskGrammarEntropies') + updateTaskSummaryMetrics(result.recognitionTaskMetrics, result.recognitionModel.taskAuxiliaryLossLayer(tasks), 'taskAuxiliaryLossLayer') + + updateTaskSummaryMetrics(result.recognitionTaskMetrics, testingTimes, 'heldoutTestingTimes') + updateTaskSummaryMetrics(result.recognitionTaskMetrics, recognizer.taskGrammarLogProductions(testingTasks), 'heldoutTaskLogProductions') + updateTaskSummaryMetrics(result.recognitionTaskMetrics, recognizer.taskGrammarEntropies(testingTasks), 'heldoutTaskGrammarEntropies') + updateTaskSummaryMetrics(result.recognitionTaskMetrics, result.recognitionModel.taskAuxiliaryLossLayer(testingTasks), 'heldoutAuxiliaryLossLayer') + + updateTaskSummaryMetrics(result.recognitionTaskMetrics, {f.task: f + for f in trainFrontiers + testFrontiers + if len(f) > 0}, + 'frontier') + SUFFIX = ".pickle" + assert path.endswith(SUFFIX) + path = path[:-len(SUFFIX)] + "_FTM=True" + SUFFIX + with open(path, "wb") as handle: dill.dump(result, handle) + if useRecognitionModel: ECResult.clearRecognitionModel(path) + + sys.exit(0) + + + for j in range(resume or 0, iterations): + if storeTaskMetrics and rewriteTaskMetrics: + eprint("Resetting task metrics for next iteration.") + result.recognitionTaskMetrics = {} + + reportMemory() + + # Evaluate on held out tasks if we have them + if testingTimeout > 0 and ((j % testEvery == 0) or (j == iterations - 1)): + eprint("Evaluating on held out testing tasks for iteration: %d" % (j)) + evaluateOnTestingTasks(result, testingTasks, grammar, + CPUs=CPUs, maximumFrontier=maximumFrontier, + solver=solver, + enumerationTimeout=testingTimeout, evaluationTimeout=evaluationTimeout) + # If we have to also enumerate Helmholtz frontiers, + # do this extra sneaky in the background + if useRecognitionModel and biasOptimal and helmholtzRatio > 0 and \ + all( str(p) != "REAL" for p in grammar.primitives ): # real numbers don't support this + # the DSL is fixed, so the dreams are also fixed. don't recompute them. + if useDSL or 'helmholtzFrontiers' not in locals(): + helmholtzFrontiers = backgroundHelmholtzEnumeration(tasks, grammar, enumerationTimeout, + evaluationTimeout=evaluationTimeout, + special=featureExtractor.special) + else: + print("Reusing dreams from previous iteration.") + else: + helmholtzFrontiers = lambda: [] + + reportMemory() + + # Get waking task batch. + wakingTaskBatch = taskBatcher.getTaskBatch(result, tasks, taskBatchSize, j) + eprint("Using a waking task batch of size: " + str(len(wakingTaskBatch))) + + # WAKING UP + if useDSL: + wake_generative = custom_wake_generative if custom_wake_generative is not None else default_wake_generative + topDownFrontiers, times = wake_generative(grammar, wakingTaskBatch, + solver=solver, + maximumFrontier=maximumFrontier, + enumerationTimeout=enumerationTimeout, + CPUs=CPUs, + evaluationTimeout=evaluationTimeout) + result.trainSearchTime = {t: tm for t, tm in times.items() if tm is not None} + else: + eprint("Skipping top-down enumeration because we are not using the generative model") + topDownFrontiers, times = [], {t: None for t in wakingTaskBatch } + + tasksHitTopDown = {f.task for f in topDownFrontiers if not f.empty} + result.hitsAtEachWake.append(len(tasksHitTopDown)) + + reportMemory() + + # Combine topDownFrontiers from this task batch with all frontiers. + for f in topDownFrontiers: + if f.task not in result.allFrontiers: continue # backward compatibility with old checkpoints + result.allFrontiers[f.task] = result.allFrontiers[f.task].combine(f).topK(maximumFrontier) + + eprint("Frontiers discovered top down: " + str(len(tasksHitTopDown))) + eprint("Total frontiers: " + str(len([f for f in result.allFrontiers.values() if not f.empty]))) + + # Train + use recognition model + if useRecognitionModel: + # Should we initialize the weights to be what they were before? + previousRecognitionModel = None + if reuseRecognition and result.recognitionModel is not None: + previousRecognitionModel = result.recognitionModel + + thisRatio = helmholtzRatio + #if j == 0 and not biasOptimal: thisRatio = 0 + if all( f.empty for f in result.allFrontiers.values() ): thisRatio = 1. + + tasksHitBottomUp = \ + sleep_recognition(result, grammar, wakingTaskBatch, tasks, testingTasks, result.allFrontiers.values(), + ensembleSize=ensembleSize, featureExtractor=featureExtractor, mask=mask, + activation=activation, contextual=contextual, biasOptimal=biasOptimal, + previousRecognitionModel=previousRecognitionModel, matrixRank=matrixRank, + timeout=recognitionTimeout, evaluationTimeout=evaluationTimeout, + enumerationTimeout=enumerationTimeout, + helmholtzRatio=thisRatio, helmholtzFrontiers=helmholtzFrontiers(), + auxiliaryLoss=auxiliaryLoss, cuda=cuda, CPUs=CPUs, solver=solver, + recognitionSteps=recognitionSteps, maximumFrontier=maximumFrontier) + + showHitMatrix(tasksHitTopDown, tasksHitBottomUp, wakingTaskBatch) + + # Record the new topK solutions + result.taskSolutions = {f.task: f.topK(topK) + for f in result.allFrontiers.values()} + for f in result.allFrontiers.values(): result.recordFrontier(f) + result.learningCurve += [ + sum(f is not None and not f.empty for f in result.taskSolutions.values())] + updateTaskSummaryMetrics(result.recognitionTaskMetrics, {f.task: f + for f in result.allFrontiers.values() + if len(f) > 0}, + 'frontier') + + # Sleep-G + if useDSL and not(noConsolidation): + eprint(f"Currently using this much memory: {getThisMemoryUsage()}") + grammar = consolidate(result, grammar, topK=topK, pseudoCounts=pseudoCounts, arity=arity, aic=aic, + structurePenalty=structurePenalty, compressor=compressor, CPUs=CPUs, + iteration=j) + eprint(f"Currently using this much memory: {getThisMemoryUsage()}") + else: + eprint("Skipping consolidation.") + result.grammars.append(grammar) + + if outputPrefix is not None: + path = checkpointPath(j + 1) + with open(path, "wb") as handle: + try: + dill.dump(result, handle) + except TypeError as e: + eprint(result) + assert(False) + eprint("Exported checkpoint to", path) + if useRecognitionModel: + ECResult.clearRecognitionModel(path) + + graphPrimitives(result, "%s_primitives_%d_"%(outputPrefix,j)) + + + yield result + + +def showHitMatrix(top, bottom, tasks): + tasks = set(tasks) + + total = bottom | top + eprint(len(total), "/", len(tasks), "total hit tasks") + bottomMiss = tasks - bottom + topMiss = tasks - top + + eprint("{: <13s}{: ^13s}{: ^13s}".format("", "bottom miss", "bottom hit")) + eprint("{: <13s}{: ^13d}{: ^13d}".format("top miss", + len(bottomMiss & topMiss), + len(bottom & topMiss))) + eprint("{: <13s}{: ^13d}{: ^13d}".format("top hit", + len(top & bottomMiss), + len(top & bottom))) + +def evaluateOnTestingTasks(result, testingTasks, grammar, _=None, + CPUs=None, solver=None, maximumFrontier=None, enumerationTimeout=None, evaluationTimeout=None): + if result.recognitionModel is not None: + recognizer = result.recognitionModel + testingFrontiers, times = \ + recognizer.enumerateFrontiers(testingTasks, + CPUs=CPUs, + solver=solver, + maximumFrontier=maximumFrontier, + enumerationTimeout=enumerationTimeout, + evaluationTimeout=evaluationTimeout, + testing=True) + updateTaskSummaryMetrics(result.recognitionTaskMetrics, recognizer.taskGrammarLogProductions(testingTasks), 'heldoutTaskLogProductions') + updateTaskSummaryMetrics(result.recognitionTaskMetrics, recognizer.taskGrammarEntropies(testingTasks), 'heldoutTaskGrammarEntropies') + updateTaskSummaryMetrics(result.recognitionTaskMetrics, recognizer.taskGrammarEntropies(testingTasks), 'heldoutTaskGrammarEntropies') + else: + testingFrontiers, times = multicoreEnumeration(grammar, testingTasks, + solver=solver, + maximumFrontier=maximumFrontier, + enumerationTimeout=enumerationTimeout, + CPUs=CPUs, + evaluationTimeout=evaluationTimeout, + testing=True) + updateTaskSummaryMetrics(result.recognitionTaskMetrics, times, 'heldoutTestingTimes') + updateTaskSummaryMetrics(result.recognitionTaskMetrics, + {f.task: f for f in testingFrontiers if len(f) > 0 }, + 'frontier') + for f in testingFrontiers: result.recordFrontier(f) + result.testSearchTime = {t: tm for t, tm in times.items() if tm is not None} + times = [t for t in times.values() if t is not None ] + eprint("\n".join(f.summarize() for f in testingFrontiers)) + summaryStatistics("Testing tasks", times) + eprint("Hits %d/%d testing tasks" % (len(times), len(testingTasks))) + result.testingSearchTime.append(times) + + +def default_wake_generative(grammar, tasks, + maximumFrontier=None, + enumerationTimeout=None, + CPUs=None, + solver=None, + evaluationTimeout=None): + topDownFrontiers, times = multicoreEnumeration(grammar, tasks, + maximumFrontier=maximumFrontier, + enumerationTimeout=enumerationTimeout, + CPUs=CPUs, + solver=solver, + evaluationTimeout=evaluationTimeout) + eprint("Generative model enumeration results:") + eprint(Frontier.describe(topDownFrontiers)) + summaryStatistics("Generative model", [t for t in times.values() if t is not None]) + return topDownFrontiers, times + +def sleep_recognition(result, grammar, taskBatch, tasks, testingTasks, allFrontiers, _=None, + ensembleSize=1, featureExtractor=None, matrixRank=None, mask=False, + activation=None, contextual=True, biasOptimal=True, + previousRecognitionModel=None, recognitionSteps=None, + timeout=None, enumerationTimeout=None, evaluationTimeout=None, + helmholtzRatio=None, helmholtzFrontiers=None, maximumFrontier=None, + auxiliaryLoss=None, cuda=None, CPUs=None, solver=None): + eprint("Using an ensemble size of %d. Note that we will only store and test on the best recognition model." % ensembleSize) + + featureExtractorObjects = [featureExtractor(tasks, testingTasks=testingTasks, cuda=cuda) for i in range(ensembleSize)] + recognizers = [RecognitionModel(featureExtractorObjects[i], + grammar, + mask=mask, + rank=matrixRank, + activation=activation, + cuda=cuda, + contextual=contextual, + previousRecognitionModel=previousRecognitionModel, + id=i) for i in range(ensembleSize)] + eprint(f"Currently using this much memory: {getThisMemoryUsage()}") + trainedRecognizers = parallelMap(min(CPUs,len(recognizers)), + lambda recognizer: recognizer.train(allFrontiers, + biasOptimal=biasOptimal, + helmholtzFrontiers=helmholtzFrontiers, + CPUs=CPUs, + evaluationTimeout=evaluationTimeout, + timeout=timeout, + steps=recognitionSteps, + helmholtzRatio=helmholtzRatio, + auxLoss=auxiliaryLoss, + vectorized=True), + recognizers, + seedRandom=True) + eprint(f"Currently using this much memory: {getThisMemoryUsage()}") + # Enumerate frontiers for each of the recognizers. + eprint("Trained an ensemble of %d recognition models, now enumerating." % len(trainedRecognizers)) + ensembleFrontiers, ensembleTimes, ensembleRecognitionTimes = [], [], [] + mostTasks = 0 + bestRecognizer = None + totalTasksHitBottomUp = set() + for recIndex, recognizer in enumerate(trainedRecognizers): + eprint("Enumerating from recognizer %d of %d" % (recIndex, len(trainedRecognizers))) + bottomupFrontiers, allRecognitionTimes = \ + recognizer.enumerateFrontiers(taskBatch, + CPUs=CPUs, + maximumFrontier=maximumFrontier, + enumerationTimeout=enumerationTimeout, + evaluationTimeout=evaluationTimeout, + solver=solver) + ensembleFrontiers.append(bottomupFrontiers) + ensembleTimes.append([t for t in allRecognitionTimes.values() if t is not None]) + ensembleRecognitionTimes.append(allRecognitionTimes) + + recognizerTasksHitBottomUp = {f.task for f in bottomupFrontiers if not f.empty} + totalTasksHitBottomUp.update(recognizerTasksHitBottomUp) + eprint("Recognizer %d solved %d/%d tasks; total tasks solved is now %d." % (recIndex, len(recognizerTasksHitBottomUp), len(tasks), len(totalTasksHitBottomUp))) + if len(recognizerTasksHitBottomUp) >= mostTasks: + # TODO (cathywong): could consider keeping the one that put the highest likelihood on the solved tasks. + bestRecognizer = recIndex + + # Store the recognizer that discovers the most frontiers in the result. + eprint("Best recognizer: %d." % bestRecognizer) + result.recognitionModel = trainedRecognizers[bestRecognizer] + result.trainSearchTime = {tk: tm for tk, tm in ensembleRecognitionTimes[bestRecognizer].items() + if tm is not None} + updateTaskSummaryMetrics(result.recognitionTaskMetrics, ensembleRecognitionTimes[bestRecognizer], 'recognitionBestTimes') + updateTaskSummaryMetrics(result.recognitionTaskMetrics, result.recognitionModel.taskHiddenStates(tasks), 'hiddenState') + updateTaskSummaryMetrics(result.recognitionTaskMetrics, result.recognitionModel.taskGrammarLogProductions(tasks), 'taskLogProductions') + updateTaskSummaryMetrics(result.recognitionTaskMetrics, result.recognitionModel.taskGrammarEntropies(tasks), 'taskGrammarEntropies') + if contextual: + updateTaskSummaryMetrics(result.recognitionTaskMetrics, + result.recognitionModel.taskGrammarStartProductions(tasks), + 'startProductions') + + result.hitsAtEachWake.append(len(totalTasksHitBottomUp)) + eprint(f"Currently using this much memory: {getThisMemoryUsage()}") + + """ Rescore and combine the frontiers across the ensemble of recognition models.""" + eprint("Recognition model enumeration results for the best recognizer.") + eprint(Frontier.describe(ensembleFrontiers[bestRecognizer])) + summaryStatistics("Recognition model", ensembleTimes[bestRecognizer]) + + eprint("Cumulative results for the full ensemble of %d recognizers: " % len(trainedRecognizers)) + # Rescore all of the ensemble frontiers according to the generative model + # and then combine w/ original frontiers + for bottomupFrontiers in ensembleFrontiers: + for b in bottomupFrontiers: + if b.task not in result.allFrontiers: continue # backwards compatibility with old checkpoints + result.allFrontiers[b.task] = result.allFrontiers[b.task].\ + combine(grammar.rescoreFrontier(b)).\ + topK(maximumFrontier) + + eprint("Frontiers discovered bottom up: " + str(len(totalTasksHitBottomUp))) + eprint("Total frontiers: " + str(len([f for f in result.allFrontiers.values() if not f.empty]))) + + result.searchTimes.append(ensembleTimes[bestRecognizer]) + if len(ensembleTimes[bestRecognizer]) > 0: + eprint("Average search time: ", int(mean(ensembleTimes[bestRecognizer]) + 0.5), + "sec.\tmedian:", int(median(ensembleTimes[bestRecognizer]) + 0.5), + "\tmax:", int(max(ensembleTimes[bestRecognizer]) + 0.5), + "\tstandard deviation", int(standardDeviation(ensembleTimes[bestRecognizer]) + 0.5)) + return totalTasksHitBottomUp + +def consolidate(result, grammar, _=None, topK=None, arity=None, pseudoCounts=None, aic=None, + structurePenalty=None, compressor=None, CPUs=None, iteration=None): + eprint("Showing the top 5 programs in each frontier being sent to the compressor:") + for f in result.allFrontiers.values(): + if f.empty: + continue + eprint(f.task) + for e in f.normalize().topK(5): + eprint("%.02f\t%s" % (e.logPosterior, e.program)) + eprint() + + # First check if we have supervision at the program level for any task that was not solved + needToSupervise = {f.task for f in result.allFrontiers.values() + if f.task.supervision is not None and f.empty} + compressionFrontiers = [f.replaceWithSupervised(grammar) if f.task in needToSupervise else f + for f in result.allFrontiers.values() ] + + if len([f for f in compressionFrontiers if not f.empty]) == 0: + eprint("No compression frontiers; not inducing a grammar this iteration.") + else: + grammar, compressionFrontiers = induceGrammar(grammar, compressionFrontiers, + topK=topK, + pseudoCounts=pseudoCounts, a=arity, + aic=aic, structurePenalty=structurePenalty, + topk_use_only_likelihood=False, + backend=compressor, CPUs=CPUs, iteration=iteration) + # Store compression frontiers in the result. + for c in compressionFrontiers: + result.allFrontiers[c.task] = c.topK(0) if c in needToSupervise else c + + + result.grammars.append(grammar) + eprint("Grammar after iteration %d:" % (iteration + 1)) + eprint(grammar) + + return grammar + + + +def commandlineArguments(_=None, + iterations=None, + enumerationTimeout=None, + testEvery=1, + topK=1, + reuseRecognition=False, + CPUs=1, + solver='ocaml', + compressor="ocaml", + useRecognitionModel=True, + recognitionTimeout=None, + activation='relu', + helmholtzRatio=1., + featureExtractor=None, + cuda=None, + maximumFrontier=None, + pseudoCounts=1.0, aic=1.0, + structurePenalty=0.001, a=0, + taskBatchSize=None, taskReranker="default", + extras=None, + storeTaskMetrics=False, + rewriteTaskMetrics=True): + if cuda is None: + cuda = torch.cuda.is_available() + print("CUDA is available?:", torch.cuda.is_available()) + print("using cuda?:", cuda) + import argparse + parser = argparse.ArgumentParser(description="") + parser.add_argument("--resume", + help="Resumes EC algorithm from checkpoint. You can either pass in the path of a checkpoint, or you can pass in the iteration to resume from, in which case it will try to figure out the path.", + default=None, + type=str) + parser.add_argument("-i", "--iterations", + help="default: %d" % iterations, + default=iterations, + type=int) + parser.add_argument("-t", "--enumerationTimeout", + default=enumerationTimeout, + help="In seconds. default: %s" % enumerationTimeout, + type=int) + parser.add_argument("-R", "--recognitionTimeout", + default=recognitionTimeout, + help="In seconds. Amount of time to train the recognition model on each iteration. Defaults to enumeration timeout.", + type=int) + parser.add_argument("-RS", "--recognitionSteps", + default=None, + help="Number of gradient steps to train the recognition model. Can be specified instead of train time.", + type=int) + parser.add_argument( + "-k", + "--topK", + default=topK, + help="When training generative and discriminative models, we train them to fit the top K programs. Ideally we would train them to fit the entire frontier, but this is often intractable. default: %d" % + topK, + type=int) + parser.add_argument("-p", "--pseudoCounts", + default=pseudoCounts, + help="default: %f" % pseudoCounts, + type=float) + parser.add_argument("-b", "--aic", + default=aic, + help="default: %f" % aic, + type=float) + parser.add_argument("-l", "--structurePenalty", + default=structurePenalty, + help="default: %f" % structurePenalty, + type=float) + parser.add_argument("-a", "--arity", + default=a, + help="default: %d" % a, + type=int) + parser.add_argument("-c", "--CPUs", + default=CPUs, + help="default: %d" % CPUs, + type=int) + parser.add_argument("--no-cuda", + action="store_false", + dest="cuda", + help="""cuda will be used if available (which it %s), + unless this is set""" % ("IS" if cuda else "ISN'T")) + parser.add_argument("-m", "--maximumFrontier", + help="""Even though we enumerate --frontierSize + programs, we might want to only keep around the very + best for performance reasons. This is a cut off on the + maximum size of the frontier that is kept around. + Default: %s""" % maximumFrontier, + type=int) + parser.add_argument("--reuseRecognition", + help="""Should we initialize recognition model weights to be what they were at the previous DreamCoder iteration? Default: %s""" % reuseRecognition, + default=reuseRecognition, + action="store_true") + parser.add_argument("--recognition", + dest="useRecognitionModel", + action="store_true", + help="""Enable bottom-up neural recognition model. + Default: %s""" % useRecognitionModel) + parser.add_argument("--ensembleSize", + dest="ensembleSize", + default=1, + help="Number of recognition models to train and enumerate from at each iteration.", + type=int) + parser.add_argument("-g", "--no-recognition", + dest="useRecognitionModel", + action="store_false", + help="""Disable bottom-up neural recognition model. + Default: %s""" % (not useRecognitionModel)) + parser.add_argument("-d", "--no-dsl", + dest="useDSL", + action="store_false", + help="""Disable DSL enumeration and updating.""") + parser.add_argument("--no-consolidation", + dest="noConsolidation", + action="store_true", + help="""Disable DSL updating.""") + parser.add_argument( + "--testingTimeout", + type=int, + dest="testingTimeout", + default=0, + help="Number of seconds we should spend evaluating on each held out testing task.") + parser.add_argument( + "--testEvery", + type=int, + dest="testEvery", + default=1, + help="Run heldout testing every X iterations." + ) + parser.add_argument( + "--seed", + type=int, + default=0, + help="Random seed. Currently this only matters for random batching strategies.") + parser.add_argument( + "--activation", + choices=[ + "relu", + "sigmoid", + "tanh"], + default=activation, + help="""Activation function for neural recognition model. + Default: %s""" % + activation) + parser.add_argument( + "--solver", + choices=[ + "ocaml", + "pypy", + "python"], + default=solver, + help="""Solver for enumeration. + Default: %s""" % + solver) + parser.add_argument( + "-r", + "--Helmholtz", + dest="helmholtzRatio", + help="""When training recognition models, what fraction of the training data should be samples from the generative model? Default %f""" % + helmholtzRatio, + default=helmholtzRatio, + type=float) + parser.add_argument( + "--compressor", + default=compressor, + choices=["pypy","rust","vs","pypy_vs","ocaml","memorize"]) + parser.add_argument( + "--matrixRank", + help="Maximum rank of bigram transition matrix for contextual recognition model. Defaults to full rank.", + default=None, + type=int) + parser.add_argument( + "--mask", + help="Unconditional bigram masking", + default=False, action="store_true") + parser.add_argument("--biasOptimal", + help="Enumerate dreams rather than sample them & bias-optimal recognition objective", + default=False, action="store_true") + parser.add_argument("--contextual", + help="bigram recognition model (default is unigram model)", + default=False, action="store_true") + parser.add_argument("--clear-recognition", + dest="clear-recognition", + help="Clears the recognition model from a checkpoint. Necessary for graphing results with recognition models, because pickle is kind of stupid sometimes.", + default=None, + type=str) + parser.add_argument("--primitive-graph", + dest="primitive-graph", + nargs='+', + help="Displays a dependency graph of the learned primitives", + default=None, + type=str) + parser.add_argument( + "--taskBatchSize", + dest="taskBatchSize", + help="Number of tasks to train on during wake. Defaults to all tasks if None.", + default=None, + type=int) + parser.add_argument( + "--taskReranker", + dest="taskReranker", + help="Reranking function used to order the tasks we train on during waking.", + choices=[ + "default", + "random", + "randomShuffle", + "unsolved", + "unsolvedEntropy", + "unsolvedRandomEntropy", + "randomkNN", + "randomLowEntropykNN"], + default=taskReranker, + type=str) + parser.add_argument( + "--storeTaskMetrics", + dest="storeTaskMetrics", + default=True, + help="Whether to store task metrics directly in the ECResults.", + action="store_true" + ) + parser.add_argument( + "--rewriteTaskMetrics", + dest="rewriteTaskMetrics", + help="Whether to rewrite a new task metrics dictionary at each iteration, rather than retaining the old.", + action="store_true" + ) + parser.add_argument("--addTaskMetrics", + dest="addTaskMetrics", + help="Creates a checkpoint with task metrics and no recognition model for graphing.", + default=None, + nargs='+', + type=str) + parser.add_argument("--auxiliary", + action="store_true", default=False, + help="Add auxiliary classification loss to recognition network training", + dest="auxiliaryLoss") + parser.add_argument("--addFullTaskMetrics", + help="Only to be used in conjunction with --resume. Loads checkpoint, solves both testing and training tasks, stores frontiers, solve times, and task metrics, and then dies.", + default=False, + action="store_true") + parser.add_argument("--countParameters", + help="Load a checkpoint then report how many parameters are in the recognition model.", + default=None, type=str) + parser.set_defaults(useRecognitionModel=useRecognitionModel, + useDSL=True, + featureExtractor=featureExtractor, + maximumFrontier=maximumFrontier, + cuda=cuda) + if extras is not None: + extras(parser) + v = vars(parser.parse_args()) + if v["clear-recognition"] is not None: + ECResult.clearRecognitionModel(v["clear-recognition"]) + sys.exit(0) + else: + del v["clear-recognition"] + + if v["primitive-graph"] is not None: + + for n,pg in enumerate(v["primitive-graph"]): + with open(pg,'rb') as handle: + result = dill.load(handle) + graphPrimitives(result,f"figures/deepProgramLearning/{sys.argv[0]}{n}",view=True) + sys.exit(0) + else: + del v["primitive-graph"] + + if v["addTaskMetrics"] is not None: + for path in v["addTaskMetrics"]: + with open(path,'rb') as handle: + result = dill.load(handle) + addTaskMetrics(result, path) + sys.exit(0) + else: + del v["addTaskMetrics"] + + if v["useRecognitionModel"] and v["recognitionTimeout"] is None: + v["recognitionTimeout"] = v["enumerationTimeout"] + + if v["countParameters"]: + with open(v["countParameters"], "rb") as handle: + result = dill.load(handle) + eprint("The recognition model has", + sum(p.numel() for p in result.recognitionModel.parameters() if p.requires_grad), + "trainable parameters and", + sum(p.numel() for p in result.recognitionModel.parameters() ), + "total parameters.\n", + "The feature extractor accounts for", + sum(p.numel() for p in result.recognitionModel.featureExtractor.parameters() ), + "of those parameters.\n", + "The grammar builder accounts for", + sum(p.numel() for p in result.recognitionModel.grammarBuilder.parameters() ), + "of those parameters.\n") + sys.exit(0) + del v["countParameters"] + + + return v + +def addTaskMetrics(result, path): + """Adds a task metrics to ECResults that were pickled without them.""" + with torch.no_grad(): return addTaskMetrics_(result, path) +def addTaskMetrics_(result, path): + SUFFIX = '.pickle' + assert path.endswith(SUFFIX) + + tasks = result.taskSolutions.keys() + everyTask = set(tasks) + for t in result.recognitionTaskMetrics: + if isinstance(t, Task) and t not in everyTask: everyTask.add(t) + + eprint(f"Found {len(tasks)} training tasks.") + eprint(f"Scrounged up {len(everyTask) - len(tasks)} testing tasks.") + if not hasattr(result, "recognitionTaskMetrics") or result.recognitionTaskMetrics is None: + result.recognitionTaskMetrics = {} + + # If task has images, store them. + if hasattr(list(tasks)[0], 'getImage'): + images = {t: t.getImage(pretty=True) for t in tasks} + updateTaskSummaryMetrics(result.recognitionTaskMetrics, images, 'taskImages') + + if hasattr(list(tasks)[0], 'highresolution'): + images = {t: t.highresolution for t in tasks} + updateTaskSummaryMetrics(result.recognitionTaskMetrics, images, 'taskImages') + + updateTaskSummaryMetrics(result.recognitionTaskMetrics, result.recognitionModel.auxiliaryPrimitiveEmbeddings(), 'auxiliaryPrimitiveEmbeddings') + updateTaskSummaryMetrics(result.recognitionTaskMetrics, result.recognitionModel.taskAuxiliaryLossLayer(tasks), 'taskAuxiliaryLossLayer') + updateTaskSummaryMetrics(result.recognitionTaskMetrics, result.recognitionModel.taskAuxiliaryLossLayer(everyTask), 'every_auxiliaryLossLayer') + + updateTaskSummaryMetrics(result.recognitionTaskMetrics, result.recognitionModel.taskGrammarFeatureLogProductions(tasks), 'grammarFeatureLogProductions') + updateTaskSummaryMetrics(result.recognitionTaskMetrics, result.recognitionModel.taskGrammarFeatureLogProductions(everyTask), 'every_grammarFeatureLogProductions') + updateTaskSummaryMetrics(result.recognitionTaskMetrics, result.recognitionModel.taskGrammarLogProductions(tasks), 'contextualLogProductions') + updateTaskSummaryMetrics(result.recognitionTaskMetrics, result.recognitionModel.taskGrammarLogProductions(everyTask), 'every_contextualLogProductions') + updateTaskSummaryMetrics(result.recognitionTaskMetrics, result.recognitionModel.taskHiddenStates(tasks), 'hiddenState') + updateTaskSummaryMetrics(result.recognitionTaskMetrics, result.recognitionModel.taskHiddenStates(everyTask), 'every_hiddenState') + g = result.grammars[-2] # the final entry in result.grammars is a grammar that we have not used yet + updateTaskSummaryMetrics(result.recognitionTaskMetrics, {f.task: f.expectedProductionUses(g) + for f in result.taskSolutions.values() + if len(f) > 0}, + 'expectedProductionUses') + updateTaskSummaryMetrics(result.recognitionTaskMetrics, {f.task: f.expectedProductionUses(g) + for t, metrics in result.recognitionTaskMetrics.items() + if "frontier" in metrics + for f in [metrics["frontier"]] + if len(f) > 0}, + 'every_expectedProductionUses') + if False: + eprint(f"About to do an expensive Monte Carlo simulation w/ {len(tasks)} tasks") + updateTaskSummaryMetrics(result.recognitionTaskMetrics, + {task: result.recognitionModel.grammarOfTask(task).untorch().expectedUsesMonteCarlo(task.request, debug=False) + for task in tasks }, + 'expectedProductionUsesMonteCarlo') + try: + updateTaskSummaryMetrics(result.recognitionTaskMetrics, + result.recognitionModel.taskGrammarStartProductions(tasks), + 'startProductions') + except: pass # can fail if we do not have a contextual model + + #updateTaskSummaryMetrics(result.recognitionTaskMetrics, result.recognitionModel.taskGrammarLogProductions(tasks), 'task_no_parent_log_productions') + #updateTaskSummaryMetrics(result.recognitionTaskMetrics, result.recognitionModel.taskGrammarEntropies(tasks), 'taskGrammarEntropies') + + result.recognitionModel = None + + clearedPath = path[:-len(SUFFIX)] + "_graph=True" + SUFFIX + with open(clearedPath,'wb') as handle: + result = dill.dump(result, handle) + eprint(" [+] Cleared recognition model from:") + eprint(" %s"%path) + eprint(" and exported to:") + eprint(" %s"%clearedPath) + eprint(" Use this one for graphing.") + diff --git a/dreamcoder/dreaming.py b/dreamcoder/dreaming.py new file mode 100644 index 0000000000000000000000000000000000000000..4186cff204ac6dc122ab4ec56489de2368197d66 --- /dev/null +++ b/dreamcoder/dreaming.py @@ -0,0 +1,90 @@ +import json +import os +import subprocess + +from dreamcoder.domains.arithmetic.arithmeticPrimitives import k1, k0, addition, subtraction, multiplication +from dreamcoder.frontier import Frontier, FrontierEntry +from dreamcoder.grammar import Grammar +from dreamcoder.program import Program +from dreamcoder.task import Task +from dreamcoder.type import arrow, tint +from dreamcoder.utilities import tuplify, timing, eprint, get_root_dir, mean + + +def helmholtzEnumeration(g, request, inputs, timeout, _=None, + special=None, evaluationTimeout=None): + """Returns json (as text)""" + message = {"request": request.json(), + "timeout": timeout, + "DSL": g.json(), + "extras": inputs} + if evaluationTimeout: message["evaluationTimeout"] = evaluationTimeout + if special: message["special"] = special + message = json.dumps(message) + with open('/tmp/hm', 'w') as handle: + handle.write(message) + try: + binary = os.path.join(get_root_dir(), 'helmholtz') + process = subprocess.Popen(binary, + stdin=subprocess.PIPE, + stdout=subprocess.PIPE) + response, error = process.communicate(bytes(message, encoding="utf-8")) + except OSError as exc: + raise exc + return response + + +def backgroundHelmholtzEnumeration(tasks, g, timeout, _=None, + special=None, evaluationTimeout=None): + from pathos.multiprocessing import Pool + requests = list({t.request for t in tasks}) + inputs = {r: list({tuplify(xs) + for t in tasks if t.request == r + for xs, y in t.examples}) + for r in requests} + workers = Pool(len(requests)) + promises = [workers.apply_async(helmholtzEnumeration, + args=(g, r, inputs[r], float(timeout)), + kwds={'special': special, + 'evaluationTimeout': evaluationTimeout}) + for r in requests] + + def get(): + results = [p.get() for p in promises] + frontiers = [] + with timing("(Helmholtz enumeration) Decoded json into frontiers"): + for request, result in zip(requests, results): + response = json.loads(result.decode("utf-8")) + for b, entry in enumerate(response): + frontiers.append(Frontier([FrontierEntry(program=Program.parse(p), + logPrior=entry["ll"], + logLikelihood=0.) + for p in entry["programs"]], + task=Task(str(b), + request, + []))) + eprint("Total number of Helmholtz frontiers:", len(frontiers)) + return frontiers + + return get + + +if __name__ == "__main__": + from dreamcoder.recognition import RecognitionModel, DummyFeatureExtractor + g = Grammar.uniform([k1, k0, addition, subtraction, multiplication]) + frontiers = helmholtzEnumeration(g, + arrow(tint, tint), + [[0], [1], [2]], + 10.) + eprint("average frontier size", mean(len(f.entries) for f in frontiers)) + f = DummyFeatureExtractor([]) + r = RecognitionModel(f, g, hidden=[], contextual=True) + r.trainBiasOptimal(frontiers, frontiers, steps=70) + g = r.grammarOfTask(frontiers[0].task).untorch() + frontiers = helmholtzEnumeration(g, + arrow(tint, tint), + [[0], [1], [2]], + 10.) + for f in frontiers: + eprint(f.summarizeFull()) + eprint("average frontier size", mean(len(f.entries) for f in frontiers)) diff --git a/dreamcoder/ec.py b/dreamcoder/ec.py new file mode 100644 index 0000000000000000000000000000000000000000..9d5aec0582b965dde8f068a7fdf818db3520fc8b --- /dev/null +++ b/dreamcoder/ec.py @@ -0,0 +1,3 @@ +print("DEPRECATION NOTICE: this module (dreamcoder.ec) will be deleted soon, " + "please update your code to import from dreamcoder.dreamcoder instead") +from dreamcoder.dreamcoder import * # noqa diff --git a/dreamcoder/enumeration.py b/dreamcoder/enumeration.py new file mode 100644 index 0000000000000000000000000000000000000000..185a349b907d52411a04090a76dd4321753d59a0 --- /dev/null +++ b/dreamcoder/enumeration.py @@ -0,0 +1,469 @@ +from dreamcoder.likelihoodModel import AllOrNothingLikelihoodModel +from dreamcoder.grammar import * +from dreamcoder.utilities import get_root_dir + +import os +import traceback +import subprocess + + +def multicoreEnumeration(g, tasks, _=None, + enumerationTimeout=None, + solver='ocaml', + CPUs=1, + maximumFrontier=None, + verbose=True, + evaluationTimeout=None, + testing=False): + '''g: Either a Grammar, or a map from task to grammar. + Returns (list-of-frontiers, map-from-task-to-search-time)''' + + # We don't use actual threads but instead use the multiprocessing + # library. This is because we need to be able to kill workers. + #from multiprocess import Process, Queue + + from multiprocessing import Queue + + # everything that gets sent between processes will be dilled + import dill + + solvers = {"ocaml": solveForTask_ocaml, + "pypy": solveForTask_pypy, + "python": solveForTask_python} + assert solver in solvers, "You must specify a valid solver. options are ocaml, pypy, or python." + + likelihoodModel = None + if solver == 'pypy' or solver == 'python': + # Use an all or nothing likelihood model. + likelihoodModel = AllOrNothingLikelihoodModel(timeout=evaluationTimeout) + + solver = solvers[solver] + + if not isinstance(g, dict): + g = {t: g for t in tasks} + task2grammar = g + + # If we are not evaluating on held out testing tasks: + # Bin the tasks by request type and grammar + # If these are the same then we can enumerate for multiple tasks simultaneously + # If we are evaluating testing tasks: + # Make sure that each job corresponds to exactly one task + jobs = {} + for i, t in enumerate(tasks): + if testing: + k = (task2grammar[t], t.request, i) + else: + k = (task2grammar[t], t.request) + jobs[k] = jobs.get(k, []) + [t] + + disableParallelism = len(jobs) == 1 + parallelCallback = launchParallelProcess if not disableParallelism else lambda f, * \ + a, **k: f(*a, **k) + if disableParallelism: + eprint("Disabling parallelism on the Python side because we only have one job.") + eprint("If you are using ocaml, there could still be parallelism.") + + # Map from task to the shortest time to find a program solving it + bestSearchTime = {t: None for t in task2grammar} + + lowerBounds = {k: 0. for k in jobs} + + frontiers = {t: Frontier([], task=t) for t in task2grammar} + + # For each job we keep track of how long we have been working on it + stopwatches = {t: Stopwatch() for t in jobs} + + # Map from task to how many programs we enumerated for that task + taskToNumberOfPrograms = {t: 0 for t in tasks } + + def numberOfHits(f): + return sum(e.logLikelihood > -0.01 for e in f) + + def budgetIncrement(lb): + if True: + return 1.5 + # Very heuristic - not sure what to do here + if lb < 24.: + return 1. + elif lb < 27.: + return 0.5 + else: + return 0.25 + + def maximumFrontiers(j): + tasks = jobs[j] + return {t: maximumFrontier - numberOfHits(frontiers[t]) for t in tasks} + + def allocateCPUs(n, tasks): + allocation = {t: 0 for t in tasks} + while n > 0: + for t in tasks: + # During testing we use exactly one CPU per task + if testing and allocation[t] > 0: + return allocation + allocation[t] += 1 + n -= 1 + if n == 0: + break + return allocation + + def refreshJobs(): + for k in list(jobs.keys()): + v = [t for t in jobs[k] + if numberOfHits(frontiers[t]) < maximumFrontier + and stopwatches[k].elapsed <= enumerationTimeout] + if v: + jobs[k] = v + else: + del jobs[k] + + # Workers put their messages in here + q = Queue() + + # How many CPUs are we using? + activeCPUs = 0 + + # How many CPUs was each job allocated? + id2CPUs = {} + # What job was each ID working on? + id2job = {} + nextID = 0 + + while True: + refreshJobs() + # Don't launch a job that we are already working on + # We run the stopwatch whenever the job is being worked on + # freeJobs are things that we are not working on but could be + freeJobs = [j for j in jobs if not stopwatches[j].running + and stopwatches[j].elapsed < enumerationTimeout - 0.5] + if freeJobs and activeCPUs < CPUs: + # Allocate a CPU to each of the jobs that we have made the least + # progress on + freeJobs.sort(key=lambda j: lowerBounds[j]) + # Launch some more jobs until all of the CPUs are being used + availableCPUs = CPUs - activeCPUs + allocation = allocateCPUs(availableCPUs, freeJobs) + for j in freeJobs: + if allocation[j] == 0: + continue + g, request = j[:2] + bi = budgetIncrement(lowerBounds[j]) + thisTimeout = enumerationTimeout - stopwatches[j].elapsed + eprint("(python) Launching %s (%d tasks) w/ %d CPUs. %f <= MDL < %f. Timeout %f." % + (request, len(jobs[j]), allocation[j], lowerBounds[j], lowerBounds[j] + bi, thisTimeout)) + stopwatches[j].start() + parallelCallback(wrapInThread(solver), + q=q, g=g, ID=nextID, + elapsedTime=stopwatches[j].elapsed, + CPUs=allocation[j], + tasks=jobs[j], + lowerBound=lowerBounds[j], + upperBound=lowerBounds[j] + bi, + budgetIncrement=bi, + timeout=thisTimeout, + evaluationTimeout=evaluationTimeout, + maximumFrontiers=maximumFrontiers(j), + testing=testing, + likelihoodModel=likelihoodModel) + id2CPUs[nextID] = allocation[j] + id2job[nextID] = j + nextID += 1 + + activeCPUs += allocation[j] + lowerBounds[j] += bi + + # If nothing is running, and we just tried to launch jobs, + # then that means we are finished + if all(not s.running for s in stopwatches.values()): + break + + # Wait to get a response + message = Bunch(dill.loads(q.get())) + + if message.result == "failure": + eprint("PANIC! Exception in child worker:", message.exception) + eprint(message.stacktrace) + assert False + elif message.result == "success": + # Mark the CPUs is no longer being used and pause the stopwatch + activeCPUs -= id2CPUs[message.ID] + stopwatches[id2job[message.ID]].stop() + + newFrontiers, searchTimes, pc = message.value + for t, f in newFrontiers.items(): + oldBest = None if len( + frontiers[t]) == 0 else frontiers[t].bestPosterior + frontiers[t] = frontiers[t].combine(f) + newBest = None if len( + frontiers[t]) == 0 else frontiers[t].bestPosterior + + taskToNumberOfPrograms[t] += pc + + dt = searchTimes[t] + if dt is not None: + if bestSearchTime[t] is None: + bestSearchTime[t] = dt + else: + # newBest & oldBest should both be defined + assert oldBest is not None + assert newBest is not None + newScore = newBest.logPrior + newBest.logLikelihood + oldScore = oldBest.logPrior + oldBest.logLikelihood + + if newScore > oldScore: + bestSearchTime[t] = dt + elif newScore == oldScore: + bestSearchTime[t] = min(bestSearchTime[t], dt) + else: + eprint("Unknown message result:", message.result) + assert False + + eprint("We enumerated this many programs, for each task:\n\t", + list(taskToNumberOfPrograms.values())) + + return [frontiers[t] for t in tasks], bestSearchTime + +def wrapInThread(f): + """ + Returns a function that is designed to be run in a thread/threadlike process. + Result will be either put into the q + """ + import dill + + def _f(*a, **k): + q = k.pop("q") + ID = k.pop("ID") + + try: + r = f(*a, **k) + q.put(dill.dumps({"result": "success", + "ID": ID, + "value": r})) + except Exception as e: + q.put(dill.dumps({"result": "failure", + "exception": e, + "stacktrace": traceback.format_exc(), + "ID": ID})) + return + return _f + + +def solveForTask_ocaml(_=None, + elapsedTime=0., + CPUs=1, + g=None, tasks=None, + lowerBound=None, upperBound=None, budgetIncrement=None, + timeout=None, + testing=None, # FIXME: unused + likelihoodModel=None, + evaluationTimeout=None, maximumFrontiers=None): + + import json + + def taskMessage(t): + m = { + "examples": [{"inputs": list(xs), "output": y} for xs, y in t.examples], + "name": t.name, + "request": t.request.json(), + "maximumFrontier": maximumFrontiers[t]} + if hasattr(t, "specialTask"): + special, extra = t.specialTask + m["specialTask"] = special + m["extras"] = extra + return m + + + message = {"DSL": g.json(), + "tasks": [taskMessage(t) + for t in tasks], + + "programTimeout": evaluationTimeout, + "nc": CPUs, + "timeout": timeout, + "lowerBound": lowerBound, + "upperBound": upperBound, + "budgetIncrement": budgetIncrement, + "verbose": False, + "shatter": 5 if len(tasks) == 1 and "turtle" in str(tasks[0].request) else 10} + + if hasattr(tasks[0], 'maxParameters') and tasks[0].maxParameters is not None: + message["maxParameters"] = tasks[0].maxParameters + + message = json.dumps(message) + # uncomment this if you want to save the messages being sent to the solver + + + try: + solver_file = os.path.join(get_root_dir(), 'solver') + process = subprocess.Popen(solver_file, + stdin=subprocess.PIPE, + stdout=subprocess.PIPE) + response, error = process.communicate(bytes(message, encoding="utf-8")) + response = json.loads(response.decode("utf-8")) + except OSError as exc: + raise exc + + except: + print("response:", response) + print("error:", error) + with open("message", "w") as f: + f.write(message) + print("message,", message) + assert False, "MAX RAISE" + + + pc = response.get("number_enumerated",0) # TODO + frontiers = {} + searchTimes = {} + for t in tasks: + solutions = response[t.name] + frontier = Frontier([FrontierEntry(program=p, + logLikelihood=e["logLikelihood"], + logPrior=g.logLikelihood(t.request, p)) + for e in solutions + for p in [Program.parse(e["program"])]], + task=t) + frontiers[t] = frontier + if frontier.empty: + searchTimes[t] = None + # This is subtle: + # The search time we report is actually not be minimum time to find any solution + # Rather it is the time to find the MAP solution + # This is important for regression problems, + # where we might find something with a good prior but bad likelihood early on, + # and only later discovered the good high likelihood program + else: + searchTimes[t] = min( + (e["logLikelihood"] + e["logPrior"], + e["time"]) for e in solutions)[1] + elapsedTime + + return frontiers, searchTimes, pc + +def solveForTask_pypy(_=None, + elapsedTime=0., + g=None, task=None, + lowerBound=None, upperBound=None, budgetIncrement=None, + timeout=None, + likelihoodModel=None, + evaluationTimeout=None, maximumFrontier=None, testing=False): + return callCompiled(enumerateForTasks, + g, tasks, likelihoodModel, + timeout=timeout, + testing=testing, + elapsedTime=elapsedTime, + evaluationTimeout=evaluationTimeout, + maximumFrontiers=maximumFrontiers, + budgetIncrement=budgetIncrement, + lowerBound=lowerBound, upperBound=upperBound) + +def solveForTask_python(_=None, + elapsedTime=0., + g=None, tasks=None, + lowerBound=None, upperBound=None, budgetIncrement=None, + timeout=None, + CPUs=1, + likelihoodModel=None, + evaluationTimeout=None, maximumFrontiers=None, testing=False): + return enumerateForTasks(g, tasks, likelihoodModel, + timeout=timeout, + testing=testing, + elapsedTime=elapsedTime, + evaluationTimeout=evaluationTimeout, + maximumFrontiers=maximumFrontiers, + budgetIncrement=budgetIncrement, + lowerBound=lowerBound, upperBound=upperBound) + + +class EnumerationTimeout(Exception): + pass + +def enumerateForTasks(g, tasks, likelihoodModel, _=None, + verbose=False, + timeout=None, + elapsedTime=0., + CPUs=1, + testing=False, #unused + evaluationTimeout=None, + lowerBound=0., + upperBound=100., + budgetIncrement=1.0, maximumFrontiers=None): + assert timeout is not None, \ + "enumerateForTasks: You must provide a timeout." + + from time import time + + request = tasks[0].request + assert all(t.request == request for t in tasks), \ + "enumerateForTasks: Expected tasks to all have the same type" + + maximumFrontiers = [maximumFrontiers[t] for t in tasks] + # store all of the hits in a priority queue + # we will never maintain maximumFrontier best solutions + hits = [PQ() for _ in tasks] + + starting = time() + previousBudget = lowerBound + budget = lowerBound + budgetIncrement + try: + totalNumberOfPrograms = 0 + while time() < starting + timeout and \ + any(len(h) < mf for h, mf in zip(hits, maximumFrontiers)) and \ + budget <= upperBound: + numberOfPrograms = 0 + + for prior, _, p in g.enumeration(Context.EMPTY, [], request, + maximumDepth=99, + upperBound=budget, + lowerBound=previousBudget): + descriptionLength = -prior + # Shouldn't see it on this iteration + assert descriptionLength <= budget + # Should already have seen it + assert descriptionLength > previousBudget + + numberOfPrograms += 1 + totalNumberOfPrograms += 1 + + for n in range(len(tasks)): + task = tasks[n] + + #Warning:changed to max's new likelihood model situation + #likelihood = task.logLikelihood(p, evaluationTimeout) + #if invalid(likelihood): + #continue + success, likelihood = likelihoodModel.score(p, task) + if not success: + continue + + dt = time() - starting + elapsedTime + priority = -(likelihood + prior) + hits[n].push(priority, + (dt, FrontierEntry(program=p, + logLikelihood=likelihood, + logPrior=prior))) + if len(hits[n]) > maximumFrontiers[n]: + hits[n].popMaximum() + + if timeout is not None and time() - starting > timeout: + raise EnumerationTimeout + + previousBudget = budget + budget += budgetIncrement + + if budget > upperBound: + break + except EnumerationTimeout: + pass + frontiers = {tasks[n]: Frontier([e for _, e in hits[n]], + task=tasks[n]) + for n in range(len(tasks))} + searchTimes = { + tasks[n]: None if len(hits[n]) == 0 else \ + min(t for t,_ in hits[n]) for n in range(len(tasks))} + + return frontiers, searchTimes, totalNumberOfPrograms + + + + + diff --git a/dreamcoder/fragmentGrammar.py b/dreamcoder/fragmentGrammar.py new file mode 100644 index 0000000000000000000000000000000000000000..2daa169fada7b08dbaf8c4b81218b963aa6412f9 --- /dev/null +++ b/dreamcoder/fragmentGrammar.py @@ -0,0 +1,430 @@ +from dreamcoder.fragmentUtilities import * +from dreamcoder.grammar import * +from dreamcoder.program import * + +from itertools import chain +import time + + +class FragmentGrammar(object): + def __init__(self, logVariable, productions): + self.logVariable = logVariable + self.productions = productions + self.likelihoodCache = {} + + def clearCache(self): + self.likelihoodCache = {} + + def __repr__(self): + return "FragmentGrammar(logVariable={self.logVariable}, productions={self.productions}".format( + self=self) + + def __str__(self): + def productionKey(xxx_todo_changeme): + (l, t, p) = xxx_todo_changeme + return not isinstance(p, Primitive), -l + return "\n".join(["%f\tt0\t$_" % self.logVariable] + ["%f\t%s\t%s" % (l, t, p) + for l, t, p in sorted(self.productions, key=productionKey)]) + + def buildCandidates(self, context, environment, request): + candidates = [] + variableCandidates = [] + for l, t, p in self.productions: + try: + newContext, t = t.instantiate(context) + newContext = newContext.unify(t.returns(), request) + candidates.append((l, newContext, + t.apply(newContext), + p)) + except UnificationFailure: + continue + for j, t in enumerate(environment): + try: + newContext = context.unify(t.returns(), request) + variableCandidates.append((newContext, + t.apply(newContext), + Index(j))) + except UnificationFailure: + continue + if variableCandidates: + z = math.log(len(variableCandidates)) + for newContext, newType, index in variableCandidates: + candidates.append( + (self.logVariable - z, newContext, newType, index)) + + z = lse([candidate[0] for candidate in candidates]) + return [(l - z, c, t, p) for l, c, t, p in candidates] + + def logLikelihood(self, request, expression): + _, l, _ = self._logLikelihood(Context.EMPTY, [], request, expression) + if invalid(l): + f = 'failures/likelihoodFailure%s.pickle' % (time() + getPID()) + eprint("PANIC: Invalid log likelihood. expression:", + expression, "tp:", request, "Exported to:", f) + with open(f, 'wb') as handle: + pickle.dump((self, request, expression), handle) + assert False + return l + + def closedUses(self, request, expression): + _, l, u = self._logLikelihood(Context.EMPTY, [], request, expression) + return l, u + + def _logLikelihood(self, context, environment, request, expression): + '''returns (context, log likelihood, uses)''' + + # We can cash likelihood calculations faster whenever they don't involve type inference + # This is because they are guaranteed to not modify the context, + polymorphic = request.isPolymorphic or any( + v.isPolymorphic for v in environment) + # For some reason polymorphic caching slows it down + shouldDoCaching = not polymorphic + + # Caching + if shouldDoCaching: + if polymorphic: + inTypes = canonicalTypes( + [request.apply(context)] + [v.apply(context) for v in environment]) + else: + inTypes = canonicalTypes([request] + environment) + cacheKey = (tuple(inTypes), expression) + if cacheKey in self.likelihoodCache: + outTypes, l, u = self.likelihoodCache[cacheKey] + context, instantiatedTypes = instantiateTypes( + context, outTypes) + outRequest = instantiatedTypes[0] + outEnvironment = instantiatedTypes[1:] + # eprint("request:", request.apply(context), "environment:", + # [ v.apply(context) for v in environment ]) + # eprint("will be unified with: out request:",outRequest,"out environment",outEnvironment) + if polymorphic: + context = context.unify(request, outRequest) + for v, vp in zip(environment, outEnvironment): + context = context.unify(v, vp) + return context, l, u + + if request.isArrow(): + if not isinstance(expression, Abstraction): + return (context, NEGATIVEINFINITY, Uses.empty) + return self._logLikelihood(context, + [request.arguments[0]] + environment, + request.arguments[1], + expression.body) + + # Not a function type + + # Construct and normalize the candidate productions + candidates = self.buildCandidates(context, environment, request) + + # Consider each way of breaking the expression up into a + # function and arguments + totalLikelihood = NEGATIVEINFINITY + weightedUses = [] + + possibleVariables = float(int(any(isinstance(candidate, Index) + for _, _, _, candidate in candidates))) + possibleUses = {candidate: 1. for _, _, _, candidate in candidates + if not isinstance(candidate, Index)} + + for f, xs in expression.applicationParses(): + for candidateLikelihood, newContext, tp, production in candidates: + variableBindings = {} + # This is a variable in the environment + if production.isIndex: + if production != f: + continue + else: + try: + newContext, fragmentType, variableBindings = \ + Matcher.match(newContext, production, f, len(xs)) + # This is necessary because the types of the variable + # bindings and holes need to match up w/ request + fragmentTypeTemplate = request + for _ in xs: + newContext, newVariable = newContext.makeVariable() + fragmentTypeTemplate = arrow( + newVariable, fragmentTypeTemplate) + newContext = newContext.unify( + fragmentType, fragmentTypeTemplate) + # update the unified type + tp = fragmentType.apply(newContext) + except MatchFailure: + continue + + argumentTypes = tp.functionArguments() + if len(xs) != len(argumentTypes): + # I think that this is some kind of bug. But I can't figure it out right now. + # As a hack, count this as though it were a failure + continue + #raise GrammarFailure('len(xs) != len(argumentTypes): tp={}, xs={}'.format(tp, xs)) + + thisLikelihood = candidateLikelihood + if isinstance(production, Index): + theseUses = Uses(possibleVariables=possibleVariables, + actualVariables=1., + possibleUses=possibleUses.copy(), + actualUses={}) + else: + theseUses = Uses(possibleVariables=possibleVariables, + actualVariables=0., + possibleUses=possibleUses.copy(), + actualUses={production: 1.}) + + # Accumulate likelihood from free variables and holes and + # arguments + for freeType, freeExpression in chain( + variableBindings.values(), zip(argumentTypes, xs)): + freeType = freeType.apply(newContext) + newContext, expressionLikelihood, newUses = self._logLikelihood( + newContext, environment, freeType, freeExpression) + if expressionLikelihood is NEGATIVEINFINITY: + thisLikelihood = NEGATIVEINFINITY + break + + thisLikelihood += expressionLikelihood + theseUses += newUses + + if thisLikelihood is NEGATIVEINFINITY: + continue + + weightedUses.append((thisLikelihood, theseUses)) + totalLikelihood = lse(totalLikelihood, thisLikelihood) + + # Any of these new context objects should be equally good + context = newContext + + if totalLikelihood is NEGATIVEINFINITY: + return context, totalLikelihood, Uses.empty + assert weightedUses != [] + + allUses = Uses.join(totalLikelihood, *weightedUses) + + # memoize result + if shouldDoCaching: + outTypes = [request.apply(context)] + \ + [v.apply(context) for v in environment] + outTypes = canonicalTypes(outTypes) + self.likelihoodCache[cacheKey] = ( + outTypes, totalLikelihood, allUses) + + return context, totalLikelihood, allUses + + def expectedUses(self, frontiers): + if len(list(frontiers)) == 0: + return Uses() + likelihoods = [[(l + entry.logLikelihood, u) + for entry in frontier + for l, u in [self.closedUses(frontier.task.request, entry.program)]] + for frontier in frontiers] + zs = (lse([l for l, _ in ls]) for ls in likelihoods) + return sum(math.exp(l - z) * u + for z, frontier in zip(zs, likelihoods) + for l, u in frontier) + + def insideOutside(self, frontiers, pseudoCounts): + uses = self.expectedUses(frontiers) + return FragmentGrammar(log(uses.actualVariables + + pseudoCounts) - + log(max(uses.possibleVariables, 1.)), [(log(uses.actualUses.get(p, 0.) + + pseudoCounts) - + log(uses.possibleUses.get(p, 0.) + + pseudoCounts), t, p) for _, t, p in self.productions]) + + def jointFrontiersLikelihood(self, frontiers): + return sum(lse([entry.logLikelihood + self.logLikelihood(frontier.task.request, entry.program) + for entry in frontier]) + for frontier in frontiers) + + def jointFrontiersMDL(self, frontiers, CPUs=1): + return sum( + parallelMap( + CPUs, + lambda frontier: max( + entry.logLikelihood + + self.logLikelihood( + frontier.task.request, + entry.program) for entry in frontier), + frontiers)) + + def __len__(self): return len(self.productions) + + @staticmethod + def fromGrammar(g): + return FragmentGrammar(g.logVariable, g.productions) + + def toGrammar(self): + return Grammar(self.logVariable, [(l, q.infer(), q) + for l, t, p in self.productions + for q in [defragment(p)]]) + + @property + def primitives(self): return [p for _, _, p in self.productions] + + @staticmethod + def uniform(productions): + return FragmentGrammar(0., [(0., p.infer(), p) for p in productions]) + + def normalize(self): + z = lse([l for l, t, p in self.productions] + [self.logVariable]) + return FragmentGrammar(self.logVariable - z, + [(l - z, t, p) for l, t, p in self.productions]) + + def makeUniform(self): + return FragmentGrammar(0., [(0., p.infer(), p) + for _, _, p in self.productions]) + + def rescoreFrontier(self, frontier): + return Frontier([FrontierEntry(e.program, + logPrior=self.logLikelihood(frontier.task.request, e.program), + logLikelihood=e.logLikelihood) + for e in frontier], + frontier.task) + + @staticmethod + def induceFromFrontiers( + g0, + frontiers, + _=None, + topK=1, + topk_use_only_likelihood=False, + pseudoCounts=1.0, + aic=1.0, + structurePenalty=0.001, + a=0, + CPUs=1): + _ = topk_use_only_likelihood # not used in python compressor + originalFrontiers = frontiers + frontiers = [frontier for frontier in frontiers if not frontier.empty] + eprint("Inducing a grammar from", len(frontiers), "frontiers") + + bestGrammar = FragmentGrammar.fromGrammar(g0) + oldJoint = bestGrammar.jointFrontiersMDL(frontiers, CPUs=1) + + # "restricted frontiers" only contain the top K according to the best grammar + def restrictFrontiers(): + return parallelMap( + CPUs, + lambda f: bestGrammar.rescoreFrontier(f).topK(topK), + frontiers) + restrictedFrontiers = [] + + def grammarScore(g): + g = g.makeUniform().insideOutside(restrictedFrontiers, pseudoCounts) + likelihood = g.jointFrontiersMDL(restrictedFrontiers) + structure = sum(primitiveSize(p) for p in g.primitives) + score = likelihood - aic * len(g) - structurePenalty * structure + g.clearCache() + if invalid(score): + # FIXME: This should never occur but it does anyway + score = float('-inf') + return score, g + + if aic is not POSITIVEINFINITY: + restrictedFrontiers = restrictFrontiers() + bestScore, _ = grammarScore(bestGrammar) + eprint("Starting score", bestScore) + while True: + restrictedFrontiers = restrictFrontiers() + fragments = [f + for f in proposeFragmentsFromFrontiers(restrictedFrontiers, a, CPUs=CPUs) + if f not in bestGrammar.primitives + and defragment(f) not in bestGrammar.primitives] + eprint("Proposed %d fragments." % len(fragments)) + + candidateGrammars = [ + FragmentGrammar.uniform( + bestGrammar.primitives + + [fragment]) for fragment in fragments] + if not candidateGrammars: + break + + scoredFragments = parallelMap(CPUs, grammarScore, candidateGrammars, + # Each process handles up to 100 + # grammars at a time, a "job" + chunksize=max( + 1, min(len(candidateGrammars) // CPUs, 100)), + # maxTasks: Maximum number of jobs allocated to a process + # This means that after evaluating this*chunk many grammars, + # we killed the process, freeing up its memory. + # In exchange we pay the cost of spawning a new process. + # We should play with this number, + # figuring out how big we can make it without + # running out of memory. + maxtasksperchild=5) + newScore, newGrammar = max(scoredFragments, key=lambda sg: sg[0]) + + if newScore <= bestScore: + break + dS = newScore - bestScore + bestScore, bestGrammar = newScore, newGrammar + newPrimitiveLikelihood, newType, newPrimitive = bestGrammar.productions[-1] + expectedUses = bestGrammar.expectedUses( + restrictedFrontiers).actualUses.get(newPrimitive, 0) + eprint( + "New primitive of type %s\t%s\t\n(score = %f; dScore = %f; = %f)" % + (newType, newPrimitive, newScore, dS, expectedUses)) + + # Rewrite the frontiers in terms of the new fragment + concretePrimitive = defragment(newPrimitive) + bestGrammar.productions[-1] = (newPrimitiveLikelihood, + concretePrimitive.tp, + concretePrimitive) + frontiers = parallelMap( + CPUs, lambda frontier: bestGrammar.rescoreFrontier( + RewriteFragments.rewriteFrontier( + frontier, newPrimitive)), frontiers) + eprint( + "\t( in rewritten frontiers: %f)" % + (bestGrammar.expectedUses(frontiers).actualUses[concretePrimitive])) + else: + eprint("Skipping fragment proposals") + + if False: + # Reestimate the parameters using the entire frontiers + bestGrammar = bestGrammar.makeUniform().insideOutside(frontiers, pseudoCounts) + elif True: + # Reestimate the parameters using the best programs + restrictedFrontiers = restrictFrontiers() + bestGrammar = bestGrammar.makeUniform().insideOutside( + restrictedFrontiers, pseudoCounts) + else: + # Use parameters that were found during search + pass + + eprint("Old joint = %f\tNew joint = %f\n" % + (oldJoint, bestGrammar.jointFrontiersMDL(frontiers, CPUs=CPUs))) + # Return all of the frontiers, which have now been rewritten to use the + # new fragments + frontiers = {f.task: f for f in frontiers} + frontiers = [frontiers.get(f.task, f) + for f in originalFrontiers] + + productionUses = bestGrammar.expectedUses( + [f for f in frontiers if not f.empty]).actualUses + productionUses = { + p: productionUses.get( + p, 0.) for p in bestGrammar.primitives} + possibleUses = bestGrammar.expectedUses( + [f for f in frontiers if not f.empty]).possibleUses + possibleUses = { + p: possibleUses.get( + p, 0.) for p in bestGrammar.primitives} + + for p in bestGrammar.primitives: + eprint("%f / %f\t%s" % (productionUses[p], + possibleUses[p], + p)) + + bestGrammar.clearCache() + + grammar = bestGrammar.toGrammar() + + if False and \ + any(productionUses.get(p, 0) < 0.5 for p in grammar.primitives if p.isInvented): + uselessProductions = [ p for p in grammar.primitives + if p.isInvented and productionUses.get(p, 0) < 0.5] + eprint("The following invented primitives are no longer needed, removing them...") + eprint("\t" + "\t\n".join(map(str, uselessProductions))) + grammar = grammar.removeProductions(uselessProductions) + + return grammar, frontiers diff --git a/dreamcoder/fragmentUtilities.py b/dreamcoder/fragmentUtilities.py new file mode 100644 index 0000000000000000000000000000000000000000..e89bfc3c5038ff312878d7e81c0e25eaee88ea7c --- /dev/null +++ b/dreamcoder/fragmentUtilities.py @@ -0,0 +1,405 @@ +from dreamcoder.type import * +from dreamcoder.program import * +from dreamcoder.frontier import * + +from collections import Counter + + +class MatchFailure(Exception): + pass + + +class Matcher(object): + def __init__(self, context): + self.context = context + self.variableBindings = {} + + @staticmethod + def match(context, fragment, expression, numberOfArguments): + if not mightMatch(fragment, expression): + raise MatchFailure() + m = Matcher(context) + tp = fragment.visit(m, expression, [], numberOfArguments) + return m.context, tp, m.variableBindings + + def application( + self, + fragment, + expression, + environment, + numberOfArguments): + '''returns tp of fragment.''' + if not isinstance(expression, Application): + raise MatchFailure() + + ft = fragment.f.visit( + self, + expression.f, + environment, + numberOfArguments + 1) + xt = fragment.x.visit(self, expression.x, environment, 0) + + self.context, returnType = self.context.makeVariable() + try: + self.context = self.context.unify(ft, arrow(xt, returnType)) + except UnificationFailure: + raise MatchFailure() + + return returnType.apply(self.context) + + def index(self, fragment, expression, environment, numberOfArguments): + # This is a bound variable + surroundingAbstractions = len(environment) + if fragment.bound(surroundingAbstractions): + if expression == fragment: + return environment[fragment.i].apply(self.context) + else: + raise MatchFailure() + + # This is a free variable + i = fragment.i - surroundingAbstractions + + # Make sure that it doesn't refer to anything bound by a + # lambda in the fragment. Otherwise it cannot be safely lifted + # out of the fragment and preserve semantics + for fv in expression.freeVariables(): + if fv < len(environment): + raise MatchFailure() + + # The value is going to be lifted out of the fragment + try: + expression = expression.shift(-surroundingAbstractions) + except ShiftFailure: + raise MatchFailure() + + # Wrap it in the appropriate number of lambda expressions & applications + # This is because everything has to be in eta-longform + if numberOfArguments > 0: + expression = expression.shift(numberOfArguments) + for j in reversed(range(numberOfArguments)): + expression = Application(expression, Index(j)) + for _ in range(numberOfArguments): + expression = Abstraction(expression) + + # Added to the bindings + if i in self.variableBindings: + (tp, binding) = self.variableBindings[i] + if binding != expression: + raise MatchFailure() + else: + self.context, tp = self.context.makeVariable() + self.variableBindings[i] = (tp, expression) + return tp + + def abstraction( + self, + fragment, + expression, + environment, + numberOfArguments): + if not isinstance(expression, Abstraction): + raise MatchFailure() + + self.context, argumentType = self.context.makeVariable() + returnType = fragment.body.visit( + self, expression.body, [argumentType] + environment, 0) + + return arrow(argumentType, returnType) + + def primitive(self, fragment, expression, environment, numberOfArguments): + if fragment != expression: + raise MatchFailure() + self.context, tp = fragment.tp.instantiate(self.context) + return tp + + def invented(self, fragment, expression, environment, numberOfArguments): + if fragment != expression: + raise MatchFailure() + self.context, tp = fragment.tp.instantiate(self.context) + return tp + + def fragmentVariable( + self, + fragment, + expression, + environment, + numberOfArguments): + raise Exception( + 'Deprecated: matching against fragment variables. Convert fragment to canonical form to get rid of fragment variables.') + + +def mightMatch(f, e, d=0): + '''Checks whether fragment f might be able to match against expression e''' + if f.isIndex: + if f.bound(d): + return f == e + return True + if f.isPrimitive or f.isInvented: + return f == e + if f.isAbstraction: + return e.isAbstraction and mightMatch(f.body, e.body, d + 1) + if f.isApplication: + return e.isApplication and mightMatch( + f.x, e.x, d) and mightMatch( + f.f, e.f, d) + assert False + + +def canonicalFragment(expression): + ''' + Puts a fragment into a canonical form: + 1. removes all FragmentVariable's + 2. renames all free variables based on depth first traversal + ''' + return expression.visit(CanonicalVisitor(), 0) + + +class CanonicalVisitor(object): + def __init__(self): + self.numberOfAbstractions = 0 + self.mapping = {} + + def fragmentVariable(self, e, d): + self.numberOfAbstractions += 1 + return Index(self.numberOfAbstractions + d - 1) + + def primitive(self, e, d): return e + + def invented(self, e, d): return e + + def application(self, e, d): + return Application(e.f.visit(self, d), e.x.visit(self, d)) + + def abstraction(self, e, d): + return Abstraction(e.body.visit(self, d + 1)) + + def index(self, e, d): + if e.bound(d): + return e + i = e.i - d + if i in self.mapping: + return Index(d + self.mapping[i]) + self.mapping[i] = self.numberOfAbstractions + self.numberOfAbstractions += 1 + return Index(self.numberOfAbstractions - 1 + d) + + +def fragmentSize(f, boundVariableCost=0.1, freeVariableCost=0.01): + freeVariables = 0 + leaves = 0 + boundVariables = 0 + for surroundingAbstractions, e in f.walk(): + if isinstance(e, (Primitive, Invented)): + leaves += 1 + if isinstance(e, Index): + if e.bound(surroundingAbstractions): + boundVariables += 1 + else: + freeVariables += 1 + assert not isinstance(e, FragmentVariable) + return leaves + boundVariableCost * \ + boundVariables + freeVariableCost * freeVariables + + +def primitiveSize(e): + if e.isInvented: + e = e.body + return fragmentSize(e) + + +def defragment(expression): + '''Converts a fragment into an invented primitive''' + if isinstance(expression, (Primitive, Invented)): + return expression + + expression = canonicalFragment(expression) + + for _ in range(expression.numberOfFreeVariables): + expression = Abstraction(expression) + + return Invented(expression) + + +class RewriteFragments(object): + def __init__(self, fragment): + self.fragment = fragment + self.concrete = defragment(fragment) + + def tryRewrite(self, e, numberOfArguments): + try: + context, t, bindings = Matcher.match( + Context.EMPTY, self.fragment, e, numberOfArguments) + except MatchFailure: + return None + + assert frozenset(bindings.keys()) == frozenset(range(len(bindings))),\ + "Perhaps the fragment is not in canonical form?" + e = self.concrete + for j in range(len(bindings) - 1, -1, -1): + _, b = bindings[j] + e = Application(e, b) + return e + + def application(self, e, numberOfArguments): + e = Application(e.f.visit(self, numberOfArguments + 1), + e.x.visit(self, 0)) + return self.tryRewrite(e, numberOfArguments) or e + + def index(self, e, numberOfArguments): return e + + def invented(self, e, numberOfArguments): return e + + def primitive(self, e, numberOfArguments): return e + + def abstraction(self, e, numberOfArguments): + e = Abstraction(e.body.visit(self, 0)) + return self.tryRewrite(e, numberOfArguments) or e + + def rewrite(self, e): return e.visit(self, 0) + + @staticmethod + def rewriteFrontier(frontier, fragment): + worker = RewriteFragments(fragment) + return Frontier([FrontierEntry(program=worker.rewrite(e.program), + logLikelihood=e.logLikelihood, + logPrior=e.logPrior, + logPosterior=e.logPosterior) + for e in frontier], + task=frontier.task) + + +def proposeFragmentsFromFragment(f): + '''Abstracts out repeated structure within a single fragment''' + yield f + freeVariables = f.numberOfFreeVariables + closedSubtrees = Counter( + subtree for _, + subtree in f.walk() if not isinstance( + subtree, + Index) and subtree.closed) + del closedSubtrees[f] + for subtree, freq in closedSubtrees.items(): + if freq < 2: + continue + yield canonicalFragment(f.substitute(subtree, Index(freeVariables))) + + +def nontrivial(f): + if not isinstance(f, Application): + return False + # Curry + if isinstance(f.x, FragmentVariable): + return False + if isinstance(f.x, Index): + # Make sure that the index is used somewhere else + if not any( + isinstance( + child, + Index) and child.i - + surroundingAbstractions == f.x.i for surroundingAbstractions, + child in f.f.walk()): + return False + + numberOfHoles = 0 + numberOfVariables = 0 + numberOfPrimitives = 0 + for surroundingAbstractions, child in f.walk(): + if isinstance(child, (Primitive, Invented)): + numberOfPrimitives += 1 + if isinstance(child, FragmentVariable): + numberOfHoles += 1 + if isinstance(child, Index) and child.free(surroundingAbstractions): + numberOfVariables += 1 + #eprint("Fragment %s has %d calls and %d variables and %d primitives"%(f,numberOfHoles,numberOfVariables,numberOfPrimitives)) + + return numberOfPrimitives + 0.5 * \ + (numberOfHoles + numberOfVariables) > 1.5 and numberOfPrimitives >= 1 + + +def violatesLaziness(fragment): + """ + conditionals are lazy on the second and third arguments. this + invariant must be maintained by learned fragments. + """ + for surroundingAbstractions, child in fragment.walkUncurried(): + if not child.isApplication: + continue + f, xs = child.applicationParse() + if not (f.isPrimitive and f.name == "if"): + continue + + # curried conditionals always violate laziness + if len(xs) != 3: + return True + + # yes/no branches + y = xs[1] + n = xs[2] + + return \ + any(yc.isIndex and yc.i >= yd + for yd, yc in y.walk(surroundingAbstractions)) or \ + any(nc.isIndex and nc.i >= nd + for nd, nc in n.walk(surroundingAbstractions)) + + return False + + +def proposeFragmentsFromProgram(p, arity): + + def fragment(expression, a, toplevel=True): + """Generates fragments that unify with expression""" + + if a == 1: + yield FragmentVariable.single + if a == 0: + yield expression + return + + if isinstance(expression, Abstraction): + # Symmetry breaking: (\x \y \z ... f(x,y,z,...)) defragments to be + # the same as f(x,y,z,...) + if not toplevel: + for b in fragment(expression.body, a, toplevel=False): + yield Abstraction(b) + elif isinstance(expression, Application): + for fa in range(a + 1): + for f in fragment(expression.f, fa, toplevel=False): + for x in fragment(expression.x, a - fa, toplevel=False): + yield Application(f, x) + else: + assert isinstance(expression, (Invented, Primitive, Index)) + + def fragments(expression, a): + """Generates fragments that unify with subexpressions of expression""" + + yield from fragment(expression, a) + if isinstance(expression, Application): + curry = True + if curry: + yield from fragments(expression.f, a) + yield from fragments(expression.x, a) + else: + # Pretend that it is not curried + function, arguments = expression.applicationParse() + yield from fragments(function, a) + for argument in arguments: + yield from fragments(argument, a) + elif isinstance(expression, Abstraction): + yield from fragments(expression.body, a) + else: + assert isinstance(expression, (Invented, Primitive, Index)) + + return {canonicalFragment(f) for b in range(arity + 1) + for f in fragments(p, b) if nontrivial(f)} + + +def proposeFragmentsFromFrontiers(frontiers, a, CPUs=1): + fragmentsFromEachFrontier = parallelMap( + CPUs, lambda frontier: { + fp for entry in frontier.entries for f in proposeFragmentsFromProgram( + entry.program, a) for fp in proposeFragmentsFromFragment(f)}, frontiers) + allFragments = Counter(f for frontierFragments in fragmentsFromEachFrontier + for f in frontierFragments) + return [fragment for fragment, frequency in allFragments.items() + if frequency >= 2 and fragment.wellTyped() and nontrivial(fragment)] diff --git a/dreamcoder/frontier.py b/dreamcoder/frontier.py new file mode 100644 index 0000000000000000000000000000000000000000..57f577bb8187b422a3a4f2c97f36a641d30f2965 --- /dev/null +++ b/dreamcoder/frontier.py @@ -0,0 +1,247 @@ +from dreamcoder.utilities import * +from dreamcoder.program import * +from dreamcoder.task import Task + + +class FrontierEntry(object): + def __init__( + self, + program, + _=None, + logPrior=None, + logLikelihood=None, + logPosterior=None): + self.logPosterior = logPrior + logLikelihood if logPosterior is None else logPosterior + self.program = program + self.logPrior = logPrior + self.logLikelihood = logLikelihood + + def __repr__(self): + return "FrontierEntry(program={self.program}, logPrior={self.logPrior}, logLikelihood={self.logLikelihood}".format( + self=self) + + def strip_primitive_values(self): + return FrontierEntry(program=strip_primitive_values(self.program), + logPrior=self.logPrior, + logPosterior=self.logPosterior, + logLikelihood=self.logLikelihood) + def unstrip_primitive_values(self): + return FrontierEntry(program=unstrip_primitive_values(self.program), + logPrior=self.logPrior, + logPosterior=self.logPosterior, + logLikelihood=self.logLikelihood) + + +class Frontier(object): + def __init__(self, frontier, task): + self.entries = frontier + self.task = task + + def __repr__( + self): return "Frontier(entries={self.entries}, task={self.task})".format(self=self) + + def __iter__(self): return iter(self.entries) + + def __len__(self): return len(self.entries) + + def json(self): + return {"request": self.task.request.json(), + "task": str(self.task), + "programs": [{"program": str(e.program), + "logLikelihood": e.logLikelihood} + for e in self ]} + + def strip_primitive_values(self): + return Frontier([e.strip_primitive_values() for e in self.entries ], + self.task) + def unstrip_primitive_values(self): + return Frontier([e.unstrip_primitive_values() for e in self.entries ], + self.task) + + DUMMYFRONTIERCOUNTER = 0 + + @staticmethod + def dummy(program, logLikelihood=0., logPrior=0., tp=None): + """Creates a dummy frontier containing just this program""" + if not tp: + tp = program.infer().negateVariables() + + t = Task( + "" % + (Frontier.DUMMYFRONTIERCOUNTER, + str(program)), + tp, + []) + f = Frontier([FrontierEntry(program=program, + logLikelihood=logLikelihood, + logPrior=logPrior)], + task=t) + Frontier.DUMMYFRONTIERCOUNTER += 1 + return f + + def marginalLikelihood(self): + return lse([e.logPrior + e.logLikelihood for e in self]) + + def temperature(self,T): + """Divides prior by T""" + return Frontier([ FrontierEntry(program=e.program, + logPrior=e.logPrior/T, + logLikelihood=e.logLikelihood) + for e in self], + task=self.task) + + + def normalize(self): + z = self.marginalLikelihood() + newEntries = [ + FrontierEntry( + program=e.program, + logPrior=e.logPrior, + logLikelihood=e.logLikelihood, + logPosterior=e.logPrior + + e.logLikelihood - + z) for e in self] + newEntries.sort(key=lambda e: e.logPosterior, reverse=True) + return Frontier(newEntries, + self.task) + + def expectedProductionUses(self, g): + """Returns a vector of the expected number of times each production was used""" + import numpy as np + + this = g.rescoreFrontier(self).normalize() + ps = list(sorted(g.primitives, key=str)) + features = np.zeros(len(ps)) + + for j, p in enumerate(ps): + for e in this: + w = math.exp(e.logPosterior) + features[j] += w * sum(child == p + for _, child in e.program.walk() ) + if not p.isInvented: features[j] *= 0.3 + return features + + + def removeZeroLikelihood(self): + self.entries = [ + e for e in self.entries if e.logLikelihood != float('-inf')] + return self + + def topK(self, k): + if k == 0: return Frontier([], self.task) + if k < 0: return self + newEntries = sorted(self.entries, + key=lambda e: (-e.logPosterior, str(e.program))) + return Frontier(newEntries[:k], self.task) + + def sample(self): + """Samples an entry from a frontier""" + return sampleLogDistribution([(e.logLikelihood + e.logPrior, e) + for e in self]) + + @property + def bestPosterior(self): + return min(self.entries, + key=lambda e: (-e.logPosterior, str(e.program))) + + def replaceWithSupervised(self, g): + assert self.task.supervision is not None + return g.rescoreFrontier(Frontier([FrontierEntry(self.task.supervision, + logLikelihood=0., logPrior=0.)], + task=self.task)) + + @property + def bestll(self): + best = max(self.entries, + key=lambda e: e.logLikelihood) + return best.logLikelihood + + + @property + def empty(self): return self.entries == [] + + @staticmethod + def makeEmpty(task): + return Frontier([], task=task) + + def summarize(self): + if self.empty: + return "MISS " + self.task.name + best = self.bestPosterior + return "HIT %s w/ %s ; log prior = %f ; log likelihood = %f" % ( + self.task.name, best.program, best.logPrior, best.logLikelihood) + + def summarizeFull(self): + if self.empty: + return "MISS " + self.task.name + return "\n".join([self.task.name] + + ["%f\t%s" % (e.logPosterior, e.program) + for e in self.normalize()]) + + @staticmethod + def describe(frontiers): + numberOfHits = sum(not f.empty for f in frontiers) + if numberOfHits > 0: + averageLikelihood = sum( + f.bestPosterior.logPrior for f in frontiers if not f.empty) / numberOfHits + else: + averageLikelihood = 0 + return "\n".join([f.summarize() for f in frontiers] + + ["Hits %d/%d tasks" % (numberOfHits, len(frontiers))] + + ["Average description length of a program solving a task: %f nats" % (-averageLikelihood)]) + + def combine(self, other, tolerance=0.01): + '''Takes the union of the programs in each of the frontiers''' + assert self.task == other.task + + foundDifference = False + + x = {e.program: e for e in self} + y = {e.program: e for e in other} + programs = set(x.keys()) | set(y.keys()) + union = [] + for p in programs: + if p in x: + e1 = x[p] + if p in y: + e2 = y[p] + if abs(e1.logPrior - e2.logPrior) > tolerance: + eprint( + "WARNING: Log priors differed during frontier combining: %f vs %f" % + (e1.logPrior, e2.logPrior)) + eprint("WARNING: \tThe program is", p) + eprint() + if abs(e1.logLikelihood - e2.logLikelihood) > tolerance: + foundDifference = True + eprint( + "WARNING: Log likelihoods deferred for %s: %f & %f" % + (p, e1.logLikelihood, e2.logLikelihood)) + if hasattr(self.task, 'BIC'): + eprint("\t%d examples, BIC=%f, parameterPenalty=%f, n parameters=%d, correct likelihood=%f" % + (len(self.task.examples), + self.task.BIC, + self.task.BIC * math.log(len(self.task.examples)), + substringOccurrences("REAL", str(p)), + substringOccurrences("REAL", str(p)) * self.task.BIC * math.log(len(self.task.examples)))) + e1.logLikelihood = - \ + substringOccurrences("REAL", str(p)) * self.task.BIC * math.log(len(self.task.examples)) + e2.logLikelihood = e1.logLikelihood + + e1 = FrontierEntry( + program=e1.program, + logLikelihood=( + e1.logLikelihood + + e2.logLikelihood) / + 2, + logPrior=e1.logPrior) + else: + e1 = y[p] + union.append(e1) + + if foundDifference: + eprint( + "WARNING: Log likelihoods differed for the same program on the task %s.\n" % + (self.task.name), + "\tThis is acceptable only if the likelihood model is stochastic. Took the geometric mean of the likelihoods.") + + return Frontier(union, self.task) diff --git a/dreamcoder/grammar.py b/dreamcoder/grammar.py new file mode 100644 index 0000000000000000000000000000000000000000..33f4cc69b10bdb0e371c326c7418b20d10e6b34b --- /dev/null +++ b/dreamcoder/grammar.py @@ -0,0 +1,1308 @@ +from collections import defaultdict + +from dreamcoder.frontier import * +from dreamcoder.program import * +from dreamcoder.type import * +from dreamcoder.utilities import * + +import time + +class GrammarFailure(Exception): + pass + +class SketchEnumerationFailure(Exception): + pass + +class NoCandidates(Exception): + pass + + +class Grammar(object): + def __init__(self, logVariable, productions, continuationType=None): + self.logVariable = logVariable + self.productions = productions + + self.continuationType = continuationType + + self.expression2likelihood = dict((p, l) for l, _, p in productions) + self.expression2likelihood[Index(0)] = self.logVariable + + def randomWeights(self, r): + """returns a new grammar with random weights drawn from r. calls `r` w/ old weight""" + return Grammar(logVariable=r(self.logVariable), + productions=[(r(l),t,p) + for l,t,p in self.productions ], + continuationType=self.continuationType) + + def strip_primitive_values(self): + return Grammar(logVariable=self.logVariable, + productions=[(l,t,strip_primitive_values(p)) + for l,t,p in self.productions ], + continuationType=self.continuationType) + + def unstrip_primitive_values(self): + return Grammar(logVariable=self.logVariable, + productions=[(l,t,unstrip_primitive_values(p)) + for l,t,p in self.productions ], + continuationType=self.continuationType) + + def __setstate__(self, state): + """ + Legacy support for loading grammar objects without the imperative type filled in + """ + assert 'logVariable' in state + assert 'productions' in state + if 'continuationType' in state: + continuationType = state['continuationType'] + else: + if any( 'turtle' in str(t) for l,t,p in state['productions'] ): + continuationType = baseType("turtle") + elif any( 'tower' in str(t) for l,t,p in state['productions'] ): + continuationType = baseType("tower") + else: + continuationType = None + + self.__init__(state['logVariable'], state['productions'], continuationType=continuationType) + + @staticmethod + def fromProductions(productions, logVariable=0.0, continuationType=None): + """Make a grammar from primitives and their relative logpriors.""" + return Grammar(logVariable, [(l, p.infer(), p) + for l, p in productions], + continuationType=continuationType) + + @staticmethod + def uniform(primitives, continuationType=None): + return Grammar(0.0, [(0.0, p.infer(), p) for p in primitives], continuationType=continuationType) + + def __len__(self): return len(self.productions) + + def __str__(self): + def productionKey(xxx_todo_changeme): + (l, t, p) = xxx_todo_changeme + return not isinstance(p, Primitive), l is not None and -l + if self.continuationType is not None: + lines = ["continuation : %s"%self.continuationType] + else: + lines = [] + lines += ["%f\tt0\t$_" % self.logVariable] + for l, t, p in sorted(self.productions, key=productionKey): + if l is not None: + l = "%f\t%s\t%s" % (l, t, p) + else: + l = "-Inf\t%s\t%s" % (t, p) + if not t.isArrow() and isinstance(p, Invented): + try: + l += "\teval = %s" % (p.evaluate([])) + except BaseException: + pass + + lines.append(l) + return "\n".join(lines) + + def json(self): + j = {"logVariable": self.logVariable, + "productions": [{"expression": str(p), "logProbability": l} + for l, _, p in self.productions]} + if self.continuationType is not None: + j["continuationType"] = self.continuationType.json() + return j + + def _immutable_code(self): return self.logVariable, tuple(self.productions) + + def __eq__(self, o): return self._immutable_code() == o._immutable_code() + + def __ne__(self, o): return not (self == o) + + def __hash__(self): return hash(self._immutable_code()) + + @property + def primitives(self): + return [p for _, _, p in self.productions] + + def removeProductions(self, ps): + return Grammar( + self.logVariable, [ + (l, t, p) for ( + l, t, p) in self.productions if p not in ps], + continuationType=self.continuationType) + + def buildCandidates(self, request, context, environment, + # Should the log probabilities be normalized? + normalize=True, + # Should be returned a table mapping primitives to + # their candidate entry? + returnTable=False, + # Should we return probabilities vs log probabilities? + returnProbabilities=False, + # Must be a leaf (have no arguments)? + mustBeLeaf=False): + """Primitives that are candidates for being used given a requested type + If returnTable is false (default): returns [((log)likelihood, tp, primitive, context)] + if returntable is true: returns {primitive: ((log)likelihood, tp, context)}""" + if returnProbabilities: + assert normalize + + candidates = [] + variableCandidates = [] + for l, t, p in self.productions: + try: + newContext, t = t.instantiate(context) + newContext = newContext.unify(t.returns(), request) + t = t.apply(newContext) + if mustBeLeaf and t.isArrow(): + continue + candidates.append((l, t, p, newContext)) + except UnificationFailure: + continue + for j, t in enumerate(environment): + try: + newContext = context.unify(t.returns(), request) + t = t.apply(newContext) + if mustBeLeaf and t.isArrow(): + continue + variableCandidates.append((t, Index(j), newContext)) + except UnificationFailure: + continue + + if self.continuationType == request: + terminalIndices = [v.i for t,v,k in variableCandidates if not t.isArrow()] + if terminalIndices: + smallestIndex = Index(min(terminalIndices)) + variableCandidates = [(t,v,k) for t,v,k in variableCandidates + if t.isArrow() or v == smallestIndex] + + candidates += [(self.logVariable - log(len(variableCandidates)), t, p, k) + for t, p, k in variableCandidates] + if candidates == []: + raise NoCandidates() + #eprint("candidates inside buildCandidates before norm:") + #eprint(candidates) + + if normalize: + z = lse([l for l, t, p, k in candidates]) + if returnProbabilities: + candidates = [(exp(l - z), t, p, k) + for l, t, p, k in candidates] + else: + candidates = [(l - z, t, p, k) for l, t, p, k in candidates] + + #eprint("candidates inside buildCandidates after norm:") + #eprint(candidates) + + if returnTable: + return {p: (l, t, k) for l, t, p, k in candidates} + else: + return candidates + + + def sample(self, request, maximumDepth=6, maxAttempts=None): + attempts = 0 + + while True: + try: + _, e = self._sample( + request, Context.EMPTY, [], maximumDepth=maximumDepth) + return e + except NoCandidates: + if maxAttempts is not None: + attempts += 1 + if attempts > maxAttempts: + return None + continue + + def _sample(self, request, context, environment, maximumDepth): + if request.isArrow(): + context, expression = self._sample( + request.arguments[1], context, [ + request.arguments[0]] + environment, maximumDepth) + return context, Abstraction(expression) + + candidates = self.buildCandidates(request, context, environment, + normalize=True, + returnProbabilities=True, + # Force it to terminate in a + # leaf; a primitive with no + # function arguments + mustBeLeaf=maximumDepth <= 1) + #eprint("candidates:") + #eprint(candidates) + newType, chosenPrimitive, context = sampleDistribution(candidates) + + # Sample the arguments + xs = newType.functionArguments() + returnValue = chosenPrimitive + + for x in xs: + x = x.apply(context) + context, x = self._sample(x, context, environment, maximumDepth - 1) + returnValue = Application(returnValue, x) + + return context, returnValue + + def likelihoodSummary(self, context, environment, request, expression, silent=False): + if request.isArrow(): + if not isinstance(expression, Abstraction): + if not silent: + eprint("Request is an arrow but I got", expression) + return context, None + return self.likelihoodSummary(context, + [request.arguments[0]] + environment, + request.arguments[1], + expression.body, + silent=silent) + # Build the candidates + candidates = self.buildCandidates(request, context, environment, + normalize=False, + returnTable=True) + + # A list of everything that would have been possible to use here + possibles = [p for p in candidates.keys() if not p.isIndex] + numberOfVariables = sum(p.isIndex for p in candidates.keys()) + if numberOfVariables > 0: + possibles += [Index(0)] + + f, xs = expression.applicationParse() + + if f not in candidates: + if self.continuationType is not None and f.isIndex: + ls = LikelihoodSummary() + ls.constant = NEGATIVEINFINITY + return ls + + if not silent: + eprint(f, "Not in candidates") + eprint("Candidates is", candidates) + #eprint("grammar:", grammar.productions) + eprint("request is", request) + eprint("xs", xs) + eprint("environment", environment) + assert False + return context, None + + thisSummary = LikelihoodSummary() + thisSummary.record(f, possibles, + constant= -math.log(numberOfVariables) if f.isIndex else 0) + + _, tp, context = candidates[f] + argumentTypes = tp.functionArguments() + if len(xs) != len(argumentTypes): + eprint("PANIC: not enough arguments for the type") + eprint("request", request) + eprint("tp", tp) + eprint("expression", expression) + eprint("xs", xs) + eprint("argumentTypes", argumentTypes) + # This should absolutely never occur + raise GrammarFailure((context, environment, request, expression)) + + for argumentType, argument in zip(argumentTypes, xs): + argumentType = argumentType.apply(context) + context, newSummary = self.likelihoodSummary( + context, environment, argumentType, argument, silent=silent) + if newSummary is None: + return context, None + thisSummary.join(newSummary) + + return context, thisSummary + + def bestFirstEnumeration(self, request): + from heapq import heappush, heappop + + pq = [] + + def choices(parentCost, xs): + for c, x in xs: + heappush(pq, (parentCost + c, x)) + + def g(parentCost, request, _=None, + context=None, environment=[], + k=None): + """ + k is a continuation. + k: Expects to be called with MDL, context, expression. + """ + + assert k is not None + if context is None: + context = Context.EMPTY + + if request.isArrow(): + g(parentCost, + request.arguments[1], + context=context, + environment=[request.arguments[0]] + environment, + k=lambda MDL, + newContext, + p: k(MDL, + newContext, + Abstraction(p))) + else: + candidates = self.buildCandidates(request, + context, + environment, + normalize=True, + returnProbabilities=False, + returnTable=True) + choices(parentCost, + [(-f_ll_tp_newContext[1][0], + lambda: ga(parentCost - f_ll_tp_newContext[1][0], + f_ll_tp_newContext[0], + f_ll_tp_newContext[1][1].functionArguments(), + context=f_ll_tp_newContext[1][2], + environment=environment, + k=k)) for f_ll_tp_newContext in iter(candidates.items())]) + + def ga(costSoFar, f, argumentTypes, _=None, + context=None, environment=None, + k=None): + if argumentTypes == []: + k(costSoFar, context, f) + else: + t1 = argumentTypes[0].apply(context) + g(costSoFar, t1, context=context, environment=environment, + k=lambda newCost, newContext, argument: + ga(newCost, Application(f, argument), argumentTypes[1:], + context=newContext, environment=environment, + k=k)) + + def receiveResult(MDL, _, expression): + heappush(pq, (MDL, expression)) + + g(0., request, context=Context.EMPTY, environment=[], k=receiveResult) + frontier = [] + while len(frontier) < 10**3: + MDL, action = heappop(pq) + if isinstance(action, Program): + expression = action + frontier.append(expression) + #eprint("Enumerated program",expression,-MDL,self.closedLogLikelihood(request, expression)) + else: + action() + + def closedLikelihoodSummary(self, request, expression, silent=False): + try: + context, summary = self.likelihoodSummary(Context.EMPTY, [], request, expression, silent=silent) + except GrammarFailure as e: + failureExport = 'failures/grammarFailure%s.pickle' % ( + time.time() + getPID()) + eprint("PANIC: Grammar failure, exporting to ", failureExport) + with open(failureExport, 'wb') as handle: + pickle.dump((e, self, request, expression), handle) + assert False + + return summary + + def logLikelihood(self, request, expression): + summary = self.closedLikelihoodSummary(request, expression) + if summary is None: + eprint( + "FATAL: program [ %s ] does not have a likelihood summary." % + expression, "r = ", request, "\n", self) + assert False + return summary.logLikelihood(self) + + def rescoreFrontier(self, frontier): + return Frontier([FrontierEntry(e.program, + logPrior=self.logLikelihood(frontier.task.request, e.program), + logLikelihood=e.logLikelihood) + for e in frontier], + frontier.task) + + def productionUses(self, frontiers): + """Returns the expected number of times that each production was used. {production: expectedUses}""" + frontiers = [self.rescoreFrontier(f).normalize() + for f in frontiers if not f.empty] + uses = {p: 0. for p in self.primitives} + for f in frontiers: + for e in f: + summary = self.closedLikelihoodSummary(f.task.request, + e.program) + for p, u in summary.uses: + uses[p] += u * math.exp(e.logPosterior) + return uses + + def insideOutside(self, frontiers, pseudoCounts, iterations=1): + # Replace programs with (likelihood summary, uses) + frontiers = [ Frontier([ FrontierEntry((summary, summary.toUses()), + logPrior=summary.logLikelihood(self), + logLikelihood=e.logLikelihood) + for e in f + for summary in [self.closedLikelihoodSummary(f.task.request, e.program)] ], + task=f.task) + for f in frontiers ] + + g = self + for i in range(iterations): + u = Uses() + for f in frontiers: + f = f.normalize() + for e in f: + _, eu = e.program + u += math.exp(e.logPosterior) * eu + + lv = math.log(u.actualVariables + pseudoCounts) - \ + math.log(u.possibleVariables + pseudoCounts) + g = Grammar(lv, + [ (math.log(u.actualUses.get(p,0.) + pseudoCounts) - \ + math.log(u.possibleUses.get(p,0.) + pseudoCounts), + t,p) + for _,t,p in g.productions ], + continuationType=self.continuationType) + if i < iterations - 1: + frontiers = [Frontier([ FrontierEntry((summary, uses), + logPrior=summary.logLikelihood(g), + logLikelihood=e.logLikelihood) + for e in f + for (summary, uses) in [e.program] ], + task=f.task) + for f in frontiers ] + return g + + def frontierMDL(self, frontier): + return max( e.logLikelihood + self.logLikelihood(frontier.task.request, e.program) + for e in frontier ) + + + def enumeration(self,context,environment,request,upperBound, + maximumDepth=20, + lowerBound=0.): + '''Enumerates all programs whose MDL satisfies: lowerBound <= MDL < upperBound''' + if upperBound < 0 or maximumDepth == 1: + return + + if request.isArrow(): + v = request.arguments[0] + for l, newContext, b in self.enumeration(context, [v] + environment, + request.arguments[1], + upperBound=upperBound, + lowerBound=lowerBound, + maximumDepth=maximumDepth): + yield l, newContext, Abstraction(b) + + else: + candidates = self.buildCandidates(request, context, environment, + normalize=True) + + for l, t, p, newContext in candidates: + mdl = -l + if not (mdl < upperBound): + continue + + xs = t.functionArguments() + for aL, aK, application in\ + self.enumerateApplication(newContext, environment, p, xs, + upperBound=upperBound + l, + lowerBound=lowerBound + l, + maximumDepth=maximumDepth - 1): + yield aL + l, aK, application + + def enumerateApplication(self, context, environment, + function, argumentRequests, + # Upper bound on the description length of all of + # the arguments + upperBound, + # Lower bound on the description length of all of + # the arguments + lowerBound=0., + maximumDepth=20, + originalFunction=None, + argumentIndex=0): + if upperBound < 0. or maximumDepth == 1: + return + if originalFunction is None: + originalFunction = function + + if argumentRequests == []: + if lowerBound <= 0. and 0. < upperBound: + yield 0., context, function + else: + return + else: + argRequest = argumentRequests[0].apply(context) + laterRequests = argumentRequests[1:] + for argL, newContext, arg in self.enumeration(context, environment, argRequest, + upperBound=upperBound, + lowerBound=0., + maximumDepth=maximumDepth): + if violatesSymmetry(originalFunction, arg, argumentIndex): + continue + + newFunction = Application(function, arg) + for resultL, resultK, result in self.enumerateApplication(newContext, environment, newFunction, + laterRequests, + upperBound=upperBound + argL, + lowerBound=lowerBound + argL, + maximumDepth=maximumDepth, + originalFunction=originalFunction, + argumentIndex=argumentIndex + 1): + yield resultL + argL, resultK, result + + def sketchEnumeration(self,context,environment,request,sk,upperBound, + maximumDepth=20, + lowerBound=0.): + '''Enumerates all sketch instantiations whose MDL satisfies: lowerBound <= MDL < upperBound''' + if upperBound < 0. or maximumDepth == 1: + return + + if sk.isHole: + yield from self.enumeration(context, environment, request, upperBound, + maximumDepth=maximumDepth, + lowerBound=lowerBound) + elif request.isArrow(): + assert sk.isAbstraction + v = request.arguments[0] + for l, newContext, b in self.sketchEnumeration(context, [v] + environment, + request.arguments[1], + sk.body, + upperBound=upperBound, + lowerBound=lowerBound, + maximumDepth=maximumDepth): + yield l, newContext, Abstraction(b) + + else: + f, xs = sk.applicationParse() + if f.isIndex: + ft = environment[f.i].apply(context) + elif f.isInvented or f.isPrimitive: + context, ft = f.tp.instantiate(context) + elif f.isAbstraction: + assert False, "sketch is not in beta longform" + elif f.isHole: + assert False, "hole as function not yet supported" + elif f.isApplication: + assert False, "should never happen - bug in applicationParse" + else: assert False + + try: context = context.unify(ft.returns(), request) + except UnificationFailure: + print("Exception: sketch is ill-typed") + return #so that we can continue evaluating + # raise SketchEnumerationFailure() #"sketch is ill-typed" + ft = ft.apply(context) + argumentRequests = ft.functionArguments() + + assert len(argumentRequests) == len(xs) + + yield from self.sketchApplication(context, environment, + f, xs, argumentRequests, + upperBound=upperBound, + lowerBound=lowerBound, + maximumDepth=maximumDepth - 1) + + + def sketchApplication(self, context, environment, + function, arguments, argumentRequests, + # Upper bound on the description length of all of + # the arguments + upperBound, + # Lower bound on the description length of all of + # the arguments + lowerBound=0., + maximumDepth=20): + if upperBound < 0. or maximumDepth == 1: + return + + if argumentRequests == []: + if lowerBound <= 0. and 0. < upperBound: + yield 0., context, function + else: + return + else: + argRequest = argumentRequests[0].apply(context) + laterRequests = argumentRequests[1:] + firstSketch = arguments[0] + laterSketches = arguments[1:] + for argL, newContext, arg in self.sketchEnumeration(context, environment, argRequest, + firstSketch, + upperBound=upperBound, + lowerBound=0., + maximumDepth=maximumDepth): + + newFunction = Application(function, arg) + for resultL, resultK, result in self.sketchApplication(newContext, environment, newFunction, + laterSketches, laterRequests, + upperBound=upperBound + argL, + lowerBound=lowerBound + argL, + maximumDepth=maximumDepth): + + yield resultL + argL, resultK, result + + def sketchLogLikelihood(self, request, full, sk, context=Context.EMPTY, environment=[]): + """ + calculates mdl of full program 'full' from sketch 'sk' + """ + if sk.isHole: + _, summary = self.likelihoodSummary(context, environment, request, full) + if summary is None: + eprint( + "FATAL: program [ %s ] does not have a likelihood summary." % + full, "r = ", request, "\n", self) + assert False + return summary.logLikelihood(self), context + + elif request.isArrow(): + assert sk.isAbstraction and full.isAbstraction + #assert sk.f == full.f #is this right? or do i need to recurse? + v = request.arguments[0] + return self.sketchLogLikelihood(request.arguments[1], full.body, sk.body, context=context, environment=[v] + environment) + + else: + sk_f, sk_xs = sk.applicationParse() + full_f, full_xs = full.applicationParse() + if sk_f.isIndex: + assert sk_f == full_f, "sketch and full program don't match on an index" + ft = environment[sk_f.i].apply(context) + elif sk_f.isInvented or sk_f.isPrimitive: + assert sk_f == full_f, "sketch and full program don't match on a primitive" + context, ft = sk_f.tp.instantiate(context) + elif sk_f.isAbstraction: + assert False, "sketch is not in beta longform" + elif sk_f.isHole: + assert False, "hole as function not yet supported" + elif sk_f.isApplication: + assert False, "should never happen - bug in applicationParse" + else: assert False + + try: context = context.unify(ft.returns(), request) + except UnificationFailure: assert False, "sketch is ill-typed" + ft = ft.apply(context) + argumentRequests = ft.functionArguments() + + assert len(argumentRequests) == len(sk_xs) == len(full_xs) #this might not be true if holes?? + + return self.sketchllApplication(context, environment, + sk_f, sk_xs, full_f, full_xs, argumentRequests) + + def sketchllApplication(self, context, environment, + sk_function, sk_arguments, full_function, full_arguments, argumentRequests): + if argumentRequests == []: + return torch.tensor([0.]).cuda(), context #does this make sense? + else: + argRequest = argumentRequests[0].apply(context) + laterRequests = argumentRequests[1:] + + sk_firstSketch = sk_arguments[0] + full_firstSketch = full_arguments[0] + sk_laterSketches = sk_arguments[1:] + full_laterSketches = full_arguments[1:] + + argL, newContext = self.sketchLogLikelihood(argRequest, full_firstSketch, sk_firstSketch, context=context, environment=environment) + + #finish this... + sk_newFunction = Application(sk_function, sk_firstSketch) # is this redundant? maybe + full_newFunction = Application(full_function, full_firstSketch) + + resultL, context = self.sketchllApplication(newContext, environment, sk_newFunction, sk_laterSketches, + full_newFunction, full_laterSketches, laterRequests) + + return resultL + argL, context + + + def enumerateNearby(self, request, expr, distance=3.0): + """Enumerate programs with local mutations in subtrees with small description length""" + if distance <= 0: + yield expr + else: + def mutations(tp, loss): + for l, _, expr in self.enumeration( + Context.EMPTY, [], tp, distance - loss): + yield expr, l + yield from Mutator(self, mutations).execute(expr, request) + + + def enumerateHoles(self, request, expr, k=3, return_obj=Hole): + """Enumerate programs with a single hole within mdl distance""" + #TODO: make it possible to enumerate sketches with multiple holes + def mutations(tp, loss, is_left_application=False): + """ + to allow applications lhs to become a hole, + remove the condition below and ignore all the is_left_application kwds + """ + if not is_left_application: + yield return_obj(), 0 + top_k = [] + for expr, l in Mutator(self, mutations).execute(expr, request): + if len(top_k) > 0: + i, v = min(enumerate(top_k), key=lambda x:x[1][1]) + if l > v[1]: + if len(top_k) >= k: + top_k[i] = (expr, l) + else: + top_k.append((expr, l)) + elif len(top_k) < k: + top_k.append((expr, l)) + else: + top_k.append((expr, l)) + return sorted(top_k, key=lambda x:-x[1]) + + def untorch(self): + return Grammar(self.logVariable.data.tolist()[0], + [ (l.data.tolist()[0], t, p) + for l, t, p in self.productions], + continuationType=self.continuationType) + +class LikelihoodSummary(object): + '''Summarizes the terms that will be used in a likelihood calculation''' + + def __init__(self): + self.uses = {} + self.normalizers = {} + self.constant = 0. + + def __str__(self): + return """LikelihoodSummary(constant = %f, +uses = {%s}, +normalizers = {%s})""" % (self.constant, + ", ".join( + "%s: %d" % (k, + v) for k, + v in self.uses.items()), + ", ".join( + "%s: %d" % (k, + v) for k, + v in self.normalizers.items())) + + def record(self, actual, possibles, constant=0.): + # Variables are all normalized to be $0 + if isinstance(actual, Index): + actual = Index(0) + + # Make it something that we can hash + possibles = frozenset(sorted(possibles, key=hash)) + + self.constant += constant + self.uses[actual] = self.uses.get(actual, 0) + 1 + self.normalizers[possibles] = self.normalizers.get(possibles, 0) + 1 + + def join(self, other): + self.constant += other.constant + for k, v in other.uses.items(): + self.uses[k] = self.uses.get(k, 0) + v + for k, v in other.normalizers.items(): + self.normalizers[k] = self.normalizers.get(k, 0) + v + + def logLikelihood(self, grammar): + return self.constant + \ + sum(count * grammar.expression2likelihood[p] for p, count in self.uses.items()) - \ + sum(count * lse([grammar.expression2likelihood[p] for p in ps]) + for ps, count in self.normalizers.items()) + def logLikelihood_overlyGeneral(self, grammar): + """Calculates log likelihood of this summary, given that the summary might refer to productions that don't occur in the grammar""" + return self.constant + \ + sum(count * grammar.expression2likelihood[p] for p, count in self.uses.items()) - \ + sum(count * lse([grammar.expression2likelihood.get(p,NEGATIVEINFINITY) for p in ps]) + for ps, count in self.normalizers.items()) + def numerator(self, grammar): + return self.constant + \ + sum(count * grammar.expression2likelihood[p] for p, count in self.uses.items()) + def denominator(self, grammar): + return \ + sum(count * lse([grammar.expression2likelihood[p] for p in ps]) + for ps, count in self.normalizers.items()) + def toUses(self): + from collections import Counter + + possibleVariables = sum( count if Index(0) in ps else 0 + for ps, count in self.normalizers.items() ) + actualVariables = self.uses.get(Index(0), 0.) + actualUses = {k: v + for k, v in self.uses.items() + if not k.isIndex } + possibleUses = dict(Counter(p + for ps, count in self.normalizers.items() + for p_ in ps + if not p_.isIndex + for p in [p_]*count )) + return Uses(possibleVariables, actualVariables, + possibleUses, actualUses) + + +class Uses(object): + '''Tracks uses of different grammar productions''' + + def __init__(self, possibleVariables=0., actualVariables=0., + possibleUses={}, actualUses={}): + self.actualVariables = actualVariables + self.possibleVariables = possibleVariables + self.possibleUses = possibleUses + self.actualUses = actualUses + + def __str__(self): + return "Uses(actualVariables = %f, possibleVariables = %f, actualUses = %s, possibleUses = %s)" %\ + (self.actualVariables, self.possibleVariables, self.actualUses, self.possibleUses) + + def __repr__(self): return str(self) + + def __mul__(self, a): + return Uses(a * self.possibleVariables, + a * self.actualVariables, + {p: a * u for p, u in self.possibleUses.items()}, + {p: a * u for p, u in self.actualUses.items()}) + + def __imul__(self, a): + self.possibleVariables *= a + self.actualVariables *= a + for p in self.possibleUses: + self.possibleUses[p] *= a + for p in self.actualUses: + self.actualUses[p] *= a + return self + + def __rmul__(self, a): + return self * a + + def __radd__(self, o): + if o == 0: + return self + return self + o + + def __add__(self, o): + if o == 0: + return self + + def merge(x, y): + z = x.copy() + for k, v in y.items(): + z[k] = v + x.get(k, 0.) + return z + return Uses(self.possibleVariables + o.possibleVariables, + self.actualVariables + o.actualVariables, + merge(self.possibleUses, o.possibleUses), + merge(self.actualUses, o.actualUses)) + + def __iadd__(self, o): + self.possibleVariables += o.possibleVariables + self.actualVariables += o.actualVariables + for k, v in o.possibleUses.items(): + self.possibleUses[k] = self.possibleUses.get(k, 0.) + v + for k, v in o.actualUses.items(): + self.actualUses[k] = self.actualUses.get(k, 0.) + v + return self + + @staticmethod + def join(z, *weightedUses): + """Consumes weightedUses""" + if not weightedUses: + Uses.empty + if len(weightedUses) == 1: + return weightedUses[0][1] + for w, u in weightedUses: + u *= exp(w - z) + total = Uses() + total.possibleVariables = sum( + u.possibleVariables for _, u in weightedUses) + total.actualVariables = sum(u.actualVariables for _, u in weightedUses) + total.possibleUses = defaultdict(float) + total.actualUses = defaultdict(float) + for _, u in weightedUses: + for k, v in u.possibleUses.items(): + total.possibleUses[k] += v + for k, v in u.actualUses.items(): + total.actualUses[k] += v + return total + + +Uses.empty = Uses() + +class ContextualGrammar: + def __init__(self, noParent, variableParent, library): + self.noParent, self.variableParent, self.library = noParent, variableParent, library + + self.productions = [(None,t,p) for _,t,p in self.noParent.productions ] + self.primitives = [p for _,_2,p in self.productions ] + + self.continuationType = noParent.continuationType + assert variableParent.continuationType == self.continuationType + + assert set(noParent.primitives) == set(variableParent.primitives) + assert set(variableParent.primitives) == set(library.keys()) + for e,gs in library.items(): + assert len(gs) == len(e.infer().functionArguments()) + for g in gs: + assert set(g.primitives) == set(library.keys()) + assert g.continuationType == self.continuationType + + def untorch(self): + return ContextualGrammar(self.noParent.untorch(), self.variableParent.untorch(), + {e: [g.untorch() for g in gs ] + for e,gs in self.library.items() }) + + def randomWeights(self, r): + """returns a new grammar with random weights drawn from r. calls `r` w/ old weight""" + return ContextualGrammar(self.noParent.randomWeights(r), + self.variableParent.randomWeights(r), + {e: [g.randomWeights(r) for g in gs] + for e,gs in self.library.items() }) + def __str__(self): + lines = ["No parent:",str(self.noParent),"", + "Variable parent:",str(self.variableParent),"", + ""] + for e,gs in self.library.items(): + for j,g in enumerate(gs): + lines.extend(["Parent %s, argument index %s"%(e,j), + str(g), + ""]) + return "\n".join(lines) + + def json(self): + return {"noParent": self.noParent.json(), + "variableParent": self.variableParent.json(), + "productions": [{"program": str(e), + "arguments": [gp.json() for gp in gs ]} + for e,gs in self.library.items() ]} + + @staticmethod + def fromGrammar(g): + return ContextualGrammar(g, g, + {e: [g]*len(e.infer().functionArguments()) + for e in g.primitives }) + + + class LS: # likelihood summary + def __init__(self, owner): + self.noParent = LikelihoodSummary() + self.variableParent = LikelihoodSummary() + self.library = {e: [LikelihoodSummary() for _ in gs] for e,gs in owner.library.items() } + + def record(self, parent, parentIndex, actual, possibles, constant): + if parent is None: ls = self.noParent + elif parent.isIndex: ls = self.variableParent + else: ls = self.library[parent][parentIndex] + ls.record(actual, possibles, constant=constant) + + def join(self, other): + self.noParent.join(other.noParent) + self.variableParent.join(other.variableParent) + for e,gs in self.library.items(): + for g1,g2 in zip(gs, other.library[e]): + g1.join(g2) + + def logLikelihood(self, owner): + return self.noParent.logLikelihood(owner.noParent) + \ + self.variableParent.logLikelihood(owner.variableParent) + \ + sum(r.logLikelihood(g) + for e, rs in self.library.items() + for r,g in zip(rs, owner.library[e]) ) + def numerator(self, owner): + return self.noParent.numerator(owner.noParent) + \ + self.variableParent.numerator(owner.variableParent) + \ + sum(r.numerator(g) + for e, rs in self.library.items() + for r,g in zip(rs, owner.library[e]) ) + def denominator(self, owner): + return self.noParent.denominator(owner.noParent) + \ + self.variableParent.denominator(owner.variableParent) + \ + sum(r.denominator(g) + for e, rs in self.library.items() + for r,g in zip(rs, owner.library[e]) ) + + def likelihoodSummary(self, parent, parentIndex, context, environment, request, expression): + if request.isArrow(): + assert expression.isAbstraction + return self.likelihoodSummary(parent, parentIndex, + context, + [request.arguments[0]] + environment, + request.arguments[1], + expression.body) + if parent is None: g = self.noParent + elif parent.isIndex: g = self.variableParent + else: g = self.library[parent][parentIndex] + candidates = g.buildCandidates(request, context, environment, + normalize=False, returnTable=True) + + # A list of everything that would have been possible to use here + possibles = [p for p in candidates.keys() if not p.isIndex] + numberOfVariables = sum(p.isIndex for p in candidates.keys()) + if numberOfVariables > 0: + possibles += [Index(0)] + + f, xs = expression.applicationParse() + + assert f in candidates + + thisSummary = self.LS(self) + thisSummary.record(parent, parentIndex, + f, possibles, + constant= -math.log(numberOfVariables) if f.isIndex else 0) + + _, tp, context = candidates[f] + argumentTypes = tp.functionArguments() + assert len(xs) == len(argumentTypes) + + for i, (argumentType, argument) in enumerate(zip(argumentTypes, xs)): + argumentType = argumentType.apply(context) + context, newSummary = self.likelihoodSummary(f, i, + context, environment, argumentType, argument) + thisSummary.join(newSummary) + + return context, thisSummary + + def closedLikelihoodSummary(self, request, expression): + return self.likelihoodSummary(None,None, + Context.EMPTY,[], + request, expression)[1] + + def logLikelihood(self, request, expression): + return self.closedLikelihoodSummary(request, expression).logLikelihood(self) + + def sample(self, request, maximumDepth=8, maxAttempts=None): + attempts = 0 + while True: + try: + _, e = self._sample(None, None, Context.EMPTY, [], request, maximumDepth) + return e + except NoCandidates: + if maxAttempts is not None: + attempts += 1 + if attempts > maxAttempts: return None + continue + + def _sample(self, parent, parentIndex, context, environment, request, maximumDepth): + if request.isArrow(): + context, body = self._sample(parent, parentIndex, context, + [request.arguments[0]] + environment, + request.arguments[1], + maximumDepth) + return context, Abstraction(body) + if parent is None: g = self.noParent + elif parent.isIndex: g = self.variableParent + else: g = self.library[parent][parentIndex] + candidates = g.buildCandidates(request, context, environment, + normalize=True, returnProbabilities=True, + mustBeLeaf=(maximumDepth <= 1)) + newType, chosenPrimitive, context = sampleDistribution(candidates) + + xs = newType.functionArguments() + returnValue = chosenPrimitive + + for j,x in enumerate(xs): + x = x.apply(context) + context, x = self._sample(chosenPrimitive, j, context, environment, x, maximumDepth - 1) + returnValue = Application(returnValue, x) + + return context, returnValue + + def expectedUsesMonteCarlo(self, request, debug=None): + import numpy as np + n = 0 + u = [0.]*len(self.primitives) + primitives = list(sorted(self.primitives, key=str)) + noInventions = all( not p.isInvented for p in primitives ) + primitive2index = {primitive: i + for i, primitive in enumerate(primitives) + if primitive.isInvented or noInventions } + eprint(primitive2index) + ns = 10000 + with timing(f"calculated expected uses using Monte Carlo simulation w/ {ns} samples"): + for _ in range(ns): + p = self.sample(request, maxAttempts=0) + if p is None: continue + n += 1 + if debug and n < 10: + eprint(debug, p) + for _, child in p.walk(): + if child not in primitive2index: continue + u[primitive2index[child]] += 1.0 + u = np.array(u)/n + if debug: + eprint(f"Got {n} samples. Feature vector:\n{u}") + eprint(f"Likely used primitives: {[p for p,i in primitive2index.items() if u[i] > 0.5]}") + eprint(f"Likely used primitive indices: {[i for p,i in primitive2index.items() if u[i] > 0.5]}") + return u + + def featureVector(self, _=None, requests=None, onlyInventions=True, normalize=True): + """ + Returns the probabilities licensed by the type system. + This is like the grammar productions, but with irrelevant junk removed. + Its intended use case is for clustering; it should be strictly better than the raw transition matrix. + """ + if requests is None: + if self.continuationType: requests = {self.continuationType} + elif any( 'REAL' == str(p) for p in self.primitives ): requests = set() + elif any( 'STRING' == str(p) for p in self.primitives ): requests = {tlist(tcharacter)} + else: requests = set() + requests = {r.returns() for r in requests} + features = [] + logWeights = [] + for l,t,p in sorted(self.noParent.productions, + key=lambda z: str(z[2])): + if onlyInventions and not p.isInvented: continue + if any( canUnify(r, t.returns()) for r in requests ) or len(requests) == 0: + logWeights.append(l) + features.append(logWeights) + for parent in sorted(self.primitives, key=str): + if onlyInventions and not parent.isInvented: continue + if parent not in self.library: continue + argumentTypes = parent.infer().functionArguments() + for j,g in enumerate(self.library[parent]): + argumentType = argumentTypes[j] + logWeights = [] + for l,t,p in sorted(g.productions, + key=lambda z: str(z[2])): + if onlyInventions and not p.isInvented: continue + if canUnify(argumentType.returns(), t.returns()): + logWeights.append(l) + features.append(logWeights) + + if normalize: + features = [ [math.exp(w - z) for w in lw ] + for lw in features + if lw + for z in [lse(lw)] ] + import numpy as np + return np.array([f + for lw in features + for f in lw]) + + def enumeration(self,context,environment,request,upperBound, + parent=None, parentIndex=None, + maximumDepth=20, + lowerBound=0.): + '''Enumerates all programs whose MDL satisfies: lowerBound <= MDL < upperBound''' + if upperBound < 0 or maximumDepth == 1: + return + + if request.isArrow(): + v = request.arguments[0] + for l, newContext, b in self.enumeration(context, [v] + environment, + request.arguments[1], + parent=parent, parentIndex=parentIndex, + upperBound=upperBound, + lowerBound=lowerBound, + maximumDepth=maximumDepth): + yield l, newContext, Abstraction(b) + else: + if parent is None: g = self.noParent + elif parent.isIndex: g = self.variableParent + else: g = self.library[parent][parentIndex] + + candidates = g.buildCandidates(request, context, environment, + normalize=True) + + for l, t, p, newContext in candidates: + mdl = -l + if not (mdl < upperBound): + continue + + xs = t.functionArguments() + for aL, aK, application in\ + self.enumerateApplication(newContext, environment, p, xs, + parent=p, + upperBound=upperBound + l, + lowerBound=lowerBound + l, + maximumDepth=maximumDepth - 1): + yield aL + l, aK, application + + def enumerateApplication(self, context, environment, + function, argumentRequests, + # Upper bound on the description length of all of + # the arguments + upperBound, + # Lower bound on the description length of all of + # the arguments + lowerBound=0., + maximumDepth=20, + parent=None, + originalFunction=None, + argumentIndex=0): + assert parent is not None + if upperBound < 0. or maximumDepth == 1: + return + if originalFunction is None: + originalFunction = function + + if argumentRequests == []: + if lowerBound <= 0. and 0. < upperBound: + yield 0., context, function + else: + return + else: + argRequest = argumentRequests[0].apply(context) + laterRequests = argumentRequests[1:] + for argL, newContext, arg in self.enumeration(context, environment, argRequest, + parent=parent, parentIndex=argumentIndex, + upperBound=upperBound, + lowerBound=0., + maximumDepth=maximumDepth): + if violatesSymmetry(originalFunction, arg, argumentIndex): + continue + + newFunction = Application(function, arg) + for resultL, resultK, result in self.enumerateApplication(newContext, environment, newFunction, + laterRequests, + parent=parent, + upperBound=upperBound + argL, + lowerBound=lowerBound + argL, + maximumDepth=maximumDepth, + originalFunction=originalFunction, + argumentIndex=argumentIndex + 1): + yield resultL + argL, resultK, result + + + + +def violatesSymmetry(f, x, argumentIndex): + if not f.isPrimitive: + return False + while x.isApplication: + x = x.f + if not x.isPrimitive: + return False + f = f.name + x = x.name + if f == "car": + return x == "cons" or x == "empty" + if f == "cdr": + return x == "cons" or x == "empty" + if f == "+": + return x == "0" or (argumentIndex == 1 and x == "+") + if f == "-": + return argumentIndex == 1 and x == "0" + if f == "empty?": + return x == "cons" or x == "empty" + if f == "zero?": + return x == "0" or x == "1" + if f == "index" or f == "map" or f == "zip": + return x == "empty" + if f == "range": + return x == "0" + if f == "fold": + return argumentIndex == 1 and x == "empty" + return False + +def batchLikelihood(jobs): + """Takes as input a set of (program, request, grammar) and returns a dictionary mapping each of these to its likelihood under the grammar""" + superGrammar = Grammar.uniform(list({p for _1,_2,g in jobs for p in g.primitives}), + continuationType=list(jobs)[0][-1].continuationType) + programsAndRequests = {(program, request) + for program, request, grammar in jobs} + with timing(f"Calculated {len(programsAndRequests)} likelihood summaries"): + summary = {(program, request): superGrammar.closedLikelihoodSummary(request, program) + for program, request in programsAndRequests} + with timing(f"Calculated log likelihoods from summaries"): + response = {} + for program, request, grammar in jobs: + fast = summary[(program, request)].logLikelihood_overlyGeneral(grammar) + if False: # debugging + slow = grammar.logLikelihood(request, program) + print(program) + eprint(grammar.closedLikelihoodSummary(request, program)) + eprint(superGrammar.closedLikelihoodSummary(request, program)) + print() + assert abs(fast - slow) < 0.0001 + response[(program, request, grammar)] = fast + return response + +if __name__ == "__main__": + from dreamcoder.domains.arithmetic.arithmeticPrimitives import * + g = ContextualGrammar.fromGrammar(Grammar.uniform([k0,k1,addition, subtraction])) + g = g.randomWeights(lambda *a: random.random()) + #p = Program.parse("(lambda (+ 1 $0))") + request = arrow(tint,tint) + for ll,_,p in g.enumeration(Context.EMPTY,[],request, + 12.): + ll_ = g.logLikelihood(request,p) + print(ll,p,ll_) + d = abs(ll - ll_) + assert d < 0.0001 diff --git a/dreamcoder/likelihoodModel.py b/dreamcoder/likelihoodModel.py new file mode 100644 index 0000000000000000000000000000000000000000..7c973fd88981e3f73622ec49f3e6dd92a2f5346f --- /dev/null +++ b/dreamcoder/likelihoodModel.py @@ -0,0 +1,407 @@ +from dreamcoder.task import Task, EvaluationTimeout +import gc +from dreamcoder.utilities import * +from collections import Counter +import math + +from dreamcoder.domains.regex.groundtruthRegexes import gt_dict + +gt_dict = {"Data column no. "+str(num): r_str for num, r_str in gt_dict.items()} + +class AllOrNothingLikelihoodModel: + def __init__(self, timeout=None): + self.timeout = timeout + + def score(self, program, task): + logLikelihood = task.logLikelihood(program, self.timeout) + return valid(logLikelihood), logLikelihood + + +class EuclideanLikelihoodModel: + """Likelihood is based on Euclidean distance between features""" + + def __init__(self, featureExtractor, successCutoff=0.9): + self.extract = featureExtractor + self.successCutoff = successCutoff + + def score(self, program, task): + taskFeat = self.extract.featuresOfTask(task) + progFeat = self.extract.featuresOfProgram(program, task.request) + assert len(taskFeat) == len(progFeat) + distance = sum((x1 - x2)**2 for x1, x2 in zip(taskFeat, progFeat)) + logLikelihood = float(-distance) # FIXME: this is really naive + return exp(logLikelihood) > self.successCutoff, logLikelihood + +def longest_common_substr(arr): + #array of examples + +# Python 3 program to find the stem +# of given list of words +# function to find the stem (longest +# common substring) from the string array + # Determine size of the array + n = len(arr) + + # Take first word from array + # as reference + s = arr[0] + l = len(s) + res = "" + for i in range(l) : + for j in range( i + 1, l + 1) : + # generating all possible substrings + # of our reference string arr[0] i.e s + stem = s[i:j] + k = 1 + for k in range(1, n): + + # Check if the generated stem is + # common to to all words + if stem not in arr[k]: + break + + # If current substring is present in + # all strings and its length is greater + # than current result + if (k + 1 == n and len(res) < len(stem)): res = stem + return res + +def add_string_constants(tasks): + for task in tasks: + task.str_const = longest_common_substr([example[1] for example in task.examples]) + return tasks + +def get_gt_ll(name, examples): + #gets groundtruth from dict + import pregex as pre + r_str = gt_dict[name] + preg = pre.create(r_str) + + if type(examples[0]) == list: + examples = [ "".join(example) for example in examples] + + s = sum( preg.match(example) for example in examples) + if s == float("-inf"): + print("bad for ", name) + print('preg:', preg) + print('preg sample:', [preg.sample() for i in range(3)]) + print("exs", examples) + #assert False + return s + + +def add_cutoff_values(tasks, ll_cutoff): + from dreamcoder.domains.regex.makeRegexTasks import makeNewTasks + if ll_cutoff is None or ll_cutoff == "None": + for task in tasks: + task.ll_cutoff = None + return tasks + if ll_cutoff == "gt": + from dreamcoder.domains.regex.makeRegexTasks import regexHeldOutExamples + for task in tasks: + task.ll_cutoff = None + task.gt = get_gt_ll(task.name, [example[1] for example in task.examples]) + task.gt_test = get_gt_ll(task.name, + [example[1] for example in regexHeldOutExamples(task) ]) + return tasks + elif ll_cutoff == "plus": + for task in tasks: + task.ll_cutoff = regex_plus_bound([example[1] for example in task.examples]) + return tasks + elif ll_cutoff == "bigram": + eprint("WARNING: using entire corpus to make bigram model") + #this means i do it twice, which is eh whatever + model = make_corpus_bigram(show_tasks(makeNewTasks())) + for task in tasks: + task.ll_cutoff = bigram_corpus_score([example[1] for example in task.examples], model) + return tasks + elif ll_cutoff =="unigram": + eprint("WARNING: using entire corpus to make unigram model") + #this means i do it twice, which is eh whatever + model = make_corpus_unigram(show_tasks(makeNewTasks())) + for task in tasks: + task.ll_cutoff = unigram_corpus_score([example[1] for example in task.examples], model) + return tasks + elif ll_cutoff =="mix": + eprint("WARNING: using entire corpus to make bigram model") + eprint("WARNING: using entire corpus to make unigram model") + #this means i do it twice, which is eh whatever + unigram = make_corpus_unigram(show_tasks(makeNewTasks())) + bigram = make_corpus_bigram(show_tasks(makeNewTasks())) + for task in tasks: + uniscore = unigram_corpus_score([example[1] for example in task.examples], unigram) + biscore = bigram_corpus_score([example[1] for example in task.examples], bigram) + task.ll_cutoff = math.log(0.75*math.exp(biscore) + 0.25*math.exp(uniscore)) + return tasks + else: + eprint("not implemented") + eprint("cutoff val:") + eprint(ll_cutoff) + assert False + +def show_tasks(dataset): + task_list = [] + for task in dataset: + task_list.append([example[1] for example in task.examples]) + return task_list + +def regex_plus_bound(X): + from pregex import pregex + c = Counter(X) + regexes = [ + pregex.create(".+"), + pregex.create("\d+"), + pregex.create("\w+"), + pregex.create("\s+"), + pregex.create("\\u+"), + pregex.create("\l+")] + regex_scores = [] + for r in regexes: + regex_scores.append(sum(c[x] * r.match(x) for x in c)/float(sum([len(x) for x in X])) ) + return max(regex_scores) + + +def make_corpus_unigram(C): + str_list = [example + '\n' for task in C for example in task] + c = Counter(char for example in str_list for char in example ) + n = sum(c.values()) + + logp = {x:math.log(c[x]/n) for x in c} + return logp + +def unigram_corpus_score(X, logp): + task_ll = 0 + for x in X: + x = x + '\n' + task_ll += sum( logp.get(c, float('-inf')) for c in x)/len(x) + + ll = task_ll/len(X) + return ll + +def unigram_task_score(X): + """ + Given a list of strings, X, calculate the maximum log-likelihood per character for a unigram model over characters (including STOP symbol) + """ + c = Counter(x for s in X for x in s) + c.update("end" for s in X) + n = sum(c.values()) + logp = {x:math.log(c[x]/n) for x in c} + return sum(c[x]*logp[x] for x in c)/n + +def make_corpus_bigram(C): + #using newline as "end" + #C is a list of tasks + + #make one big list of strings + str_list = [example + '\n' for task in C for example in task] + + #make list of + head_count = Counter(element[0] for element in str_list) + head_n = sum(head_count.values()) + head_logp = {x:math.log(head_count[x]/head_n) for x in head_count} + + body_count = Counter(element[i:i+2] for element in str_list for i in range(len(element)-1)) + body_bigram_n = sum(body_count.values()) + #body_count/body_bigram_n gives the joint of a bigram + body_character_n = Counter(char for element in str_list for char in element) + body_unigram_n = sum(body_character_n.values()) + + body_logp = {x:math.log(body_count[x] / body_bigram_n / body_character_n[x[0]] * body_unigram_n) for x in body_count} + + return {**head_logp, **body_logp} + +def bigram_corpus_score(X, logp): + #assume you have a logp dict + task_ll = 0 + for x in X: + bigram_list = [x[0]] + [x[i:i+2] for i in range(len(x)-1)] + [x[-1] + '\n'] + bigram_list = [ ''.join(b) if isinstance(b,list) else b + for b in bigram_list ] + + string_ll = sum(logp.get(bigram, float('-inf')) for bigram in bigram_list) #/(len(x) + 1) + + task_ll += string_ll + + ll = task_ll #/len(X) + return ll + + +class ProbabilisticLikelihoodModel: + + def __init__(self, timeout): + self.timeout = timeout + # i need timeout + + def score(self, program, task): + # need a try, catch here for problems, and for timeouts + # can copy task.py for the timeout structure + try: + def timeoutCallBack(_1, _2): raise EvaluationTimeout() + signal.signal(signal.SIGVTALRM, timeoutCallBack) + signal.setitimer(signal.ITIMER_VIRTUAL, self.timeout) + try: + string_pregex = program.evaluate([]) + # if 'left_paren' in program.show(False): + #eprint("string_pregex:", string_pregex) + #eprint("string_pregex:", string_pregex) + preg = string_pregex # pregex.create(string_pregex) + except IndexError: + # free variable + return False, NEGATIVEINFINITY + except Exception as e: + eprint("Exception during evaluation:", e) + if "Attempt to evaluate fragment variable" in e: + eprint("program (bc fragment error)", program) + return False, NEGATIVEINFINITY + + #tries and catches + + # include prior somehow + # right now, just summing up log likelihoods. IDK if this is correct. + # also not using prior at all. + + cum_ll = 0 + + example_list = [example[1] for example in task.examples] + c_example_list = Counter(example_list) + + for c_example in c_example_list: + #might want a try, except around the following line: + + try: + #eprint("about to match", program) + #print("preg:", preg) + ll = preg.match(c_example) + #eprint("completed match", ll, program) + except ValueError as e: + eprint("ValueError:", e) + ll = float('-inf') + + #eprint("pregex:", string_pregex) + #eprint("example[1]", example[1]) + + if ll == float('-inf'): + return False, NEGATIVEINFINITY + else: + #ll_per_char = ll/float(len(example[1])) + #cum_ll_per_char += ll_per_char + + cum_ll += c_example_list[c_example] * ll + + #normalized_cum_ll_per_char = cum_ll_per_char/float(len(task.examples)) + #avg_char_num = sum([len(example[1]) for example in task.examples])/float(len(task.examples)) + + #cutoff_ll = regex_plus_bound(example_list) + + normalized_cum_ll = cum_ll/ float(sum([len(example) for example in example_list])) + + + + #TODO: change the way normalized_cum_ll is calculated + #TODO: refactor to pass in bigram_model, and others + #TODO: refactor to do 95% certainty thing josh wants + success = normalized_cum_ll > task.ll_cutoff + + + + #eprint("cutoff_ll:", cutoff_ll, ", norm_cum_ll:", normalized_cum_ll) + + return success, normalized_cum_ll + + except EvaluationTimeout: + eprint("Timed out while evaluating", program) + return False, NEGATIVEINFINITY + finally: + signal.signal(signal.SIGVTALRM, lambda *_: None) + signal.setitimer(signal.ITIMER_VIRTUAL, 0) + + +try: + import torch + import torch.nn as nn + import torch.nn.functional as F + from torch.nn.utils.rnn import pack_padded_sequence, pad_packed_sequence + from torch.autograd import Variable + + class FeatureDiscriminatorLikelihoodModel(nn.Module): + def __init__(self, tasks, featureExtractor, + successCutoff=0.6, H=8, trainingSuccessRatio=0.5): + super(FeatureDiscriminatorLikelihoodModel, self).__init__() + self.extract = featureExtractor + self.successCutoff = successCutoff + self.trainingSuccessRatio = trainingSuccessRatio + + self.W = nn.Linear(featureExtractor.outputDimensionality, H) + self.output = nn.Linear(H, 1) + + # training on initialization + self.train(tasks) + + def forward(self, examples): + """ + Examples is a list of feature sets corresponding to a particular example. + Output in [0,1] whether all examples correspond to the same program + """ + assert all( + len(x) == self.extract.outputDimensionality for x in examples) + examples = [F.tanh(self.W(ex)) for ex in examples] + maxed, _ = torch.max(torch.stack(examples), dim=0) + return F.sigmoid(self.output(maxed)) + + def train(self, tasks, steps=400): + # list of list of features for each example in each task + optimizer = torch.optim.Adam(self.parameters()) + with timing("Trained discriminator"): + losses = [] + for i in range(steps): + self.zero_grad() + if random.random() <= self.trainingSuccessRatio: + # success + t = random.choice(tasks) + features = [self.extract.featuresOfTask( + Task(t.name, t.request, [ex], t.features)) + for ex in t.examples] + loss = (self(features) - 1.0)**2 + else: + # fail + t1, t2 = random.sample(tasks, 2) + features1 = [self.extract.featuresOfTask( + Task(t1.name, t1.request, [ex], t1.features)) + for ex in t1.examples[:len(t1.examples) / 2]] + features2 = [self.extract.featuresOfTask( + Task(t2.name, t2.request, [ex], t2.features)) + for ex in t2.examples[len(t2.examples) / 2:]] + features = features1 + features2 + loss = self(features)**2 + + loss.backward() + optimizer.step() + losses.append(loss.data[0]) + if not i % 50: + eprint( + "Discriminator Epoch", + i, + "Loss", + sum(losses) / + len(losses)) + gc.collect() + + def score(self, program, task): + taskFeatures = self.extract.featuresOfTask(task) + progFeatures = self.extract.featuresOfProgram( + program, task.request) + likelihood = self([taskFeatures] + [progFeatures]) + likelihood = float(likelihood) + return likelihood > self.successCutoff, log(likelihood) +except ImportError: + pass + + +if __name__=="__main__": + + arr = ['MAM.OSBS.2014.06', 'MAM.OSBS.2013.07', 'MAM.OSBS.2013.09', 'MAM.OSBS.2014.05', 'MAM.OSBS.2014.11'] + stems = longest_common_substr(arr) + print(stems) + + + diff --git a/dreamcoder/primitiveGraph.py b/dreamcoder/primitiveGraph.py new file mode 100644 index 0000000000000000000000000000000000000000..44318b4d37ffe64de5f7a70e939c191b2e0a40cf --- /dev/null +++ b/dreamcoder/primitiveGraph.py @@ -0,0 +1,182 @@ +from dreamcoder.program import * + +def graphPrimitives(result, prefix, view=False): + try: + from graphviz import Digraph + except: + eprint("You are missing the graphviz library - cannot graph primitives!") + return + + + primitives = { p + for g in result.grammars + for p in g.primitives + if p.isInvented } + age = {p: min(j for j,g in enumerate(result.grammars) if p in g.primitives) + 1 + for p in primitives } + + + + ages = set(age.values()) + age2primitives = {a: {p for p,ap in age.items() if a == ap } + for a in ages} + + def lb(s,T=20): + s = s.split() + l = [] + n = 0 + for w in s: + if n + len(w) > T: + l.append("
") + n = 0 + n += len(w) + l.append(w) + return " ".join(l) + + nameSimplification = { + "fix1": 'Y', + "tower_loopM": "for", + "tower_embed": "get/set", + "moveHand": "move", + "reverseHand": "reverse", + "logo_DIVA": '/', + "logo_epsA": 'ε', + "logo_epsL": 'ε', + "logo_IFTY": '∞', + "logo_forLoop": "for", + "logo_UA": "2π", + "logo_FWRT": "move", + "logo_UL": "1", + "logo_SUBA": "-", + "logo_ZL": "0", + "logo_ZA": "0", + "logo_MULL": "*", + "logo_MULA": "*", + "logo_PT": "pen-up", + "logo_GETSET": "get/set" + } + + + name = {} + simplification = {} + depth = {} + def getName(p): + if p in name: return name[p] + children = {k: getName(k) + for _,k in p.body.walk() + if k.isInvented} + simplification_ = p.body + for k,childName in children.items(): + simplification_ = simplification_.substitute(k, Primitive(childName,None,None)) + for original, simplified in nameSimplification.items(): + simplification_ = simplification_.substitute(Primitive(original,None,None), + Primitive(simplified,None,None)) + name[p] = "f%d"%len(name) + simplification[p] = name[p] + '=' + lb(prettyProgram(simplification_, Lisp=True)) + depth[p] = 1 + max([depth[k] for k in children] + [0]) + return name[p] + + for p in primitives: + getName(p) + + depths = {depth[p] for p in primitives} + depth2primitives = {d: {p for p in primitives if depth[p] == d } + for d in depths} + + englishDescriptions = {"#(lambda (lambda (map (lambda (index $0 $2)) (range $0))))": + "Prefix", + "#(lambda (lambda (fold $0 $1 (lambda (lambda (cons $1 $0))))))": + "Append", + "#(lambda (cons LPAREN (#(lambda (lambda (fold $0 $1 (lambda (lambda (cons $1 $0)))))) (cons RPAREN empty) $0)))": + "Enclose w/ parens", + "#(lambda (unfold $0 (lambda (empty? $0)) (lambda (car $0)) (lambda (#(lambda (lambda (fold $1 $1 (lambda (lambda (cdr (if (char-eq? $1 $2) $3 $0))))))) $0 SPACE))))": + "Abbreviate", + "#(lambda (lambda (fold $1 $1 (lambda (lambda (cdr (if (char-eq? $1 $2) $3 $0)))))))": + "Drop until char", + "#(lambda (lambda (fold $1 $1 (lambda (lambda (if (char-eq? $1 $2) empty (cons $1 $0)))))))": + "Take until char", + "#(lambda (lambda (#(lambda (lambda (fold $0 $1 (lambda (lambda (cons $1 $0)))))) (cons $0 $1))))": + "Append char", + "#(lambda (lambda (map (lambda (if (char-eq? $0 $1) $2 $0)))))": + "Substitute char", + "#(lambda (lambda (length (unfold $1 (lambda (char-eq? (car $0) $1)) (lambda ',') (lambda (cdr $0))))))": + "Index of char", + "#(lambda (#(lambda (lambda (fold $0 $1 (lambda (lambda (cons $1 $0)))))) $0 STRING))": + "Append const", + "#(lambda (lambda (fold $1 $1 (lambda (lambda (fold $0 $0 (lambda (lambda (cdr (if (char-eq? $1 $4) $0 (cons $1 $0)))))))))))": + "Last word", + "#(lambda (lambda (cons (car $1) (cons '.' (cons (car $0) (cons '.' empty))))))": + "Abbreviate name", + "#(lambda (lambda (cons (car $1) (cons $0 empty))))": + "First char+char", + "#(lambda (#(lambda (lambda (fold $0 $1 (lambda (lambda (cons $1 $0)))))) (#(lambda (lambda (fold $1 $1 (lambda (lambda (fold $0 $0 (lambda (lambda (cdr (if (char-eq? $1 $4) $0 (cons $1 $0))))))))))) STRING (index (length (cdr $0)) $0)) $0))": + "Ensure suffix" + + } + + def makeUnorderedGraph(fn): + g = Digraph() + g.graph_attr['rankdir'] = 'LR' + + for p in primitives: + g.node(getName(p), + label="<%s>"%simplification[p]) + for p in primitives: + children = {k + for _,k in p.body.walk() + if k.isInvented} + for k in children: + g.edge(name[k],name[p]) + try: + g.render(fn,view=view) + eprint("Exported primitive graph to",fn) + except: + eprint("Got some kind of error while trying to render primitive graph! Did you install graphviz/dot?") + + + + def makeGraph(ordering, fn): + g = Digraph() + g.graph_attr['rankdir'] = 'RL' + + if False: + with g.subgraph(name='cluster_0') as sg: + sg.graph_attr['rank'] = 'same' + sg.attr(label='Primitives') + for j, primitive in enumerate(result.grammars[-1].primitives): + if primitive.isInvented: continue + sg.node("primitive%d"%j, label=str(primitive)) + + for o in sorted(ordering.keys()): + with g.subgraph(name='cluster_%d'%o) as sg: + sg.graph_attr['rank'] = 'same' + #sg.attr(label='Depth %d'%o) + for p in ordering[o]: + if str(p) in englishDescriptions: + thisLabel = '<%s
%s>'%(englishDescriptions[str(p)],simplification[p]) + else: + eprint("WARNING: Do not have an English description of:\n",p) + eprint() + thisLabel = "<%s>"%simplification[p] + sg.node(getName(p), + label=thisLabel) + + for p in ordering[o]: + children = {k + for _,k in p.body.walk() + if k.isInvented} + for k in children: + g.edge(name[k],name[p]) + + eprint("Exporting primitive graph to",fn) + try: + g.render(fn,view=view) + except Exception as e: + eprint("Got some kind of error while trying to render primitive graph! Did you install graphviz/dot?") + print(e) + + + + makeGraph(depth2primitives,prefix+'depth.pdf') + makeUnorderedGraph(prefix+'unordered.pdf') + #makeGraph(age2primitives,prefix+'iter.pdf') diff --git a/dreamcoder/program.py b/dreamcoder/program.py new file mode 100644 index 0000000000000000000000000000000000000000..c66aaebb75cc30f98d6775764156bb6188afe527 --- /dev/null +++ b/dreamcoder/program.py @@ -0,0 +1,1214 @@ +# -*- coding: utf-8 -*- + +from dreamcoder.type import * +from dreamcoder.utilities import * + +from time import time +import math + + +class InferenceFailure(Exception): + pass + + +class ShiftFailure(Exception): + pass + +class RunFailure(Exception): + pass + + +class Program(object): + def __repr__(self): return str(self) + + def __ne__(self, o): return not (self == o) + + def __str__(self): return self.show(False) + + def canHaveType(self, t): + try: + context, actualType = self.inferType(Context.EMPTY, [], {}) + context, t = t.instantiate(context) + context.unify(t, actualType) + return True + except UnificationFailure as e: + return False + + def betaNormalForm(self): + n = self + while True: + np = n.betaReduce() + if np is None: return n + n = np + + def infer(self): + try: + return self.inferType(Context.EMPTY, [], {})[1].canonical() + except UnificationFailure as e: + raise InferenceFailure(self, e) + + def uncurry(self): + t = self.infer() + a = len(t.functionArguments()) + e = self + existingAbstractions = 0 + while e.isAbstraction: + e = e.body + existingAbstractions += 1 + newAbstractions = a - existingAbstractions + assert newAbstractions >= 0 + + # e is the body stripped of abstractions. we are going to pile + # some more lambdas at the front, so free variables in e + # (which were bound to the stripped abstractions) need to be + # shifted by the number of abstractions that we will be adding + e = e.shift(newAbstractions) + + for n in reversed(range(newAbstractions)): + e = Application(e, Index(n)) + for _ in range(a): + e = Abstraction(e) + + assert self.infer() == e.infer(), \ + "FATAL: uncurry has a bug. %s : %s, but uncurried to %s : %s" % (self, self.infer(), + e, e.infer()) + return e + + def wellTyped(self): + try: + self.infer() + return True + except InferenceFailure: + return False + + def runWithArguments(self, xs): + f = self.evaluate([]) + for x in xs: + f = f(x) + return f + + def applicationParses(self): yield self, [] + + def applicationParse(self): return self, [] + + @property + def closed(self): + for surroundingAbstractions, child in self.walk(): + if isinstance(child, FragmentVariable): + return False + if isinstance(child, Index) and child.free( + surroundingAbstractions): + return False + return True + + @property + def numberOfFreeVariables(expression): + n = 0 + for surroundingAbstractions, child in expression.walk(): + # Free variable + if isinstance(child, Index) and child.free( + surroundingAbstractions): + n = max(n, child.i - surroundingAbstractions + 1) + return n + + def freeVariables(self): + for surroundingAbstractions, child in self.walk(): + if child.isIndex and child.i >= surroundingAbstractions: + yield child.i - surroundingAbstractions + + @property + def isIndex(self): return False + + @property + def isUnion(self): return False + + @property + def isApplication(self): return False + + @property + def isAbstraction(self): return False + + @property + def isPrimitive(self): return False + + @property + def isInvented(self): return False + + @property + def isHole(self): return False + + @staticmethod + def parse(s): + s = parseSExpression(s) + def p(e): + if isinstance(e,list): + if e[0] == '#': + assert len(e) == 2 + return Invented(p(e[1])) + if e[0] == 'lambda': + assert len(e) == 2 + return Abstraction(p(e[1])) + f = p(e[0]) + for x in e[1:]: + f = Application(f,p(x)) + return f + assert isinstance(e,str) + if e[0] == '$': return Index(int(e[1:])) + if e in Primitive.GLOBALS: return Primitive.GLOBALS[e] + if e == '??' or e == '?': return FragmentVariable.single + if e == '': return Hole.single + raise ParseFailure((s,e)) + return p(s) + + @staticmethod + def _parse(s,n): + while n < len(s) and s[n].isspace(): + n += 1 + for p in [ + Application, + Abstraction, + Index, + Invented, + FragmentVariable, + Hole, + Primitive]: + try: + return p._parse(s,n) + except ParseFailure: + continue + raise ParseFailure(s) + + # parser helpers + @staticmethod + def parseConstant(s,n,*constants): + for constant in constants: + try: + for i,c in enumerate(constant): + if i + n >= len(s) or s[i + n] != c: raise ParseFailure(s) + return n + len(constant) + except ParseFailure: continue + raise ParseFailure(s) + + @staticmethod + def parseHumanReadable(s): + s = parseSExpression(s) + def p(s, environment): + if isinstance(s, list) and s[0] in ['lambda','\\']: + assert isinstance(s[1], list) and len(s) == 3 + newEnvironment = list(reversed(s[1])) + environment + e = p(s[2], newEnvironment) + for _ in s[1]: e = Abstraction(e) + return e + if isinstance(s, list): + a = p(s[0], environment) + for x in s[1:]: + a = Application(a, p(x, environment)) + return a + for j,v in enumerate(environment): + if s == v: return Index(j) + if s in Primitive.GLOBALS: return Primitive.GLOBALS[s] + assert False, f"could not parse {s}" + return p(s, []) + + + + +class Application(Program): + '''Function application''' + + def __init__(self, f, x): + self.f = f + self.x = x + self.hashCode = None + self.isConditional = (not isinstance(f,int)) and \ + f.isApplication and \ + f.f.isApplication and \ + f.f.f.isPrimitive and \ + f.f.f.name == "if" + if self.isConditional: + self.falseBranch = x + self.trueBranch = f.x + self.branch = f.f.x + else: + self.falseBranch = None + self.trueBranch = None + self.branch = None + + def betaReduce(self): + # See if either the function or the argument can be reduced + f = self.f.betaReduce() + if f is not None: return Application(f,self.x) + x = self.x.betaReduce() + if x is not None: return Application(self.f,x) + + # Neither of them could be reduced. Is this not a redex? + if not self.f.isAbstraction: return None + + # Perform substitution + b = self.f.body + v = self.x + return b.substitute(Index(0), v.shift(1)).shift(-1) + + def isBetaLong(self): + return (not self.f.isAbstraction) and self.f.isBetaLong() and self.x.isBetaLong() + + def freeVariables(self): + return self.f.freeVariables() | self.x.freeVariables() + + def clone(self): return Application(self.f.clone(), self.x.clone()) + + def annotateTypes(self, context, environment): + self.f.annotateTypes(context, environment) + self.x.annotateTypes(context, environment) + r = context.makeVariable() + context.unify(arrow(self.x.annotatedType, r), self.f.annotatedType) + self.annotatedType = r.applyMutable(context) + + + @property + def isApplication(self): return True + + def __eq__( + self, + other): return isinstance( + other, + Application) and self.f == other.f and self.x == other.x + + def __hash__(self): + if self.hashCode is None: + self.hashCode = hash((hash(self.f), hash(self.x))) + return self.hashCode + + """Because Python3 randomizes the hash function, we need to never pickle the hash""" + def __getstate__(self): + return self.f, self.x, self.isConditional, self.falseBranch, self.trueBranch, self.branch + def __setstate__(self, state): + try: + self.f, self.x, self.isConditional, self.falseBranch, self.trueBranch, self.branch = state + except ValueError: + # backward compatibility + assert 'x' in state + assert 'f' in state + f = state['f'] + x = state['x'] + self.f = f + self.x = x + self.isConditional = (not isinstance(f,int)) and \ + f.isApplication and \ + f.f.isApplication and \ + f.f.f.isPrimitive and \ + f.f.f.name == "if" + if self.isConditional: + self.falseBranch = x + self.trueBranch = f.x + self.branch = f.f.x + else: + self.falseBranch = None + self.trueBranch = None + self.branch = None + + self.hashCode = None + + def visit(self, + visitor, + *arguments, + **keywords): return visitor.application(self, + *arguments, + **keywords) + + def show(self, isFunction): + if isFunction: + return "%s %s" % (self.f.show(True), self.x.show(False)) + else: + return "(%s %s)" % (self.f.show(True), self.x.show(False)) + + def evaluate(self, environment): + if self.isConditional: + if self.branch.evaluate(environment): + return self.trueBranch.evaluate(environment) + else: + return self.falseBranch.evaluate(environment) + else: + return self.f.evaluate(environment)(self.x.evaluate(environment)) + + def inferType(self, context, environment, freeVariables): + (context, ft) = self.f.inferType(context, environment, freeVariables) + (context, xt) = self.x.inferType(context, environment, freeVariables) + (context, returnType) = context.makeVariable() + context = context.unify(ft, arrow(xt, returnType)) + return (context, returnType.apply(context)) + + def applicationParses(self): + yield self, [] + for f, xs in self.f.applicationParses(): + yield f, xs + [self.x] + + def applicationParse(self): + f, xs = self.f.applicationParse() + return f, xs + [self.x] + + def shift(self, offset, depth=0): + return Application(self.f.shift(offset, depth), + self.x.shift(offset, depth)) + + def substitute(self, old, new): + if self == old: + return new + return Application( + self.f.substitute( + old, new), self.x.substitute( + old, new)) + + def walkUncurried(self, d=0): + yield d, self + f, xs = self.applicationParse() + yield from f.walkUncurried(d) + for x in xs: + yield from x.walkUncurried(d) + + def walk(self, surroundingAbstractions=0): + yield surroundingAbstractions, self + yield from self.f.walk(surroundingAbstractions) + yield from self.x.walk(surroundingAbstractions) + + def size(self): return self.f.size() + self.x.size() + + @staticmethod + def _parse(s,n): + while n < len(s) and s[n].isspace(): n += 1 + if n == len(s) or s[n] != '(': raise ParseFailure(s) + n += 1 + + xs = [] + while True: + x, n = Program._parse(s, n) + xs.append(x) + while n < len(s) and s[n].isspace(): n += 1 + if n == len(s): + raise ParseFailure(s) + if s[n] == ")": + n += 1 + break + e = xs[0] + for x in xs[1:]: + e = Application(e, x) + return e, n + + +class Index(Program): + ''' + deBruijn index: https://en.wikipedia.org/wiki/De_Bruijn_index + These indices encode variables. + ''' + + def __init__(self, i): + self.i = i + + def show(self, isFunction): return "$%d" % self.i + + def __eq__(self, o): return isinstance(o, Index) and o.i == self.i + + def __hash__(self): return self.i + + def visit(self, + visitor, + *arguments, + **keywords): return visitor.index(self, + *arguments, + **keywords) + + def evaluate(self, environment): + return environment[self.i] + + def inferType(self, context, environment, freeVariables): + if self.bound(len(environment)): + return (context, environment[self.i].apply(context)) + else: + i = self.i - len(environment) + if i in freeVariables: + return (context, freeVariables[i].apply(context)) + context, variable = context.makeVariable() + freeVariables[i] = variable + return (context, variable) + + def clone(self): return Index(self.i) + + def annotateTypes(self, context, environment): + self.annotatedType = environment[self.i].applyMutable(context) + + def shift(self, offset, depth=0): + # bound variable + if self.bound(depth): + return self + else: # free variable + i = self.i + offset + if i < 0: + raise ShiftFailure() + return Index(i) + + def betaReduce(self): return None + + def isBetaLong(self): return True + + def freeVariables(self): return {self.i} + + def substitute(self, old, new): + if old == self: + return new + else: + return self + + def walk(self, surroundingAbstractions=0): yield surroundingAbstractions, self + + def walkUncurried(self, d=0): yield d, self + + def size(self): return 1 + + def free(self, surroundingAbstractions): + '''Is this index a free variable, given that it has surroundingAbstractions lambda's around it?''' + return self.i >= surroundingAbstractions + + def bound(self, surroundingAbstractions): + '''Is this index a bound variable, given that it has surroundingAbstractions lambda's around it?''' + return self.i < surroundingAbstractions + + @property + def isIndex(self): return True + + @staticmethod + def _parse(s,n): + while n < len(s) and s[n].isspace(): n += 1 + if n == len(s) or s[n] != '$': + raise ParseFailure(s) + n += 1 + j = "" + while n < len(s) and s[n].isdigit(): + j += s[n] + n += 1 + if j == "": + raise ParseFailure(s) + return Index(int(j)), n + + +class Abstraction(Program): + '''Lambda abstraction. Creates a new function.''' + + def __init__(self, body): + self.body = body + self.hashCode = None + + @property + def isAbstraction(self): return True + + def __eq__(self, o): return isinstance( + o, Abstraction) and o.body == self.body + + def __hash__(self): + if self.hashCode is None: + self.hashCode = hash((hash(self.body),)) + return self.hashCode + + """Because Python3 randomizes the hash function, we need to never pickle the hash""" + def __getstate__(self): + return self.body + def __setstate__(self, state): + self.body = state + self.hashCode = None + + def isBetaLong(self): return self.body.isBetaLong() + + def freeVariables(self): + return {f - 1 for f in self.body.freeVariables() if f > 0} + + def visit(self, + visitor, + *arguments, + **keywords): return visitor.abstraction(self, + *arguments, + **keywords) + + def clone(self): return Abstraction(self.body.clone()) + + def annotateTypes(self, context, environment): + v = context.makeVariable() + self.body.annotateTypes(context, [v] + environment) + self.annotatedType = arrow(v.applyMutable(context), self.body.annotatedType) + + def show(self, isFunction): + return "(lambda %s)" % (self.body.show(False)) + + def evaluate(self, environment): + return lambda x: self.body.evaluate([x] + environment) + + def betaReduce(self): + b = self.body.betaReduce() + if b is None: return None + return Abstraction(b) + + def inferType(self, context, environment, freeVariables): + (context, argumentType) = context.makeVariable() + (context, returnType) = self.body.inferType( + context, [argumentType] + environment, freeVariables) + return (context, arrow(argumentType, returnType).apply(context)) + + def shift(self, offset, depth=0): + return Abstraction(self.body.shift(offset, depth + 1)) + + def substitute(self, old, new): + if self == old: + return new + old = old.shift(1) + new = new.shift(1) + return Abstraction(self.body.substitute(old, new)) + + def walk(self, surroundingAbstractions=0): + yield surroundingAbstractions, self + yield from self.body.walk(surroundingAbstractions + 1) + + def walkUncurried(self, d=0): + yield d, self + yield from self.body.walkUncurried(d + 1) + + def size(self): return self.body.size() + + @staticmethod + def _parse(s,n): + n = Program.parseConstant(s,n, + '(\\','(lambda','(\u03bb') + + while n < len(s) and s[n].isspace(): n += 1 + + b, n = Program._parse(s,n) + while n < len(s) and s[n].isspace(): n += 1 + n = Program.parseConstant(s,n,')') + return Abstraction(b), n + + +class Primitive(Program): + GLOBALS = {} + + def __init__(self, name, ty, value): + self.tp = ty + self.name = name + self.value = value + if name not in Primitive.GLOBALS: + Primitive.GLOBALS[name] = self + + @property + def isPrimitive(self): return True + + def __eq__(self, o): return isinstance( + o, Primitive) and o.name == self.name + + def __hash__(self): return hash(self.name) + + def visit(self, + visitor, + *arguments, + **keywords): return visitor.primitive(self, + *arguments, + **keywords) + + def show(self, isFunction): return self.name + + def clone(self): return Primitive(self.name, self.tp, self.value) + + def annotateTypes(self, context, environment): + self.annotatedType = self.tp.instantiateMutable(context) + + def evaluate(self, environment): return self.value + + def betaReduce(self): return None + + def isBetaLong(self): return True + + def freeVariables(self): return set() + + def inferType(self, context, environment, freeVariables): + return self.tp.instantiate(context) + + def shift(self, offset, depth=0): return self + + def substitute(self, old, new): + if self == old: + return new + else: + return self + + def walk(self, surroundingAbstractions=0): yield surroundingAbstractions, self + + def walkUncurried(self, d=0): yield d, self + + def size(self): return 1 + + @staticmethod + def _parse(s,n): + while n < len(s) and s[n].isspace(): n += 1 + name = [] + while n < len(s) and not s[n].isspace() and s[n] not in '()': + name.append(s[n]) + n += 1 + name = "".join(name) + if name in Primitive.GLOBALS: + return Primitive.GLOBALS[name], n + raise ParseFailure(s) + + # TODO(@mtensor): needs to be fixed to handle both pickling lambda functions and unpickling in general. + # def __getstate__(self): + # return self.name + + # def __setstate__(self, state): + # #for backwards compatibility: + # if type(state) == dict: + # self.__dict__ = state + # else: + # p = Primitive.GLOBALS[state] + # self.__init__(p.name, p.tp, p.value) + +class Invented(Program): + '''New invented primitives''' + + def __init__(self, body): + self.body = body + self.tp = self.body.infer() + self.hashCode = None + + @property + def isInvented(self): return True + + def show(self, isFunction): return "#%s" % (self.body.show(False)) + + def visit(self, + visitor, + *arguments, + **keywords): return visitor.invented(self, + *arguments, + **keywords) + + def __eq__(self, o): return isinstance(o, Invented) and o.body == self.body + + def __hash__(self): + if self.hashCode is None: + self.hashCode = hash((0, hash(self.body))) + return self.hashCode + + """Because Python3 randomizes the hash function, we need to never pickle the hash""" + def __getstate__(self): + return self.body, self.tp + def __setstate__(self, state): + self.body, self.tp = state + self.hashCode = None + + def clone(self): return Invented(self.body) + + def annotateTypes(self, context, environment): + self.annotatedType = self.tp.instantiateMutable(context) + + def evaluate(self, e): return self.body.evaluate([]) + + def betaReduce(self): return self.body + + def isBetaLong(self): return True + + def freeVariables(self): return set() + + def inferType(self, context, environment, freeVariables): + return self.tp.instantiate(context) + + def shift(self, offset, depth=0): return self + + def substitute(self, old, new): + if self == old: + return new + else: + return self + + def walk(self, surroundingAbstractions=0): yield surroundingAbstractions, self + + def walkUncurried(self, d=0): yield d, self + + def size(self): return 1 + + @staticmethod + def _parse(s,n): + while n < len(s) and s[n].isspace(): n += 1 + if n < len(s) and s[n] == '#': + n += 1 + b,n = Program._parse(s,n) + return Invented(b),n + + raise ParseFailure(s) + + +class FragmentVariable(Program): + def __init__(self): pass + + def show(self, isFunction): return "??" + + def __eq__(self, o): return isinstance(o, FragmentVariable) + + def __hash__(self): return 42 + + def visit(self, visitor, *arguments, **keywords): + return visitor.fragmentVariable(self, *arguments, **keywords) + + def evaluate(self, e): + raise Exception('Attempt to evaluate fragment variable') + + def betaReduce(self): + raise Exception('Attempt to beta reduce fragment variable') + + def inferType(self, context, environment, freeVariables): + return context.makeVariable() + + def shift(self, offset, depth=0): + raise Exception('Attempt to shift fragment variable') + + def substitute(self, old, new): + if self == old: + return new + else: + return self + + def match( + self, + context, + expression, + holes, + variableBindings, + environment=[]): + surroundingAbstractions = len(environment) + try: + context, variable = context.makeVariable() + holes.append( + (variable, expression.shift(-surroundingAbstractions))) + return context, variable + except ShiftFailure: + raise MatchFailure() + + def walk(self, surroundingAbstractions=0): yield surroundingAbstractions, self + + def walkUncurried(self, d=0): yield d, self + + def size(self): return 1 + + @staticmethod + def _parse(s,n): + while n < len(s) and s[n].isspace(): n += 1 + n = Program.parseConstant(s,n,'??','?') + return FragmentVariable.single, n + +FragmentVariable.single = FragmentVariable() + + +class Hole(Program): + def __init__(self): pass + + def show(self, isFunction): return "" + + @property + def isHole(self): return True + + def __eq__(self, o): return isinstance(o, Hole) + + def __hash__(self): return 42 + + def evaluate(self, e): + raise Exception('Attempt to evaluate hole') + + def betaReduce(self): + raise Exception('Attempt to beta reduce hole') + + def inferType(self, context, environment, freeVariables): + return context.makeVariable() + + def shift(self, offset, depth=0): + raise Exception('Attempt to shift fragment variable') + + def walk(self, surroundingAbstractions=0): yield surroundingAbstractions, self + + def walkUncurried(self, d=0): yield d, self + + def size(self): return 1 + + @staticmethod + def _parse(s,n): + while n < len(s) and s[n].isspace(): n += 1 + n = Program.parseConstant(s,n, + '') + return Hole.single, n + + +Hole.single = Hole() + + +class ShareVisitor(object): + def __init__(self): + self.primitiveTable = {} + self.inventedTable = {} + self.indexTable = {} + self.applicationTable = {} + self.abstractionTable = {} + + def invented(self, e): + body = e.body.visit(self) + i = id(body) + if i in self.inventedTable: + return self.inventedTable[i] + new = Invented(body) + self.inventedTable[i] = new + return new + + def primitive(self, e): + if e.name in self.primitiveTable: + return self.primitiveTable[e.name] + self.primitiveTable[e.name] = e + return e + + def index(self, e): + if e.i in self.indexTable: + return self.indexTable[e.i] + self.indexTable[e.i] = e + return e + + def application(self, e): + f = e.f.visit(self) + x = e.x.visit(self) + fi = id(f) + xi = id(x) + i = (fi, xi) + if i in self.applicationTable: + return self.applicationTable[i] + new = Application(f, x) + self.applicationTable[i] = new + return new + + def abstraction(self, e): + body = e.body.visit(self) + i = id(body) + if i in self.abstractionTable: + return self.abstractionTable[i] + new = Abstraction(body) + self.abstractionTable[i] = new + return new + + def execute(self, e): + return e.visit(self) + + +class Mutator: + """Perform local mutations to an expr, yielding the expr and the + description length distance from the original program""" + + def __init__(self, grammar, fn): + """Fn yields (expression, loglikelihood) from a type and loss. + Therefore, loss+loglikelihood is the distance from the original program.""" + self.fn = fn + self.grammar = grammar + self.history = [] + + def enclose(self, expr): + for h in self.history[::-1]: + expr = h(expr) + return expr + + def invented(self, e, tp, env, is_lhs=False): + deleted_ll = self.logLikelihood(tp, e, env) + for expr, replaced_ll in self.fn(tp, deleted, is_left_application=is_lhs): + yield self.enclose(expr), deleted_ll + replaced_ll + + def primitive(self, e, tp, env, is_lhs=False): + deleted_ll = self.logLikelihood(tp, e, env) + for expr, replaced_ll in self.fn(tp, deleted_ll, is_left_application=is_lhs): + yield self.enclose(expr), deleted_ll + replaced_ll + + def index(self, e, tp, env, is_lhs=False): + #yield from () + deleted_ll = self.logLikelihood(tp, e, env) #self.grammar.logVariable + for expr, replaced_ll in self.fn(tp, deleted_ll, is_left_application=is_lhs): + yield self.enclose(expr), deleted_ll + replaced_ll + + def application(self, e, tp, env, is_lhs=False): + self.history.append(lambda expr: Application(expr, e.x)) + f_tp = arrow(e.x.infer(), tp) + yield from e.f.visit(self, f_tp, env, is_lhs=True) + self.history[-1] = lambda expr: Application(e.f, expr) + x_tp = inferArg(tp, e.f.infer()) + yield from e.x.visit(self, x_tp, env) + self.history.pop() + deleted_ll = self.logLikelihood(tp, e, env) + for expr, replaced_ll in self.fn(tp, deleted_ll, is_left_application=is_lhs): + yield self.enclose(expr), deleted_ll + replaced_ll + + def abstraction(self, e, tp, env, is_lhs=False): + self.history.append(lambda expr: Abstraction(expr)) + yield from e.body.visit(self, tp.arguments[1], [tp.arguments[0]]+env) + self.history.pop() + deleted_ll = self.logLikelihood(tp, e, env) + for expr, replaced_ll in self.fn(tp, deleted_ll, is_left_application=is_lhs): + yield self.enclose(expr), deleted_ll + replaced_ll + + def execute(self, e, tp): + yield from e.visit(self, tp, []) + + def logLikelihood(self, tp, e, env): + summary = None + try: + _, summary = self.grammar.likelihoodSummary(Context.EMPTY, env, + tp, e, silent=True) + except AssertionError as err: + #print(f"closedLikelihoodSummary failed on tp={tp}, e={e}, error={err}") + pass + if summary is not None: + return summary.logLikelihood(self.grammar) + else: + tmpE, depth = e, 0 + while isinstance(tmpE, Abstraction): + depth += 1 + tmpE = tmpE.body + to_introduce = len(tp.functionArguments()) - depth + if to_introduce == 0: + #print(f"HIT NEGATIVEINFINITY, tp={tp}, e={e}") + return NEGATIVEINFINITY + for i in reversed(range(to_introduce)): + e = Application(e, Index(i)) + for _ in range(to_introduce): + e = Abstraction(e) + return self.logLikelihood(tp, e, env) + + +class RegisterPrimitives(object): + def invented(self, e): e.body.visit(self) + + def primitive(self, e): + if e.name not in Primitive.GLOBALS: + Primitive(e.name, e.tp, e.value) + + def index(self, e): pass + + def application(self, e): + e.f.visit(self) + e.x.visit(self) + + def abstraction(self, e): e.body.visit(self) + + @staticmethod + def register(e): e.visit(RegisterPrimitives()) + + +class PrettyVisitor(object): + def __init__(self, Lisp=False): + self.Lisp = Lisp + self.numberOfVariables = 0 + self.freeVariables = {} + + self.variableNames = ["x", "y", "z", "u", "v", "w"] + self.variableNames += [chr(ord('a') + j) + for j in range(20)] + self.toplevel = True + + def makeVariable(self): + v = self.variableNames[self.numberOfVariables] + self.numberOfVariables += 1 + return v + + def invented(self, e, environment, isFunction, isAbstraction): + s = e.body.visit(self, [], isFunction, isAbstraction) + return s + + def primitive(self, e, environment, isVariable, isAbstraction): return e.name + + def index(self, e, environment, isVariable, isAbstraction): + if e.i < len(environment): + return environment[e.i] + else: + i = e.i - len(environment) + if i in self.freeVariables: + return self.freeVariables[i] + else: + v = self.makeVariable() + self.freeVariables[i] = v + return v + + def application(self, e, environment, isFunction, isAbstraction): + self.toplevel = False + s = "%s %s" % (e.f.visit(self, environment, True, False), + e.x.visit(self, environment, False, False)) + if isFunction: + return s + else: + return "(" + s + ")" + + def abstraction(self, e, environment, isFunction, isAbstraction): + toplevel = self.toplevel + self.toplevel = False + if not self.Lisp: + # Invent a new variable + v = self.makeVariable() + body = e.body.visit(self, + [v] + environment, + False, + True) + if not e.body.isAbstraction: + body = "." + body + body = v + body + if not isAbstraction: + body = "λ" + body + if not toplevel: + body = "(%s)" % body + return body + else: + child = e + newVariables = [] + while child.isAbstraction: + newVariables = [self.makeVariable()] + newVariables + child = child.body + body = child.visit(self, newVariables + environment, + False, True) + body = "(λ (%s) %s)"%(" ".join(reversed(newVariables)), body) + return body + + + +def prettyProgram(e, Lisp=False): + return e.visit(PrettyVisitor(Lisp=Lisp), [], False, False) + +class EtaExpandFailure(Exception): pass +class EtaLongVisitor(object): + """Converts an expression into eta-longform""" + def __init__(self, request=None): + self.request = request + self.context = None + + def makeLong(self, e, request): + if request.isArrow(): + # eta expansion + return Abstraction(Application(e.shift(1), + Index(0))) + return None + + + def abstraction(self, e, request, environment): + if not request.isArrow(): raise EtaExpandFailure() + + return Abstraction(e.body.visit(self, + request.arguments[1], + [request.arguments[0]] + environment)) + + def _application(self, e, request, environment): + l = self.makeLong(e, request) + if l is not None: return l.visit(self, request, environment) + + f, xs = e.applicationParse() + + if f.isIndex: + ft = environment[f.i].applyMutable(self.context) + elif f.isInvented or f.isPrimitive: + ft = f.tp.instantiateMutable(self.context) + else: assert False, "Not in beta long form: %s"%e + + self.context.unify(request, ft.returns()) + ft = ft.applyMutable(self.context) + + xt = ft.functionArguments() + if len(xs) != len(xt): raise EtaExpandFailure() + + returnValue = f + for x,t in zip(xs,xt): + t = t.applyMutable(self.context) + returnValue = Application(returnValue, + x.visit(self, t, environment)) + return returnValue + + # This procedure works by recapitulating the generative process + # applications indices and primitives are all generated identically + + def application(self, e, request, environment): return self._application(e, request, environment) + + def index(self, e, request, environment): return self._application(e, request, environment) + + def primitive(self, e, request, environment): return self._application(e, request, environment) + + def invented(self, e, request, environment): return self._application(e, request, environment) + + def execute(self, e): + assert len(e.freeVariables()) == 0 + + if self.request is None: + eprint("WARNING: request not specified for etaexpansion") + self.request = e.infer() + self.context = MutableContext() + el = e.visit(self, self.request, []) + self.context = None + # assert el.infer().canonical() == e.infer().canonical(), \ + # f"Types are not preserved by ETA expansion: {e} : {e.infer().canonical()} vs {el} : {el.infer().canonical()}" + return el + + + +class StripPrimitiveVisitor(): + """Replaces all primitives .value's w/ None. Does not destructively modify anything""" + def invented(self,e): + return Invented(e.body.visit(self)) + def primitive(self,e): + return Primitive(e.name,e.tp,None) + def application(self,e): + return Application(e.f.visit(self), + e.x.visit(self)) + def abstraction(self,e): + return Abstraction(e.body.visit(self)) + def index(self,e): return e + +class ReplacePrimitiveValueVisitor(): + """Intended to be used after StripPrimitiveVisitor. + Replaces all primitive.value's with their corresponding entry in Primitive.GLOBALS""" + def invented(self,e): + return Invented(e.body.visit(self)) + def primitive(self,e): + return Primitive(e.name,e.tp,Primitive.GLOBALS[e.name].value) + def application(self,e): + return Application(e.f.visit(self), + e.x.visit(self)) + def abstraction(self,e): + return Abstraction(e.body.visit(self)) + def index(self,e): return e + +def strip_primitive_values(e): + return e.visit(StripPrimitiveVisitor()) +def unstrip_primitive_values(e): + return e.visit(ReplacePrimitiveValueVisitor()) + + +# from luke +class TokeniseVisitor(object): + def invented(self, e): + return [e.body] + + def primitive(self, e): return [e.name] + + def index(self, e): + return ["$" + str(e.i)] + + def application(self, e): + return ["("] + e.f.visit(self) + e.x.visit(self) + [")"] + + def abstraction(self, e): + return ["(_lambda"] + e.body.visit(self) + [")_lambda"] + + +def tokeniseProgram(e): + return e.visit(TokeniseVisitor()) + + +def untokeniseProgram(l): + lookup = { + "(_lambda": "(lambda", + ")_lambda": ")" + } + s = " ".join(lookup.get(x, x) for x in l) + return Program.parse(s) + +if __name__ == "__main__": + from dreamcoder.domains.arithmetic.arithmeticPrimitives import * + e = Program.parse("(#(lambda (?? (+ 1 $0))) (lambda (?? (+ 1 $0))) (lambda (?? (+ 1 $0))) - * (+ +))") + eprint(e) diff --git a/dreamcoder/recognition.py b/dreamcoder/recognition.py new file mode 100644 index 0000000000000000000000000000000000000000..05eaff073f2553bb7f0ffd0e0824ea8be0c041f3 --- /dev/null +++ b/dreamcoder/recognition.py @@ -0,0 +1,1528 @@ +from dreamcoder.enumeration import * +from dreamcoder.grammar import * +# luke + + +import gc + +try: + import torch + import torch.nn as nn + import torch.nn.functional as F + from torch.autograd import Variable + from torch.nn.utils.rnn import pack_padded_sequence +except: + eprint("WARNING: Could not import torch. This is only okay when doing pypy compression.") + +try: + import numpy as np +except: + eprint("WARNING: Could not import np. This is only okay when doing pypy compression.") + +import json + + +def variable(x, volatile=False, cuda=False): + if isinstance(x, list): + x = np.array(x) + if isinstance(x, (np.ndarray, np.generic)): + x = torch.from_numpy(x) + if cuda: + x = x.cuda() + return Variable(x, volatile=volatile) + +def maybe_cuda(x, use_cuda): + if use_cuda: + return x.cuda() + else: + return x + + +def is_torch_not_a_number(v): + """checks whether a tortured variable is nan""" + v = v.data + if not ((v == v).item()): + return True + return False + +def is_torch_invalid(v): + """checks whether a torch variable is nan or inf""" + if is_torch_not_a_number(v): + return True + a = v - v + if is_torch_not_a_number(a): + return True + return False + +def _relu(x): return x.clamp(min=0) + +class Entropy(nn.Module): + """Calculates the entropy of logits""" + def __init__(self): + super(Entropy, self).__init__() + + def forward(self, x): + b = F.softmax(x, dim=0) * F.log_softmax(x, dim=0) + b = -1.0 * b.sum() + return b + +class GrammarNetwork(nn.Module): + """Neural network that outputs a grammar""" + def __init__(self, inputDimensionality, grammar): + super(GrammarNetwork, self).__init__() + self.logProductions = nn.Linear(inputDimensionality, len(grammar)+1) + self.grammar = grammar + + def forward(self, x): + """Takes as input inputDimensionality-dimensional vector and returns Grammar + Tensor-valued probabilities""" + logProductions = self.logProductions(x) + return Grammar(logProductions[-1].view(1), #logVariable + [(logProductions[k].view(1), t, program) + for k, (_, t, program) in enumerate(self.grammar.productions)], + continuationType=self.grammar.continuationType) + + def batchedLogLikelihoods(self, xs, summaries): + """Takes as input BxinputDimensionality vector & B likelihood summaries; + returns B-dimensional vector containing log likelihood of each summary""" + use_cuda = xs.device.type == 'cuda' + + B = xs.size(0) + assert len(summaries) == B + logProductions = self.logProductions(xs) + + # uses[b][p] is # uses of primitive p by summary b + uses = np.zeros((B,len(self.grammar) + 1)) + for b,summary in enumerate(summaries): + for p, production in enumerate(self.grammar.primitives): + uses[b,p] = summary.uses.get(production, 0.) + uses[b,len(self.grammar)] = summary.uses.get(Index(0), 0) + + numerator = (logProductions * maybe_cuda(torch.from_numpy(uses).float(),use_cuda)).sum(1) + numerator += maybe_cuda(torch.tensor([summary.constant for summary in summaries ]).float(), use_cuda) + + alternativeSet = {normalizer + for s in summaries + for normalizer in s.normalizers } + alternativeSet = list(alternativeSet) + + mask = np.zeros((len(alternativeSet), len(self.grammar) + 1)) + for tau in range(len(alternativeSet)): + for p, production in enumerate(self.grammar.primitives): + mask[tau,p] = 0. if production in alternativeSet[tau] else NEGATIVEINFINITY + mask[tau,len(self.grammar)] = 0. if Index(0) in alternativeSet[tau] else NEGATIVEINFINITY + mask = maybe_cuda(torch.tensor(mask).float(), use_cuda) + + # mask: Rx|G| + # logProductions: Bx|G| + # Want: mask + logProductions : BxRx|G| = z + z = mask.repeat(B,1,1) + logProductions.repeat(len(alternativeSet),1,1).transpose(1,0) + # z: BxR + z = torch.logsumexp(z, 2) # pytorch 1.0 dependency + + # Calculate how many times each normalizer was used + N = np.zeros((B, len(alternativeSet))) + for b, summary in enumerate(summaries): + for tau, alternatives in enumerate(alternativeSet): + N[b, tau] = summary.normalizers.get(alternatives,0.) + + denominator = (maybe_cuda(torch.tensor(N).float(),use_cuda) * z).sum(1) + return numerator - denominator + + + +class ContextualGrammarNetwork_LowRank(nn.Module): + def __init__(self, inputDimensionality, grammar, R=16): + """Low-rank approximation to bigram model. Parameters is linear in number of primitives. + R: maximum rank""" + + super(ContextualGrammarNetwork_LowRank, self).__init__() + + self.grammar = grammar + + self.R = R # embedding size + + # library now just contains a list of indicies which go with each primitive + self.grammar = grammar + self.library = {} + self.n_grammars = 0 + for prim in grammar.primitives: + numberOfArguments = len(prim.infer().functionArguments()) + idx_list = list(range(self.n_grammars, self.n_grammars+numberOfArguments)) + self.library[prim] = idx_list + self.n_grammars += numberOfArguments + + # We had an extra grammar for when there is no parent and for when the parent is a variable + self.n_grammars += 2 + self.transitionMatrix = LowRank(inputDimensionality, self.n_grammars, len(grammar) + 1, R) + + def grammarFromVector(self, logProductions): + return Grammar(logProductions[-1].view(1), + [(logProductions[k].view(1), t, program) + for k, (_, t, program) in enumerate(self.grammar.productions)], + continuationType=self.grammar.continuationType) + + def forward(self, x): + assert len(x.size()) == 1, "contextual grammar doesn't currently support batching" + + transitionMatrix = self.transitionMatrix(x) + + return ContextualGrammar(self.grammarFromVector(transitionMatrix[-1]), self.grammarFromVector(transitionMatrix[-2]), + {prim: [self.grammarFromVector(transitionMatrix[j]) for j in js] + for prim, js in self.library.items()} ) + + def vectorizedLogLikelihoods(self, x, summaries): + B = len(summaries) + G = len(self.grammar) + 1 + + # Which column of the transition matrix corresponds to which primitive + primitiveColumn = {p: c + for c, (_1,_2,p) in enumerate(self.grammar.productions) } + primitiveColumn[Index(0)] = G - 1 + # Which row of the transition matrix corresponds to which context + contextRow = {(parent, index): r + for parent, indices in self.library.items() + for index, r in enumerate(indices) } + contextRow[(None,None)] = self.n_grammars - 1 + contextRow[(Index(0),None)] = self.n_grammars - 2 + + transitionMatrix = self.transitionMatrix(x) + + # uses[b][g][p] is # uses of primitive p by summary b for parent g + uses = np.zeros((B,self.n_grammars,len(self.grammar)+1)) + for b,summary in enumerate(summaries): + for e, ss in summary.library.items(): + for g,s in zip(self.library[e], ss): + assert g < self.n_grammars - 2 + for p, production in enumerate(self.grammar.primitives): + uses[b,g,p] = s.uses.get(production, 0.) + uses[b,g,len(self.grammar)] = s.uses.get(Index(0), 0) + + # noParent: this is the last network output + for p, production in enumerate(self.grammar.primitives): + uses[b, self.n_grammars - 1, p] = summary.noParent.uses.get(production, 0.) + uses[b, self.n_grammars - 1, G - 1] = summary.noParent.uses.get(Index(0), 0.) + + # variableParent: this is the penultimate network output + for p, production in enumerate(self.grammar.primitives): + uses[b, self.n_grammars - 2, p] = summary.variableParent.uses.get(production, 0.) + uses[b, self.n_grammars - 2, G - 1] = summary.variableParent.uses.get(Index(0), 0.) + + uses = maybe_cuda(torch.tensor(uses).float(),use_cuda) + numerator = uses.view(B, -1) @ transitionMatrix.view(-1) + + constant = np.zeros(B) + for b,summary in enumerate(summaries): + constant[b] += summary.noParent.constant + summary.variableParent.constant + for ss in summary.library.values(): + for s in ss: + constant[b] += s.constant + + numerator = numerator + maybe_cuda(torch.tensor(constant).float(),use_cuda) + + # Calculate the god-awful denominator + # Map from (parent, index, {set-of-alternatives}) to [occurrences-in-summary-zero, occurrences-in-summary-one, ...] + alternativeSet = {} + for b,summary in enumerate(summaries): + for normalizer, frequency in summary.noParent.normalizers.items(): + k = (None,None,normalizer) + alternativeSet[k] = alternativeSet.get(k, np.zeros(B)) + alternativeSet[k][b] += frequency + for normalizer, frequency in summary.variableParent.normalizers.items(): + k = (Index(0),None,normalizer) + alternativeSet[k] = alternativeSet.get(k, np.zeros(B)) + alternativeSet[k][b] += frequency + for parent, ss in summary.library.items(): + for argumentIndex, s in enumerate(ss): + for normalizer, frequency in s.normalizers.items(): + k = (parent, argumentIndex, normalizer) + alternativeSet[k] = alternativeSet.get(k, zeros(B)) + alternativeSet[k][b] += frequency + + # Calculate each distinct normalizing constant + alternativeNormalizer = {} + for parent, index, alternatives in alternativeSet: + r = transitionMatrix[contextRow[(parent, index)]] + entries = r[ [primitiveColumn[alternative] for alternative in alternatives ]] + alternativeNormalizer[(parent, index, alternatives)] = torch.logsumexp(entries, dim=0) + + # Concatenate the normalizers into a vector + normalizerKeys = list(alternativeSet.keys()) + normalizerVector = torch.cat([ alternativeNormalizer[k] for k in normalizerKeys]) + + assert False, "This function is still in progress." + + + def batchedLogLikelihoods(self, xs, summaries): + """Takes as input BxinputDimensionality vector & B likelihood summaries; + returns B-dimensional vector containing log likelihood of each summary""" + use_cuda = xs.device.type == 'cuda' + + B = xs.shape[0] + G = len(self.grammar) + 1 + assert len(summaries) == B + + # logProductions: Bx n_grammars x G + logProductions = self.transitionMatrix(xs) + # uses[b][g][p] is # uses of primitive p by summary b for parent g + uses = np.zeros((B,self.n_grammars,len(self.grammar)+1)) + for b,summary in enumerate(summaries): + for e, ss in summary.library.items(): + for g,s in zip(self.library[e], ss): + assert g < self.n_grammars - 2 + for p, production in enumerate(self.grammar.primitives): + uses[b,g,p] = s.uses.get(production, 0.) + uses[b,g,len(self.grammar)] = s.uses.get(Index(0), 0) + + # noParent: this is the last network output + for p, production in enumerate(self.grammar.primitives): + uses[b, self.n_grammars - 1, p] = summary.noParent.uses.get(production, 0.) + uses[b, self.n_grammars - 1, G - 1] = summary.noParent.uses.get(Index(0), 0.) + + # variableParent: this is the penultimate network output + for p, production in enumerate(self.grammar.primitives): + uses[b, self.n_grammars - 2, p] = summary.variableParent.uses.get(production, 0.) + uses[b, self.n_grammars - 2, G - 1] = summary.variableParent.uses.get(Index(0), 0.) + + numerator = (logProductions*maybe_cuda(torch.tensor(uses).float(),use_cuda)).view(B,-1).sum(1) + + constant = np.zeros(B) + for b,summary in enumerate(summaries): + constant[b] += summary.noParent.constant + summary.variableParent.constant + for ss in summary.library.values(): + for s in ss: + constant[b] += s.constant + + numerator += maybe_cuda(torch.tensor(constant).float(),use_cuda) + + if True: + + # Calculate the god-awful denominator + alternativeSet = set() + for summary in summaries: + for normalizer in summary.noParent.normalizers: alternativeSet.add(normalizer) + for normalizer in summary.variableParent.normalizers: alternativeSet.add(normalizer) + for ss in summary.library.values(): + for s in ss: + for normalizer in s.normalizers: alternativeSet.add(normalizer) + alternativeSet = list(alternativeSet) + + mask = np.zeros((len(alternativeSet), G)) + for tau in range(len(alternativeSet)): + for p, production in enumerate(self.grammar.primitives): + mask[tau,p] = 0. if production in alternativeSet[tau] else NEGATIVEINFINITY + mask[tau, G - 1] = 0. if Index(0) in alternativeSet[tau] else NEGATIVEINFINITY + mask = maybe_cuda(torch.tensor(mask).float(), use_cuda) + + z = mask.repeat(self.n_grammars,1,1).repeat(B,1,1,1) + \ + logProductions.repeat(len(alternativeSet),1,1,1).transpose(0,1).transpose(1,2) + z = torch.logsumexp(z, 3) # pytorch 1.0 dependency + + N = np.zeros((B, self.n_grammars, len(alternativeSet))) + for b, summary in enumerate(summaries): + for e, ss in summary.library.items(): + for g,s in zip(self.library[e], ss): + assert g < self.n_grammars - 2 + for r, alternatives in enumerate(alternativeSet): + N[b,g,r] = s.normalizers.get(alternatives, 0.) + # noParent: this is the last network output + for r, alternatives in enumerate(alternativeSet): + N[b,self.n_grammars - 1,r] = summary.noParent.normalizers.get(alternatives, 0.) + # variableParent: this is the penultimate network output + for r, alternatives in enumerate(alternativeSet): + N[b,self.n_grammars - 2,r] = summary.variableParent.normalizers.get(alternatives, 0.) + N = maybe_cuda(torch.tensor(N).float(), use_cuda) + denominator = (N*z).sum(1).sum(1) + else: + gs = [ self(xs[b]) for b in range(B) ] + denominator = torch.cat([ summary.denominator(g) for summary,g in zip(summaries, gs) ]) + + + + + + ll = numerator - denominator + + if False: # verifying that batching works correctly + gs = [ self(xs[b]) for b in range(B) ] + _l = torch.cat([ summary.logLikelihood(g) for summary,g in zip(summaries, gs) ]) + assert torch.all((ll - _l).abs() < 0.0001) + return ll + +class ContextualGrammarNetwork_Mask(nn.Module): + def __init__(self, inputDimensionality, grammar): + """Bigram model, but where the bigram transitions are unconditional. + Individual primitive probabilities are still conditional (predicted by neural network) + """ + + super(ContextualGrammarNetwork_Mask, self).__init__() + + self.grammar = grammar + + # library now just contains a list of indicies which go with each primitive + self.grammar = grammar + self.library = {} + self.n_grammars = 0 + for prim in grammar.primitives: + numberOfArguments = len(prim.infer().functionArguments()) + idx_list = list(range(self.n_grammars, self.n_grammars+numberOfArguments)) + self.library[prim] = idx_list + self.n_grammars += numberOfArguments + + # We had an extra grammar for when there is no parent and for when the parent is a variable + self.n_grammars += 2 + self._transitionMatrix = nn.Parameter(nn.init.xavier_uniform(torch.Tensor(self.n_grammars, len(grammar) + 1))) + self._logProductions = nn.Linear(inputDimensionality, len(grammar)+1) + + def transitionMatrix(self, x): + if len(x.shape) == 1: # not batched + return self._logProductions(x) + self._transitionMatrix # will broadcast + elif len(x.shape) == 2: # batched + return self._logProductions(x).unsqueeze(1).repeat(1,self.n_grammars,1) + \ + self._transitionMatrix.unsqueeze(0).repeat(x.size(0),1,1) + else: + assert False, "unknown shape for transition matrix input" + + def grammarFromVector(self, logProductions): + return Grammar(logProductions[-1].view(1), + [(logProductions[k].view(1), t, program) + for k, (_, t, program) in enumerate(self.grammar.productions)], + continuationType=self.grammar.continuationType) + + def forward(self, x): + assert len(x.size()) == 1, "contextual grammar doesn't currently support batching" + + transitionMatrix = self.transitionMatrix(x) + + return ContextualGrammar(self.grammarFromVector(transitionMatrix[-1]), self.grammarFromVector(transitionMatrix[-2]), + {prim: [self.grammarFromVector(transitionMatrix[j]) for j in js] + for prim, js in self.library.items()} ) + + def batchedLogLikelihoods(self, xs, summaries): + """Takes as input BxinputDimensionality vector & B likelihood summaries; + returns B-dimensional vector containing log likelihood of each summary""" + use_cuda = xs.device.type == 'cuda' + + B = xs.shape[0] + G = len(self.grammar) + 1 + assert len(summaries) == B + + # logProductions: Bx n_grammars x G + logProductions = self.transitionMatrix(xs) + # uses[b][g][p] is # uses of primitive p by summary b for parent g + uses = np.zeros((B,self.n_grammars,len(self.grammar)+1)) + for b,summary in enumerate(summaries): + for e, ss in summary.library.items(): + for g,s in zip(self.library[e], ss): + assert g < self.n_grammars - 2 + for p, production in enumerate(self.grammar.primitives): + uses[b,g,p] = s.uses.get(production, 0.) + uses[b,g,len(self.grammar)] = s.uses.get(Index(0), 0) + + # noParent: this is the last network output + for p, production in enumerate(self.grammar.primitives): + uses[b, self.n_grammars - 1, p] = summary.noParent.uses.get(production, 0.) + uses[b, self.n_grammars - 1, G - 1] = summary.noParent.uses.get(Index(0), 0.) + + # variableParent: this is the penultimate network output + for p, production in enumerate(self.grammar.primitives): + uses[b, self.n_grammars - 2, p] = summary.variableParent.uses.get(production, 0.) + uses[b, self.n_grammars - 2, G - 1] = summary.variableParent.uses.get(Index(0), 0.) + + numerator = (logProductions*maybe_cuda(torch.tensor(uses).float(),use_cuda)).view(B,-1).sum(1) + + constant = np.zeros(B) + for b,summary in enumerate(summaries): + constant[b] += summary.noParent.constant + summary.variableParent.constant + for ss in summary.library.values(): + for s in ss: + constant[b] += s.constant + + numerator += maybe_cuda(torch.tensor(constant).float(),use_cuda) + + if True: + + # Calculate the god-awful denominator + alternativeSet = set() + for summary in summaries: + for normalizer in summary.noParent.normalizers: alternativeSet.add(normalizer) + for normalizer in summary.variableParent.normalizers: alternativeSet.add(normalizer) + for ss in summary.library.values(): + for s in ss: + for normalizer in s.normalizers: alternativeSet.add(normalizer) + alternativeSet = list(alternativeSet) + + mask = np.zeros((len(alternativeSet), G)) + for tau in range(len(alternativeSet)): + for p, production in enumerate(self.grammar.primitives): + mask[tau,p] = 0. if production in alternativeSet[tau] else NEGATIVEINFINITY + mask[tau, G - 1] = 0. if Index(0) in alternativeSet[tau] else NEGATIVEINFINITY + mask = maybe_cuda(torch.tensor(mask).float(), use_cuda) + + z = mask.repeat(self.n_grammars,1,1).repeat(B,1,1,1) + \ + logProductions.repeat(len(alternativeSet),1,1,1).transpose(0,1).transpose(1,2) + z = torch.logsumexp(z, 3) # pytorch 1.0 dependency + + N = np.zeros((B, self.n_grammars, len(alternativeSet))) + for b, summary in enumerate(summaries): + for e, ss in summary.library.items(): + for g,s in zip(self.library[e], ss): + assert g < self.n_grammars - 2 + for r, alternatives in enumerate(alternativeSet): + N[b,g,r] = s.normalizers.get(alternatives, 0.) + # noParent: this is the last network output + for r, alternatives in enumerate(alternativeSet): + N[b,self.n_grammars - 1,r] = summary.noParent.normalizers.get(alternatives, 0.) + # variableParent: this is the penultimate network output + for r, alternatives in enumerate(alternativeSet): + N[b,self.n_grammars - 2,r] = summary.variableParent.normalizers.get(alternatives, 0.) + N = maybe_cuda(torch.tensor(N).float(), use_cuda) + denominator = (N*z).sum(1).sum(1) + else: + gs = [ self(xs[b]) for b in range(B) ] + denominator = torch.cat([ summary.denominator(g) for summary,g in zip(summaries, gs) ]) + + + + + + ll = numerator - denominator + + if False: # verifying that batching works correctly + gs = [ self(xs[b]) for b in range(B) ] + _l = torch.cat([ summary.logLikelihood(g) for summary,g in zip(summaries, gs) ]) + assert torch.all((ll - _l).abs() < 0.0001) + return ll + + + +class ContextualGrammarNetwork(nn.Module): + """Like GrammarNetwork but ~contextual~""" + def __init__(self, inputDimensionality, grammar): + super(ContextualGrammarNetwork, self).__init__() + + # library now just contains a list of indicies which go with each primitive + self.grammar = grammar + self.library = {} + self.n_grammars = 0 + for prim in grammar.primitives: + numberOfArguments = len(prim.infer().functionArguments()) + idx_list = list(range(self.n_grammars, self.n_grammars+numberOfArguments)) + self.library[prim] = idx_list + self.n_grammars += numberOfArguments + + # We had an extra grammar for when there is no parent and for when the parent is a variable + self.n_grammars += 2 + self.network = nn.Linear(inputDimensionality, (self.n_grammars)*(len(grammar) + 1)) + + + def grammarFromVector(self, logProductions): + return Grammar(logProductions[-1].view(1), + [(logProductions[k].view(1), t, program) + for k, (_, t, program) in enumerate(self.grammar.productions)], + continuationType=self.grammar.continuationType) + + def forward(self, x): + assert len(x.size()) == 1, "contextual grammar doesn't currently support batching" + + allVars = self.network(x).view(self.n_grammars, -1) + return ContextualGrammar(self.grammarFromVector(allVars[-1]), self.grammarFromVector(allVars[-2]), + {prim: [self.grammarFromVector(allVars[j]) for j in js] + for prim, js in self.library.items()} ) + + def batchedLogLikelihoods(self, xs, summaries): + use_cuda = xs.device.type == 'cuda' + """Takes as input BxinputDimensionality vector & B likelihood summaries; + returns B-dimensional vector containing log likelihood of each summary""" + + B = xs.shape[0] + G = len(self.grammar) + 1 + assert len(summaries) == B + + # logProductions: Bx n_grammars x G + logProductions = self.network(xs).view(B, self.n_grammars, G) + # uses[b][g][p] is # uses of primitive p by summary b for parent g + uses = np.zeros((B,self.n_grammars,len(self.grammar)+1)) + for b,summary in enumerate(summaries): + for e, ss in summary.library.items(): + for g,s in zip(self.library[e], ss): + assert g < self.n_grammars - 2 + for p, production in enumerate(self.grammar.primitives): + uses[b,g,p] = s.uses.get(production, 0.) + uses[b,g,len(self.grammar)] = s.uses.get(Index(0), 0) + + # noParent: this is the last network output + for p, production in enumerate(self.grammar.primitives): + uses[b, self.n_grammars - 1, p] = summary.noParent.uses.get(production, 0.) + uses[b, self.n_grammars - 1, G - 1] = summary.noParent.uses.get(Index(0), 0.) + + # variableParent: this is the penultimate network output + for p, production in enumerate(self.grammar.primitives): + uses[b, self.n_grammars - 2, p] = summary.variableParent.uses.get(production, 0.) + uses[b, self.n_grammars - 2, G - 1] = summary.variableParent.uses.get(Index(0), 0.) + + numerator = (logProductions*maybe_cuda(torch.tensor(uses).float(),use_cuda)).view(B,-1).sum(1) + + constant = np.zeros(B) + for b,summary in enumerate(summaries): + constant[b] += summary.noParent.constant + summary.variableParent.constant + for ss in summary.library.values(): + for s in ss: + constant[b] += s.constant + + numerator += maybe_cuda(torch.tensor(constant).float(),use_cuda) + + # Calculate the god-awful denominator + alternativeSet = set() + for summary in summaries: + for normalizer in summary.noParent.normalizers: alternativeSet.add(normalizer) + for normalizer in summary.variableParent.normalizers: alternativeSet.add(normalizer) + for ss in summary.library.values(): + for s in ss: + for normalizer in s.normalizers: alternativeSet.add(normalizer) + alternativeSet = list(alternativeSet) + + mask = np.zeros((len(alternativeSet), G)) + for tau in range(len(alternativeSet)): + for p, production in enumerate(self.grammar.primitives): + mask[tau,p] = 0. if production in alternativeSet[tau] else NEGATIVEINFINITY + mask[tau, G - 1] = 0. if Index(0) in alternativeSet[tau] else NEGATIVEINFINITY + mask = maybe_cuda(torch.tensor(mask).float(), use_cuda) + + z = mask.repeat(self.n_grammars,1,1).repeat(B,1,1,1) + \ + logProductions.repeat(len(alternativeSet),1,1,1).transpose(0,1).transpose(1,2) + z = torch.logsumexp(z, 3) # pytorch 1.0 dependency + + N = np.zeros((B, self.n_grammars, len(alternativeSet))) + for b, summary in enumerate(summaries): + for e, ss in summary.library.items(): + for g,s in zip(self.library[e], ss): + assert g < self.n_grammars - 2 + for r, alternatives in enumerate(alternativeSet): + N[b,g,r] = s.normalizers.get(alternatives, 0.) + # noParent: this is the last network output + for r, alternatives in enumerate(alternativeSet): + N[b,self.n_grammars - 1,r] = summary.noParent.normalizers.get(alternatives, 0.) + # variableParent: this is the penultimate network output + for r, alternatives in enumerate(alternativeSet): + N[b,self.n_grammars - 2,r] = summary.variableParent.normalizers.get(alternatives, 0.) + N = maybe_cuda(torch.tensor(N).float(), use_cuda) + + + + denominator = (N*z).sum(1).sum(1) + ll = numerator - denominator + + if False: # verifying that batching works correctly + gs = [ self(xs[b]) for b in range(B) ] + _l = torch.cat([ summary.logLikelihood(g) for summary,g in zip(summaries, gs) ]) + assert torch.all((ll - _l).abs() < 0.0001) + + return ll + + +class RecognitionModel(nn.Module): + def __init__(self,featureExtractor,grammar,hidden=[64],activation="tanh", + rank=None,contextual=False,mask=False, + cuda=False, + previousRecognitionModel=None, + id=0): + super(RecognitionModel, self).__init__() + self.id = id + self.trained=False + self.use_cuda = cuda + + self.featureExtractor = featureExtractor + # Sanity check - make sure that all of the parameters of the + # feature extractor were added to our parameters as well + if hasattr(featureExtractor, 'parameters'): + for parameter in featureExtractor.parameters(): + assert any(myParameter is parameter for myParameter in self.parameters()) + + # Build the multilayer perceptron that is sandwiched between the feature extractor and the grammar + if activation == "sigmoid": + activation = nn.Sigmoid + elif activation == "relu": + activation = nn.ReLU + elif activation == "tanh": + activation = nn.Tanh + else: + raise Exception('Unknown activation function ' + str(activation)) + self._MLP = nn.Sequential(*[ layer + for j in range(len(hidden)) + for layer in [ + nn.Linear(([featureExtractor.outputDimensionality] + hidden)[j], + hidden[j]), + activation()]]) + + self.entropy = Entropy() + + if len(hidden) > 0: + self.outputDimensionality = self._MLP[-2].out_features + assert self.outputDimensionality == hidden[-1] + else: + self.outputDimensionality = self.featureExtractor.outputDimensionality + + self.contextual = contextual + if self.contextual: + if mask: + self.grammarBuilder = ContextualGrammarNetwork_Mask(self.outputDimensionality, grammar) + else: + self.grammarBuilder = ContextualGrammarNetwork_LowRank(self.outputDimensionality, grammar, rank) + else: + self.grammarBuilder = GrammarNetwork(self.outputDimensionality, grammar) + + self.grammar = ContextualGrammar.fromGrammar(grammar) if contextual else grammar + self.generativeModel = grammar + + self._auxiliaryPrediction = nn.Linear(self.featureExtractor.outputDimensionality, + len(self.grammar.primitives)) + self._auxiliaryLoss = nn.BCEWithLogitsLoss() + + if cuda: self.cuda() + + if previousRecognitionModel: + self._MLP.load_state_dict(previousRecognitionModel._MLP.state_dict()) + self.featureExtractor.load_state_dict(previousRecognitionModel.featureExtractor.state_dict()) + + def auxiliaryLoss(self, frontier, features): + # Compute a vector of uses + ls = frontier.bestPosterior.program + def uses(summary): + if hasattr(summary, 'uses'): + return torch.tensor([ float(int(p in summary.uses)) + for p in self.generativeModel.primitives ]) + assert hasattr(summary, 'noParent') + u = uses(summary.noParent) + uses(summary.variableParent) + for ss in summary.library.values(): + for s in ss: + u += uses(s) + return u + u = uses(ls) + u[u > 1.] = 1. + if self.use_cuda: u = u.cuda() + al = self._auxiliaryLoss(self._auxiliaryPrediction(features), u) + return al + + def taskEmbeddings(self, tasks): + return {task: self.featureExtractor.featuresOfTask(task).data.cpu().numpy() + for task in tasks} + + def forward(self, features): + """returns either a Grammar or a ContextualGrammar + Takes as input the output of featureExtractor.featuresOfTask""" + features = self._MLP(features) + return self.grammarBuilder(features) + + def auxiliaryPrimitiveEmbeddings(self): + """Returns the actual outputDimensionality weight vectors for each of the primitives.""" + auxiliaryWeights = self._auxiliaryPrediction.weight.data.cpu().numpy() + primitivesDict = {self.grammar.primitives[i] : auxiliaryWeights[i, :] for i in range(len(self.grammar.primitives))} + return primitivesDict + + def grammarOfTask(self, task): + features = self.featureExtractor.featuresOfTask(task) + if features is None: return None + return self(features) + + def grammarLogProductionsOfTask(self, task): + """Returns the grammar logits from non-contextual models.""" + + features = self.featureExtractor.featuresOfTask(task) + if features is None: return None + + if hasattr(self, 'hiddenLayers'): + # Backward compatability with old checkpoints. + for layer in self.hiddenLayers: + features = self.activation(layer(features)) + # return features + return self.noParent[1](features) + else: + features = self._MLP(features) + + if self.contextual: + if hasattr(self.grammarBuilder, 'variableParent'): + return self.grammarBuilder.variableParent.logProductions(features) + elif hasattr(self.grammarBuilder, 'network'): + return self.grammarBuilder.network(features).view(-1) + elif hasattr(self.grammarBuilder, 'transitionMatrix'): + return self.grammarBuilder.transitionMatrix(features).view(-1) + else: + assert False + else: + return self.grammarBuilder.logProductions(features) + + def grammarFeatureLogProductionsOfTask(self, task): + return torch.tensor(self.grammarOfTask(task).untorch().featureVector()) + + def grammarLogProductionDistanceToTask(self, task, tasks): + """Returns the cosine similarity of all other tasks to a given task.""" + taskLogits = self.grammarLogProductionsOfTask(task).unsqueeze(0) # Change to [1, D] + assert taskLogits is not None, 'Grammar log productions are not defined for this task.' + otherTasks = [t for t in tasks if t is not task] # [nTasks -1 , D] + + # Build matrix of all other tasks. + otherLogits = torch.stack([self.grammarLogProductionsOfTask(t) for t in otherTasks]) + cos = nn.CosineSimilarity(dim=1, eps=1e-6) + cosMatrix = cos(taskLogits, otherLogits) + return cosMatrix.data.cpu().numpy() + + def grammarEntropyOfTask(self, task): + """Returns the entropy of the grammar distribution from non-contextual models for a task.""" + grammarLogProductionsOfTask = self.grammarLogProductionsOfTask(task) + + if grammarLogProductionsOfTask is None: return None + + if hasattr(self, 'entropy'): + return self.entropy(grammarLogProductionsOfTask) + else: + e = Entropy() + return e(grammarLogProductionsOfTask) + + def taskAuxiliaryLossLayer(self, tasks): + return {task: self._auxiliaryPrediction(self.featureExtractor.featuresOfTask(task)).view(-1).data.cpu().numpy() + for task in tasks} + + def taskGrammarFeatureLogProductions(self, tasks): + return {task: self.grammarFeatureLogProductionsOfTask(task).data.cpu().numpy() + for task in tasks} + + def taskGrammarLogProductions(self, tasks): + return {task: self.grammarLogProductionsOfTask(task).data.cpu().numpy() + for task in tasks} + + def taskGrammarStartProductions(self, tasks): + return {task: np.array([l for l,_1,_2 in g.productions ]) + for task in tasks + for g in [self.grammarOfTask(task).untorch().noParent] } + + def taskHiddenStates(self, tasks): + return {task: self._MLP(self.featureExtractor.featuresOfTask(task)).view(-1).data.cpu().numpy() + for task in tasks} + + def taskGrammarEntropies(self, tasks): + return {task: self.grammarEntropyOfTask(task).data.cpu().numpy() + for task in tasks} + + def frontierKL(self, frontier, auxiliary=False, vectorized=True): + features = self.featureExtractor.featuresOfTask(frontier.task) + if features is None: + return None, None + # Monte Carlo estimate: draw a sample from the frontier + entry = frontier.sample() + + al = self.auxiliaryLoss(frontier, features if auxiliary else features.detach()) + + if not vectorized: + g = self(features) + return - entry.program.logLikelihood(g), al + else: + features = self._MLP(features).unsqueeze(0) + + ll = self.grammarBuilder.batchedLogLikelihoods(features, [entry.program]).view(-1) + return -ll, al + + + def frontierBiasOptimal(self, frontier, auxiliary=False, vectorized=True): + if not vectorized: + features = self.featureExtractor.featuresOfTask(frontier.task) + if features is None: return None, None + al = self.auxiliaryLoss(frontier, features if auxiliary else features.detach()) + g = self(features) + summaries = [entry.program for entry in frontier] + likelihoods = torch.cat([entry.program.logLikelihood(g) + entry.logLikelihood + for entry in frontier ]) + best = likelihoods.max() + return -best, al + + batchSize = len(frontier.entries) + features = self.featureExtractor.featuresOfTask(frontier.task) + if features is None: return None, None + al = self.auxiliaryLoss(frontier, features if auxiliary else features.detach()) + features = self._MLP(features) + features = features.expand(batchSize, features.size(-1)) # TODO + lls = self.grammarBuilder.batchedLogLikelihoods(features, [entry.program for entry in frontier]) + actual_ll = torch.Tensor([ entry.logLikelihood for entry in frontier]) + lls = lls + (actual_ll.cuda() if self.use_cuda else actual_ll) + ml = -lls.max() #Beware that inputs to max change output type + return ml, al + + def replaceProgramsWithLikelihoodSummaries(self, frontier): + return Frontier( + [FrontierEntry( + program=self.grammar.closedLikelihoodSummary(frontier.task.request, e.program), + logLikelihood=e.logLikelihood, + logPrior=e.logPrior) for e in frontier], + task=frontier.task) + + def train(self, frontiers, _=None, steps=None, lr=0.001, topK=5, CPUs=1, + timeout=None, evaluationTimeout=0.001, + helmholtzFrontiers=[], helmholtzRatio=0., helmholtzBatch=500, + biasOptimal=None, defaultRequest=None, auxLoss=False, vectorized=True): + """ + helmholtzRatio: What fraction of the training data should be forward samples from the generative model? + helmholtzFrontiers: Frontiers from programs enumerated from generative model (optional) + If helmholtzFrontiers is not provided then we will sample programs during training + """ + assert (steps is not None) or (timeout is not None), \ + "Cannot train recognition model without either a bound on the number of gradient steps or bound on the training time" + if steps is None: steps = 9999999 + if biasOptimal is None: biasOptimal = len(helmholtzFrontiers) > 0 + + requests = [frontier.task.request for frontier in frontiers] + if len(requests) == 0 and helmholtzRatio > 0 and len(helmholtzFrontiers) == 0: + assert defaultRequest is not None, "You are trying to random Helmholtz training, but don't have any frontiers. Therefore we would not know the type of the program to sample. Try specifying defaultRequest=..." + requests = [defaultRequest] + frontiers = [frontier.topK(topK).normalize() + for frontier in frontiers if not frontier.empty] + if len(frontiers) == 0: + eprint("You didn't give me any nonempty replay frontiers to learn from. Going to learn from 100% Helmholtz samples") + helmholtzRatio = 1. + + # Should we sample programs or use the enumerated programs? + randomHelmholtz = len(helmholtzFrontiers) == 0 + + class HelmholtzEntry: + def __init__(self, frontier, owner): + self.request = frontier.task.request + self.task = None + self.programs = [e.program for e in frontier] + self.frontier = Thunk(lambda: owner.replaceProgramsWithLikelihoodSummaries(frontier)) + self.owner = owner + + def clear(self): self.task = None + + def calculateTask(self): + assert self.task is None + p = random.choice(self.programs) + return self.owner.featureExtractor.taskOfProgram(p, self.request) + + def makeFrontier(self): + assert self.task is not None + f = Frontier(self.frontier.force().entries, + task=self.task) + return f + + + + + # Should we recompute tasks on the fly from Helmholtz? This + # should be done if the task is stochastic, or if there are + # different kinds of inputs on which it could be run. For + # example, lists and strings need this; towers and graphics do + # not. There is no harm in recomputed the tasks, it just + # wastes time. + if not hasattr(self.featureExtractor, 'recomputeTasks'): + self.featureExtractor.recomputeTasks = True + helmholtzFrontiers = [HelmholtzEntry(f, self) + for f in helmholtzFrontiers] + random.shuffle(helmholtzFrontiers) + + helmholtzIndex = [0] + def getHelmholtz(): + if randomHelmholtz: + if helmholtzIndex[0] >= len(helmholtzFrontiers): + updateHelmholtzTasks() + helmholtzIndex[0] = 0 + return getHelmholtz() + helmholtzIndex[0] += 1 + return helmholtzFrontiers[helmholtzIndex[0] - 1].makeFrontier() + + f = helmholtzFrontiers[helmholtzIndex[0]] + if f.task is None: + with timing("Evaluated another batch of Helmholtz tasks"): + updateHelmholtzTasks() + return getHelmholtz() + + helmholtzIndex[0] += 1 + if helmholtzIndex[0] >= len(helmholtzFrontiers): + helmholtzIndex[0] = 0 + random.shuffle(helmholtzFrontiers) + if self.featureExtractor.recomputeTasks: + for fp in helmholtzFrontiers: + fp.clear() + return getHelmholtz() # because we just cleared everything + assert f.task is not None + return f.makeFrontier() + + def updateHelmholtzTasks(): + updateCPUs = CPUs if hasattr(self.featureExtractor, 'parallelTaskOfProgram') and self.featureExtractor.parallelTaskOfProgram else 1 + if updateCPUs > 1: eprint("Updating Helmholtz tasks with",updateCPUs,"CPUs", + "while using",getThisMemoryUsage(),"memory") + + if randomHelmholtz: + newFrontiers = self.sampleManyHelmholtz(requests, helmholtzBatch, CPUs) + newEntries = [] + for f in newFrontiers: + e = HelmholtzEntry(f,self) + e.task = f.task + newEntries.append(e) + helmholtzFrontiers.clear() + helmholtzFrontiers.extend(newEntries) + return + + # Save some memory by freeing up the tasks as we go through them + if self.featureExtractor.recomputeTasks: + for hi in range(max(0, helmholtzIndex[0] - helmholtzBatch, + min(helmholtzIndex[0], len(helmholtzFrontiers)))): + helmholtzFrontiers[hi].clear() + + if hasattr(self.featureExtractor, 'tasksOfPrograms'): + eprint("batching task calculation") + newTasks = self.featureExtractor.tasksOfPrograms( + [random.choice(hf.programs) + for hf in helmholtzFrontiers[helmholtzIndex[0]:helmholtzIndex[0] + helmholtzBatch] ], + [hf.request + for hf in helmholtzFrontiers[helmholtzIndex[0]:helmholtzIndex[0] + helmholtzBatch] ]) + else: + newTasks = [hf.calculateTask() + for hf in helmholtzFrontiers[helmholtzIndex[0]:helmholtzIndex[0] + helmholtzBatch]] + + """ + # catwong: Disabled for ensemble training. + newTasks = \ + parallelMap(updateCPUs, + lambda f: f.calculateTask(), + helmholtzFrontiers[helmholtzIndex[0]:helmholtzIndex[0] + helmholtzBatch], + seedRandom=True) + """ + badIndices = [] + endingIndex = min(helmholtzIndex[0] + helmholtzBatch, len(helmholtzFrontiers)) + for i in range(helmholtzIndex[0], endingIndex): + helmholtzFrontiers[i].task = newTasks[i - helmholtzIndex[0]] + if helmholtzFrontiers[i].task is None: badIndices.append(i) + # Permanently kill anything which failed to give a task + for i in reversed(badIndices): + assert helmholtzFrontiers[i].task is None + del helmholtzFrontiers[i] + + + # We replace each program in the frontier with its likelihoodSummary + # This is because calculating likelihood summaries requires juggling types + # And type stuff is expensive! + frontiers = [self.replaceProgramsWithLikelihoodSummaries(f).normalize() + for f in frontiers] + + eprint("(ID=%d): Training a recognition model from %d frontiers, %d%% Helmholtz, feature extractor %s." % ( + self.id, len(frontiers), int(helmholtzRatio * 100), self.featureExtractor.__class__.__name__)) + eprint("(ID=%d): Got %d Helmholtz frontiers - random Helmholtz training? : %s"%( + self.id, len(helmholtzFrontiers), len(helmholtzFrontiers) == 0)) + eprint("(ID=%d): Contextual? %s" % (self.id, str(self.contextual))) + eprint("(ID=%d): Bias optimal? %s" % (self.id, str(biasOptimal))) + eprint(f"(ID={self.id}): Aux loss? {auxLoss} (n.b. we train a 'auxiliary' classifier anyway - this controls if gradients propagate back to the future extractor)") + + # The number of Helmholtz samples that we generate at once + # Should only affect performance and shouldn't affect anything else + helmholtzSamples = [] + + optimizer = torch.optim.Adam(self.parameters(), lr=lr, eps=1e-3, amsgrad=True) + start = time.time() + losses, descriptionLengths, realLosses, dreamLosses, realMDL, dreamMDL = [], [], [], [], [], [] + classificationLosses = [] + totalGradientSteps = 0 + epochs = 9999999 + for i in range(1, epochs + 1): + if timeout and time.time() - start > timeout: + break + + if totalGradientSteps > steps: + break + + if helmholtzRatio < 1.: + permutedFrontiers = list(frontiers) + random.shuffle(permutedFrontiers) + else: + permutedFrontiers = [None] + + finishedSteps = False + for frontier in permutedFrontiers: + # Randomly decide whether to sample from the generative model + dreaming = random.random() < helmholtzRatio + if dreaming: frontier = getHelmholtz() + self.zero_grad() + loss, classificationLoss = \ + self.frontierBiasOptimal(frontier, auxiliary=auxLoss, vectorized=vectorized) if biasOptimal \ + else self.frontierKL(frontier, auxiliary=auxLoss, vectorized=vectorized) + if loss is None: + if not dreaming: + eprint("ERROR: Could not extract features during experience replay.") + eprint("Task is:",frontier.task) + eprint("Aborting - we need to be able to extract features of every actual task.") + assert False + else: + continue + if is_torch_invalid(loss): + eprint("Invalid real-data loss!") + else: + (loss + classificationLoss).backward() + classificationLosses.append(classificationLoss.data.item()) + optimizer.step() + totalGradientSteps += 1 + losses.append(loss.data.item()) + descriptionLengths.append(min(-e.logPrior for e in frontier)) + if dreaming: + dreamLosses.append(losses[-1]) + dreamMDL.append(descriptionLengths[-1]) + else: + realLosses.append(losses[-1]) + realMDL.append(descriptionLengths[-1]) + if totalGradientSteps > steps: + break # Stop iterating, then print epoch and loss, then break to finish. + + if (i == 1 or i % 10 == 0) and losses: + eprint("(ID=%d): " % self.id, "Epoch", i, "Loss", mean(losses)) + if realLosses and dreamLosses: + eprint("(ID=%d): " % self.id, "\t\t(real loss): ", mean(realLosses), "\t(dream loss):", mean(dreamLosses)) + eprint("(ID=%d): " % self.id, "\tvs MDL (w/o neural net)", mean(descriptionLengths)) + if realMDL and dreamMDL: + eprint("\t\t(real MDL): ", mean(realMDL), "\t(dream MDL):", mean(dreamMDL)) + eprint("(ID=%d): " % self.id, "\t%d cumulative gradient steps. %f steps/sec"%(totalGradientSteps, + totalGradientSteps/(time.time() - start))) + eprint("(ID=%d): " % self.id, "\t%d-way auxiliary classification loss"%len(self.grammar.primitives),sum(classificationLosses)/len(classificationLosses)) + losses, descriptionLengths, realLosses, dreamLosses, realMDL, dreamMDL = [], [], [], [], [], [] + classificationLosses = [] + gc.collect() + + eprint("(ID=%d): " % self.id, " Trained recognition model in",time.time() - start,"seconds") + self.trained=True + return self + + def sampleHelmholtz(self, requests, statusUpdate=None, seed=None): + if seed is not None: + random.seed(seed) + request = random.choice(requests) + + program = self.generativeModel.sample(request, maximumDepth=6, maxAttempts=100) + if program is None: + return None + task = self.featureExtractor.taskOfProgram(program, request) + + if statusUpdate is not None: + flushEverything() + if task is None: + return None + + if hasattr(self.featureExtractor, 'lexicon'): + if self.featureExtractor.tokenize(task.examples) is None: + return None + + ll = self.generativeModel.logLikelihood(request, program) + frontier = Frontier([FrontierEntry(program=program, + logLikelihood=0., logPrior=ll)], + task=task) + return frontier + + def sampleManyHelmholtz(self, requests, N, CPUs): + eprint("Sampling %d programs from the prior on %d CPUs..." % (N, CPUs)) + flushEverything() + frequency = N / 50 + startingSeed = random.random() + + # Sequentially for ensemble training. + samples = [self.sampleHelmholtz(requests, + statusUpdate='.' if n % frequency == 0 else None, + seed=startingSeed + n) for n in range(N)] + + # (cathywong) Disabled for ensemble training. + # samples = parallelMap( + # 1, + # lambda n: self.sampleHelmholtz(requests, + # statusUpdate='.' if n % frequency == 0 else None, + # seed=startingSeed + n), + # range(N)) + eprint() + flushEverything() + samples = [z for z in samples if z is not None] + eprint() + eprint("Got %d/%d valid samples." % (len(samples), N)) + flushEverything() + + return samples + + def enumerateFrontiers(self, + tasks, + enumerationTimeout=None, + testing=False, + solver=None, + CPUs=1, + frontierSize=None, + maximumFrontier=None, + evaluationTimeout=None): + with timing("Evaluated recognition model"): + grammars = {task: self.grammarOfTask(task) + for task in tasks} + #untorch seperately to make sure you filter out None grammars + grammars = {task: grammar.untorch() for task, grammar in grammars.items() if grammar is not None} + + return multicoreEnumeration(grammars, tasks, + testing=testing, + solver=solver, + enumerationTimeout=enumerationTimeout, + CPUs=CPUs, maximumFrontier=maximumFrontier, + evaluationTimeout=evaluationTimeout) + + +class RecurrentFeatureExtractor(nn.Module): + def __init__(self, _=None, + tasks=None, + cuda=False, + # what are the symbols that can occur in the inputs and + # outputs + lexicon=None, + # how many hidden units + H=32, + # Should the recurrent units be bidirectional? + bidirectional=False, + # What should be the timeout for trying to construct Helmholtz tasks? + helmholtzTimeout=0.25, + # What should be the timeout for running a Helmholtz program? + helmholtzEvaluationTimeout=0.01): + super(RecurrentFeatureExtractor, self).__init__() + + assert tasks is not None, "You must provide a list of all of the tasks, both those that have been hit and those that have not been hit. Input examples are sampled from these tasks." + + # maps from a requesting type to all of the inputs that we ever saw with that request + self.requestToInputs = { + tp: [list(map(fst, t.examples)) for t in tasks if t.request == tp ] + for tp in {t.request for t in tasks} + } + + inputTypes = {t + for task in tasks + for t in task.request.functionArguments()} + # maps from a type to all of the inputs that we ever saw having that type + self.argumentsWithType = { + tp: [ x + for t in tasks + for xs,_ in t.examples + for tpp, x in zip(t.request.functionArguments(), xs) + if tpp == tp] + for tp in inputTypes + } + self.requestToNumberOfExamples = { + tp: [ len(t.examples) + for t in tasks if t.request == tp ] + for tp in {t.request for t in tasks} + } + self.helmholtzTimeout = helmholtzTimeout + self.helmholtzEvaluationTimeout = helmholtzEvaluationTimeout + self.parallelTaskOfProgram = True + + assert lexicon + self.specialSymbols = [ + "STARTING", # start of entire sequence + "ENDING", # ending of entire sequence + "STARTOFOUTPUT", # begins the start of the output + "ENDOFINPUT" # delimits the ending of an input - we might have multiple inputs + ] + lexicon += self.specialSymbols + encoder = nn.Embedding(len(lexicon), H) + self.encoder = encoder + + self.H = H + self.bidirectional = bidirectional + + layers = 1 + + model = nn.GRU(H, H, layers, bidirectional=bidirectional) + self.model = model + + self.use_cuda = cuda + self.lexicon = lexicon + self.symbolToIndex = { + symbol: index for index, + symbol in enumerate(lexicon)} + self.startingIndex = self.symbolToIndex["STARTING"] + self.endingIndex = self.symbolToIndex["ENDING"] + self.startOfOutputIndex = self.symbolToIndex["STARTOFOUTPUT"] + self.endOfInputIndex = self.symbolToIndex["ENDOFINPUT"] + + # Maximum number of inputs/outputs we will run the recognition + # model on per task + # This is an optimization hack + self.MAXINPUTS = 100 + + if cuda: self.cuda() + + @property + def outputDimensionality(self): return self.H + + # modify examples before forward (to turn them into iterables of lexicon) + # you should override this if needed + def tokenize(self, x): return x + + def symbolEmbeddings(self): + return {s: self.encoder(variable([self.symbolToIndex[s]])).squeeze( + 0).data.cpu().numpy() for s in self.lexicon if not (s in self.specialSymbols)} + + def packExamples(self, examples): + """IMPORTANT! xs must be sorted in decreasing order of size because pytorch is stupid""" + es = [] + sizes = [] + for xs, y in examples: + e = [self.startingIndex] + for x in xs: + for s in x: + e.append(self.symbolToIndex[s]) + e.append(self.endOfInputIndex) + e.append(self.startOfOutputIndex) + for s in y: + e.append(self.symbolToIndex[s]) + e.append(self.endingIndex) + if es != []: + assert len(e) <= len(es[-1]), \ + "Examples must be sorted in decreasing order of their tokenized size. This should be transparently handled in recognition.py, so if this assertion fails it isn't your fault as a user of EC but instead is a bug inside of EC." + es.append(e) + sizes.append(len(e)) + + m = max(sizes) + # padding + for j, e in enumerate(es): + es[j] += [self.endingIndex] * (m - len(e)) + + x = variable(es, cuda=self.use_cuda) + x = self.encoder(x) + # x: (batch size, maximum length, E) + x = x.permute(1, 0, 2) + # x: TxBxE + x = pack_padded_sequence(x, sizes) + return x, sizes + + def examplesEncoding(self, examples): + examples = sorted(examples, key=lambda xs_y: sum( + len(z) + 1 for z in xs_y[0]) + len(xs_y[1]), reverse=True) + x, sizes = self.packExamples(examples) + outputs, hidden = self.model(x) + # outputs, sizes = pad_packed_sequence(outputs) + # I don't know whether to return the final output or the final hidden + # activations... + return hidden[0, :, :] + hidden[1, :, :] + + def forward(self, examples): + tokenized = self.tokenize(examples) + if not tokenized: + return None + + if hasattr(self, 'MAXINPUTS') and len(tokenized) > self.MAXINPUTS: + tokenized = list(tokenized) + random.shuffle(tokenized) + tokenized = tokenized[:self.MAXINPUTS] + e = self.examplesEncoding(tokenized) + # max pool + # e,_ = e.max(dim = 0) + + # take the average activations across all of the examples + # I think this might be better because we might be testing on data + # which has far more o far fewer examples then training + e = e.mean(dim=0) + return e + + def featuresOfTask(self, t): + if hasattr(self, 'useFeatures'): + f = self(t.features) + else: + # Featurize the examples directly. + f = self(t.examples) + return f + + def taskOfProgram(self, p, tp): + # half of the time we randomly mix together inputs + # this gives better generalization on held out tasks + # the other half of the time we train on sets of inputs in the training data + # this gives better generalization on unsolved training tasks + if random.random() < 0.5: + def randomInput(t): return random.choice(self.argumentsWithType[t]) + # Loop over the inputs in a random order and pick the first ones that + # doesn't generate an exception + + startTime = time.time() + examples = [] + while True: + # TIMEOUT! this must not be a very good program + if time.time() - startTime > self.helmholtzTimeout: return None + + # Grab some random inputs + xs = [randomInput(t) for t in tp.functionArguments()] + try: + y = runWithTimeout(lambda: p.runWithArguments(xs), self.helmholtzEvaluationTimeout) + examples.append((tuple(xs),y)) + if len(examples) >= random.choice(self.requestToNumberOfExamples[tp]): + return Task("Helmholtz", tp, examples) + except: continue + + else: + candidateInputs = list(self.requestToInputs[tp]) + random.shuffle(candidateInputs) + for xss in candidateInputs: + ys = [] + for xs in xss: + try: y = runWithTimeout(lambda: p.runWithArguments(xs), self.helmholtzEvaluationTimeout) + except: break + ys.append(y) + if len(ys) == len(xss): + return Task("Helmholtz", tp, list(zip(xss, ys))) + return None + + + +class LowRank(nn.Module): + """ + Module that outputs a rank R matrix of size m by n from input of size i. + """ + def __init__(self, i, m, n, r): + """ + i: input dimension + m: output rows + n: output columns + r: maximum rank. if this is None then the output will be full-rank + """ + super(LowRank, self).__init__() + + self.m = m + self.n = n + + maximumPossibleRank = min(m, n) + if r is None: r = maximumPossibleRank + + if r < maximumPossibleRank: + self.factored = True + self.A = nn.Linear(i, m*r) + self.B = nn.Linear(i, n*r) + self.r = r + else: + self.factored = False + self.M = nn.Linear(i, m*n) + + def forward(self, x): + sz = x.size() + if len(sz) == 1: + B = 1 + x = x.unsqueeze(0) + needToSqueeze = True + elif len(sz) == 2: + B = sz[0] + needToSqueeze = False + else: + assert False, "LowRank expects either a 1-dimensional tensor or a 2-dimensional tensor" + + if self.factored: + a = self.A(x).view(B, self.m, self.r) + b = self.B(x).view(B, self.r, self.n) + y = a @ b + else: + y = self.M(x).view(B, self.m, self.n) + if needToSqueeze: + y = y.squeeze(0) + return y + + + + +class DummyFeatureExtractor(nn.Module): + def __init__(self, tasks, testingTasks=[], cuda=False): + super(DummyFeatureExtractor, self).__init__() + self.outputDimensionality = 1 + self.recomputeTasks = False + def featuresOfTask(self, t): + return variable([0.]).float() + def featuresOfTasks(self, ts): + return variable([[0.]]*len(ts)).float() + def taskOfProgram(self, p, t): + return Task("dummy task", t, []) + +class RandomFeatureExtractor(nn.Module): + def __init__(self, tasks): + super(RandomFeatureExtractor, self).__init__() + self.outputDimensionality = 1 + self.recomputeTasks = False + def featuresOfTask(self, t): + return variable([random.random()]).float() + def featuresOfTasks(self, ts): + return variable([[random.random()] for _ in range(len(ts)) ]).float() + def taskOfProgram(self, p, t): + return Task("dummy task", t, []) + +class Flatten(nn.Module): + def __init__(self): + super(Flatten, self).__init__() + + def forward(self, x): + return x.view(x.size(0), -1) + +class ImageFeatureExtractor(nn.Module): + def __init__(self, inputImageDimension, resizedDimension=None, + channels=1): + super(ImageFeatureExtractor, self).__init__() + + self.resizedDimension = resizedDimension or inputImageDimension + self.inputImageDimension = inputImageDimension + self.channels = channels + + def conv_block(in_channels, out_channels): + return nn.Sequential( + nn.Conv2d(in_channels, out_channels, 3, padding=1), + # nn.BatchNorm2d(out_channels), + nn.ReLU(), + nn.MaxPool2d(2) + ) + + # channels for hidden + hid_dim = 64 + z_dim = 64 + + self.encoder = nn.Sequential( + conv_block(channels, hid_dim), + conv_block(hid_dim, hid_dim), + conv_block(hid_dim, hid_dim), + conv_block(hid_dim, z_dim), + Flatten() + ) + + # Each layer of the encoder halves the dimension, except for the last layer which flattens + outputImageDimensionality = self.resizedDimension/(2**(len(self.encoder) - 1)) + self.outputDimensionality = int(z_dim*outputImageDimensionality*outputImageDimensionality) + + def forward(self, v): + """1 channel: v: BxWxW or v:WxW + > 1 channel: v: BxCxWxW or v:CxWxW""" + + insertBatch = False + variabled = variable(v).float() + if self.channels == 1: # insert channel dimension + if len(variabled.shape) == 3: # batching + variabled = variabled[:,None,:,:] + elif len(variabled.shape) == 2: # no batching + variabled = variabled[None,:,:] + insertBatch = True + else: assert False + else: # expect to have a channel dimension + if len(variabled.shape) == 4: + pass + elif len(variabled.shape) == 3: + insertBatch = True + else: assert False + + if insertBatch: variabled = torch.unsqueeze(variabled, 0) + + y = self.encoder(variabled) + if insertBatch: y = y[0,:] + return y + +class JSONFeatureExtractor(object): + def __init__(self, tasks, cudaFalse): + # self.averages, self.deviations = Task.featureMeanAndStandardDeviation(tasks) + # self.outputDimensionality = len(self.averages) + self.cuda = cuda + self.tasks = tasks + + def stringify(self, x): + # No whitespace #maybe kill the seperators + return json.dumps(x, separators=(',', ':')) + + def featuresOfTask(self, t): + # >>> t.request to get the type + # >>> t.examples to get input/output examples + # this might actually be okay, because the input should just be nothing + #return [(self.stringify(inputs), self.stringify(output)) + # for (inputs, output) in t.examples] + return [(list(output),) for (inputs, output) in t.examples] diff --git a/dreamcoder/task.py b/dreamcoder/task.py new file mode 100644 index 0000000000000000000000000000000000000000..2688ce4cc8d0bff19492edaf6cbdf5d161153ab3 --- /dev/null +++ b/dreamcoder/task.py @@ -0,0 +1,244 @@ +from dreamcoder.program import * +from dreamcoder.differentiation import * + +import signal + + +class EvaluationTimeout(Exception): + pass + + +EVALUATIONTABLE = {} + + +class Task(object): + def __init__(self, name, request, examples, features=None, cache=False): + '''request: the type of this task + examples: list of tuples of (input, output). input should be a tuple, with one entry for each argument + cache: should program evaluations be cached? + features: list of floats.''' + self.cache = cache + self.features = features + self.request = request + self.name = name + self.examples = examples + if len(self.examples) > 0: + assert all(len(xs) == len(examples[0][0]) + for xs, _ in examples), \ + "(for task %s) FATAL: Number of arguments varies." % name + + def __str__(self): + if self.supervision is None: + return self.name + else: + return self.name + " (%s)"%self.supervision + + def __repr__(self): + return "Task(name={self.name}, request={self.request}, examples={self.examples}"\ + .format(self=self) + + def __eq__(self, o): return self.name == o.name + + def __ne__(self, o): return not (self == o) + + def __hash__(self): return hash(self.name) + + def describe(self): + description = ["%s : %s" % (self.name, self.request)] + for xs, y in self.examples: + if len(xs) == 1: + description.append("f(%s) = %s" % (xs[0], y)) + else: + description.append("f%s = %s" % (xs, y)) + return "\n".join(description) + + def predict(self, f, x): + for a in x: + f = f(a) + return f + + @property + def supervision(self): + if not hasattr(self, 'supervisedSolution'): return None + return self.supervisedSolution + + def check(self, e, timeout=None): + if timeout is not None: + def timeoutCallBack(_1, _2): raise EvaluationTimeout() + try: + signal.signal(signal.SIGVTALRM, timeoutCallBack) + signal.setitimer(signal.ITIMER_VIRTUAL, timeout) + + try: + f = e.evaluate([]) + except IndexError: + # free variable + return False + except Exception as e: + eprint("Exception during evaluation:", e) + return False + + for x, y in self.examples: + if self.cache and (x, e) in EVALUATIONTABLE: + p = EVALUATIONTABLE[(x, e)] + else: + try: + p = self.predict(f, x) + except BaseException: + p = None + if self.cache: + EVALUATIONTABLE[(x, e)] = p + if p != y: + if timeout is not None: + signal.signal(signal.SIGVTALRM, lambda *_: None) + signal.setitimer(signal.ITIMER_VIRTUAL, 0) + return False + + return True + # except e: + # eprint(e) + # assert(False) + except EvaluationTimeout: + eprint("Timed out while evaluating", e) + return False + finally: + if timeout is not None: + signal.signal(signal.SIGVTALRM, lambda *_: None) + signal.setitimer(signal.ITIMER_VIRTUAL, 0) + + def logLikelihood(self, e, timeout=None): + if self.check(e, timeout): + return 0.0 + else: + return NEGATIVEINFINITY + + @staticmethod + def featureMeanAndStandardDeviation(tasks): + dimension = len(tasks[0].features) + averages = [sum(t.features[j] for t in tasks) / float(len(tasks)) + for j in range(dimension)] + variances = [sum((t.features[j] - + averages[j])**2 for t in tasks) / + float(len(tasks)) for j in range(dimension)] + standardDeviations = [v**0.5 for v in variances] + for j, s in enumerate(standardDeviations): + if s == 0.: + eprint( + "WARNING: Feature %d is always %f" % + (j + 1, averages[j])) + return averages, standardDeviations + + def as_json_dict(self): + return { + "name": self.name, + "request": str(self.request), + "examples": [{"inputs": x, "output": y} for x, y in self.examples] + } + + +class DifferentiableTask(Task): + + def __init__(self, name, request, examples, _=None, + features=None, BIC=1., loss=None, likelihoodThreshold=None, + steps=50, restarts=300, lr=0.5, decay=0.5, grow=1.2, actualParameters=None, + temperature=1., maxParameters=None, clipLoss=None, clipOutput=None): + assert loss is not None + self.temperature = temperature + self.actualParameters = actualParameters + self.maxParameters = maxParameters + self.loss = loss + self.BIC = BIC + self.likelihoodThreshold = likelihoodThreshold + + arguments = {"parameterPenalty": BIC * math.log(len(examples)), + "temperature": temperature, + "steps": steps, "restarts": restarts, "lr": lr, "decay": decay, "grow": grow, + "maxParameters": maxParameters, + "lossThreshold": -likelihoodThreshold} + if clipLoss is not None: arguments['clipLoss'] = float(clipLoss) + if clipOutput is not None: arguments['clipOutput'] = float(clipOutput) + if actualParameters is not None: arguments['actualParameters'] = int(actualParameters) + + self.specialTask = ("differentiable", + arguments) + + super( + DifferentiableTask, + self).__init__( + name, + request, + examples, + features, + cache=False) + + def logLikelihood(self, e, timeout=None): + assert timeout is None, "timeout not implemented for differentiable tasks, but not for any good reason." + e, parameters = PlaceholderVisitor.execute(e) + if self.maxParameters is not None and len( + parameters) > self.maxParameters: + return NEGATIVEINFINITY + if self.actualParameters is not None and len( + parameters) > self.actualParameters: + return NEGATIVEINFINITY + f = e.evaluate([]) + + loss = sum(self.loss(self.predict(f, xs), y) + for xs, y in self.examples) / float(len(self.examples)) + if isinstance(loss, DN): + try: + loss = loss.restartingOptimize( + parameters, + lr=self.specialTask[1]["lr"], + steps=self.specialTask[1]["steps"], + decay=self.specialTask[1]["decay"], + grow=self.specialTask[1]["grow"], + attempts=self.specialTask[1]["restarts"], + update=None) + except InvalidLoss: + loss = POSITIVEINFINITY + + # BIC penalty + penalty = self.BIC * len(parameters) * math.log(len(self.examples)) + + if self.likelihoodThreshold is not None: + if loss > -self.likelihoodThreshold: + return NEGATIVEINFINITY + else: + return -penalty + else: + return -loss / self.temperature - penalty + + +def squaredErrorLoss(prediction, target): + d = prediction - target + return d * d + + +def l1loss(prediction, target): + return abs(prediction - target) + + +class PlaceholderVisitor(object): + def __init__(self): self.parameters = [] + + def primitive(self, e): + if e.name == 'REAL': + placeholder = Placeholder.named("REAL_", random.random()) + self.parameters.append(placeholder) + return Primitive(e.name, e.tp, placeholder) + return e + + def invented(self, e): return e.body.visit(self) + + def abstraction(self, e): return Abstraction(e.body.visit(self)) + + def application(self, e): + return Application(e.f.visit(self), e.x.visit(self)) + + def index(self, e): return e + + @staticmethod + def execute(e): + v = PlaceholderVisitor() + e = e.visit(v) + return e, v.parameters diff --git a/dreamcoder/taskBatcher.py b/dreamcoder/taskBatcher.py new file mode 100644 index 0000000000000000000000000000000000000000..3d7467395a2c6c9623668e3d4a4898b90d5e7eb4 --- /dev/null +++ b/dreamcoder/taskBatcher.py @@ -0,0 +1,200 @@ +from dreamcoder.utilities import eprint +import random + + +class DefaultTaskBatcher: + """Iterates through task batches of the specified size. Defaults to all tasks if taskBatchSize is None.""" + + def __init__(self): + pass + + def getTaskBatch(self, ec_result, tasks, taskBatchSize, currIteration): + if taskBatchSize is None: + taskBatchSize = len(tasks) + elif taskBatchSize > len(tasks): + eprint("Task batch size is greater than total number of tasks, aborting.") + assert False + + + start = (taskBatchSize * currIteration) % len(tasks) + end = start + taskBatchSize + taskBatch = (tasks + tasks)[start:end] # Handle wraparound. + return taskBatch + +class RandomTaskBatcher: + """Returns a randomly sampled task batch of the specified size. Defaults to all tasks if taskBatchSize is None.""" + + def __init__(self): + pass + + def getTaskBatch(self, ec_result, tasks, taskBatchSize, currIteration): + if taskBatchSize is None: + taskBatchSize = len(tasks) + elif taskBatchSize > len(tasks): + eprint("Task batch size is greater than total number of tasks, aborting.") + assert False + + return random.sample(tasks, taskBatchSize) + +class RandomShuffleTaskBatcher: + """Randomly shuffles the task batch first, and then iterates through task batches of the specified size like DefaultTaskBatcher. + Reshuffles across iterations - intended as benchmark comparison to test the task ordering.""" + def __init__(self, baseSeed=0): self.baseSeed = baseSeed + + def getTaskBatch(self, ec_result, tasks, taskBatchSize, currIteration): + if taskBatchSize is None: + taskBatchSize = len(tasks) + elif taskBatchSize > len(tasks): + eprint("Task batch size is greater than total number of tasks, aborting.") + assert False + + # Reshuffles tasks in a fixed way across epochs for reproducibility. + currEpoch = int(int(currIteration * taskBatchSize) / int(len(tasks))) + + shuffledTasks = tasks.copy() # Since shuffle works in place. + random.Random(self.baseSeed + currEpoch).shuffle(shuffledTasks) + + shuffledTasksWrap = tasks.copy() # Since shuffle works in place. + random.Random(self.baseSeed + currEpoch + 1).shuffle(shuffledTasksWrap) + + start = (taskBatchSize * currIteration) % len(shuffledTasks) + end = start + taskBatchSize + taskBatch = (shuffledTasks + shuffledTasksWrap)[start:end] # Wraparound nicely. + + return list(set(taskBatch)) + +class UnsolvedTaskBatcher: + """At a given epoch, returns only batches of the tasks that have not been solved at least twice""" + + def __init__(self): + self.timesSolved = {} # map from task to times that we have solved it + self.start = 0 + + def getTaskBatch(self, ec_result, tasks, taskBatchSize, currIteration): + assert taskBatchSize is None, "This batching strategy does not support batch sizes" + + for t,f in ec_result.allFrontiers.items(): + if f.empty: + self.timesSolved[t] = max(0, self.timesSolved.get(t,0)) + else: + self.timesSolved[t] = 1 + self.timesSolved.get(t, 0) + return [t for t in tasks if self.timesSolved.get(t,0) < 2 ] + +def entropyRandomBatch(ec_result, tasks, taskBatchSize, randomRatio): + numRandom = int(randomRatio * taskBatchSize) + numEntropy = taskBatchSize - numRandom + + eprint("Selecting top %d tasks from the %d overall tasks given lowest entropy." % (taskBatchSize, len(tasks))) + eprint("Will be selecting %d by lowest entropy and %d randomly." %(numEntropy, numRandom)) + taskGrammarEntropies = ec_result.recognitionModel.taskGrammarEntropies(tasks) + sortedEntropies = sorted(taskGrammarEntropies.items(), key=lambda x:x[1]) + + entropyBatch = [task for (task, entropy) in sortedEntropies[:numEntropy]] + randomBatch = random.sample([task for (task, entropy) in sortedEntropies[numEntropy:]], numRandom) + batch = entropyBatch + randomBatch + + return batch + +def kNearestNeighbors(ec_result, tasks, k, task): + """Finds the k nearest neighbors in the recognition model logProduction space to a given task.""" + import numpy as np + cosDistance = ec_result.recognitionModel.grammarLogProductionDistanceToTask(task, tasks) + argSort = np.argsort(-cosDistance)# Want the greatest similarity. + topK = argSort[:k] + topKTasks = list(np.array(tasks)[topK]) + return topKTasks + + +class RandomkNNTaskBatcher: + """Chooses a random task and finds the (taskBatchSize - 1) nearest neighbors using the recognition model logits.""" + def __init__(self): + pass + + def getTaskBatch(self, ec_result, tasks, taskBatchSize, currIteration): + if taskBatchSize is None: + taskBatchSize = len(tasks) + elif taskBatchSize > len(tasks): + eprint("Task batch size is greater than total number of tasks, aborting.") + assert False + + if ec_result.recognitionModel is None: + eprint("No recognition model, falling back on random %d" % taskBatchSize) + return random.sample(tasks, taskBatchSize) + else: + randomTask = random.choice(tasks) + kNN = kNearestNeighbors(ec_result, tasks, taskBatchSize - 1, randomTask) + return [randomTask] + kNN + +class RandomLowEntropykNNTaskBatcher: + """Choose a random task from the 10 unsolved with the lowest entropy, and finds the (taskBatchSize - 1) nearest neighbors using the recognition model logits.""" + def __init__(self): + pass + + def getTaskBatch(self, ec_result, tasks, taskBatchSize, currIteration): + unsolvedTasks = [t for t in tasks if ec_result.allFrontiers[t].empty] + + if taskBatchSize is None: + return unsolvedTasks + elif taskBatchSize > len(tasks): + eprint("Task batch size is greater than total number of tasks, aborting.") + assert False + + if ec_result.recognitionModel is None: + eprint("No recognition model, falling back on random %d tasks from the remaining %d" %(taskBatchSize, len(unsolvedTasks))) + return random.sample(unsolvedTasks, taskBatchSize) + else: + lowEntropyUnsolved = entropyRandomBatch(ec_result, unsolvedTasks, taskBatchSize, randomRatio=0) + randomTask = random.choice(lowEntropyUnsolved) + kNN = kNearestNeighbors(ec_result, tasks, taskBatchSize - 1, randomTask) + return [randomTask] + kNN + + +class UnsolvedEntropyTaskBatcher: + """Returns tasks that have never been solved at any previous iteration. + Given a task batch size, returns the unsolved tasks with the lowest entropy.""" + def __init__(self): + pass + + def getTaskBatch(self, ec_result, tasks, taskBatchSize, currIteration): + unsolvedTasks = [t for t in tasks if ec_result.allFrontiers[t].empty] + + if taskBatchSize is None: + return unsolvedTasks + elif taskBatchSize > len(tasks): + eprint("Task batch size is greater than total number of tasks, aborting.") + assert False + + if ec_result.recognitionModel is None: + eprint("No recognition model, falling back on random %d tasks from the remaining %d" %(taskBatchSize, len(unsolvedTasks))) + return random.sample(unsolvedTasks, taskBatchSize) + else: + return entropyRandomBatch(ec_result, unsolvedTasks, taskBatchSize, randomRatio=0) + +class UnsolvedRandomEntropyTaskBatcher: + """Returns tasks that have never been solved at any previous iteration. + Given a task batch size, returns a mix of unsolved tasks with percentRandom + selected randomly and the remaining selected by lowest entropy.""" + def __init__(self): + pass + + def getTaskBatch(self, ec_result, tasks, taskBatchSize, currIteration): + unsolvedTasks = [t for t in tasks if ec_result.allFrontiers[t].empty] + + if taskBatchSize is None: + return unsolvedTasks + elif taskBatchSize > len(tasks): + eprint("Task batch size is greater than total number of tasks, aborting.") + assert False + + if ec_result.recognitionModel is None: + eprint("No recognition model, falling back on random %d tasks from the remaining %d" %(taskBatchSize, len(unsolvedTasks))) + return random.sample(unsolvedTasks, taskBatchSize) + else: + return entropyRandomBatch(ec_result, unsolvedTasks, taskBatchSize, randomRatio=.5) + + + + + + + diff --git a/dreamcoder/type.py b/dreamcoder/type.py new file mode 100644 index 0000000000000000000000000000000000000000..2690a2a6519b498eab11d8e2dda73dad934fa81a --- /dev/null +++ b/dreamcoder/type.py @@ -0,0 +1,378 @@ +class UnificationFailure(Exception): + pass + + +class Occurs(UnificationFailure): + pass + + +class Type(object): + def __str__(self): return self.show(True) + + def __repr__(self): return str(self) + + @staticmethod + def fromjson(j): + if "index" in j: return TypeVariable(j["index"]) + if "constructor" in j: return TypeConstructor(j["constructor"], + [ Type.fromjson(a) for a in j["arguments"] ]) + assert False + + +class TypeConstructor(Type): + def __init__(self, name, arguments): + self.name = name + self.arguments = arguments + self.isPolymorphic = any(a.isPolymorphic for a in arguments) + + def makeDummyMonomorphic(self, mapping=None): + mapping = mapping if mapping is not None else {} + return TypeConstructor(self.name, + [ a.makeDummyMonomorphic(mapping) for a in self.arguments ]) + + def __eq__(self, other): + return isinstance(other, TypeConstructor) and \ + self.name == other.name and \ + all(x == y for x, y in zip(self.arguments, other.arguments)) + + def __hash__(self): return hash((self.name,) + tuple(self.arguments)) + + def __ne__(self, other): + return not (self == other) + + def show(self, isReturn): + if self.name == ARROW: + if isReturn: + return "%s %s %s" % (self.arguments[0].show( + False), ARROW, self.arguments[1].show(True)) + else: + return "(%s %s %s)" % (self.arguments[0].show( + False), ARROW, self.arguments[1].show(True)) + elif self.arguments == []: + return self.name + else: + return "%s(%s)" % (self.name, ", ".join(x.show(True) + for x in self.arguments)) + + def json(self): + return {"constructor": self.name, + "arguments": [a.json() for a in self.arguments]} + + + def isArrow(self): return self.name == ARROW + + def functionArguments(self): + if self.name == ARROW: + xs = self.arguments[1].functionArguments() + return [self.arguments[0]] + xs + return [] + + def returns(self): + if self.name == ARROW: + return self.arguments[1].returns() + else: + return self + + def apply(self, context): + if not self.isPolymorphic: + return self + return TypeConstructor(self.name, + [x.apply(context) for x in self.arguments]) + + def applyMutable(self, context): + if not self.isPolymorphic: + return self + return TypeConstructor(self.name, + [x.applyMutable(context) for x in self.arguments]) + + def occurs(self, v): + if not self.isPolymorphic: + return False + return any(x.occurs(v) for x in self.arguments) + + def negateVariables(self): + return TypeConstructor(self.name, + [a.negateVariables() for a in self.arguments]) + + def instantiate(self, context, bindings=None): + if not self.isPolymorphic: + return context, self + if bindings is None: + bindings = {} + newArguments = [] + for x in self.arguments: + (context, x) = x.instantiate(context, bindings) + newArguments.append(x) + return (context, TypeConstructor(self.name, newArguments)) + + def instantiateMutable(self, context, bindings=None): + if not self.isPolymorphic: + return self + if bindings is None: + bindings = {} + newArguments = [] + return TypeConstructor(self.name, [x.instantiateMutable(context, bindings) + for x in self.arguments ]) + + + def canonical(self, bindings=None): + if not self.isPolymorphic: + return self + if bindings is None: + bindings = {} + return TypeConstructor(self.name, + [x.canonical(bindings) for x in self.arguments]) + + +class TypeVariable(Type): + def __init__(self, j): + assert isinstance(j, int) + self.v = j + self.isPolymorphic = True + + def makeDummyMonomorphic(self, mapping=None): + mapping = mapping if mapping is not None else {} + if self.v not in mapping: + mapping[self.v] = TypeConstructor(f"dummy_type_{len(mapping)}", []) + return mapping[self.v] + + + def __eq__(self, other): + return isinstance(other, TypeVariable) and self.v == other.v + + def __ne__(self, other): return not (self.v == other.v) + + def __hash__(self): return self.v + + def show(self, _): return "t%d" % self.v + + def json(self): + return {"index": self.v} + + def returns(self): return self + + def isArrow(self): return False + + def functionArguments(self): return [] + + def apply(self, context): + for v, t in context.substitution: + if v == self.v: + return t.apply(context) + return self + + def applyMutable(self, context): + s = context.substitution[self.v] + if s is None: return self + new = s.applyMutable(context) + context.substitution[self.v] = new + return new + + def occurs(self, v): return v == self.v + + def instantiate(self, context, bindings=None): + if bindings is None: + bindings = {} + if self.v in bindings: + return (context, bindings[self.v]) + new = TypeVariable(context.nextVariable) + bindings[self.v] = new + context = Context(context.nextVariable + 1, context.substitution) + return (context, new) + + def instantiateMutable(self, context, bindings=None): + if bindings is None: bindings = {} + if self.v in bindings: return bindings[self.v] + new = context.makeVariable() + bindings[self.v] = new + return new + + def canonical(self, bindings=None): + if bindings is None: + bindings = {} + if self.v in bindings: + return bindings[self.v] + new = TypeVariable(len(bindings)) + bindings[self.v] = new + return new + + def negateVariables(self): + return TypeVariable(-1 - self.v) + + +class Context(object): + def __init__(self, nextVariable=0, substitution=[]): + self.nextVariable = nextVariable + self.substitution = substitution + + def extend(self, j, t): + return Context(self.nextVariable, [(j, t)] + self.substitution) + + def makeVariable(self): + return (Context(self.nextVariable + 1, self.substitution), + TypeVariable(self.nextVariable)) + + def unify(self, t1, t2): + t1 = t1.apply(self) + t2 = t2.apply(self) + if t1 == t2: + return self + # t1&t2 are not equal + if not t1.isPolymorphic and not t2.isPolymorphic: + raise UnificationFailure(t1, t2) + + if isinstance(t1, TypeVariable): + if t2.occurs(t1.v): + raise Occurs() + return self.extend(t1.v, t2) + if isinstance(t2, TypeVariable): + if t1.occurs(t2.v): + raise Occurs() + return self.extend(t2.v, t1) + if t1.name != t2.name: + raise UnificationFailure(t1, t2) + k = self + for x, y in zip(t2.arguments, t1.arguments): + k = k.unify(x, y) + return k + + def __str__(self): + return "Context(next = %d, {%s})" % (self.nextVariable, ", ".join( + "t%d ||> %s" % (k, v.apply(self)) for k, v in self.substitution)) + + def __repr__(self): return str(self) + +class MutableContext(object): + def __init__(self): + self.substitution = [] + + def extend(self,i,t): + assert self.substitution[i] is None + self.substitution[i] = t + + def makeVariable(self): + self.substitution.append(None) + return TypeVariable(len(self.substitution) - 1) + + def unify(self, t1, t2): + t1 = t1.applyMutable(self) + t2 = t2.applyMutable(self) + + if t1 == t2: return + + # t1&t2 are not equal + if not t1.isPolymorphic and not t2.isPolymorphic: + raise UnificationFailure(t1, t2) + + if isinstance(t1, TypeVariable): + if t2.occurs(t1.v): + raise Occurs() + self.extend(t1.v, t2) + return + if isinstance(t2, TypeVariable): + if t1.occurs(t2.v): + raise Occurs() + self.extend(t2.v, t1) + return + if t1.name != t2.name: + raise UnificationFailure(t1, t2) + + for x, y in zip(t2.arguments, t1.arguments): + self.unify(x, y) + + +Context.EMPTY = Context(0, []) + + +def canonicalTypes(ts): + bindings = {} + return [t.canonical(bindings) for t in ts] + + +def instantiateTypes(context, ts): + bindings = {} + newTypes = [] + for t in ts: + context, t = t.instantiate(context, bindings) + newTypes.append(t) + return context, newTypes + + +def baseType(n): return TypeConstructor(n, []) + + +tint = baseType("int") +treal = baseType("real") +tbool = baseType("bool") +tboolean = tbool # alias +tcharacter = baseType("char") + + +def tlist(t): return TypeConstructor("list", [t]) + + +def tpair(a, b): return TypeConstructor("pair", [a, b]) + + +def tmaybe(t): return TypeConstructor("maybe", [t]) + + +tstr = tlist(tcharacter) +t0 = TypeVariable(0) +t1 = TypeVariable(1) +t2 = TypeVariable(2) + +# regex types +tpregex = baseType("pregex") + +ARROW = "->" + + +def arrow(*arguments): + if len(arguments) == 1: + return arguments[0] + return TypeConstructor(ARROW, [arguments[0], arrow(*arguments[1:])]) + + +def inferArg(tp, tcaller): + ctx, tp = tp.instantiate(Context.EMPTY) + ctx, tcaller = tcaller.instantiate(ctx) + ctx, targ = ctx.makeVariable() + ctx = ctx.unify(tcaller, arrow(targ, tp)) + return targ.apply(ctx) + + +def guess_type(xs): + """ + Return a TypeConstructor corresponding to x's python type. + Raises an exception if the type cannot be guessed. + """ + if all(isinstance(x, bool) for x in xs): + return tbool + elif all(isinstance(x, int) for x in xs): + return tint + elif all(isinstance(x, str) for x in xs): + return tstr + elif all(isinstance(x, list) for x in xs): + return tlist(guess_type([y for ys in xs for y in ys])) + else: + raise ValueError("cannot guess type from {}".format(xs)) + + +def guess_arrow_type(examples): + a = len(examples[0][0]) + input_types = [] + for n in range(a): + input_types.append(guess_type([xs[n] for xs, _ in examples])) + output_type = guess_type([y for _, y in examples]) + return arrow(*(input_types + [output_type])) + +def canUnify(t1, t2): + k = MutableContext() + t1 = t1.instantiateMutable(k) + t2 = t2.instantiateMutable(k) + try: + k.unify(t1, t2) + return True + except UnificationFailure: return False + diff --git a/dreamcoder/utilities.py b/dreamcoder/utilities.py new file mode 100644 index 0000000000000000000000000000000000000000..11d6116f99da4c58d68b9cc8943690207d2fdb3d --- /dev/null +++ b/dreamcoder/utilities.py @@ -0,0 +1,941 @@ +import inspect +import signal +import random +import time +import traceback +import sys +import os +import subprocess +import math +import pickle as pickle +from itertools import chain +import heapq + +import hashlib + +def computeMD5hash(my_string): + #https://stackoverflow.com/questions/13259691/convert-string-to-md5 + m = hashlib.md5() + m.update(my_string.encode('utf-8')) + return m.hexdigest() + + +class Thunk(object): + # A class for lazy evaluation + def __init__(self, thing): + self.thing = thing + self.evaluated = False + + def force(self): + if self.evaluated: + return self.thing + else: + self.thing = self.thing() + self.evaluated = True + return self.thing + +def cindex(i): return lambda a: a[i] + +class ConstantFunction: + def __init__(self,v): self.v = v + def __call__(self,*a,**k): return self.v + +def eprint(*args, **kwargs): + print(*args, file=sys.stderr, **kwargs) + flushEverything() + + +class Bunch(object): + def __init__(self, d): + self.__dict__.update(d) + + def __setitem__(self, key, item): + self.__dict__[key] = item + + def __getitem__(self, key): + return self.__dict__[key] + +def curry(fn): + """Curries a function. Hacky way to return a curried version of functions with arbitrary #s of args. """ + def make_curry_fn(signature): + """Redefines a currying function with the appropriate arguments. Hacky.""" + tmp_curry = 'def tmp_curry(f): return ' + tmp_curry += " ".join(['lambda %s: ' % argname for argname in signature.parameters]) + tmp_curry += 'f' + tmp_curry += str(signature) + return tmp_curry + exec(make_curry_fn(inspect.signature(fn)), globals()) + return tmp_curry(fn) + +class Curried: + def __init__(self, f, arguments=None, arity=None): + if arity is None: + arity = len(inspect.getargspec(f)[0]) + self.f = f + self.arity = arity + if arguments is None: arguments = [] + self.arguments = arguments + + def __call__(self, x): + arguments = self.arguments + [x] + if len(arguments) == self.arity: + return self.f(*arguments) + else: + return Curried(self.f, arguments=arguments, arity=self.arity) + + def __str__(self): + if len(self.arguments) == 0: + return f"Curried({self.f}/{self.arity})" + else: + return f"Curried({self.f}/{self.arity}, {', '.join(map(str,self.arguments))})" + + def __repr__(self): + return str(self) + + +def hashable(v): + """Determine whether `v` can be hashed.""" + try: + hash(v) + except TypeError: + return False + return True + + +def flatten(x, abort=lambda x: False): + """Recursively unroll iterables.""" + if abort(x): + yield x + return + try: + yield from chain(*(flatten(i, abort) for i in x)) + except TypeError: # not iterable + yield x + +def growImage(i, iterations=2): + import numpy as np + for _ in range(iterations): + ip = np.zeros(i.shape) + # assume it is monochromatic and get the color + c = np.array([i[:,:,j].max() + for j in range(4) ]) + # assume that the alpha channel indicates where the foreground is + foreground = i[:,:,3] > 0 + foreground = foreground + \ + np.pad(foreground, ((0,1),(0,0)), mode='constant')[1:,:] +\ + np.pad(foreground, ((0,0),(0,1)), mode='constant')[:,1:] + \ + np.pad(foreground, ((0,0),(1,0)), mode='constant')[:,:-1] + \ + np.pad(foreground, ((1,0),(0,0)), mode='constant')[:-1,:] + ip[foreground] = c + i = ip + return ip + + + +def summaryStatistics(n, times): + if len(times) == 0: + eprint(n, "no successful times to report statistics on!") + else: + eprint(n, "average: ", int(mean(times) + 0.5), + "sec.\tmedian:", int(median(times) + 0.5), + "\tmax:", int(max(times) + 0.5), + "\tstandard deviation", int(standardDeviation(times) + 0.5)) + +def updateTaskSummaryMetrics(taskSummaryMetrics, newMetricsDict, key): + """Updates a taskSummaryMetrics dict from tasks -> metrics with new metrics under the given key.""" + for task in newMetricsDict: + if task in taskSummaryMetrics: + taskSummaryMetrics[task][key] = newMetricsDict[task] + else: + taskSummaryMetrics[task] = {key : newMetricsDict[task]} + +NEGATIVEINFINITY = float('-inf') +POSITIVEINFINITY = float('inf') + +PARALLELMAPDATA = None +PARALLELBASESEED = None + + +def parallelMap(numberOfCPUs, f, *xs, chunksize=None, maxtasksperchild=None, memorySensitive=False, + seedRandom=False): + """seedRandom: Should each parallel worker be given a different random seed?""" + global PARALLELMAPDATA + global PARALLELBASESEED + + if memorySensitive: + memoryUsage = getMemoryUsageFraction()/100. + correctedCPUs = max(1, + min(int(0.9/memoryUsage),numberOfCPUs)) + assert correctedCPUs <= numberOfCPUs + assert correctedCPUs >= 1 + if correctedCPUs < numberOfCPUs: + eprint("In order to not use all of the memory on the machine (%f gb), we are limiting this parallel map to only use %d CPUs"%(howManyGigabytesOfMemory(),correctedCPUs)) + numberOfCPUs = correctedCPUs + + + if numberOfCPUs == 1: + return list(map(f, *xs)) + + n = len(xs[0]) + for x in xs: + assert len(x) == n + + assert PARALLELMAPDATA is None + PARALLELMAPDATA = (f, xs) + assert PARALLELBASESEED is None + if seedRandom: + PARALLELBASESEED = random.random() + + from multiprocessing import Pool + + # Randomize the order in case easier ones come earlier or later + permutation = list(range(n)) + random.shuffle(permutation) + inversePermutation = dict(zip(permutation, range(n))) + + # Batch size of jobs as they are sent to processes + if chunksize is None: + chunksize = max(1, n // (numberOfCPUs * 2)) + pool = Pool(numberOfCPUs, maxtasksperchild=maxtasksperchild) + ys = pool.map(parallelMapCallBack, permutation, + chunksize=chunksize) + pool.terminate() + + PARALLELMAPDATA = None + PARALLELBASESEED = None + return [ys[inversePermutation[j]] for j in range(n)] + + +def parallelMapCallBack(j): + global PARALLELMAPDATA + global PARALLELBASESEED + if PARALLELBASESEED is not None: + random.seed(PARALLELBASESEED + j) + f, xs = PARALLELMAPDATA + try: + return f(*[x[j] for x in xs]) + except Exception as e: + eprint( + "Exception in worker during lightweight parallel map:\n%s" % + (traceback.format_exc())) + raise e + + +def log(x): + t = type(x) + if t == int or t == float: + if x == 0: + return NEGATIVEINFINITY + return math.log(x) + return x.log() + + +def exp(x): + t = type(x) + if t == int or t == float: + return math.exp(x) + return x.exp() + + +def lse(x, y=None): + if y is None: + largest = None + if len(x) == 0: + raise Exception('LSE: Empty sequence') + if len(x) == 1: + return x[0] + # If these are just numbers... + t = type(x[0]) + if t == int or t == float: + largest = max(*x) + return largest + math.log(sum(math.exp(z - largest) for z in x)) + #added clause to avoid zero -dim tensor problem + import torch + if t == torch.Tensor and x[0].size() == torch.Size([]): + return torchSoftMax([datum.view(1) for datum in x]) + # Must be torch + return torchSoftMax(x) + else: + if x is NEGATIVEINFINITY: + return y + if y is NEGATIVEINFINITY: + return x + tx = type(x) + ty = type(y) + if (ty == int or ty == float) and (tx == int or tx == float): + if x > y: + return x + math.log(1. + math.exp(y - x)) + else: + return y + math.log(1. + math.exp(x - y)) + return torchSoftMax(x, y) + + +def torchSoftMax(x, y=None): + from torch.nn.functional import log_softmax + import torch + if y is None: + if isinstance(x, list): + x = torch.cat(x) + return (x - log_softmax(x, dim=0))[0] + x = torch.cat((x, y)) + # this is so stupid + return (x - log_softmax(x, dim=0))[0] + + +def invalid(x): + return math.isinf(x) or math.isnan(x) + + +def valid(x): return not invalid(x) + + +def forkCallBack(x): + [f, a, k] = x + try: + return f(*a, **k) + except Exception as e: + eprint( + "Exception in worker during forking:\n%s" % + (traceback.format_exc())) + raise e + + +def callFork(f, *arguments, **kw): + """Forks a new process to execute the call. Blocks until the call completes.""" + global FORKPARAMETERS + + from multiprocessing import Pool + + workers = Pool(1) + ys = workers.map(forkCallBack, [[f, arguments, kw]]) + workers.terminate() + assert len(ys) == 1 + return ys[0] + + +PARALLELPROCESSDATA = None + + +def launchParallelProcess(f, *a, **k): + global PARALLELPROCESSDATA + + PARALLELPROCESSDATA = [f, a, k] + + from multiprocessing import Process + p = Process(target=_launchParallelProcess, args=tuple([])) + p.start() + PARALLELPROCESSDATA = None + return p + + +def _launchParallelProcess(): + global PARALLELPROCESSDATA + [f, a, k] = PARALLELPROCESSDATA + try: + f(*a, **k) + except Exception as e: + eprint( + "Exception in worker during forking:\n%s" % + (traceback.format_exc())) + raise e + + +def jsonBinaryInvoke(binary, message): + import json + import subprocess + import os + + message = json.dumps(message) + try: + process = subprocess.Popen(binary, + stdin=subprocess.PIPE, + stdout=subprocess.PIPE) + response, error = process.communicate(bytes(message, encoding="utf-8")) + except OSError as exc: + raise exc + try: + response = json.loads(response.decode("utf-8")) + except Exception as e: + eprint("Could not parse json.") + with open("/tmp/_message","w") as handle: + handle.write(message) + with open("/tmp/_response","w") as handle: + handle.write(response.decode("utf-8")) + raise e + return response + + +class CompiledTimeout(Exception): + pass + + +def get_root_dir(): + """ + Returns the absolute path to the root directory of the repository as a string. + + This method is primarily used in order to locate the binaries at the root of the + repository. + """ + return os.path.join(os.path.dirname(__file__), os.pardir) + + +def get_data_dir(): + """ + Returns the absolute path to the data directory of the repository as a string. + """ + return os.path.join(get_root_dir(), 'data') + + +def callCompiled(f, *arguments, **keywordArguments): + import dill + + pypyArgs = [] + profile = keywordArguments.pop('profile', None) + if profile: + pypyArgs = ['-m', 'vmprof', '-o', profile] + + PIDCallBack = keywordArguments.pop("PIDCallBack", None) + + timeout = keywordArguments.pop('compiledTimeout', None) + + # Use absolute paths. + compiled_driver_file = os.path.join(get_root_dir(), 'bin', 'compiledDriver.py') + p = subprocess.Popen(['pypy3'] + pypyArgs + [compiled_driver_file], + stdin=subprocess.PIPE, stdout=subprocess.PIPE) + + + if PIDCallBack is not None: + PIDCallBack(p.pid) + + request = { + "function": f, + "arguments": arguments, + "keywordArguments": keywordArguments, + } + start = time.time() + dill.dump(request, p.stdin) + + #p.stdin.write(request) + p.stdin.flush() + #p.stdin.close() + + + + dt = time.time() - start + if dt > 1: + eprint("(Python side of compiled driver: SLOW) Wrote serialized message for {} in time {}".format( + f.__name__, + dt)) + + if timeout is None: + success, result = dill.load(p.stdout) + else: + eprint("Running with timeout", timeout) + + def timeoutCallBack(_1, _2): raise CompiledTimeout() + signal.signal(signal.SIGALRM, timeoutCallBack) + signal.alarm(int(math.ceil(timeout))) + try: + success, result = dill.load(p.stdout) + signal.alarm(0) + except CompiledTimeout: + # Kill the process + p.kill() + raise CompiledTimeout() + + if not success: + sys.exit(1) + + return result + + +class timing(object): + def __init__(self, message): + self.message = message + + def __enter__(self): + self.start = time.time() + return self + + def __exit__(self, type, value, traceback): + dt = time.time() - self.start + if isinstance(self.message, str): message = self.message + elif callable(self.message): message = self.message(dt) + else: assert False, "Timing message should be string function" + eprint("%s in %.1f seconds" % (message, dt)) + +class random_seed(object): + def __init__(self, seed): + self.seed = seed + + def __enter__(self): + self._oldSeed = random.getstate() + random.seed(self.seed) + return self + + def __exit__(self, type, value, traceback): + random.setstate(self._oldSeed) + + +def randomPermutation(l): + import random + l = list(l) + random.shuffle(l) + return l + + +def batches(data, size=1): + import random + # Randomly permute the data + data = list(data) + random.shuffle(data) + + start = 0 + while start < len(data): + yield data[start:size + start] + start += size + + +def sampleDistribution(d): + """ + Expects d to be a list of tuples + The first element should be the probability + If the tuples are of length 2 then it returns the second element + Otherwise it returns the suffix tuple + """ + import random + + z = float(sum(t[0] for t in d)) + if z == 0.: + eprint("sampleDistribution: z = 0") + eprint(d) + r = random.random() + u = 0. + for index, t in enumerate(d): + p = t[0] / z + # This extra condition is needed for floating-point bullshit + if r <= u + p or index == len(d) - 1: + if len(t) <= 2: + return t[1] + else: + return t[1:] + u += p + + assert False + + +def sampleLogDistribution(d): + """ + Expects d to be a list of tuples + The first element should be the log probability + If the tuples are of length 2 then it returns the second element + Otherwise it returns the suffix tuple + """ + import random + + z = lse([t[0] for t in d]) + r = random.random() + u = 0. + for t in d: + p = math.exp(t[0] - z) + if r < u + p: + if len(t) <= 2: + return t[1] + else: + return t[1:] + u += p + assert False + + +def testTrainSplit(x, trainingFraction, seed=0): + if trainingFraction > 1.1: + # Assume that the training fraction is actually the number of tasks + # that we want to train on + trainingFraction = float(trainingFraction) / len(x) + needToTrain = { j for j, d in enumerate(x) + if hasattr(d, 'mustTrain') and d.mustTrain } + mightTrain = [j for j in range(len(x)) if j not in needToTrain] + + trainingSize = max(0, int(len(x) * trainingFraction - len(needToTrain))) + + import random + random.seed(seed) + random.shuffle(mightTrain) + training = set(mightTrain[:trainingSize]) | needToTrain + + train = [t for j, t in enumerate(x) if j in training] + test = [t for j, t in enumerate(x) if j not in training] + return test, train + + +def numberOfCPUs(): + import multiprocessing + return multiprocessing.cpu_count() + + +def loadPickle(f): + with open(f, 'rb') as handle: + d = pickle.load(handle) + return d + +def dumpPickle(o,f): + with open(f, 'wb') as handle: + pickle.dump(o,handle) + + +def fst(l): + for v in l: + return v + + +def mean(l): + n = 0 + t = None + for x in l: + if t is None: + t = x + else: + t = t + x + n += 1 + + if n == 0: + eprint("warning: asked to calculate the mean of an empty list. returning zero.") + return 0 + return t / float(n) + + +def variance(l): + m = mean(l) + return sum((x - m)**2 for x in l) / len(l) + + +def standardDeviation(l): return variance(l)**0.5 + + +def median(l): + if len(l) <= 0: + return None + l = sorted(l) + if len(l) % 2 == 1: + return l[len(l) // 2] + return 0.5 * (l[len(l) // 2] + l[len(l) // 2 - 1]) + +def percentile(l, p): + l = sorted(l) + j = int(len(l)*p) + if j < len(l): + return l[j] + return 0 + +def makeTemporaryFile(directory="/tmp"): + import tempfile + fd,p = tempfile.mkstemp(dir=directory) + os.close(fd) + return p + +class Stopwatch(): + def __init__(self): + self._elapsed = 0. + self.running = False + self._latestStart = None + + def start(self): + if self.running: + eprint( + "(stopwatch: attempted to start an already running stopwatch. Silently ignoring.)") + return + self.running = True + self._latestStart = time.time() + + def stop(self): + if not self.running: + eprint( + "(stopwatch: attempted to stop a stopwatch that is not running. Silently ignoring.)") + return + self.running = False + self._elapsed += time.time() - self._latestStart + self._latestStart = None + + @property + def elapsed(self): + e = self._elapsed + if self.running: + e = e + time.time() - self._latestStart + return e + + +def userName(): + import getpass + return getpass.getuser() + + +def hostname(): + import socket + return socket.gethostname() + + +def getPID(): + return os.getpid() + + +def CPULoad(): + try: + import psutil + except BaseException: + return "unknown - install psutil" + return psutil.cpu_percent() + + +def flushEverything(): + sys.stdout.flush() + sys.stderr.flush() + + +class RunWithTimeout(Exception): + pass + + +def runWithTimeout(k, timeout): + if timeout is None: return k() + def timeoutCallBack(_1,_2): + raise RunWithTimeout() + signal.signal(signal.SIGPROF, timeoutCallBack) + signal.setitimer(signal.ITIMER_PROF, timeout) + + try: + result = k() + signal.signal(signal.SIGPROF, lambda *_:None) + signal.setitimer(signal.ITIMER_PROF, 0) + return result + except RunWithTimeout: + signal.signal(signal.SIGPROF, lambda *_:None) + signal.setitimer(signal.ITIMER_PROF, 0) + raise RunWithTimeout() + except: + signal.signal(signal.SIGPROF, lambda *_:None) + signal.setitimer(signal.ITIMER_PROF, 0) + raise + + +def crossProduct(a, b): + b = list(b) + for x in a: + for y in b: + yield x, y + + +class PQ(object): + """why the fuck does Python not wrap this in a class""" + + def __init__(self): + self.h = [] + self.index2value = {} + self.nextIndex = 0 + + def push(self, priority, v): + self.index2value[self.nextIndex] = v + heapq.heappush(self.h, (-priority, self.nextIndex)) + self.nextIndex += 1 + + def popMaximum(self): + i = heapq.heappop(self.h)[1] + v = self.index2value[i] + del self.index2value[i] + return v + + def __iter__(self): + for _, v in self.h: + yield self.index2value[v] + + def __len__(self): return len(self.h) + +class UnionFind: + class Class: + def __init__(self, x): + self.members = {x} + self.leader = None + def chase(self): + k = self + while k.leader is not None: + k = k.leader + self.leader = k + return k + + def __init__(self): + # Map from keys to classes + self.classes = {} + def unify(self,x,y): + k1 = self.classes[x].chase() + k2 = self.classes[y].chase() + # k2 will be the new leader + k1.leader = k2 + k2.members |= k1.members + k1.members = None + self.classes[x] = k2 + self.classes[y] = k2 + return k2 + def newClass(self,x): + if x not in self.classes: + n = Class(x) + self.classes[x] = n + + def otherMembers(self,x): + k = self.classes[x].chase() + self.classes[x] = k + return k.members + + +def substringOccurrences(ss, s): + return sum(s[i:].startswith(ss) for i in range(len(s))) + + +def normal(s=1., m=0.): + u = random.random() + v = random.random() + + n = math.sqrt(-2.0 * log(u)) * math.cos(2.0 * math.pi * v) + + return s * n + m + +def powerOfTen(n): + if n <= 0: + return False + while True: + if n == 1: + return True + if n % 10 != 0: + return False + n = n / 10 + +def powerOf(p, n): + if n <= 0: + return False + while True: + if n == 1: + return True + if n % p != 0: + return False + n = n / p + + +def getThisMemoryUsage(): + import os + import psutil + process = psutil.Process(os.getpid()) + return process.memory_info().rss +def getMemoryUsageFraction(): + import psutil + return psutil.virtual_memory().percent +def howManyGigabytesOfMemory(): + import psutil + return psutil.virtual_memory().total/10**9 + +def tuplify(x): + if isinstance(x,(list,tuple)): return tuple(tuplify(z) for z in x) + return x + +# image montage! +def makeNiceArray(l, columns=None): + n = columns or int(len(l)**0.5) + a = [] + while l: + a.append(l[:n]) + l = l[n:] + return a +def montageMatrix(matrix): + import numpy as np + arrays = matrix + m = max(len(t) for t in arrays) + + size = arrays[0][0].shape + tp = arrays[0][0].dtype + + arrays = [np.concatenate(ts + [np.zeros(size, dtype=tp)] * (m - len(ts)), axis=1) for ts in arrays] + arrays = np.concatenate(arrays, axis=0) + return arrays +def montage(arrays, columns=None): + return montageMatrix(makeNiceArray(arrays, columns=columns)) + +def showArrayAsImage(a): + from pylab import imshow,show + imshow(a) + show() + + + +class ParseFailure(Exception): + pass + +def parseSExpression(s): + s = s.strip() + def p(n): + while n <= len(s) and s[n].isspace(): n += 1 + if n == len(s): raise ParseFailure(s) + if s[n] == '#': + e,n = p(n + 1) + return ['#', e],n + if s[n] == '(': + l = [] + n += 1 + while True: + x,n = p(n) + l.append(x) + while n <= len(s) and s[n].isspace(): n += 1 + if n == len(s): raise ParseFailure(s) + if s[n] == ')': + n += 1 + break + return l,n + name = [] + while n < len(s) and not s[n].isspace() and s[n] not in '()': + name.append(s[n]) + n += 1 + name = "".join(name) + return name,n + e,n = p(0) + if n == len(s): + return e + raise ParseFailure(s) + + +def diffuseImagesOutward(imageCoordinates, labelCoordinates, d, + maximumRadius = 2.5, minimumRadius = 1.5): + import numpy as np + + n = imageCoordinates.shape[0] + #d = (np.random.rand(n,2)*2 - 1)*(maximumRadius/2 + minimumRadius/2) + + def _constrainRadii(p): + r = (p*p).sum() + if r > maximumRadius: + return maximumRadius*p/(r**0.5) + if r < minimumRadius: + return minimumRadius*p/(r**0.5) + return p + def constrainRadii(): + for j in range(n): + d[j,:] = _constrainRadii(d[j,:]) + + for _ in range(10): + for i in range(n): + force = np.array([0.,0.]) + for j in range(n): + if i == j: continue + p1 = imageCoordinates[i] + d[i] + p2 = imageCoordinates[j] + d[j] + l = ((p1 - p2)**2).sum()**0.5 + if l > 1.5: continue + force += (p1 - p2)/l/max(l,0.2) + if force.sum() > 0: + force = force/( (force*force).sum()**0.5) + d[i] += force + constrainRadii() + return d + +if __name__ == "__main__": + def f(n): + if n == 0: return None + return [f(n - 1),f(n - 1)] + z = f(22) + eprint(getMemoryUsageFraction().percent) + eprint(getThisMemoryUsage()) diff --git a/dreamcoder/vs.py b/dreamcoder/vs.py new file mode 100644 index 0000000000000000000000000000000000000000..9e52752b71ccd29199a05540789819873caaa8fa --- /dev/null +++ b/dreamcoder/vs.py @@ -0,0 +1,1341 @@ +from dreamcoder.grammar import * + +epsilon = 0.001 + + +def instantiate(context, environment, tp): + bindings = {} + context, tp = tp.instantiate(context, bindings) + newEnvironment = {} + for i,ti in environment.items(): + context,newEnvironment[i] = ti.instantiate(context, bindings) + return context, newEnvironment, tp + +def unify(*environmentsAndTypes): + k = Context.EMPTY + e = {} + k,t = k.makeVariable() + for e_,t_ in environmentsAndTypes: + k, e_, t_ = instantiate(k, e_, t_) + k = k.unify(t,t_) + for i,ti in e_.items(): + if i not in e: e[i] = ti + else: k = k.unify(e[i], ti) + return {i: ti.apply(k) for i,ti in e.items() }, t.apply(k) + +class Union(Program): + def __init__(self, elements, canBeEmpty=False): + self.elements = frozenset(elements) + if not canBeEmpty: assert len(self.elements) > 1 + + @property + def isUnion(self): return True + def __eq__(self,o): + return isinstance(o,Union) and self.elements == o.elements + def __hash__(self): return hash(self.elements) + def __str__(self): + return "{%s}"%(", ".join(map(str,list(self.elements)))) + def show(self, isFunction): + return str(self) + def __repr__(self): return str(self) + def __iter__(self): return iter(self.elements) + +class VersionTable(): + def __init__(self, typed=True, identity=True, factored=False): + self.factored = factored + self.identity = identity + self.typed = typed + self.debug = False + if self.debug: + print("WARNING: running version spaces in debug mode. Will be substantially slower.") + + self.expressions = [] + self.recursiveTable = [] + self.substitutionTable = {} + self.expression2index = {} + self.maximumShift = [] + # Table containing (minimum cost, set of minimum cost programs) + self.inhabitantTable = [] + # Table containing (minimum cost, set of minimum cost programs NOT starting w/ abstraction) + self.functionInhabitantTable = [] + self.superCache = {} + + self.overlapTable = {} + + self.universe = self.incorporate(Primitive("U",t0,None)) + self.empty = self.incorporate(Union([], canBeEmpty=True)) + + def __len__(self): return len(self.expressions) + + def clearOverlapTable(self): + self.overlapTable = {} + + def visualize(self, j): + from graphviz import Digraph + g = Digraph() + + visited = set() + def walk(i): + if i in visited: return + + if i == self.universe: + g.node(str(i), 'universe') + elif i == self.empty: + g.node(str(i), 'nil') + else: + l = self.expressions[i] + if l.isIndex or l.isPrimitive or l.isInvented: + g.node(str(i), str(l)) + elif l.isAbstraction: + g.node(str(i), "lambda") + walk(l.body) + g.edge(str(i), str(l.body)) + elif l.isApplication: + g.node(str(i), "@") + walk(l.f) + walk(l.x) + g.edge(str(i), str(l.f), label='f') + g.edge(str(i), str(l.x), label='x') + elif l.isUnion: + g.node(str(i), "U") + for c in l: + walk(c) + g.edge(str(i), str(c)) + else: + assert False + visited.add(i) + walk(j) + g.render(view=True) + + def branchingFactor(self,j): + l = self.expressions[j] + if l.isApplication: return max(self.branchingFactor(l.f), + self.branchingFactor(l.x)) + if l.isUnion: return max([len(l.elements)] + [self.branchingFactor(e) for e in l ]) + if l.isAbstraction: return self.branchingFactor(l.body) + return 0 + + + def intention(self,j, isFunction=False): + l = self.expressions[j] + if l.isIndex or l.isPrimitive or l.isInvented: return l + if l.isAbstraction: return Abstraction(self.intention(l.body)) + if l.isApplication: return Application(self.intention(l.f), + self.intention(l.x)) + if l.isUnion: return Union(self.intention(e) + for e in l ) + assert False + + def walk(self,j): + """yields every subversion space of j""" + visited = set() + def r(n): + if n in visited: return + visited.add(n) + l = self.expressions[n] + yield l + if l.isApplication: + yield from r(l.f) + yield from r(l.x) + if l.isAbstraction: + yield from r(l.body) + if l.isUnion: + for e in l: + yield from r(e) + yield from r(j) + + + def incorporate(self,p): + #assert isinstance(p,Union)# or p.wellTyped() + if p.isIndex or p.isPrimitive or p.isInvented: + pass + elif p.isAbstraction: + p = Abstraction(self.incorporate(p.body)) + elif p.isApplication: + p = Application(self.incorporate(p.f), + self.incorporate(p.x)) + elif p.isUnion: + if len(p.elements) > 0: + p = Union([self.incorporate(e) for e in p ]) + else: assert False + + j = self._incorporate(p) + return j + + def _incorporate(self,p): + if p in self.expression2index: return self.expression2index[p] + + j = len(self.expressions) + + self.expressions.append(p) + self.expression2index[p] = j + self.recursiveTable.append(None) + self.inhabitantTable.append(None) + self.functionInhabitantTable.append(None) + + return j + + def extract(self,j): + l = self.expressions[j] + if l.isAbstraction: + for b in self.extract(l.body): + yield Abstraction(b) + elif l.isApplication: + for f in self.extract(l.f): + for x in self.extract(l.x): + yield Application(f,x) + elif l.isIndex or l.isPrimitive or l.isInvented: + yield l + elif l.isUnion: + for e in l: + yield from self.extract(e) + else: assert False + + def reachable(self, heads): + visited = set() + def visit(j): + if j in visited: return + visited.add(j) + + l = self.expressions[j] + if l.isUnion: + for e in l: + visit(e) + elif l.isAbstraction: visit(l.body) + elif l.isApplication: + visit(l.f) + visit(l.x) + + for h in heads: + visit(h) + return visited + + def size(self,j): + l = self.expressions[j] + if l.isApplication: + return self.size(l.f) + self.size(l.x) + elif l.isAbstraction: + return self.size(l.body) + elif l.isUnion: + return sum(self.size(e) for e in l ) + else: + return 1 + + + def union(self,elements): + if self.universe in elements: return self.universe + + _e = [] + for e in elements: + if self.expressions[e].isUnion: + for j in self.expressions[e]: + _e.append(j) + elif e != self.empty: + _e.append(e) + + elements = frozenset(_e) + if len(elements) == 0: return self.empty + if len(elements) == 1: return next(iter(elements)) + return self._incorporate(Union(elements)) + def apply(self,f,x): + if f == self.empty: return f + if x == self.empty: return x + return self._incorporate(Application(f,x)) + def abstract(self,b): + if b == self.empty: return self.empty + return self._incorporate(Abstraction(b)) + def index(self,i): + return self._incorporate(Index(i)) + + def intersection(self,a,b): + if a == self.empty or b == self.empty: return self.empty + if a == self.universe: return b + if b == self.universe: return a + if a == b: return a + + x = self.expressions[a] + y = self.expressions[b] + + if x.isAbstraction and y.isAbstraction: + return self.abstract(self.intersection(x.body,y.body)) + if x.isApplication and y.isApplication: + return self.apply(self.intersection(x.f,y.f), + self.intersection(x.x,y.x)) + if x.isUnion: + if y.isUnion: + return self.union([ self.intersection(x_,y_) + for x_ in x + for y_ in y ]) + return self.union([ self.intersection(x_, b) + for x_ in x ]) + if y.isUnion: + return self.union([ self.intersection(a, y_) + for y_ in y ]) + return self.empty + + def haveOverlap(self,a,b): + if a == self.empty or b == self.empty: return False + if a == self.universe: return True + if b == self.universe: return True + if a == b: return True + + if a in self.overlapTable: + if b in self.overlapTable[a]: + return self.overlapTable[a][b] + else: self.overlapTable[a] = {} + + x = self.expressions[a] + y = self.expressions[b] + + if x.isAbstraction and y.isAbstraction: + overlap = self.haveOverlap(x.body,y.body) + elif x.isApplication and y.isApplication: + overlap = self.haveOverlap(x.f,y.f) and \ + self.haveOverlap(x.x,y.x) + elif x.isUnion: + if y.isUnion: + overlap = any( self.haveOverlap(x_,y_) + for x_ in x + for y_ in y ) + overlap = any( self.haveOverlap(x_, b) + for x_ in x ) + elif y.isUnion: + overlap = any( self.haveOverlap(a, y_) + for y_ in y ) + else: + overlap = False + self.overlapTable[a][b] = overlap + return overlap + + def minimalInhabitants(self,j): + """Returns (minimal size, set of singleton version spaces)""" + assert isinstance(j,int) + if self.inhabitantTable[j] is not None: return self.inhabitantTable[j] + e = self.expressions[j] + if e.isAbstraction: + cost, members = self.minimalInhabitants(e.body) + cost = cost + epsilon + members = {self.abstract(m) for m in members} + elif e.isApplication: + fc, fm = self.minimalFunctionInhabitants(e.f) + xc, xm = self.minimalInhabitants(e.x) + cost = fc + xc + epsilon + members = {self.apply(f_,x_) + for f_ in fm for x_ in xm } + elif e.isUnion: + children = [self.minimalInhabitants(z) + for z in e ] + cost = min(c for c,_ in children) + members = {zp + for c,z in children + if c == cost + for zp in z } + else: + assert e.isIndex or e.isInvented or e.isPrimitive + cost = 1 + members = {j} + + + # if len(members) > 1: + # for m in members: break + # members = {m} + self.inhabitantTable[j] = (cost, members) + + return cost, members + + def minimalFunctionInhabitants(self,j): + """Returns (minimal size, set of singleton version spaces)""" + assert isinstance(j,int) + if self.functionInhabitantTable[j] is not None: return self.functionInhabitantTable[j] + e = self.expressions[j] + if e.isAbstraction: + cost = POSITIVEINFINITY + members = set() + elif e.isApplication: + fc, fm = self.minimalFunctionInhabitants(e.f) + xc, xm = self.minimalInhabitants(e.x) + cost = fc + xc + epsilon + members = {self.apply(f_,x_) + for f_ in fm for x_ in xm } + elif e.isUnion: + children = [self.minimalFunctionInhabitants(z) + for z in e ] + cost = min(c for c,_ in children) + members = {zp + for c,z in children + if c == cost + for zp in z } + else: + assert e.isIndex or e.isInvented or e.isPrimitive + cost = 1 + members = {j} + + # if len(members) > 1: + # for m in members: break + # members = {m} + + self.functionInhabitantTable[j] = (cost, members) + return cost, members + + def shiftFree(self,j,n,c=0): + if n == 0: return j + l = self.expressions[j] + if l.isUnion: + return self.union([ self.shiftFree(e,n,c) + for e in l ]) + if l.isApplication: + return self.apply(self.shiftFree(l.f,n,c), + self.shiftFree(l.x,n,c)) + if l.isAbstraction: + return self.abstract(self.shiftFree(l.body,n,c+1)) + if l.isIndex: + if l.i < c: return j + if l.i >= n + c: return self.index(l.i - n) + return self.empty + assert l.isPrimitive or l.isInvented + return j + + def substitutions(self,j): + if self.typed: + for (v,_),b in self._substitutions(j,0).items(): + yield v,b + else: + yield from self._substitutions(j,0).items() + + def _substitutions(self,j,n): + if (j,n) in self.substitutionTable: return self.substitutionTable[(j,n)] + + + s = self.shiftFree(j,n) + if self.debug: + assert set(self.extract(s)) == set( e.shift(-n) + for e in self.extract(j) + if all( f >= n for f in e.freeVariables() )),\ + "shiftFree_%d: %s"%(n,set(self.extract(s))) + if s == self.empty: m = {} + else: + if self.typed: + principalType = self.infer(s) + if principalType == self.bottom: + print(self.infer(j)) + print(list(self.extract(j))) + print(list(self.extract(s))) + assert False + m = {(s, self.infer(s)[1].canonical()): self.index(n)} + else: + m = {s: self.index(n)} + + l = self.expressions[j] + if l.isPrimitive or l.isInvented: + m[(self.universe,t0) if self.typed else self.universe] = j + elif l.isIndex: + m[(self.universe,t0) if self.typed else self.universe] = \ + j if l.i < n else self.index(l.i + 1) + elif l.isAbstraction: + for v,b in self._substitutions(l.body, n + 1).items(): + m[v] = self.abstract(b) + elif l.isApplication and not self.factored: + newMapping = {} + fm = self._substitutions(l.f,n) + xm = self._substitutions(l.x,n) + for v1,f in fm.items(): + if self.typed: v1,nType1 = v1 + for v2,x in xm.items(): + if self.typed: v2,nType2 = v2 + + a = self.apply(f,x) + # See if the types that they assigned to $n are consistent + if self.typed: + if self.infer(a) == self.bottom: continue + try: + nType = canonicalUnification(nType1, nType2, + self.infer(a)[0].get(n,t0)) + except UnificationFailure: + continue + + v = self.intersection(v1,v2) + if v == self.empty: continue + if self.typed and self.infer(v) == self.bottom: continue + + key = (v,nType) if self.typed else v + + if key in newMapping: + newMapping[key].append(a) + else: + newMapping[key] = [a] + for v in newMapping: + newMapping[v] = self.union(newMapping[v]) + newMapping.update(m) + m = newMapping + # print(f"substitutions: |{len(fm)}|x|{len(xm)}| = {len(m)}\t{len(m) <= len(fm)+len(xm)}") + elif l.isApplication and self.factored: + newMapping = {} + fm = self._substitutions(l.f,n) + xm = self._substitutions(l.x,n) + for v1,f in fm.items(): + if self.typed: v1,nType1 = v1 + for v2,x in xm.items(): + if self.typed: v2,nType2 = v2 + v = self.intersection(v1,v2) + if v == self.empty: continue + if v in newMapping: + newMapping[v] = ({f} | newMapping[v][0], + {x} | newMapping[v][1]) + else: + newMapping[v] = ({f},{x}) + for v,(fs,xs) in newMapping.items(): + fs = self.union(list(fs)) + xs = self.union(list(xs)) + m[v] = self.apply(fs,xs) + # print(f"substitutions: |{len(fm)}|x|{len(xm)}| = {len(m)}\t{len(m) <= len(fm)+len(xm)}") + elif l.isUnion: + newMapping = {} + for e in l: + for v,b in self._substitutions(e,n).items(): + if v in newMapping: + newMapping[v].append(b) + else: + newMapping[v] = [b] + for v in newMapping: + newMapping[v] = self.union(newMapping[v]) + newMapping.update(m) + m = newMapping + else: assert False + + self.substitutionTable[(j,n)] = m + + return m + + def inversion(self,j): + i = self.union([self.apply(self.abstract(b),v) + for v,b in self.substitutions(j) + if v != self.universe]) + if self.debug and self.typed: + if not (self.infer(i) == self.infer(j)): + print("inversion produced space with a different type!") + print("the original type was",self.infer(j)) + print("the type of the rewritten expressions is",self.infer(i)) + print("the original extension was") + n = None + for e in self.extract(j): + print(e, e.infer()) + # print(f"\t{e.betaNormalForm()} : {e.betaNormalForm().infer()}") + assert n is None or e.betaNormalForm() == n + n = e.betaNormalForm() + print("the rewritten extension is") + for e in self.extract(i): + print(e, e.infer()) + # print(f"\t{e.betaNormalForm()} : {e.betaNormalForm().infer()}") + assert n is None or e.betaNormalForm() == n + assert self.infer(i) == self.infer(j) + assert False + return i + + + def recursiveInversion(self,j): + if self.recursiveTable[j] is not None: return self.recursiveTable[j] + + l = self.expressions[j] + if l.isUnion: + return self.union([self.recursiveInversion(e) for e in l ]) + + t = [self.apply(self.abstract(b),v) + for v,b in self.substitutions(j) + if v != self.universe and (self.identity or b != self.index(0))] + if self.debug and self.typed: + ru = self.union(t) + if not (self.infer(ru) == self.infer(j)): + print("inversion produced space with a different type!") + print("the original type was",self.infer(j)) + print("the type of the rewritten expressions is",self.infer(ru)) + print("the original extension was") + n = None + for e in self.extract(j): + print(e, e.infer()) + # print(f"\t{e.betaNormalForm()} : {e.betaNormalForm().infer()}") + assert n is None or e.betaNormalForm() == n + n = e.betaNormalForm() + print("the rewritten extension is") + for e in self.extract(ru): + print(e, e.infer()) + # print(f"\t{e.betaNormalForm()} : {e.betaNormalForm().infer()}") + assert n is None or e.betaNormalForm() == n + assert self.infer(ru) == self.infer(j) + + + if l.isApplication: + t.append(self.apply(self.recursiveInversion(l.f),l.x)) + t.append(self.apply(l.f,self.recursiveInversion(l.x))) + elif l.isAbstraction: + t.append(self.abstract(self.recursiveInversion(l.body))) + + ru = self.union(t) + self.recursiveTable[j] = ru + return ru + + def repeatedExpansion(self,j,n): + spaces = [j] + for _ in range(n): + spaces.append(self.recursiveInversion(spaces[-1])) + return spaces + + def rewriteReachable(self,heads,n): + vertices = self.reachable(heads) + spaces = {v: self.repeatedExpansion(v,n) + for v in vertices } + return spaces + + def properVersionSpace(self, j, n): + return self.union(self.repeatedExpansion(j, n)) + + def superVersionSpace(self, j, n): + """Construct decorated tree and then merge version spaces with subtrees via union operator""" + if j in self.superCache: return self.superCache[j] + spaces = self.rewriteReachable({j}, n) + def superSpace(i): + assert i in spaces + e = self.expressions[i] + components = [i] + spaces[i] + if e.isIndex or e.isPrimitive or e.isInvented: + pass + elif e.isAbstraction: + components.append(self.abstract(superSpace(e.body))) + elif e.isApplication: + components.append(self.apply(superSpace(e.f), superSpace(e.x))) + elif e.isUnion: assert False + else: assert False + + return self.union(components) + self.superCache[j] = superSpace(j) + return self.superCache[j] + + def loadEquivalences(self, g, spaces): + versionClasses = [None]*len(self.expressions) + def extract(j): + if versionClasses[j] is not None: + return versionClasses[j] + + l = self.expressions[j] + if l.isAbstraction: + ks = g.setOfClasses(g.abstractClass(b) + for b in extract(l.body)) + elif l.isApplication: + fs = extract(l.f) + xs = extract(l.x) + ks = g.setOfClasses(g.applyClass(f,x) + for x in xs for f in fs ) + elif l.isUnion: + ks = g.setOfClasses(e for u in l for e in extract(u)) + else: + ks = g.setOfClasses({g.incorporate(l)}) + versionClasses[j] = ks + return ks + + + N = len(next(iter(spaces.values()))) + vertices = list(sorted(spaces.keys(), key=lambda v: self.size(v))) + + # maps from a vertex to a map from types to classes + # the idea is to only enforceable equivalence between terms of the same type + typedClassesOfVertex = {v: {} for v in vertices } + + for n in range(N): + # print(f"Processing rewrites {n} steps away from original expressions...") + for v in vertices: + expressions = list(self.extract(v)) + assert len(expressions) == 1 + expression = expressions[0] + k = g.incorporate(expression) + if k is None: continue + t0 = g.typeOfClass[k] + if t0 not in typedClassesOfVertex[v]: + typedClassesOfVertex[v][t0] = k + extracted = list(extract(spaces[v][n])) + for e in extracted: + t = g.typeOfClass[e] + if t in typedClassesOfVertex[v]: + g.makeEquivalent(typedClassesOfVertex[v][t],e) + else: + typedClassesOfVertex[v][e] = e + + def bestInventions(self, versions, bs=25): + """versions: [[version index]]""" + """bs: beam size""" + """returns: list of (indices to) candidates""" + import gc + + def nontrivial(proposal): + primitives = 0 + collisions = 0 + indices = set() + for d, tree in proposal.walk(): + if tree.isPrimitive or tree.isInvented: primitives += 1 + elif tree.isIndex: + i = tree.i - d + if i in indices: collisions += 1 + indices.add(i) + return primitives > 1 or (primitives == 1 and collisions > 0) + + with timing("calculated candidates from version space"): + candidates = [{j + for k in self.reachable(hs) + for _,js in [self.minimalInhabitants(k), self.minimalFunctionInhabitants(k)] + for j in js } + for hs in versions] + from collections import Counter + candidates = Counter(k for ks in candidates for k in ks) + candidates = {k for k,f in candidates.items() if f >= 2 and nontrivial(next(self.extract(k))) } + # candidates = [k for k in candidates if next(self.extract(k)).isBetaLong()] + eprint(len(candidates),"candidates from version space") + + # Calculate the number of free variables for each candidate invention + # This is important because, if a candidate has free variables, + # then whenever we use it we will have to apply it to those free variables; + # thus using a candidate with free variables is more expensive + candidateCost = {k: len(set(next(self.extract(k)).freeVariables())) + 1 + for k in candidates } + + inhabitTable = self.inhabitantTable + functionTable = self.functionInhabitantTable + + class B(): + def __init__(self, j): + cost, inhabitants = inhabitTable[j] + functionCost, functionInhabitants = functionTable[j] + self.relativeCost = {inhabitant: candidateCost[inhabitant] + for inhabitant in inhabitants + if inhabitant in candidates} + self.relativeFunctionCost = {inhabitant: candidateCost[inhabitant] + # INTENTIONALLY, do not use function inhabitants + for inhabitant in inhabitants + if inhabitant in candidates} + self.defaultCost = cost + self.defaultFunctionCost = functionCost + + @property + def domain(self): + return set(self.relativeCost.keys()) + @property + def functionDomain(self): + return set(self.relativeFunctionCost.keys()) + def restrict(self): + if len(self.relativeCost) > bs: + self.relativeCost = dict(sorted(self.relativeCost.items(), + key=lambda rk: rk[1])[:bs]) + if len(self.relativeFunctionCost) > bs: + self.relativeFunctionCost = dict(sorted(self.relativeFunctionCost.items(), + key=lambda rk: rk[1])[:bs]) + def getCost(self, given): + return self.relativeCost.get(given, self.defaultCost) + def getFunctionCost(self, given): + return self.relativeFunctionCost.get(given, self.defaultFunctionCost) + def relax(self, given, cost): + self.relativeCost[given] = min(cost, + self.getCost(given)) + def relaxFunction(self, given, cost): + self.relativeFunctionCost[given] = min(cost, + self.getFunctionCost(given)) + + def unobject(self): + return {'relativeCost': self.relativeCost, 'defaultCost': self.defaultCost, + 'relativeFunctionCost': self.relativeFunctionCost, 'defaultFunctionCost': self.defaultFunctionCost} + + beamTable = [None]*len(self.expressions) + + def costs(j): + if beamTable[j] is not None: + return beamTable[j] + + beamTable[j] = B(j) + + e = self.expressions[j] + if e.isIndex or e.isPrimitive or e.isInvented: + pass + elif e.isAbstraction: + b = costs(e.body) + for i,c in b.relativeCost.items(): + beamTable[j].relax(i, c + epsilon) + elif e.isApplication: + f = costs(e.f) + x = costs(e.x) + for i in f.functionDomain | x.domain: + beamTable[j].relax(i, f.getFunctionCost(i) + x.getCost(i) + epsilon) + beamTable[j].relaxFunction(i, f.getFunctionCost(i) + x.getCost(i) + epsilon) + elif e.isUnion: + for z in e: + cz = costs(z) + for i,c in cz.relativeCost.items(): beamTable[j].relax(i, c) + for i,c in cz.relativeFunctionCost.items(): beamTable[j].relaxFunction(i, c) + else: assert False + + beamTable[j].restrict() + return beamTable[j] + + with timing("beamed version spaces"): + beams = parallelMap(numberOfCPUs(), + lambda hs: [ costs(h).unobject() for h in hs ], + versions, + memorySensitive=True, + chunksize=1, + maxtasksperchild=1) + + # This can get pretty memory intensive - clean up the garbage + beamTable = None + gc.collect() + + candidates = {d + for _bs in beams + for b in _bs + for d in b['relativeCost'].keys() } + def score(candidate): + return sum(min(min(b['relativeCost'].get(candidate, b['defaultCost']), + b['relativeFunctionCost'].get(candidate, b['defaultFunctionCost'])) + for b in _bs ) + for _bs in beams ) + candidates = sorted(candidates, key=score) + return candidates + + def rewriteWithInvention(self, i, js): + """Rewrites list of indices in beta long form using invention""" + self.clearOverlapTable() + class RW(): + """rewritten cost/expression either as a function or argument""" + def __init__(self, f,fc,a,ac): + assert not (fc < ac) + self.f, self.fc, self.a, self.ac = f,fc,a,ac + + _i = list(self.extract(i)) + assert len(_i) == 1 + _i = _i[0] + + table = {} + def rewrite(j): + if j in table: return table[j] + e = self.expressions[j] + if self.haveOverlap(i, j): r = RW(fc=1,ac=1, + f=_i,a=_i) + elif e.isPrimitive or e.isInvented or e.isIndex: + r = RW(fc=1,ac=1, + f=e,a=e) + elif e.isApplication: + f = rewrite(e.f) + x = rewrite(e.x) + cost = f.fc + x.ac + epsilon + ep = Application(f.f, x.a) if cost < POSITIVEINFINITY else None + r = RW(fc=cost, ac=cost, + f=ep, a=ep) + elif e.isAbstraction: + b = rewrite(e.body) + cost = b.ac + epsilon + ep = Abstraction(b.a) if cost < POSITIVEINFINITY else None + r = RW(f=None, fc=POSITIVEINFINITY, + a=ep, ac=cost) + elif e.isUnion: + children = [rewrite(z) for z in e ] + f,fc = min(( (child.f, child.fc) for child in children ), + key=cindex(1)) + a,ac = min(( (child.a, child.ac) for child in children ), + key=cindex(1)) + r = RW(f=f,fc=fc, + a=a,ac=ac) + else: assert False + table[j] = r + return r + js = [ rewrite(j).a for j in js ] + self.clearOverlapTable() + return js + + def addInventionToGrammar(self, candidate, g0, frontiers, + pseudoCounts=1.): + candidateSource = next(self.extract(candidate)) + v = RewriteWithInventionVisitor(candidateSource) + invention = v.invention + + rewriteMapping = list({e.program + for f in frontiers + for e in f }) + spaces = [self.superCache[self.incorporate(program)] + for program in rewriteMapping ] + rewriteMapping = dict(zip(rewriteMapping, + self.rewriteWithInvention(candidate, spaces))) + + def tryRewrite(program, request=None): + rw = v.execute(rewriteMapping[program], request=request) + # print(f"Rewriting {program} ({rewriteMapping[program]}) : rw={rw}") + # print("slow-motion:") + # try: + # i = rewriteMapping[program].visit(v) + # print(f"\ti={i}") + # l = EtaLongVisitor().execute(i) + # print(f"\tl={l}") + # except Exception as e: print(e) + return rw or program + + frontiers = [Frontier([FrontierEntry(program=tryRewrite(e.program, request=f.task.request), + logLikelihood=e.logLikelihood, + logPrior=0.) + for e in f ], + f.task) + for f in frontiers ] + # print(invention) + # for f in frontiers: print(f.entries[0].program) + # print() + # print() + g = Grammar.uniform([invention] + g0.primitives, continuationType=g0.continuationType).\ + insideOutside(frontiers, + pseudoCounts=pseudoCounts) + frontiers = [g.rescoreFrontier(f) for f in frontiers] + return g, frontiers + +class CloseInventionVisitor(): + """normalize free variables - e.g., if $1 & $3 occur free then rename them to $0, $1 + then wrap in enough lambdas so that there are no free variables and finally wrap in invention""" + def __init__(self, p): + self.p = p + freeVariables = list(sorted(set(p.freeVariables()))) + self.mapping = {fv: j for j,fv in enumerate(freeVariables) } + def index(self, e, d): + if e.i - d in self.mapping: + return Index(self.mapping[e.i - d] + d) + return e + def abstraction(self, e, d): + return Abstraction(e.body.visit(self, d + 1)) + def application(self, e, d): + return Application(e.f.visit(self, d), + e.x.visit(self, d)) + def primitive(self, e, d): return e + def invented(self, e, d): return e + + def execute(self): + normed = self.p.visit(self, 0) + closed = normed + for _ in range(len(self.mapping)): + closed = Abstraction(closed) + return Invented(closed) + + +class RewriteWithInventionVisitor(): + def __init__(self, p): + v = CloseInventionVisitor(p) + self.original = p + self.mapping = { j: fv for fv, j in v.mapping.items() } + self.invention = v.execute() + + self.appliedInvention = self.invention + for j in range(len(self.mapping) - 1, -1, -1): + self.appliedInvention = Application(self.appliedInvention, Index(self.mapping[j])) + + + def tryRewrite(self, e): + if e == self.original: + return self.appliedInvention + return None + + def index(self, e): return e + def primitive(self, e): return e + def invented(self, e): return e + def abstraction(self, e): + return self.tryRewrite(e) or Abstraction(e.body.visit(self)) + def application(self, e): + return self.tryRewrite(e) or Application(e.f.visit(self), + e.x.visit(self)) + def execute(self, e, request=None): + try: + i = e.visit(self) + l = EtaLongVisitor(request=request).execute(i) + return l + except (UnificationFailure, EtaExpandFailure): + return None + + + + +def induceGrammar_Beta(g0, frontiers, _=None, + pseudoCounts=1., + a=3, + aic=1., + topK=2, + topI=50, + structurePenalty=1., + CPUs=1): + """grammar induction using only version spaces""" + from dreamcoder.fragmentUtilities import primitiveSize + import gc + + originalFrontiers = frontiers + frontiers = [frontier for frontier in frontiers if not frontier.empty] + eprint("Inducing a grammar from", len(frontiers), "frontiers") + + arity = a + + def restrictFrontiers(): + return parallelMap(1,#CPUs, + lambda f: g0.rescoreFrontier(f).topK(topK), + frontiers, + memorySensitive=True, + chunksize=1, + maxtasksperchild=1) + restrictedFrontiers = restrictFrontiers() + + def objective(g, fs): + ll = sum(g.frontierMDL(f) for f in fs ) + sp = structurePenalty * sum(primitiveSize(p) for p in g.primitives) + return ll - sp - aic*len(g.productions) + + v = None + def scoreCandidate(candidate, currentFrontiers, currentGrammar): + try: + newGrammar, newFrontiers = v.addInventionToGrammar(candidate, currentGrammar, currentFrontiers, + pseudoCounts=pseudoCounts) + except InferenceFailure: + # And this can occur if the candidate is not well typed: + # it is expected that this can occur; + # in practice, it is more efficient to filter out the ill typed terms, + # then it is to construct the version spaces so that they only contain well typed terms. + return NEGATIVEINFINITY + + o = objective(newGrammar, newFrontiers) + + #eprint("+", end='') + eprint(o,'\t',newGrammar.primitives[0],':',newGrammar.primitives[0].tp) + + # eprint(next(v.extract(candidate))) + # for f in newFrontiers: + # for e in f: + # eprint(e.program) + + return o + + with timing("Estimated initial grammar production probabilities"): + g0 = g0.insideOutside(restrictedFrontiers, pseudoCounts) + oldScore = objective(g0, restrictedFrontiers) + eprint("Starting grammar induction score",oldScore) + + while True: + v = VersionTable(typed=False, identity=False) + with timing("constructed %d-step version spaces"%arity): + versions = [[v.superVersionSpace(v.incorporate(e.program), arity) for e in f] + for f in restrictedFrontiers ] + eprint("Enumerated %d distinct version spaces"%len(v.expressions)) + + # Bigger beam because I feel like it + candidates = v.bestInventions(versions, bs=3*topI)[:topI] + eprint("Only considering the top %d candidates"%len(candidates)) + + # Clean caches that are no longer needed + v.recursiveTable = [None]*len(v) + v.inhabitantTable = [None]*len(v) + v.functionInhabitantTable = [None]*len(v) + v.substitutionTable = {} + gc.collect() + + with timing("scored the candidate inventions"): + scoredCandidates = parallelMap(CPUs, + lambda candidate: \ + (candidate, scoreCandidate(candidate, restrictedFrontiers, g0)), + candidates, + memorySensitive=True, + chunksize=1, + maxtasksperchild=1) + if len(scoredCandidates) > 0: + bestNew, bestScore = max(scoredCandidates, key=lambda sc: sc[1]) + if len(scoredCandidates) == 0 or bestScore < oldScore: + eprint("No improvement possible.") + # eprint("Runner-up:") + # eprint(next(v.extract(bestNew))) + # Return all of the frontiers, which have now been rewritten to use the + # new fragments + frontiers = {f.task: f for f in frontiers} + frontiers = [frontiers.get(f.task, f) + for f in originalFrontiers] + return g0, frontiers + + # This is subtle: at this point we have not calculated + # versions bases for programs outside the restricted + # frontiers; but here we are rewriting the entire frontier in + # terms of the new primitive. So we have to recalculate + # version spaces for everything. + with timing("constructed versions bases for entire frontiers"): + for f in frontiers: + for e in f: + v.superVersionSpace(v.incorporate(e.program), arity) + newGrammar, newFrontiers = v.addInventionToGrammar(bestNew, g0, frontiers, + pseudoCounts=pseudoCounts) + eprint("Improved score to", bestScore, "(dS =", bestScore-oldScore, ") w/ invention",newGrammar.primitives[0],":",newGrammar.primitives[0].infer()) + oldScore = bestScore + + for f in newFrontiers: + eprint(f.summarizeFull()) + + g0, frontiers = newGrammar, newFrontiers + restrictedFrontiers = restrictFrontiers() + + + + + + + + +def testTyping(p): + v = VersionTable() + j = v.incorporate(p) + + wellTyped = set(v.extract(v.inversion(j))) + print(len(wellTyped)) + v = VersionTable(typed=False) + j = v.incorporate(p) + arbitrary = set(v.extract(v.recursiveInversion(v.recursiveInversion(v.recursiveInversion(j))))) + print(len(arbitrary)) + assert wellTyped <= arbitrary + assert wellTyped == {e + for e in arbitrary if e.wellTyped() } + assert all( e.wellTyped() for e in wellTyped ) + + import sys + sys.exit() + +def testSharing(projection=2): + + source = "(+ 1 1)" + N = 4 # maximum number of refactorings + L = 6 # maximum size of expression + + # def literalSize(v,j): + # hs = [] + # vp = VersionTable(typed=False) + # for i in v.extract(j): + # hs.append(vp.incorporate(i)) + # return len(set(vp.reachable(hs))) + + # smart = {} + # dumb = {} + # for l in range(L): + # for n in range(N): + # v = VersionTable(typed=False) + + # j = v.properVersionSpace(v.incorporate(Program.parse(source)),n) + # smart[(l,n)] = len(v.reachable({j})) + # dumb[(l,n)] = literalSize(v,j) + # print(f"vs l={l}\tn={n} sz={smart[(l,n)]}") + # print(f"db l={l}\tn={n} sz={dumb[(l,n)]}") + # # increase the size of the expression + # source = "(+ 1 %s)"%source + # print("Increased size to",l + 1) + + import numpy as np + distinct_programs = np.zeros((L,N)) + version_size = np.zeros((L,N)) + program_memory = np.zeros((L,N)) + + version_size[0,1] = 24 + distinct_programs[0,1] = 8 + program_memory[0,1] = 28 + version_size[0,2] = 155 + distinct_programs[0,2] = 63 + program_memory[0,2] = 201 + version_size[0,3] = 1126 + distinct_programs[0,3] = 534 + program_memory[0,3] = 1593 + version_size[1,1] = 48 + distinct_programs[1,1] = 24 + program_memory[1,1] = 78 + version_size[1,2] = 526 + distinct_programs[1,2] = 457 + program_memory[1,2] = 1467 + version_size[1,3] = 6639 + distinct_programs[1,3] = 8146 + program_memory[1,3] = 26458 + version_size[2,1] = 74 + distinct_programs[2,1] = 57 + program_memory[2,1] = 193 + version_size[2,2] = 1095 + distinct_programs[2,2] = 2234 + program_memory[2,2] = 7616 + version_size[2,3] = 19633 + distinct_programs[2,3] = 74571 + program_memory[2,3] = 260865 + version_size[3,1] = 101 + distinct_programs[3,1] = 123 + program_memory[3,1] = 438 + version_size[3,2] = 1751 + distinct_programs[3,2] = 9209 + program_memory[3,2] = 32931 + version_size[3,3] = 38781 + distinct_programs[3,3] = 540315 + program_memory[3,3] = 1984171 + version_size[4,1] = 129 + distinct_programs[4,1] = 254 + program_memory[4,1] = 942 + version_size[4,2] = 2488 + distinct_programs[4,2] = 35011 + program_memory[4,2] = 129513 + version_size[4,3] = 63271 + distinct_programs[4,3] = 3477046 + program_memory[4,3] = 13179440 + version_size[5,1] = 158 + distinct_programs[5,1] = 514 + program_memory[5,1] = 1962 + version_size[5,2] = 3308 + distinct_programs[5,2] = 128319 + program_memory[5,2] = 485862 + version_size[5,3] = 93400 + distinct_programs[5,3] = 21042591 + program_memory[5,3] = 81433633 + + + + import matplotlib.pyplot as plot + from matplotlib import rcParams + rcParams.update({'figure.autolayout': True}) + + if projection == 3: + f = plot.figure() + a = f.add_subplot(111, projection='3d') + X = np.arange(0,N) + Y = np.arange(0,L) + X,Y = np.meshgrid(X,Y) + Z = np.zeros((L,N)) + for l in range(L): + for n in range(N): + Z[l,n] = smart[(l,n)] + + a.plot_surface(X, + Y, + np.log10(Z), + color='blue', + alpha=0.3) + for l in range(L): + for n in range(N): + Z[l,n] = dumb[(l,n)] + + + a.plot_surface(X, + Y, + np.log10(Z), + color='red', + alpha=0.3) + + + else: + plot.figure(figsize=(3.5,3)) + plot.tight_layout() + logarithmic = False + if logarithmic: P = plot.semilogy + else: P = plot.plot + for n in range(1, 2): + xs = np.array(range(L))*2 + 3 + P(xs, + [version_size[l,n] for l in range(L) ], + 'purple', + label=None if n > 1 else 'version space') + P(xs, + [program_memory[l,n] for l in range(L) ], + 'green', + label=None if n > 1 else 'no version space') + if n > 1: dy = 1 + if n == 1 and logarithmic: dy = 0.6 + if n == 1 and not logarithmic: dy = 1 + # plot.text(xs[-1], dy*version_size[L - 1,n], "n=%d"%n) + # plot.text(xs[-1], dy*program_memory[L - 1,n], "n=%d"%n) + + plot.legend() + plot.xlabel('Size of program being refactored') + plot.ylabel('Size of VS (purple) or progs (green)') + plot.xticks(list(xs) + [xs[-1] + 2], + [ str(x) if j == 0 or j == L - 1 else '' + for j,x in enumerate(list(xs) + [xs[-1] + 2])]) + # if not logarithmic: + # plot.ylim([0,100000]) + + + + plot.savefig('/tmp/vs.eps') + assert False + +if __name__ == "__main__": + + from dreamcoder.domains.arithmetic.arithmeticPrimitives import * + from dreamcoder.domains.list.listPrimitives import * + from dreamcoder.fragmentGrammar import * + bootstrapTarget_extra() + McCarthyPrimitives() + testSharing() + + # p = Program.parse("(#(lambda (lambda (lambda (fold $0 empty ($1 $2))))) cons (lambda (lambda (lambda ($2 (+ (+ 5 5) (+ $1 $1)) $0)))))") + # print(EtaLongVisitor().execute(p)) + + # BOOTSTRAP + programs = [# "(lambda (fix1 $0 (lambda (lambda (if (empty? $0) 0 (+ ($1 (cdr $0)) 1))))))", + # "(lambda (fix1 $0 (lambda (lambda (if (empty? $0) 0 (+ ($1 (cdr $0)) 1))))))", + # "(lambda (+ $0 1))", + # "(lambda (+ (car $0) 1))", + # "(lambda (+ $0 (+ 1 1)))", + # "(lambda (- $0 1))", + # "(lambda (- $0 (+ 1 1)))", + # "(lambda (- (car $0) 1))", + ("(lambda (fix1 $0 (lambda (lambda (if (eq? 0 $0) empty (cons (- 0 $0) ($1 (+ 1 $0))))))))",None), + # ("(lambda (fix1 $0 (lambda (lambda (if (empty? $0) empty (cons (cdr $0) ($1 (cdr $0))))))))",arrow(tlist(tint),tlist(tlist(tint)))), + # drop the last element + # ("(lambda (fix1 $0 (lambda (lambda (if (empty? (cdr $0)) empty (cons (car $0) ($1 (cdr $0))))))))",arrow(tlist(tint),tlist(tint))), + # take in till 1 + # ("(lambda (fix1 $0 (lambda (lambda (if (eq? (car $0) 1) empty (cons (car $0) ($1 (cdr $0))))))))",arrow(tlist(tint),tlist(tint))), + # "(lambda (lambda (fix2 $1 $0 (lambda (lambda (lambda (if (eq? $1 0) (car $0) ($2 (- $1 1) (cdr $0)))))))))", + # "(lambda (lambda (fix2 $1 $0 (lambda (lambda (lambda (if (eq? $1 0) (car $0) ($2 (- $1 1) (cdr $0)))))))))", + ("(lambda (fix1 $0 (lambda (lambda (if (empty? $0) 0 (+ (car $0) ($1 (cdr $0))))))))",None), + ("(lambda (fix1 $0 (lambda (lambda (if (empty? $0) 1 (- (car $0) ($1 (cdr $0))))))))",None), + ("(lambda (fix1 $0 (lambda (lambda (if (empty? $0) (cons 0 empty) (cons (car $0) ($1 (cdr $0))))))))",None), + ("(lambda (fix1 $0 (lambda (lambda (if (empty? $0) (empty? empty) (if (car $0) ($1 (cdr $0)) (eq? 1 0)))))))",None), + # "(lambda (lambda (fix2 $1 $0 (lambda (lambda (lambda (if (empty? $1) $0 (cons (car $1) ($2 (cdr $1) $0)))))))))", + # ("(lambda (fix1 $0 (lambda (lambda (if (empty? $0) empty (cons (+ (car $0) (car $0)) ($1 (cdr $0))))))))",None), + # ("(lambda (fix1 $0 (lambda (lambda (if (empty? $0) empty (cons (+ (car $0) 1) ($1 (cdr $0))))))))",None), + # ("(lambda (fix1 $0 (lambda (lambda (if (empty? $0) empty (cons (- (car $0) 1) ($1 (cdr $0))))))))",None), + # ("(lambda (fix1 $0 (lambda (lambda (if (empty? $0) empty (cons (cons (car $0) empty) ($1 (cdr $0))))))))",arrow(tlist(tint),tlist(tlist(tint)))), + # ("(lambda (fix1 $0 (lambda (lambda (if (empty? $0) empty (cons (- 0 (car $0)) ($1 (cdr $0))))))))",None) + ] + programs = [(Program.parse(p),t) for p,t in programs ] + N=3 + + primitives = McCarthyPrimitives() + # for p, _ in programs: + # for _, s in p.walk(): + # if s.isPrimitive: + # primitives.add(s) + g0 = Grammar.uniform(list(primitives)) + print(g0) + + # with timing("RUST test"): + # g = induceGrammar(g0, [Frontier.dummy(p, tp=tp) for p, tp in programs], + # CPUs=1, + # a=N, + # backend="vs") + # eprint(g) + + # with open('vs.pickle','rb') as handle: + # a,kw = pickle.load(handle) + # induceGrammar_Beta(*a,**kw) + + with timing("induced DSL"): + induceGrammar_Beta(g0, [Frontier.dummy(p, tp=tp) for p, tp in programs], + CPUs=1, + a=N, + structurePenalty=0.) + +# if __name__ == "__main__": +# import argparse +# parser = argparse.ArgumentParser(description = "Version-space based compression") +# parser.add_argument("--CPUs", type=int, default=1) +# parser.add_argument("--arity", type=int, default=3) +# parser.add_argument("--bs", type=int, default=25, +# help="beam size") +# parser.add_argument("--topK", type=int, default=2) +# parser.add_argument("--topI", type=int, default=None, +# help="defaults to beam size") +# parser.add_argument("--pseudoCounts", +# type=float, +# default=1.) +# parser.add_argument("--structurePenalty", +# type=float, default=1.) +# arguments = parser.parse_args() + + diff --git a/img.png b/img.png new file mode 100644 index 0000000000000000000000000000000000000000..7887aace6faf6fc4099dfa95c6c33344c37a1e6c Binary files /dev/null and b/img.png differ diff --git a/program_synthesis.py b/program_synthesis.py new file mode 100644 index 0000000000000000000000000000000000000000..b621ab659234ec5eaa96b8594bfb2992c2bc889e --- /dev/null +++ b/program_synthesis.py @@ -0,0 +1,98 @@ +"""Program Synthesis dataset from dreamcoder. https://github.com/ellisk42/ec""" +from random import choice, shuffle +import datasets + +from dreamcoder.domains.text.makeTextTasks import makeTasks as textMakeTasks +from dreamcoder.domains.list.main import main as listMakeTasks + + +_DESCRIPTION = """\ +Generated program synthesis datasets used to train dreamcoder. +""" +_FEATURES = datasets.Features( + { + "description": datasets.Value("string"), + "input": datasets.Value("string"), + "output": datasets.Value("string"), + "types": datasets.Value("string") + } +) + +_HOMEPAGE = "https://github.com/ellisk42/ec" + +_LICENSE = "MIT License" + +_MAX_STEPS = 10 + + +class infIterator: + def __init__(self, make_mthd): + self.make_mthd = make_mthd + self.i = None + + def reset(self): + tasks = self.make_mthd() + + rows = [] + for task in tasks: + base = { + 'types': str(task.request), + "description": task.name, + } + for (inp, outp) in task.examples: + rows.append(dict(input=str(inp), output=str(outp), **base)) + + shuffle(rows) + self.rows = rows + self.i = 0 + + def step(self): + if self.i is None: + self.reset() + row = self.rows[self.i] + self.i += 1 + if self.i >= len(self.rows): + self.reset() + return row + + +class ProgramSynthesis(datasets.GeneratorBasedBuilder): + """Program Synthesis dataset from dreamcoder.""" + + VERSION = datasets.Version("1.1.0") + BUILDER_CONFIGS = [ + datasets.BuilderConfig(name="text", version=VERSION, description="Text tasks."), + datasets.BuilderConfig(name="list", version=VERSION, description="List tasks."), + datasets.BuilderConfig(name="all", version=VERSION, description="All tasks at once."), + ] + DEFAULT_CONFIG_NAME = "all" + + def _info(self): + return datasets.DatasetInfo( + description=_DESCRIPTION, + features=_FEATURES, + supervised_keys=("input", "output"), + homepage=_HOMEPAGE, + license=_LICENSE, + ) + + def _split_generators(self, dl_manager): + return [ + datasets.SplitGenerator( + name=datasets.Split.TRAIN, + ), + ] + + def _generate_examples(self): + task_samples = { + 'text': infIterator(textMakeTasks), + 'list': infIterator(listMakeTasks) + } + for key in range(_MAX_STEPS): + + if self.config.name == 'all': + dataset_type = choice(task_samples.keys()) + else: + dataset_type = self.config.name + + yield key, task_samples[dataset_type].step() diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000000000000000000000000000000000000..3e6f14ca6e5faf8be0e24bd9a8697cf17299011c --- /dev/null +++ b/requirements.txt @@ -0,0 +1,36 @@ +Box2D-kengz +cairocffi +certifi +cffi +chardet +colorama +cycler +dill +frozendict +graphviz +idna +joblib +kiwisolver +matplotlib +multiprocess +nltk +numpy +pathos +Pillow +pox +ppft +protobuf +psutil +pycparser +pygame +pyparsing +pypng +python-dateutil +pytz +pyzmq +requests +scikit-learn +scipy +sexpdata +six +urllib3 diff --git a/test.py b/test.py new file mode 100644 index 0000000000000000000000000000000000000000..3a7e1c884e80ea7506572d97f6a3cc27b57ca349 --- /dev/null +++ b/test.py @@ -0,0 +1,5 @@ +import datasets + + +data = datasets.load_dataset('program_synthesis.py', 'list') +print(data['train'][:4])